diff --git a/.conda/bld.bat b/.conda/bld.bat
deleted file mode 100644
index 833097afe4..0000000000
--- a/.conda/bld.bat
+++ /dev/null
@@ -1,12 +0,0 @@
-:: Install scripts in bin folder
-%PYTHON% setup.py install
-
-:: Copy database files to shared directory
-cd %PREFIX%
-mkdir share\rmgdatabase
-xcopy "%SRC_DIR%\input" %PREFIX%\share\rmgdatabase /E
-
-:: Create rmgrc file that points to this folder in site-packages/rmgpy directory
-cd "%SP_DIR%"
-mkdir rmgpy
-(echo database.directory : %PREFIX%\share\rmgdatabase) > %SP_DIR%\rmgpy\rmgrc
diff --git a/.conda/conda_build_config.yaml b/.conda/conda_build_config.yaml
deleted file mode 100644
index 4fe9a38c7b..0000000000
--- a/.conda/conda_build_config.yaml
+++ /dev/null
@@ -1,5 +0,0 @@
-python:
- - 3.7
-numpy:
- - 1.15
-
diff --git a/.conda/meta.yaml b/.conda/meta.yaml
index 1c9156fa5c..576c76d09d 100644
--- a/.conda/meta.yaml
+++ b/.conda/meta.yaml
@@ -1,12 +1,13 @@
# For conda build
package:
name: rmgdatabase
- version: {{ environ.get('GIT_DESCRIBE_TAG', '') }}
+ version: 3.3.0
source:
path: ../
build:
+ noarch: generic
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
requirements:
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml
index 85f400b824..a8bf96fab0 100644
--- a/.github/workflows/CI.yml
+++ b/.github/workflows/CI.yml
@@ -1,62 +1,292 @@
-name: CI
+# CI.yml
+# This file contains the script used by GitHub actions to execute the Continuous Integration (CI)
+# for RMG-database. This includes building RMG and its dependencies, executing the unit tests,
+# functional tests, database tests, and regression tests.
+#
+# This will run automatically on any push to any branch, but will only run one instance of
+# itself at a time per branch (to avoid spawning tons of runners, which prevents them from
+# executing).
+#
+# In the regression testing section of the action the term "Stable" or "Reference" refers to
+# the 'correct answers' to the regression tests, i.e. the way that the main branch executes
+# them. These 'answers' are re-generated daily, or on any push to main, and retrieved whenever
+# a push is made to a non-main branch. The new proposed changes are referred to as "Dynamic".
+#
+#
+# Changelog:
+# 2023-10 - Copied from RMG-Py, adapted for RMG-database
+# 2024/10/02 Mambaforge is deprecated. Use Miniforge3 instead.
-on: [push]
+name: Continuous Integration
+
+on:
+ schedule:
+ # * is a special character in YAML so you have to quote this string
+ - cron: "0 8 * * *"
+ # runs on all branches on both RMG-Py and forks
+ push:
+ # runs on PRs against RMG-database (and anywhere else, but we add this for RMG-database
+ pull_request:
+
+# this prevents one PR from simultaneously running multiple runners, which will clog up the queue
+# and prevent other PRs from running the CI
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
+env:
+ # update this to run tests with un merged rmg-py branches
+ RMG_PY_BRANCH: main
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
- strategy:
- max-parallel: 5
- env: # update this if needed to match a pull request on the RMG-database
- RMG_PY_BRANCH: main
+ # skip scheduled runs from forks
+ if: ${{ !( github.repository != 'ReactionMechanismGenerator/RMG-database' && github.event_name == 'schedule' ) }}
+ env:
+ # This is true only if this is a reference case for the regression testing:
+ REFERENCE_JOB: ${{ github.ref == 'refs/heads/main' && github.repository == 'ReactionMechanismGenerator/RMG-database' }}
defaults:
run:
shell: bash -l {0}
+ working-directory: RMG-Py # only applies to 'run' steps
steps:
- - uses: actions/checkout@v2
- - name: Get RMG-Py source code
- run: |
- cd ..
- git clone -b $RMG_PY_BRANCH https://github.com/ReactionMechanismGenerator/RMG-Py.git
- cd RMG-Py
- git clone -b arkanepy3 https://github.com/mjohnson541/Q2DTor.git external/Q2DTor
- - uses: conda-incubator/setup-miniconda@v2
+ - name: Checkout RMG-Py
+ uses: actions/checkout@v4
+ with:
+ repository: ReactionMechanismGenerator/RMG-Py
+ ref: ${{ env.RMG_PY_BRANCH }}
+ path: RMG-Py
+
+ - name: Checkout RMG-database
+ uses: actions/checkout@v4
with:
- environment-file: ../RMG-Py/environment.yml
- python-version: 3.7
+ path: RMG-database
+
+ # configures the mamba environment manager and builds the environment
+ - name: Setup Miniforge Python 3.9
+ uses: conda-incubator/setup-miniconda@v3
+ with:
+ environment-file: RMG-Py/environment.yml
+ miniforge-variant: Miniforge3
+ miniforge-version: latest
+ python-version: 3.9
activate-environment: rmg_env
- - name: Conda info
+ use-mamba: true
+
+ # list the environment for debugging purposes
+ - name: mamba info
run: |
- conda info
- conda list
- - name: Install MOPAC
- env:
- MOPACKEY: ${{ secrets.MOPACKEY }}
- timeout-minutes: 1
- continue-on-error: true # allowed to fail on pull request from a forked repository
+ mamba info
+ mamba list
+
+ - name: Make libtiff Symlink to Avoid Runner Bug
+ run: | # This action may need to be removed/adjusted in future runs.
+ if [ ! -f /usr/lib/x86_64-linux-gnu/libtiff.so.5 ] && [ -f /usr/lib/x86_64-linux-gnu/libtiff.so.6 ]; then sudo ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.6 /usr/lib/x86_64-linux-gnu/libtiff.so.5; fi
+ find /usr/lib -name libtiff*
+
+ # modify env variables as directed in the RMG installation instructions
+ - name: Set Environment Variables
run: |
- set +o pipefail
- yes 'Yes' | ${CONDA_PREFIX}/bin/mopac "$MOPACKEY"
- - name: Compile RMG
+ RUNNER_CWD=$(pwd)
+ echo "PYTHONPATH=$RUNNER_CWD/RMG-Py:$PYTHONPATH" >> $GITHUB_ENV
+ echo "$RUNNER_CWD/RMG-Py" >> $GITHUB_PATH
+
+ # RMG build step
+ - name: make RMG
run: |
- cd ../RMG-Py
+ make clean
make
- - name: Trigger RMG-tests
- if: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main' && github.ref != 'refs/heads/stable' }} # only push events to branches other than main and stable
+
+ - name: Setup Juliaup
+ uses: julia-actions/install-juliaup@v2
+ with:
+ channel: '1.10'
+
+ # RMS installation and linking to Julia
+ - name: Install and link Julia dependencies
+ timeout-minutes: 120 # this usually takes 20-45 minutes (or hangs for 6+ hours).
+ run: |
+ . install_rms.sh
+
+ - name: Install Q2DTor
+ run: echo "" | make q2dtor
+
+ # non-regression testing
+ - name: Run Database Tests
+ run: make test-database
+
+ # Regression Testing - Test Execution
+ - name: Regression Tests - Execution
+ id: regression-execution
+ timeout-minutes: 60
+ run: |
+ for regr_test in aromatics liquid_oxidation nitrogen oxidation sulfur superminimal RMS_constantVIdealGasReactor_superminimal RMS_CSTR_liquid_oxidation RMS_liquidSurface_ch4o2cat;
+ do
+ if python rmg.py test/regression/"$regr_test"/input.py; then
+ echo "$regr_test" "Executed Successfully"
+ else
+ echo "$regr_test" "Failed to Execute" | tee -a $GITHUB_STEP_SUMMARY
+ export FAILED=Yes
+ fi
+ done
+ if [[ ${FAILED} ]]; then
+ echo "One or more regression tests could not be executed." | tee -a $GITHUB_STEP_SUMMARY
+ echo "Please download the failed results or check the above log to see why." | tee -a $GITHUB_STEP_SUMMARY
+ exit 1
+ fi
+
+ # Upload Regression Results as Failed if above step failed
+ - name: Upload Failed Results
+ if: ${{ failure() && steps.regression-execution.conclusion == 'failure' }}
+ uses: actions/upload-artifact@v4
+ with:
+ name: failed_regression_results
+ path: |
+ RMG-Py/test/regression
+
+ # Upload Regression Results as Dynamic if Push to non-main Branch
+ - name: Upload Results as Dynamic
+ if: ${{ env.REFERENCE_JOB == 'false' }}
+ uses: actions/upload-artifact@v4
+ with:
+ name: dynamic_regression_results
+ path: |
+ RMG-Py/test/regression
+
+ - name: mkdir stable_regression_results
+ if: ${{ env.REFERENCE_JOB == 'false' }}
+ run: mkdir stable_regression_results
+
+ # Retrieve Stable Results for reference
+ - name : Find ID of Reference Results
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ # this will search for the last successful execution of CI on main
+ run: |
+ run_id=$(gh run list -R ReactionMechanismGenerator/RMG-Py --workflow="Continuous Integration" --branch main --limit 15 --json databaseId,conclusion --jq 'map(select(.conclusion == "success")) | .[0].databaseId')
+ echo "CI_RUN_ID=$run_id" >> $GITHUB_ENV
+
+ - name: Retrieve Stable Regression Results
+ if: ${{ env.REFERENCE_JOB == 'false' }}
+ uses: actions/download-artifact@v4
+ with:
+ # download stable regression results
+ run-id: ${{ env.CI_RUN_ID }}
+ repository: ReactionMechanismGenerator/RMG-Py
+ github-token: ${{ secrets.GITHUB_TOKEN }}
+ name: stable_regression_results
+ path: RMG-Py/stable_regression_results
+
+ # Regression Testing - Actual Comparisons
+ - name: Regression Tests - Compare to Baseline
+ id: regression-comparison
+ if: ${{ env.REFERENCE_JOB == 'false' }}
env:
- GH_TOKEN: ${{ secrets.RMG_DEV_TOKEN }}
- run: ./trigger-rmg-tests.sh
- - name: Unit tests
- run: |
- cd ../RMG-Py
- make test-unittests
- - name: Functional tests
- if: ${{ success() || failure() }} # Run even if the unit tests failed (but not if they were cancelled)
- run: |
- cd ../RMG-Py
- make test-functional
- - name: Database tests
- if: ${{ success() || failure() }} # Run even if the functional tests failed (but not if they were cancelled)
- run: |
- cd ../RMG-Py
- make test-database
+ REFERENCE: stable_regression_results
+ run: |
+ exec 2> >(tee -a regression.stderr >&2) 1> >(tee -a regression.stdout)
+ mkdir -p "test/regression-diff"
+ for regr_test in aromatics liquid_oxidation nitrogen oxidation sulfur superminimal RMS_constantVIdealGasReactor_superminimal RMS_CSTR_liquid_oxidation;
+ do
+ echo ""
+ echo "### Regression test $regr_test:"
+ # Memory Usage and Execution Time
+ echo -n 'Reference: '
+ grep "Execution time" $REFERENCE/"$regr_test"/RMG.log | tail -1
+ echo -n 'Current: '
+ grep "Execution time" test/regression/"$regr_test"/RMG.log | tail -1
+ echo -n 'Reference: '
+ grep "Memory used:" $REFERENCE/"$regr_test"/RMG.log | tail -1
+ echo -n 'Current: '
+ grep "Memory used:" test/regression/"$regr_test"/RMG.log | tail -1
+
+ echo ""
+ # Compare the edge and core
+ if python scripts/checkModels.py \
+ "$regr_test-core" \
+ $REFERENCE/"$regr_test"/chemkin/chem_annotated.inp \
+ $REFERENCE/"$regr_test"/chemkin/species_dictionary.txt \
+ test/regression/"$regr_test"/chemkin/chem_annotated.inp \
+ test/regression/"$regr_test"/chemkin/species_dictionary.txt
+ then
+ echo "$regr_test Passed Core Comparison ✅
"
+ else
+ echo "$regr_test Failed Core Comparison ❌
"
+ cp "$regr_test-core.log" test/regression-diff/
+ export FAILED=Yes
+ fi
+ echo "" # blank line so next block is interpreted as markdown
+ cat "$regr_test-core.log" || (echo "Dumping the whole log failed, please download it from GitHub actions. Here are the first 100 lines:" && head -n100 "$regr_test-core.log")
+ echo " "
+ echo ""
+ if python scripts/checkModels.py \
+ "$regr_test-edge" \
+ $REFERENCE/"$regr_test"/chemkin/chem_edge_annotated.inp \
+ $REFERENCE/"$regr_test"/chemkin/species_edge_dictionary.txt \
+ test/regression/"$regr_test"/chemkin/chem_edge_annotated.inp \
+ test/regression/"$regr_test"/chemkin/species_edge_dictionary.txt
+ then
+ echo "$regr_test Passed Edge Comparison ✅
"
+ else
+ echo "$regr_test Failed Edge Comparison ❌
"
+ cp "$regr_test-edge.log" test/regression-diff/
+ export FAILED=Yes
+ fi
+ echo "" # blank line so next block is interpreted as markdown
+ cat "$regr_test-edge.log" || (echo "Dumping the whole log failed, please download it from GitHub actions. Here are the first 100 lines:" && head -n100 "$regr_test-core.log")
+ echo " "
+
+ # Check for Regression between Reference and Dynamic (skip superminimal)
+ if [ -f test/regression/"$regr_test"/regression_input.py ];
+ then
+ echo ""
+ if python rmgpy/tools/regression.py \
+ test/regression/"$regr_test"/regression_input.py \
+ $REFERENCE/"$regr_test"/chemkin \
+ test/regression/"$regr_test"/chemkin
+ then
+ echo "$regr_test Passed Observable Testing ✅
"
+ else
+ echo "$regr_test Failed Observable Testing ❌
"
+ export FAILED=Yes
+ fi
+ echo " "
+ fi
+ echo ""
+ done
+ if [[ ${FAILED} ]]; then
+ echo "⚠️ One or more regression tests failed." | tee -a $GITHUB_STEP_SUMMARY >&2
+ echo "Please download the failed results and run the tests locally or check the log to see why." | tee -a $GITHUB_STEP_SUMMARY >&2
+ fi
+
+ - name: Prepare Results for PR Comment
+ if: ${{ env.REFERENCE_JOB == 'false' }}
+ env:
+ PR_NUMBER: ${{ github.event.number || github.event.after || github.event_name }}
+ run: |
+ echo $PR_NUMBER > summary.txt
+ echo "## Regression Testing Results" >> summary.txt
+ cat regression.stderr >> summary.txt
+ echo "" >> summary.txt
+ echo "Detailed regression test results.
" >> summary.txt
+ cat regression.stdout >> summary.txt
+ echo " " >> summary.txt
+ echo "" >> summary.txt
+ echo "_beep boop this comment was written by a bot_ :robot:" >> summary.txt
+ cat summary.txt > $GITHUB_STEP_SUMMARY
+
+ - name: Upload regression summary artifact
+ # the annotate workflow uses this artifact to add a comment to the PR
+ uses: actions/upload-artifact@v4
+ if : ${{ github.event_name == 'pull_request' }}
+ with:
+ name: regression_summary
+ path: RMG-Py/summary.txt
+
+ - name: Upload Comparison Results
+ uses: actions/upload-artifact@v4
+ with:
+ name: regression_test_comparison_results
+ path: |
+ RMG-Py/test/regression-diff
diff --git a/.github/workflows/annotate.yml b/.github/workflows/annotate.yml
new file mode 100644
index 0000000000..3052005bb0
--- /dev/null
+++ b/.github/workflows/annotate.yml
@@ -0,0 +1,63 @@
+name: Annotate pull request with regression summaries
+# Takes a regression summary from a workflow run and annotates the pull request with it
+# The pull request number is taken from the first line of the summary.txt file.
+# The summary file is in an artifact called regression_summary associated
+# with the workflow run that triggered this workflow.
+# based on https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#using-data-from-the-triggering-workflow
+
+on:
+ workflow_run:
+ workflows:
+ - Continuous Integration
+ types:
+ - completed
+
+run-name: Annotate "${{ github.event.workflow_run.display_title }}"
+
+jobs:
+ on-success:
+ runs-on: ubuntu-latest
+ if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event == 'pull_request' }}
+ steps:
+ - run: echo 'The triggering workflow passed'
+ - name: 'Download regression_summary artifact'
+ uses: actions/github-script@v6
+ with:
+ script: |
+ let allArtifacts = await github.rest.actions.listWorkflowRunArtifacts({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ run_id: context.payload.workflow_run.id,
+ });
+ let matchArtifact = allArtifacts.data.artifacts.filter((artifact) => {
+ return artifact.name == "regression_summary"
+ })[0];
+ let download = await github.rest.actions.downloadArtifact({
+ owner: context.repo.owner,
+ repo: context.repo.repo,
+ artifact_id: matchArtifact.id,
+ archive_format: 'zip',
+ });
+ let fs = require('fs');
+ fs.writeFileSync(`${process.env.GITHUB_WORKSPACE}/regression_summary.zip`, Buffer.from(download.data));
+
+ - name: 'Unzip artifact'
+ run: unzip regression_summary.zip
+
+ - name: 'Get pull request number'
+ run: |
+ echo "PR_NUMBER=$( head -n 1 summary.txt )" >> $GITHUB_ENV
+ # remove the first line from the file
+ sed -i '1d' summary.txt
+
+ - name: Write summary to pull request as a comment
+ uses: thollander/actions-comment-pull-request@v2
+ with:
+ filePath: summary.txt
+ pr_number: ${{ env.PR_NUMBER }}
+
+ - name: Report the github.event.workflow_run as json
+ if: ${{ failure() }}
+ run: echo $JSON
+ env:
+ JSON: ${{ toJson(github.event.workflow_run) }}
diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml
index 2209ade186..a72727bda0 100644
--- a/.github/workflows/conda_build.yml
+++ b/.github/workflows/conda_build.yml
@@ -1,49 +1,64 @@
name: Conda Build
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
on:
+ pull_request:
+ workflow_dispatch:
push:
branches:
- stable
jobs:
- build-linux:
+ build:
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
+ name: Build Python ${{ matrix.python-version }}
defaults:
run:
shell: bash -l {0}
steps:
- - uses: actions/checkout@v2
- - uses: conda-incubator/setup-miniconda@v2
- - name: Conda info
- run: |
- conda info
- conda list
- - name: Build Binary
- env:
- CONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
+ - uses: actions/checkout@v4
+
+ - name: Setup Miniforge
+ uses: conda-incubator/setup-miniconda@v3
+ with:
+ miniforge-variant: Miniforge3
+ miniforge-version: latest
+ auto-update-conda: true
+ show-channel-urls: true
+ conda-remove-defaults: true
+ auto-activate-base: true
+ activate-environment: ""
+
+ - name: Install Build Tools
+ run: conda install python anaconda-client conda-build
+
+ - name: Configure Auto-Upload
+ if: github.ref == 'refs/heads/stable'
run: |
- conda install -y conda-build
- conda install -y anaconda-client
- conda config --add channels rmg
conda config --set anaconda_upload yes
- conda build --token $CONDA_TOKEN --user rmg .conda
- build-osx:
- runs-on: macos-latest
- defaults:
- run:
- shell: bash -l {0}
- steps:
- - uses: actions/checkout@v2
- - uses: conda-incubator/setup-miniconda@v2
- - name: Conda info
- run: |
- conda info
- conda list
+
- name: Build Binary
- env:
- CONDA_TOKEN: ${{ secrets.ANACONDA_TOKEN }}
run: |
- conda install -y conda-build
- conda install -y anaconda-client
+ # set a default value to the conda_token if needed (like from forks)
+ : "${CONDA_TOKEN:=${{ secrets.ANACONDA_TOKEN }}}"
+ : "${CONDA_TOKEN:=default_value}"
+ echo "CONDA_TOKEN=$CONDA_TOKEN" >> $GITHUB_ENV
conda config --add channels rmg
- conda config --set anaconda_upload yes
- conda build --token $CONDA_TOKEN --user rmg .conda
\ No newline at end of file
+ conda config --add channels conda-forge
+ CONDA_PY=${{ matrix.python-version }} conda build --token $CONDA_TOKEN --user rmg .
+
+ result:
+ if: ${{ always() }}
+ runs-on: ubuntu-latest
+ name: Final Results
+ needs: [build]
+ steps:
+ - run: exit 1
+ # see https://github.com/orgs/community/discussions/26822?sort=new#discussioncomment-8285141
+ if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') || contains(needs.*.result, 'skipped') }}
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 73857615fe..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,46 +0,0 @@
-language: c
-sudo: false
-
-env:
- global:
- - secure: fd2HDrPvxMLHOXar7HyUZh0v+C5WkCfzhRzlBn+aePayrQn5FFrT68ENyr1v4sIpKESxYUOAwqtpDPUhF3M596GgGeU5yQc4q+sZmfwbVrjOvKCYuA5037vHmkWP1+mxQtRJMz/DC6vAoyasZkN5WD2n6WYIGupu/FxIJzYyzMM=
- - secure: N/LNeY6kM4g2TOWiwuZhevrFOVSSDXj42hOWmbWVfwjLxVTMpFO29os3TiXxod8q6ezpDkXi5yVcGGtKLQZr6CgoiGW8zS+UKsUntKH4HI4dZdK+hKAKwaWU641aDNIq/XqSzNJ8v7ZmLLo3sk878aTHODPRPBfb7Q9wk2l3sDs=
- - secure: jSRuOGP7vghJet6oelSprSLGBd/eYuUaU3UM+QnZW0GhETWyXxjg/17hpl2R2NzVLhVz2m0KRaoT9JmG+EyJ9NW47JwTaKL+CNtxg2gPTM3/6iVNdVrXM1vOTvaJhtZ/C2SbLDg/+JPLLUMfT9/9oXkiz+enh7VzZuZDywgoTsw=
- - secure: Y4tbLIssPDkRQZp2lLUtou/YZr3APmhfD3o3tUcv1mqveeg6NBYZ8o6bLSULO3wdm88s1sug23VbP+Gt74XN4Ylbt4GjhKkOxvd+Vut7dR0o0cxsH372AWHYPicCOkuYAfeDK5cqxeXkGibHW1eBdduAAT82wcW5NcD9USyv9ig=
-
-stages:
- - name: deploy
- if: branch = stable AND type = push
-
-before_install:
- - cd ..
- # Install miniconda
- - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget http://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; fi
- - bash miniconda.sh -b -p $HOME/miniconda
- - export PATH=$HOME/miniconda/bin:$PATH
- # Update conda
- - conda update --yes conda
- - conda info -a
-
-
-jobs:
- include:
- - stage: deploy
- install:
- # Setup conda build
- - conda install -y conda-build
- - conda install -y anaconda-client
- - conda config --add channels rmg
- - conda config --set anaconda_upload yes
- script:
- - conda build --token $CONDA_TOKEN --user rmg RMG-database/.conda
- - os: osx
- install:
- # Setup conda build
- - conda install -y conda-build
- - conda install -y anaconda-client
- - conda config --add channels rmg
- - conda config --set anaconda_upload yes
- script:
- - conda build --token $CONDA_TOKEN --user rmg RMG-database/.conda
diff --git a/README.rst b/README.rst
index 01cfc58026..a0d345e24c 100644
--- a/README.rst
+++ b/README.rst
@@ -9,7 +9,4 @@ This repository contains the database of chemical information used by Reaction
Mechanism Generator (RMG) to determine the chemical parameters needed by its
generated chemistry models.
-
-.. image:: https://badges.gitter.im/ReactionMechanismGenerator/RMG-database.svg
- :alt: Join the chat at https://gitter.im/ReactionMechanismGenerator/RMG-database
- :target: https://gitter.im/ReactionMechanismGenerator/RMG-database?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
\ No newline at end of file
+See the `RMG-Py repository for links to our documentation `_.
diff --git a/families/images/Diels_alder_addition_Aromatic.png b/families/images/Diels_alder_addition_Aromatic.png
new file mode 100644
index 0000000000..ee90c3bcfe
Binary files /dev/null and b/families/images/Diels_alder_addition_Aromatic.png differ
diff --git a/families/images/Surface_Abstraction_Beta_vdW.png b/families/images/Surface_Abstraction_Beta_vdW.png
new file mode 100644
index 0000000000..cc7e65d1f1
Binary files /dev/null and b/families/images/Surface_Abstraction_Beta_vdW.png differ
diff --git a/families/images/Surface_Addition_Single_vdW.png b/families/images/Surface_Addition_Single_vdW.png
deleted file mode 100644
index 51a5c6c371..0000000000
Binary files a/families/images/Surface_Addition_Single_vdW.png and /dev/null differ
diff --git a/families/images/Surface_Adsorption_Abstraction_vdW.png b/families/images/Surface_Adsorption_Abstraction_vdW.png
deleted file mode 100644
index 7c07e1c060..0000000000
Binary files a/families/images/Surface_Adsorption_Abstraction_vdW.png and /dev/null differ
diff --git a/families/images/Surface_Association_Beta.png b/families/images/Surface_Association_Beta.png
new file mode 100644
index 0000000000..bf5dc01100
Binary files /dev/null and b/families/images/Surface_Association_Beta.png differ
diff --git a/families/images/Surface_Bidentate_Dissociation.png b/families/images/Surface_Bidentate_Dissociation.png
index b506fe0406..36330383f6 100644
Binary files a/families/images/Surface_Bidentate_Dissociation.png and b/families/images/Surface_Bidentate_Dissociation.png differ
diff --git a/families/images/Surface_Dissociation_Beta_vdW.png b/families/images/Surface_Dissociation_Beta_vdW.png
new file mode 100644
index 0000000000..002f1ab50f
Binary files /dev/null and b/families/images/Surface_Dissociation_Beta_vdW.png differ
diff --git a/families/images/Surface_Dissociation_Double.png b/families/images/Surface_Dissociation_Double.png
new file mode 100644
index 0000000000..dba0cf8e92
Binary files /dev/null and b/families/images/Surface_Dissociation_Double.png differ
diff --git a/families/images/Surface_Dissociation_to_Bidentate.png b/families/images/Surface_Dissociation_to_Bidentate.png
new file mode 100644
index 0000000000..76d6fd0cf3
Binary files /dev/null and b/families/images/Surface_Dissociation_to_Bidentate.png differ
diff --git a/families/images/Surface_Monodentate_to_Bidentate.png b/families/images/Surface_Monodentate_to_Bidentate.png
new file mode 100644
index 0000000000..ac7c30a638
Binary files /dev/null and b/families/images/Surface_Monodentate_to_Bidentate.png differ
diff --git a/families/images/Surface_vdW_to_Bidentate.png b/families/images/Surface_vdW_to_Bidentate.png
new file mode 100644
index 0000000000..fbbb8fee72
Binary files /dev/null and b/families/images/Surface_vdW_to_Bidentate.png differ
diff --git a/families/rmg_reaction_families.pdf b/families/rmg_reaction_families.pdf
index 397d478d4e..6ee7602595 100644
Binary files a/families/rmg_reaction_families.pdf and b/families/rmg_reaction_families.pdf differ
diff --git a/input/forbiddenStructures.py b/input/forbiddenStructures.py
index ba5bae8feb..689bf90a42 100644
--- a/input/forbiddenStructures.py
+++ b/input/forbiddenStructures.py
@@ -24,13 +24,13 @@
entry(
label = "Od_rad",
- group =
+ group =
"""
1 O u1 {2,D}
2 R ux {1,D}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -38,14 +38,14 @@
entry(
label = "N_birad_triplet_2singleBonds",
- group =
+ group =
"""
1 N u2 p0 {2,S} {3,S}
2 R ux {1,S}
3 R ux {1,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -58,9 +58,44 @@
1 C u4 p0
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
+u"""
+
+""",
+)
+
+entry(
+ label = "NNOH",
+ molecule =
+"""
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 N u0 p1 c0 {1,S} {3,D}
+3 N u1 p1 c0 {2,D}
+4 H u0 p0 c0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
u"""
+See https://doi.org/10.1002/cphc.202200373 for a discussion of the NNOH radical.
+""",
+)
+entry(
+ label = "NNOOH",
+ molecule =
+"""
+multiplicity 2
+1 N u1 p1 c0 {2,D}
+2 N u0 p1 c0 {1,D} {3,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 O u0 p2 c0 {3,S} {5,S}
+5 H u0 p0 c0 {4,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+See https://doi.org/10.1002/cphc.202200373 for a discussion of the NNOOH radical.
""",
)
@@ -94,14 +129,14 @@
entry(
label = "O3",
- group =
+ group =
"""
1 O u[0,1] {2,S}
2 O u0 {1,S} {3,S}
3 O u[0,1] {2,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -109,7 +144,7 @@
entry(
label = "O4..",
- group =
+ group =
"""
1 O u1 {2,S}
2 O u0 {1,S} {3,S}
@@ -117,7 +152,7 @@
4 O u1 {3,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -125,7 +160,7 @@
entry(
label = "cyclic-C3O",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -133,7 +168,7 @@
4 C u0 {1,S} {3,T}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -154,6 +189,23 @@
""",
)
+
+entry(
+ label = "LiCONSFCl",
+ group =
+"""
+1 Li u0 p0 c0 {2,S}
+2 C ux px c0 {3,[S,D,T]} {1,S}
+3 [O,N,S,F,Cl] ux px c0 {2,[S,D,T]}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+In these species the other atom tends to take most of the charge from the Li
+so it isn't really bonded to C
+""",
+)
+
entry(
label = "CO_birad",
species =
@@ -457,6 +509,20 @@
""",
)
+entry(
+ label = "LiX",
+ species =
+"""
+1 Li u0 p0 c0 {2,S}
+2 X u0 p0 c0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+Don't allow Li to plate
+""",
+)
+
entry(
label = "CO2X2",
species =
@@ -492,7 +558,6 @@
""",
)
-
entry(
label = "O2X2",
species =
diff --git a/input/kinetics/families/1,2_Elimination_LiR/groups.py b/input/kinetics/families/1,2_Elimination_LiR/groups.py
new file mode 100644
index 0000000000..666de1b53d
--- /dev/null
+++ b/input/kinetics/families/1,2_Elimination_LiR/groups.py
@@ -0,0 +1,308 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Elimination_LiR/groups"
+shortDesc = ""
+longDesc = """
+If a birad, the reacting site *3 must be a triplet instead of singlet for this reaction family.
+"""
+
+template(reactants=["Root"], products=["YJ", "R2"], ownReverse=False)
+
+reverse = "1,2_Elimination_LiR_reverse"
+reversible = True
+
+reactantNum = 1
+
+productNum = 2
+
+autoGenerated = True
+
+recipe(actions=[
+ ['BREAK_BOND', '*1', 1, '*4'],
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['FORM_BOND', '*3', 1, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 R!H u[0,1] {1,[S,D,B]} {3,S}
+3 *3 R u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_Ext-3R-R",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 O u[0,1] {2,S} {5,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 R!H ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-3R-R_5R!H->C",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 O u[0,1] {2,S} {5,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-3R-R_5R!H->C_Ext-5C-R",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {4,S}
+2 *2 C u[0,1] r0 {1,S} {3,S}
+3 *3 O u0 r0 {2,S} {5,[S,D,T,B,Q]}
+4 *4 Li u0 r0 {1,S}
+5 C ux {3,[S,D,T,B,Q]} {6,[S,D,T,B,Q]}
+6 R!H ux {5,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-3R-R_5R!H->C_2R!H-u0",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 {1,[S,D,B]} {3,S}
+3 *3 O u[0,1] {2,S} {5,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_Ext-3R-R_5R!H->C_N-2R!H-u0",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u1 {1,[S,D,B]} {3,S}
+3 *3 O u[0,1] {2,S} {5,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_Ext-3R-R_N-5R!H->C",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 O u[0,1] {2,S} {5,S}
+4 *4 Li u0 {1,S}
+5 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "Root_3R->F",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 F u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "Root_N-3R->F",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 [Cl,O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "Root_N-3R->F_3ClHO->Cl",
+ group =
+"""
+1 *1 R!H u0 r0 {2,S} {4,S}
+2 *2 C u[0,1] r0 {1,S} {3,S}
+3 *3 Cl u0 r0 {2,S}
+4 *4 Li u0 r0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "Root_N-3R->F_N-3ClHO->Cl",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 12,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C",
+ group =
+"""
+1 *1 C u0 r0 {2,S} {4,S}
+2 *2 C u0 r0 {1,S} {3,S}
+3 *3 [O,H] u0 r0 {2,S}
+4 *4 Li u0 r0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C",
+ group =
+"""
+1 *1 [O,N] u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O",
+ group =
+"""
+1 *1 N u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 16,
+ label = "Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u1 {1,[S,D,B]} {3,S}
+3 *3 [O,H] u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_Ext-3R-R
+ L3: Root_Ext-3R-R_5R!H->C
+ L4: Root_Ext-3R-R_5R!H->C_Ext-5C-R
+ L4: Root_Ext-3R-R_5R!H->C_2R!H-u0
+ L4: Root_Ext-3R-R_5R!H->C_N-2R!H-u0
+ L3: Root_Ext-3R-R_N-5R!H->C
+ L2: Root_3R->F
+ L2: Root_N-3R->F
+ L3: Root_N-3R->F_3ClHO->Cl
+ L3: Root_N-3R->F_N-3ClHO->Cl
+ L4: Root_N-3R->F_N-3ClHO->Cl_2R!H-u0
+ L5: Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C
+ L5: Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C
+ L6: Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O
+ L6: Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O
+ L4: Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0
+"""
+)
+
+forbidden(
+ label = "carbontoss1",
+ group =
+"""
+1 *1 C u[0,1] {2,[S,D,B]} {4,S}
+2 *2 R!H u[0,1] {1,[S,D,B]} {3,S}
+3 *3 R!H u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+
+""",
+)
+
+forbidden(
+ label = "carbontoss2",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 R!H u[0,1] {1,[S,D,B]} {3,S}
+3 *3 C u[0,1] {2,S}
+4 *4 Li u0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+
+""",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/1,2_Elimination_LiR/rules.py b/input/kinetics/families/1,2_Elimination_LiR/rules.py
new file mode 100644
index 0000000000..3d97c0bd1c
--- /dev/null
+++ b/input/kinetics/families/1,2_Elimination_LiR/rules.py
@@ -0,0 +1,263 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Elimination_LiR/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = Arrhenius(A=(1.03918e+13,'s^-1'), n=0.266823, Ea=(48.3171,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=1.169679482110385e-15, var=39.92165140788381, Tref=1000.0, N=10, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 10 training reactions at node Root
+ Total Standard Deviation in ln(k): 12.666634483937468"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 10 training reactions at node Root
+Total Standard Deviation in ln(k): 12.666634483937468""",
+ longDesc =
+"""
+BM rule fitted to 10 training reactions at node Root
+Total Standard Deviation in ln(k): 12.666634483937468
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-3R-R",
+ kinetics = Arrhenius(A=(1.6261e+14,'s^-1'), n=0.234207, Ea=(97.5599,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=1.3496301716658287e-15, var=117.48228499542802, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_Ext-3R-R',), comment="""BM rule fitted to 4 training reactions at node Root_Ext-3R-R
+ Total Standard Deviation in ln(k): 21.72917220914441"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_Ext-3R-R
+Total Standard Deviation in ln(k): 21.72917220914441""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root_Ext-3R-R
+Total Standard Deviation in ln(k): 21.72917220914441
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_3R->F",
+ kinetics = Arrhenius(A=(2.47928e+13,'s^-1'), n=0.0523532, Ea=(1.77399,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_3R->F',), comment="""BM rule fitted to 1 training reactions at node Root_3R->F
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_3R->F
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_3R->F
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_N-3R->F",
+ kinetics = ArrheniusBM(A=(9.15357e+73,'s^-1'), n=-18.0653, w0=(694200,'J/mol'), E0=(88944.5,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.23368013843917557, var=24.196303894894704, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_N-3R->F',), comment="""BM rule fitted to 5 training reactions at node Root_N-3R->F
+ Total Standard Deviation in ln(k): 10.448375480286963"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_N-3R->F
+Total Standard Deviation in ln(k): 10.448375480286963""",
+ longDesc =
+"""
+BM rule fitted to 5 training reactions at node Root_N-3R->F
+Total Standard Deviation in ln(k): 10.448375480286963
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_Ext-3R-R_5R!H->C",
+ kinetics = ArrheniusBM(A=(1.64384e+31,'s^-1'), n=-4.72524, w0=(741100,'J/mol'), E0=(9911.42,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.2101947124094859, var=22.757813031131217, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_Ext-3R-R_5R!H->C',), comment="""BM rule fitted to 3 training reactions at node Root_Ext-3R-R_5R!H->C
+ Total Standard Deviation in ln(k): 10.091746105650293"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_Ext-3R-R_5R!H->C
+Total Standard Deviation in ln(k): 10.091746105650293""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_Ext-3R-R_5R!H->C
+Total Standard Deviation in ln(k): 10.091746105650293
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_Ext-3R-R_N-5R!H->C",
+ kinetics = ArrheniusBM(A=(8.9357e+12,'s^-1'), n=-0.0182849, w0=(741100,'J/mol'), E0=(44201.3,'J/mol'), Tmin=(303.03,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_N-5R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_N-5R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_N-5R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_N-5R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_N-3R->F_3ClHO->Cl",
+ kinetics = Arrhenius(A=(1.03509e+13,'s^-1'), n=-0.00858289, Ea=(0.072948,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-3R->F_3ClHO->Cl',), comment="""BM rule fitted to 1 training reactions at node Root_N-3R->F_3ClHO->Cl
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-3R->F_3ClHO->Cl
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-3R->F_3ClHO->Cl
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 8,
+ label = "Root_N-3R->F_N-3ClHO->Cl",
+ kinetics = ArrheniusBM(A=(1.29924e+76,'s^-1'), n=-18.6883, w0=(670425,'J/mol'), E0=(91614.5,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.1798781997982985, var=29.964308720037355, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl',), comment="""BM rule fitted to 4 training reactions at node Root_N-3R->F_N-3ClHO->Cl
+ Total Standard Deviation in ln(k): 11.42580783512062"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_N-3R->F_N-3ClHO->Cl
+Total Standard Deviation in ln(k): 11.42580783512062""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root_N-3R->F_N-3ClHO->Cl
+Total Standard Deviation in ln(k): 11.42580783512062
+""",
+)
+
+entry(
+ index = 9,
+ label = "Root_Ext-3R-R_5R!H->C_Ext-5C-R",
+ kinetics = ArrheniusBM(A=(6.8039e+12,'s^-1'), n=0.472198, w0=(741100,'J/mol'), E0=(24627.2,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_5R!H->C_Ext-5C-R',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_Ext-5C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_Ext-5C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_Ext-5C-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 10,
+ label = "Root_Ext-3R-R_5R!H->C_2R!H-u0",
+ kinetics = ArrheniusBM(A=(1.20441e+16,'s^-1'), n=0.126298, w0=(741100,'J/mol'), E0=(26896.2,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_5R!H->C_2R!H-u0',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_2R!H-u0
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 11,
+ label = "Root_Ext-3R-R_5R!H->C_N-2R!H-u0",
+ kinetics = ArrheniusBM(A=(9.54823e+14,'s^-1'), n=0.356617, w0=(741100,'J/mol'), E0=(23860.3,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_5R!H->C_N-2R!H-u0',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_N-2R!H-u0
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_5R!H->C_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 12,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0",
+ kinetics = ArrheniusBM(A=(5.35515e+82,'s^-1'), n=-20.7752, w0=(646867,'J/mol'), E0=(94952.3,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=6.2408646361924225, var=15.321571089508458, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_2R!H-u0',), comment="""BM rule fitted to 3 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0
+ Total Standard Deviation in ln(k): 23.527654521747877"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0
+Total Standard Deviation in ln(k): 23.527654521747877""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0
+Total Standard Deviation in ln(k): 23.527654521747877
+""",
+)
+
+entry(
+ index = 13,
+ label = "Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0",
+ kinetics = ArrheniusBM(A=(8.59528e+12,'s^-1'), n=0.518458, w0=(741100,'J/mol'), E0=(19375.8,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0',), comment="""BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 14,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C",
+ kinetics = Arrhenius(A=(2.73627e+11,'s^-1'), n=0.349755, Ea=(9.42179,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_1R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 15,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C",
+ kinetics = ArrheniusBM(A=(3.89714e+88,'s^-1'), n=-22.5246, w0=(688150,'J/mol'), E0=(100610,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-7.291464897902951, var=118.70114603009215, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C
+ Total Standard Deviation in ln(k): 40.16186336585088"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C
+Total Standard Deviation in ln(k): 40.16186336585088""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C
+Total Standard Deviation in ln(k): 40.16186336585088
+""",
+)
+
+entry(
+ index = 16,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O",
+ kinetics = Arrhenius(A=(8.67089e+11,'s^-1'), n=0.423598, Ea=(30.5741,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 17,
+ label = "Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O",
+ kinetics = Arrhenius(A=(4.01353e+10,'s^-1'), n=0.395823, Ea=(4.40595,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-3R->F_N-3ClHO->Cl_2R!H-u0_N-1R!H->C_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/1,2_Elimination_LiR/training/dictionary.txt b/input/kinetics/families/1,2_Elimination_LiR/training/dictionary.txt
new file mode 100644
index 0000000000..7e2636ee93
--- /dev/null
+++ b/input/kinetics/families/1,2_Elimination_LiR/training/dictionary.txt
@@ -0,0 +1,172 @@
+CH2LiO2
+multiplicity 2
+1 *3 O u0 p2 c0 {3,S} {6,S}
+2 *1 O u0 p2 c0 {3,S} {4,S}
+3 *2 C u1 p0 c0 {1,S} {2,S} {5,S}
+4 *4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+
+CHO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u1 p0 c0 {1,D} {3,S}
+3 H u0 p0 c0 {2,S}
+
+HLiO
+1 *3 O u0 p2 c0 {2,S} {3,S}
+2 *4 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+C3H4LiO3
+multiplicity 2
+1 *3 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 *4 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+CO2
+1 *1 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+
+C2H4LiO
+multiplicity 2
+1 *3 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 *4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+C2H3LiO3
+1 *3 O u0 p2 c0 {4,S} {5,S}
+2 *1 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+6 *4 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+CH3LiO
+1 *3 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *4 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+CH3LiO2
+1 *1 O u0 p2 c0 {3,S} {4,S}
+2 *3 O u0 p2 c0 {3,S} {7,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 *4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {2,S}
+
+CH2O
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+CH2FLiO
+1 *3 F u0 p3 c0 {3,S}
+2 *1 O u0 p2 c0 {3,S} {4,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 *4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+FLi
+1 *3 F u0 p3 c0 {2,S}
+2 *4 Li u0 p0 c0 {1,S}
+
+CH2ClLiO
+1 *3 Cl u0 p3 c0 {3,S}
+2 *1 O u0 p2 c0 {3,S} {4,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 *4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+ClLi
+1 *3 Cl u0 p3 c0 {2,S}
+2 *4 Li u0 p0 c0 {1,S}
+
+Li2O
+1 *3 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 *4 Li u0 p0 c0 {1,S}
+
+CH2Li2O2
+1 *1 O u0 p2 c0 {3,S} {5,S}
+2 *3 O u0 p2 c0 {3,S} {4,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 Li u0 p0 c0 {2,S}
+5 *4 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+C2H5Li
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 *4 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 *3 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+C2H4
+1 *2 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *1 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+HLi
+1 *4 Li u0 p0 c0 {2,S}
+2 *3 H u0 p0 c0 {1,S}
+
+CH4LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 *2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *4 Li u0 p0 c0 {1,S}
+4 *3 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+CH3N
+1 *1 N u0 p1 c0 {2,D} {5,S}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+C2H4LiO2
+multiplicity 2
+1 *3 O u0 p2 c0 {3,S} {4,S}
+2 *1 O u0 p2 c0 {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+4 *2 C u1 p0 c0 {1,S} {2,S} {9,S}
+5 *4 Li u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+
diff --git a/input/kinetics/families/1,2_Elimination_LiR/training/reactions.py b/input/kinetics/families/1,2_Elimination_LiR/training/reactions.py
new file mode 100644
index 0000000000..7fa69265be
--- /dev/null
+++ b/input/kinetics/families/1,2_Elimination_LiR/training/reactions.py
@@ -0,0 +1,392 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Elimination_LiR"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 0,
+ label = "CH2LiO2 <=> CHO + HLiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.59528e+12,'s^-1'), n=0.518458, Ea=(46.6821,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7137053723954238,B=2.3116450623393274,E=-0.028001584137479975,L=6.399784910596449,A=1.0368467911904864,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[CH]O <=> O=[CH] + [Li]O
+TS method summary for TS3 in [Li]O[CH]O <=> O=[CH] + [Li]O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.87424500 0.73974100 0.09129300
+O 1.75669700 -0.86642000 0.56373200
+C 2.58297500 -1.53104300 1.11098800
+O 4.34504900 0.32811600 0.72907500
+H 3.18306800 -1.22575300 1.99446700
+H 5.29067900 0.34100400 0.85554700
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1999.2439277651972 J/mol
+""",
+)
+
+entry(
+ index = 1,
+ label = "C3H4LiO3 <=> CO2 + C2H4LiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.8039e+12,'s^-1'), n=0.472198, Ea=(80.6393,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.697605152955986,B=2.4862812293190593,E=-4.1974148204255775,L=2.872587466227873,A=0.9296666032597313,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC(=O)OC[CH2] <=> [Li]OC[CH2] + O=C=O
+TS method summary for TS5 in [Li]OC(=O)OC[CH2] <=> [Li]OC[CH2] + O=C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.96701700 -1.13824900 -0.15895200
+O -2.46633000 -0.36661300 0.95261900
+C -2.69790600 0.67181500 1.43609500
+O -2.94565100 1.68669600 1.92040500
+O 0.40069800 -0.49898400 -0.72233300
+C 1.57073700 0.05670900 -1.18237000
+C 2.36317900 0.78094900 -0.14406400
+H 3.22407400 1.38251500 -0.42071200
+H 1.38606500 0.76055700 -2.02340400
+H 2.23211500 -0.72124600 -1.63365600
+H 2.17387800 0.59315200 0.90679500
+
+1D rotors:
+* Invalidated! pivots: [5, 6], dihedral: [1, 5, 6, 7], invalidation reason: Could not read energies
+pivots: [6, 7], dihedral: [5, 6, 7, 8], rotor symmetry: 6, max scan energy: 2.96 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2756.9521557186627 J/mol
+""",
+)
+
+entry(
+ index = 2,
+ label = "C2H3LiO3 <=> CO2 + CH3LiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.20441e+16,'s^-1'), n=0.126298, Ea=(88.7875,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC(=O)OC <=> [Li]OC + O=C=O
+TS method summary for TS6 in [Li]OC(=O)OC <=> [Li]OC + O=C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 5.04185400 -0.21852400 -0.03835700
+O 3.25247800 -1.11583300 -0.33860900
+C 2.36548400 -0.96686600 -1.08434100
+O 1.48076300 -0.83623400 -1.81011400
+O 5.78339200 1.00550600 -0.77059600
+C 6.45425100 2.04955800 -1.36939800
+H 6.65054600 1.86707100 -2.44274400
+H 7.43841500 2.24421200 -0.90374600
+H 5.89254200 3.00108300 -1.31473500
+
+1D rotors:
+pivots: [5, 6], dihedral: [1, 5, 6, 7], rotor symmetry: 1, max scan energy: 0.04 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 3,
+ label = "CH3LiO2 <=> CH2O + HLiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.67089e+11,'s^-1'), n=0.423598, Ea=(30.5741,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.3926746359480871,B=2.430874130082185,E=1.0969664301003625,L=5.26139300991494,A=1.5271891998852951,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCO <=> [Li]O + C=O
+TS method summary for TS1 in [Li]OCO <=> [Li]O + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.78877200 1.23956200 0.07241700
+O 1.16034300 1.22721100 0.06023400
+C 1.39171400 0.02905600 0.10137600
+O -1.23386700 -0.34577400 -0.14916500
+H 2.09301700 -0.42740500 -0.61722300
+H 0.93534900 -0.62824800 0.84977000
+H -1.80092200 -1.09439000 -0.31740600
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2852.7605391591824 J/mol
+""",
+)
+
+entry(
+ index = 4,
+ label = "CH2FLiO <=> CH2O + FLi",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.47928e+13,'s^-1'), n=0.0523532, Ea=(1.77399,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.2544775378071295,B=3.8435703486608483,E=0.6208281974105191,L=9.542895814948176,A=0.874941113523824,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCF <=> [Li]F + C=O
+TS method summary for TS8 in [Li]OCF <=> [Li]F + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.73637500 -1.17722200 0.05547000
+O -1.11732500 -0.58062100 -0.02059700
+C -0.94937700 0.62629300 0.04611900
+F 1.57678000 0.22561600 -0.04626600
+H -0.44153100 1.10232800 0.89325700
+H -1.33358500 1.29011400 -0.74570300
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2167.4878926153538 J/mol
+""",
+)
+
+entry(
+ index = 5,
+ label = "CH2ClLiO <=> CH2O + ClLi",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.03509e+13,'s^-1'), n=-0.00858289, Ea=(0.072948,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.49973283735009,B=-1.363801515776159,E=11.671483182052631,L=9.85481016575309,A=1.7632374622781073,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCCl <=> [Li]Cl + C=O
+TS method summary for TS9 in [Li]OCCl <=> [Li]Cl + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.00585826 -1.37546289 0.07580004
+O -1.70390800 -0.51267720 -0.03767821
+C -1.46459925 0.68381718 0.02582362
+Cl 1.51931730 0.06620772 0.01568653
+H -1.66736974 1.34639439 -0.82976904
+H -1.07809033 1.15217907 0.94055248
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 3473.2666466033193 J/mol
+""",
+)
+
+entry(
+ index = 6,
+ label = "Li2O + CH2O <=> CH2Li2O2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(60668.5,'cm^3/(mol*s)'), n=2.48558, Ea=(-44.9325,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-6.237601960913579,B=9.474105452618263,E=1.6329134231750524,L=15.17499274807221,A=3.5783211118513525,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[Li] + O=C <=> [Li]OCO[Li]
+TS method summary for TS7 in [Li]O[Li] + O=C <=> [Li]OCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 2, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 5.26122200 -2.16488900 -1.43635000
+O 4.16581000 -1.00650700 -0.36650500
+C 3.47523600 -0.27668500 0.30751600
+O 6.20422100 -3.16227700 -2.35757800
+Li 7.12770800 -4.13885600 -3.25991800
+H 3.91701800 0.40191100 1.05639300
+H 2.37777900 -0.26233900 0.19860600
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 6992.493889350707 J/mol
+""",
+)
+
+entry(
+ index = 7,
+ label = "C2H5Li <=> C2H4 + HLi",
+ degeneracy = 3.0,
+ kinetics = Arrhenius(A=(8.20882e+11,'s^-1'), n=0.349755, Ea=(9.42179,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.7309852404322288,B=2.3232904077453425,E=0.8831500260776306,L=9.72969334125182,A=0.8794516433866466,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]CC <=> C=C + [Li][H]
+TS method summary for TS1 in [Li]CC <=> C=C + [Li][H]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.61403700 1.76672400 -0.70523200
+C 3.74739900 0.26828100 -0.29006800
+C 3.52138200 0.70505900 1.17932700
+H 4.80154100 0.39826200 -0.56515800
+H 3.51666300 -0.79317000 -0.40677400
+H 3.24455300 1.78628400 1.30105800
+H 4.38360300 0.59677300 1.85446400
+H 2.69158000 0.15525900 1.63951800
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [4, 1, 2, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2061.526158269488 J/mol
+""",
+)
+
+entry(
+ index = 8,
+ label = "CH4LiN <=> CH3N + HLi",
+ degeneracy = 3.0,
+ kinetics = Arrhenius(A=(1.20406e+11,'s^-1'), n=0.395823, Ea=(4.40595,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.708205772421329,B=2.5356143801240445,E=0.23679859997568953,L=9.472880397262012,A=1.0783864304846873,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NC <=> N=C + [Li][H]
+TS method summary for TS3 in [Li]NC <=> N=C + [Li][H]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.98746585 -0.52738947 -0.00361624
+N 0.45147254 0.30262629 0.00522525
+C -0.92611851 -0.15975163 0.00259877
+H 0.43824316 1.31338637 0.01447592
+H -1.17387633 -0.78335004 0.87699274
+H -1.17511304 -0.76926072 -0.88130944
+H -1.65482009 0.66025357 0.00967177
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2139.3398223085746 J/mol
+""",
+)
+
+entry(
+ index = 9,
+ label = "C2H4LiO2 <=> CHO + CH3LiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(9.54823e+14,'s^-1'), n=0.356617, Ea=(65.3953,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[CH]OC <=> O=[CH] + [Li]OC
+TS method summary for TS4 in [Li]O[CH]OC <=> O=[CH] + [Li]OC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.11938200 0.00580200 2.75259500
+O 1.62524600 -0.33884700 1.46544000
+C 1.40627800 -0.20972400 0.31263200
+O 4.61316700 0.60600100 2.66739200
+C 5.89388500 1.11128900 2.64427900
+H 2.12421500 0.21023400 -0.43421800
+H 6.36930700 1.11127900 3.64324000
+H 5.93134700 2.15747800 2.28506200
+H 6.56678700 0.53303700 1.98263000
+
+1D rotors:
+pivots: [4, 5], dihedral: [1, 4, 5, 7], rotor symmetry: 1, max scan energy: 0.04 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
diff --git a/input/kinetics/families/1,2_Intra_Elimination_LiR/groups.py b/input/kinetics/families/1,2_Intra_Elimination_LiR/groups.py
new file mode 100644
index 0000000000..c88ccae497
--- /dev/null
+++ b/input/kinetics/families/1,2_Intra_Elimination_LiR/groups.py
@@ -0,0 +1,115 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Intra_Elimination_LiR/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["YJ"], ownReverse=False)
+
+reverse = "1,2_Intra_Elimination_LiR_reverse"
+reversible = True
+
+reactantNum = 1
+
+productNum = 1
+
+autoGenerated = True
+
+recipe(actions=[
+ ['BREAK_BOND', '*1', 1, '*4'],
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['FORM_BOND', '*3', 1, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R!H u[0,1] {2,[S,D,B]} {4,S}
+2 *2 R!H u[0,1] r1 {1,[S,D,B]} {3,S}
+3 *3 R u[0,1] r1 {2,S}
+4 *4 Li u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] r1 {1,[S,D,B]} {3,S} {5,[S,D,T,B,Q]}
+3 *3 O u[0,1] r1 {2,S} {7,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 R!H ux {2,[S,D,T,B,Q]} {6,[S,D,T,B,Q]}
+6 C ux {5,[S,D,T,B,Q]}
+7 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u[0,1] r1 {1,[S,D,B]} {3,S} {5,S}
+3 *3 O u[0,1] r1 {2,S} {7,S}
+4 *4 Li u0 {1,S}
+5 R!H u0 r1 {2,S} {6,[S,D,T,B,Q]}
+6 C ux r1 {5,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+7 C u0 r1 {3,S}
+8 R!H ux {6,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u0 r1 {1,[S,D,B]} {3,S} {5,[S,D,T,B,Q]}
+3 *3 O u[0,1] r1 {2,S} {7,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 R!H ux r1 {2,[S,D,T,B,Q]} {6,[S,D,T,B,Q]}
+6 C ux r1 {5,[S,D,T,B,Q]}
+7 C ux r1 {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0",
+ group =
+"""
+1 *1 O u[0,1] {2,[S,D,B]} {4,S}
+2 *2 C u1 r1 {1,[S,D,B]} {3,S} {5,[S,D,T,B,Q]}
+3 *3 O u[0,1] r1 {2,S} {7,[S,D,T,B,Q]}
+4 *4 Li u0 {1,S}
+5 R!H ux r1 {2,[S,D,T,B,Q]} {6,[S,D,T,B,Q]}
+6 C ux r1 {5,[S,D,T,B,Q]}
+7 C ux r1 {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R
+ L3: Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R
+ L3: Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0
+ L3: Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0
+"""
+)
+
diff --git a/input/kinetics/families/1,2_Intra_Elimination_LiR/rules.py b/input/kinetics/families/1,2_Intra_Elimination_LiR/rules.py
new file mode 100644
index 0000000000..9fd9983b09
--- /dev/null
+++ b/input/kinetics/families/1,2_Intra_Elimination_LiR/rules.py
@@ -0,0 +1,83 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Intra_Elimination_LiR/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(6.42031e+27,'s^-1'), n=-3.90391, w0=(741100,'J/mol'), E0=(69929.1,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.16499692467391203, var=3.733835948653539, Tref=1000.0, N=4, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 4 training reactions at node Root
+ Total Standard Deviation in ln(k): 4.288342043643909"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 4.288342043643909""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 4.288342043643909
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R",
+ kinetics = ArrheniusBM(A=(1.84651e+28,'s^-1'), n=-3.88359, w0=(741100,'J/mol'), E0=(78301.7,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.23079195197825578, var=6.309766423662204, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R',), comment="""BM rule fitted to 3 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R
+ Total Standard Deviation in ln(k): 5.615623123573294"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R
+Total Standard Deviation in ln(k): 5.615623123573294""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R
+Total Standard Deviation in ln(k): 5.615623123573294
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R",
+ kinetics = ArrheniusBM(A=(3.20531e+14,'s^-1'), n=0.219161, w0=(741100,'J/mol'), E0=(39190.5,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0",
+ kinetics = ArrheniusBM(A=(3.92231e+16,'s^-1'), n=-0.357468, w0=(741100,'J/mol'), E0=(73987.2,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0",
+ kinetics = ArrheniusBM(A=(2.28642e+17,'s^-1'), n=-0.785762, w0=(741100,'J/mol'), E0=(37715.9,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3R-R_Ext-5R!H-R_Ext-5R!H-R_Ext-3R-R_N-2R!H-u0
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/1,2_Intra_Elimination_LiR/training/dictionary.txt b/input/kinetics/families/1,2_Intra_Elimination_LiR/training/dictionary.txt
new file mode 100644
index 0000000000..07ef6fdb19
--- /dev/null
+++ b/input/kinetics/families/1,2_Intra_Elimination_LiR/training/dictionary.txt
@@ -0,0 +1,124 @@
+C3H4LiO3
+multiplicity 2
+1 *3 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 *4 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C3H4LiO3-2
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 *3 O u0 p2 c0 {5,S} {7,S}
+3 *1 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 *2 C u1 p0 c0 {1,S} {3,D}
+7 *4 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+C3H5LiO2
+1 *3 O u0 p2 c0 {4,S} {5,S}
+2 *1 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 *2 C u0 p0 c0 {1,S} {2,S} {3,S} {9,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 *4 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C3H5LiO2-2
+1 *3 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 *2 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 *4 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+C4H7LiO2
+1 *3 O u0 p2 c0 {5,S} {6,S}
+2 *1 O u0 p2 c0 {5,S} {7,S}
+3 C u0 p0 c0 {4,S} {5,S} {10,S} {11,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {1,S} {2,S} {3,S} {12,S}
+6 C u0 p0 c0 {1,S} {4,S} {13,S} {14,S}
+7 *4 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+
+C4H7LiO2-2
+1 *3 O u0 p2 c0 {5,S} {7,S}
+2 *1 O u0 p2 c0 {6,D}
+3 C u0 p0 c0 {4,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {3,S} {6,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 *2 C u0 p0 c0 {2,D} {4,S} {14,S}
+7 *4 Li u0 p0 c0 {1,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+
+C5H9LiO2
+1 *3 O u0 p2 c0 {6,S} {7,S}
+2 *1 O u0 p2 c0 {6,S} {8,S}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {7,S} {9,S} {10,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {4,S} {15,S}
+7 C u0 p0 c0 {1,S} {5,S} {16,S} {17,S}
+8 *4 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+C5H9LiO2-2
+1 *3 O u0 p2 c0 {6,S} {8,S}
+2 *1 O u0 p2 c0 {7,D}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {13,S} {14,S}
+6 C u0 p0 c0 {1,S} {4,S} {15,S} {16,S}
+7 *2 C u0 p0 c0 {2,D} {5,S} {17,S}
+8 *4 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {7,S}
+
diff --git a/input/kinetics/families/1,2_Intra_Elimination_LiR/training/reactions.py b/input/kinetics/families/1,2_Intra_Elimination_LiR/training/reactions.py
new file mode 100644
index 0000000000..f31f49e118
--- /dev/null
+++ b/input/kinetics/families/1,2_Intra_Elimination_LiR/training/reactions.py
@@ -0,0 +1,203 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "1,2_Intra_Elimination_LiR"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 0,
+ label = "C3H4LiO3 <=> C3H4LiO3-2",
+ degeneracy = 2.0,
+ kinetics = Arrhenius(A=(4.57285e+17,'s^-1'), n=-0.785762, Ea=(69.0722,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.0810004035910854,B=2.1395342731524263,E=1.574243739442836,L=12.72791320115644,A=0.4805246849919219,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[C]1OCCO1 <=> [Li]OCCO[C]=O
+TS method summary for TS2 in [Li]O[C]1OCCO1 <=> [Li]OCCO[C]=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+O 2.59867100 -0.18728600 -1.35132100
+C 1.56185200 0.17450300 -0.90257500
+O 1.11484400 0.02288600 0.33185500
+C -0.23857200 0.51166800 0.61927300
+C -1.32472800 -0.56246600 0.36870000
+O -2.30958000 -0.11570300 -0.47987400
+Li -3.43222200 0.30055100 -1.54626500
+H -0.43948800 1.37473300 -0.01534500
+H -0.17835100 0.82215200 1.66217400
+H -1.74337700 -0.86314000 1.34516400
+H -0.80689900 -1.45309200 -0.02768100
+
+1D rotors:
+pivots: [2, 3], dihedral: [1, 2, 3, 4], rotor symmetry: 1, max scan energy: 38.37 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 5], rotor symmetry: 1, max scan energy: 11.02 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: Could not read energies
+pivots: [5, 6], dihedral: [4, 5, 6, 7], rotor symmetry: 1, max scan energy: 0.22 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1716.0525411150861 J/mol
+""",
+)
+
+entry(
+ index = 1,
+ label = "C3H5LiO2 <=> C3H5LiO2-2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.22949e+12,'s^-1'), n=0.0425752, Ea=(-0.0643594,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6463081864477556,B=1.3642592064572354,E=2.83101426768693,L=6.499926586799369,A=1.3639449338060428,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC1OCC1 <=> O=CCCO[Li]
+TS method summary for TS7 in [Li]OC1OCC1 <=> O=CCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -1.13093225 -1.47782476 -0.52938465
+O -1.71415457 0.21718059 -0.13786126
+C -0.60832813 0.42268843 0.42486000
+O 0.44495341 -1.09247544 0.19796183
+C 1.46777571 -0.14965544 -0.03324304
+C 0.58784040 1.07473776 -0.26303306
+H -0.57618074 0.46549170 1.52547654
+H 2.11736192 -0.42023494 -0.87312379
+H 2.10541851 -0.03741197 0.85335523
+H 0.35290002 1.23671989 -1.31600879
+H 0.90847788 2.01537435 0.18857794
+
+1D rotors:
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molTwo consecutive points are inconsistent by more than 0.39 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 3], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 383.9871972817142 J/mol
+""",
+)
+
+entry(
+ index = 2,
+ label = "C4H7LiO2 <=> C4H7LiO2-2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3.92231e+16,'s^-1'), n=-0.357468, Ea=(90.256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.8258378208381454,B=2.5221250810295626,E=1.614714374506913,L=12.761980701907916,A=0.608203513102231,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC1OCCC1 <=> O=CCCCO[Li]
+TS method summary for TS5 in [Li]OC1OCCC1 <=> O=CCCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.22951500 -8.28055600 1.65539800
+O 0.68519100 -2.60872700 -1.25971800
+C 1.79766000 -3.06680400 -1.37724100
+O 3.01142700 -7.05534000 0.98825700
+C 3.68295800 -5.99093900 0.43042200
+C 2.84010400 -5.23936600 -0.64613300
+C 2.57331200 -3.76228300 -0.29332800
+H 2.31835000 -3.00937400 -2.36068900
+H 4.62637300 -6.32192200 -0.04005100
+H 3.97620800 -5.26015300 1.20678500
+H 1.88728800 -5.76856000 -0.73282900
+H 3.32837000 -5.29792800 -1.62623300
+H 3.53476000 -3.24110100 -0.18547300
+H 2.02723700 -3.67881900 0.64973300
+
+1D rotors:
+pivots: [3, 7], dihedral: [2, 3, 7, 6], rotor symmetry: 1, max scan energy: 7.20 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason: Could not read energies
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+pivots: [6, 7], dihedral: [5, 6, 7, 3], rotor symmetry: 1, max scan energy: 25.95 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1791.841785505636 J/mol
+""",
+)
+
+entry(
+ index = 3,
+ label = "C5H9LiO2 <=> C5H9LiO2-2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3.20531e+14,'s^-1'), n=0.219161, Ea=(98.9886,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.959149780060317,B=2.5380295864101,E=2.0257428425399984,L=13.738628302899908,A=0.411629130549155,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC1OCCCC1 <=> O=CCCCCO[Li]
+TS method summary for TS6 in [Li]OC1OCCCC1 <=> O=CCCCCO[Li]:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 1,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -2.20746100 -3.36971300 -3.70952100
+O 1.25187300 1.95405300 -1.04632200
+C 1.04640200 0.88280800 -1.56571700
+O -0.61905500 -3.34540100 -3.52965300
+C 0.75057700 -3.40515400 -3.37372500
+C 1.33014800 -2.18325400 -2.63924900
+C 1.17117900 -0.87493200 -3.42052900
+C 1.82427700 0.33951000 -2.74581800
+H 0.23182200 0.22912600 -1.18197300
+H 1.26013900 -3.48345200 -4.35441500
+H 1.04873000 -4.30660500 -2.80769200
+H 2.39940800 -2.39734300 -2.50177400
+H 0.89693800 -2.08083500 -1.63590000
+H 0.10876700 -0.72003200 -3.63956100
+H 1.66878000 -0.97713400 -4.39144100
+H 1.96556900 1.17143800 -3.44430700
+H 2.82865100 0.08557500 -2.37989200
+
+1D rotors:
+* Invalidated! pivots: [3, 8], dihedral: [2, 3, 8, 7], invalidation reason:
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason:
+* Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 8], invalidation reason: Another conformer for TS6 exists which is 7.66 kJ/mol lower.
+* Invalidated! pivots: [7, 8], dihedral: [6, 7, 8, 3], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1729.1474107981676 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond/groups.py b/input/kinetics/families/Cation_Addition_MultipleBond/groups.py
new file mode 100644
index 0000000000..710c186fbd
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond/groups.py
@@ -0,0 +1,115 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["RJ_R_Y"], ownReverse=False)
+
+reverse = "Cation_Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 1
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['GAIN_RADICAL', '*2', 1],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['LOSE_CHARGE', '*3', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R!H u0 {2,[B,D,T]}
+2 *2 R!H u0 {1,[B,D,T]}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_1R!H->N",
+ group =
+"""
+1 *1 N u0 r0 {2,D}
+2 *2 C u0 {1,D}
+3 *3 Li u0 p0 c+1 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_N-1R!H->N",
+ group =
+"""
+1 *1 O u0 {2,[B,D,T]}
+2 *2 C u0 {1,[B,D,T]}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1R!H->N_2R!H-inRing",
+ group =
+"""
+1 *1 O u0 {2,[B,D,T]}
+2 *2 C u0 r1 {1,[B,D,T]}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_N-1R!H->N_N-2R!H-inRing",
+ group =
+"""
+1 *1 O u0 {2,[B,D,T]}
+2 *2 C u0 r0 {1,[B,D,T]}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_1R!H->N
+ L2: Root_N-1R!H->N
+ L3: Root_N-1R!H->N_2R!H-inRing
+ L3: Root_N-1R!H->N_N-2R!H-inRing
+"""
+)
+
+forbidden(
+ label = "O2d",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 O u0 {1,D}
+""",
+ shortDesc = """""",
+ longDesc =
+"""
+
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond/rules.py b/input/kinetics/families/Cation_Addition_MultipleBond/rules.py
new file mode 100644
index 0000000000..b3c615af3d
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond/rules.py
@@ -0,0 +1,83 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusChargeTransferBM(A=(4.77752e+08,'m^3/(mol*s)'), n=0.196434, w0=(362933,'J/mol'), E0=(36293.3,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.07422928322961901, var=9.529900931242484, Tref=1000.0, N=3, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 3 training reactions at node Root
+ Total Standard Deviation in ln(k): 6.3752306998135735"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root
+Total Standard Deviation in ln(k): 6.3752306998135735""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root
+Total Standard Deviation in ln(k): 6.3752306998135735
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_1R!H->N",
+ kinetics = ArrheniusChargeTransferBM(A=(16042,'m^3/(mol*s)'), n=1.52384, w0=(306200,'J/mol'), E0=(30620,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->N
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1R!H->N",
+ kinetics = ArrheniusChargeTransferBM(A=(3.92132e+11,'m^3/(mol*s)'), n=-0.667361, w0=(391300,'J/mol'), E0=(39130,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-1.841226598634285, var=51.94290239962386, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->N',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->N
+ Total Standard Deviation in ln(k): 19.074608775904846"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->N
+Total Standard Deviation in ln(k): 19.074608775904846""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1R!H->N
+Total Standard Deviation in ln(k): 19.074608775904846
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_N-1R!H->N_2R!H-inRing",
+ kinetics = ArrheniusChargeTransferBM(A=(303.68,'m^3/(mol*s)'), n=1.59181, w0=(391300,'J/mol'), E0=(39130,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->N_2R!H-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->N_2R!H-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->N_2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1R!H->N_2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_N-1R!H->N_N-2R!H-inRing",
+ kinetics = ArrheniusChargeTransferBM(A=(500060,'m^3/(mol*s)'), n=1.50675, w0=(391300,'J/mol'), E0=(39130,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->N_N-2R!H-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->N_N-2R!H-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->N_N-2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1R!H->N_N-2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond/training/dictionary.txt b/input/kinetics/families/Cation_Addition_MultipleBond/training/dictionary.txt
new file mode 100644
index 0000000000..ea32815bae
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond/training/dictionary.txt
@@ -0,0 +1,59 @@
+CH3N
+1 *1 N u0 p1 c0 {2,D} {5,S}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+Li
+1 *3 Li u0 p0 c+1
+
+CH3LiN
+multiplicity 2
+1 *1 N u0 p1 c0 {2,S} {3,S} {6,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CH2O
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+CH2LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+C3H4O3
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+C3H4LiO3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 *3 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond/training/reactions.py b/input/kinetics/families/Cation_Addition_MultipleBond/training/reactions.py
new file mode 100644
index 0000000000..b3cb543eed
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond/training/reactions.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "CH3N + Li <=> CH3LiN",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.6042e+10,'cm^3/(mol*s)'), n=1.52384, Ea=(2.76381,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.65419313965326,B=1.2542197583042969,E=-0.21990942778263972,L=-9.14111680402368,A=3.645314481406821,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.04604, dn = +|- 0.00586241, dEa = +|- 0.0335255 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + N=C <=> [Li]N[CH2]
+""",
+)
+
+entry(
+ index = 2,
+ label = "CH2O + Li <=> CH2LiO",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(5.0006e+11,'cm^3/(mol*s)'), n=1.50675, Ea=(-0.985354,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.4735938637413528,B=2.67486764340657,E=-5.09678040094995,L=-4.876934525239067,A=3.9944267641274602,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.03252, dn = +|- 0.00416775, dEa = +|- 0.0238342 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + C=O <=> [Li]O[CH2]
+""",
+)
+
+entry(
+ index = 3,
+ label = "C3H4O3 + Li <=> C3H4LiO3",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(3.0368e+08,'cm^3/(mol*s)'), n=1.59181, Ea=(-29.6323,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.018725993417632,B=4.93569039446143,E=-4.315782362402726,L=-1.68464261284562,A=3.5698295734222367,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.03673, dn = +|- 0.0046983, dEa = +|- 0.0268683 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + O=C1OCCO1 <=> [Li]O[C]1OCCO1
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/groups.py b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/groups.py
new file mode 100644
index 0000000000..7312af69ed
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/groups.py
@@ -0,0 +1,252 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond_Disprop/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["R1", "R2"], ownReverse=False)
+
+reverse = "Cation_Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['BREAK_BOND', '*4', 1, '*5'],
+ ['CHANGE_BOND', '*5', 1, '*6'],
+ ['CHANGE_BOND', '*2', 1, '*4'],
+ ['LOSE_RADICAL', '*6', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *4 R!H u0 {2,S} {3,[S,D,B]}
+2 *5 R!H u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 R!H u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_4R!H->C",
+ group =
+"""
+1 *4 R!H u0 {2,S} {3,[S,D,B]}
+2 *5 R!H u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_4R!H->C_2R!H->N",
+ group =
+"""
+1 *4 R!H u0 {2,S} {3,[S,D,B]}
+2 *5 N u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_4R!H->C_N-2R!H->N",
+ group =
+"""
+1 *4 R!H u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R",
+ group =
+"""
+1 *4 R!H u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,D} {7,[S,D,T,B,Q]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 O u0 {3,D}
+6 *3 Li u0 p0 c+1
+7 O u0 {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O",
+ group =
+"""
+1 *4 O u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 C u0 {1,[S,D,B]} {5,D} {7,[S,D,T,B,Q]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 O u0 {3,D}
+6 *3 Li u0 p0 c+1
+7 O u0 {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C",
+ group =
+"""
+1 *4 O u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 C u0 {1,[S,D,B]} {5,D} {7,[S,D,T,B,Q]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 O u0 {3,D}
+6 *3 Li u0 p0 c+1
+7 O u0 r0 {3,[S,D,T,B,Q]} {8,S}
+8 C u0 r0 {7,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C",
+ group =
+"""
+1 *4 O u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 C u0 {1,[S,D,B]} {5,D} {7,[S,D,T,B,Q]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 O u0 {3,D}
+6 *3 Li u0 p0 c+1
+7 O u0 r0 {3,[S,D,T,B,Q]} {8,S}
+8 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {7,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O",
+ group =
+"""
+1 *4 C u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 R!H u0 {1,[S,D,B]} {5,D} {7,[S,D,T,B,Q]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 O u0 {3,D}
+6 *3 Li u0 p0 c+1
+7 O u0 r0 {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "Root_4R!H->C_N-2R!H->N_1R!H->O",
+ group =
+"""
+1 *4 O u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 C u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "Root_4R!H->C_N-2R!H->N_N-1R!H->O",
+ group =
+"""
+1 *4 C u0 {2,S} {3,[S,D,B]}
+2 *5 C u0 {1,S} {4,[S,D,B]}
+3 *2 C u0 {1,[S,D,B]} {5,[B,D,T]}
+4 *6 C u1 {2,[S,D,B]}
+5 *1 R!H u0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "Root_N-4R!H->C",
+ group =
+"""
+1 *4 R!H u0 r0 {2,S} {3,S}
+2 *5 R!H u0 r0 {1,S} {4,S}
+3 *2 R!H u0 r0 {1,S} {5,[B,D,T]}
+4 *6 [I,P,Br,Cl,N,Si,S,F,Li,O] u1 r0 {2,S}
+5 *1 R!H u0 r0 {3,[B,D,T]}
+6 *3 Li u0 p0 c+1 r0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_4R!H->C
+ L3: Root_4R!H->C_2R!H->N
+ L3: Root_4R!H->C_N-2R!H->N
+ L4: Root_4R!H->C_N-2R!H->N_Ext-3R!H-R
+ L5: Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O
+ L6: Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C
+ L6: Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C
+ L5: Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O
+ L4: Root_4R!H->C_N-2R!H->N_1R!H->O
+ L4: Root_4R!H->C_N-2R!H->N_N-1R!H->O
+ L2: Root_N-4R!H->C
+"""
+)
+
+forbidden(
+ label = "O2d",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 O u0 {1,D}
+""",
+ shortDesc = """""",
+ longDesc =
+"""
+
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/rules.py b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/rules.py
new file mode 100644
index 0000000000..7f90ec4235
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/rules.py
@@ -0,0 +1,187 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond_Disprop/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusChargeTransfer(A=(5.16116,'m^3/(mol*s)'), n=2.06799, Ea=(23.8116,'kJ/mol'), V0=(0,'V'), alpha=0.0714286, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-7.39083189245573e-16, var=32.42017750533938, Tref=1000.0, N=7, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 7 training reactions at node Root
+ Total Standard Deviation in ln(k): 11.414704775475835"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 7 training reactions at node Root
+Total Standard Deviation in ln(k): 11.414704775475835""",
+ longDesc =
+"""
+BM rule fitted to 7 training reactions at node Root
+Total Standard Deviation in ln(k): 11.414704775475835
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_4R!H->C",
+ kinetics = ArrheniusChargeTransfer(A=(4.21373,'m^3/(mol*s)'), n=2.06943, Ea=(32.3362,'kJ/mol'), V0=(0,'V'), alpha=0.0833333, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=1.968210667012667e-16, var=23.211130849050264, Tref=1000.0, N=6, data_mean=0.0, correlation='Root_4R!H->C',), comment="""BM rule fitted to 6 training reactions at node Root_4R!H->C
+ Total Standard Deviation in ln(k): 9.658398926110465"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 6 training reactions at node Root_4R!H->C
+Total Standard Deviation in ln(k): 9.658398926110465""",
+ longDesc =
+"""
+BM rule fitted to 6 training reactions at node Root_4R!H->C
+Total Standard Deviation in ln(k): 9.658398926110465
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-4R!H->C",
+ kinetics = ArrheniusChargeTransferBM(A=(17.4272,'m^3/(mol*s)'), n=2.05933, w0=(912800,'J/mol'), E0=(91280,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-4R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_4R!H->C_2R!H->N",
+ kinetics = ArrheniusChargeTransferBM(A=(2454.37,'m^3/(mol*s)'), n=0.869935, w0=(741700,'J/mol'), E0=(74170,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_2R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_2R!H->N
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_2R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_2R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_4R!H->C_N-2R!H->N",
+ kinetics = ArrheniusChargeTransfer(A=(1.17927,'m^3/(mol*s)'), n=2.30933, Ea=(46.1668,'kJ/mol'), V0=(0,'V'), alpha=0.1, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-8.997534477772191e-17, var=12.290291821566104, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N',), comment="""BM rule fitted to 5 training reactions at node Root_4R!H->C_N-2R!H->N
+ Total Standard Deviation in ln(k): 7.028102501974961"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_4R!H->C_N-2R!H->N
+Total Standard Deviation in ln(k): 7.028102501974961""",
+ longDesc =
+"""
+BM rule fitted to 5 training reactions at node Root_4R!H->C_N-2R!H->N
+Total Standard Deviation in ln(k): 7.028102501974961
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R",
+ kinetics = ArrheniusChargeTransfer(A=(3.22243,'m^3/(mol*s)'), n=2.25711, Ea=(41.0301,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=1.3121404446751113e-16, var=21.950387375810646, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_Ext-3R!H-R',), comment="""BM rule fitted to 3 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R
+ Total Standard Deviation in ln(k): 9.392432527528594"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R
+Total Standard Deviation in ln(k): 9.392432527528594""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R
+Total Standard Deviation in ln(k): 9.392432527528594
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_4R!H->C_N-2R!H->N_1R!H->O",
+ kinetics = ArrheniusChargeTransferBM(A=(0.419384,'m^3/(mol*s)'), n=2.21898, w0=(918800,'J/mol'), E0=(91880,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_1R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_1R!H->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 8,
+ label = "Root_4R!H->C_N-2R!H->N_N-1R!H->O",
+ kinetics = ArrheniusChargeTransferBM(A=(0.162517,'m^3/(mol*s)'), n=2.55635, w0=(716200,'J/mol'), E0=(71620,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_N-1R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_N-1R!H->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_N-1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_N-1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 9,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O",
+ kinetics = ArrheniusChargeTransfer(A=(14.6322,'m^3/(mol*s)'), n=2.02179, Ea=(27.5025,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.249383619443048e-16, var=22.995040632494337, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O
+ Total Standard Deviation in ln(k): 9.613335076294824"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O
+Total Standard Deviation in ln(k): 9.613335076294824""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O
+Total Standard Deviation in ln(k): 9.613335076294824
+""",
+)
+
+entry(
+ index = 10,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O",
+ kinetics = ArrheniusChargeTransferBM(A=(0.15629,'m^3/(mol*s)'), n=2.72776, w0=(750800,'J/mol'), E0=(75080,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_N-1R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 11,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C",
+ kinetics = ArrheniusChargeTransferBM(A=(95.603,'m^3/(mol*s)'), n=1.70021, w0=(918800,'J/mol'), E0=(91880,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 12,
+ label = "Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C",
+ kinetics = ArrheniusChargeTransferBM(A=(2.23949,'m^3/(mol*s)'), n=2.34337, w0=(918800,'J/mol'), E0=(91880,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-2R!H->N_Ext-3R!H-R_1R!H->O_Ext-7R!H-R_N-8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/dictionary.txt b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/dictionary.txt
new file mode 100644
index 0000000000..47ebcf1590
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/dictionary.txt
@@ -0,0 +1,201 @@
+C3H4LiO3
+multiplicity 2
+1 *4 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 *1 O u0 p2 c0 {6,D}
+4 *5 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *6 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+Li
+1 *3 Li u0 p0 c+1
+
+CLi2O3
+1 *1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 *4 O u0 p2 c0 {4,D}
+4 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 *3 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+C2H4
+1 *5 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *6 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C4H6N
+multiplicity 2
+1 *1 N u0 p1 c0 {5,T}
+2 *5 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 *4 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *6 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 *2 C u0 p0 c0 {1,T} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+C2H2LiN
+1 *1 N u0 p1 c0 {3,D} {4,S}
+2 *4 C u0 p0 c0 {3,D} {5,S} {6,S}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C3H5O2
+multiplicity 2
+1 *4 O u0 p2 c0 {3,S} {5,S}
+2 *1 O u0 p2 c0 {5,D}
+3 *5 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 *6 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {1,S} {2,D} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+CHLiO2
+1 *1 O u0 p2 c0 {3,S} {4,S}
+2 *4 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+
+C3H5O2-2
+multiplicity 2
+1 *6 O u1 p2 c0 {4,S}
+2 *1 O u0 p2 c0 {5,D}
+3 *4 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 *5 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {2,D} {3,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+C2H3LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 *4 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+CH2O
+1 *6 O u0 p2 c0 {2,D}
+2 *5 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+C3H7N2
+multiplicity 2
+1 *5 N u0 p1 c0 {3,S} {5,S} {8,S}
+2 *1 N u0 p1 c0 {4,D} {12,S}
+3 *4 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 *2 C u0 p0 c0 {2,D} {3,S} {9,S}
+5 *6 C u1 p0 c0 {1,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+C2H4LiN
+1 *1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 *4 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+CH3N
+1 *5 N u0 p1 c0 {2,D} {5,S}
+2 *6 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+C4H9O2S
+multiplicity 2
+1 *2 S u0 p0 c0 {2,D} {3,D} {4,S} {6,S}
+2 *1 O u0 p2 c0 {1,D}
+3 O u0 p2 c0 {1,D}
+4 *4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+7 *6 C u1 p0 c0 {5,S} {15,S} {16,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+
+C2H5LiO2S
+1 *2 S u0 p0 c0 {2,S} {3,D} {4,S} {5,D}
+2 *1 O u0 p2 c0 {1,S} {6,S}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 *4 C u0 p0 c0 {1,D} {10,S} {11,S}
+6 *3 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C5H9O3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {8,S}
+2 *4 O u0 p2 c0 {5,S} {8,S}
+3 *1 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 *5 C u0 p0 c0 {2,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 *6 C u1 p0 c0 {5,S} {16,S} {17,S}
+8 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+C3H5LiO3
+1 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {6,S} {7,S}
+3 *4 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 *3 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/reactions.py b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/reactions.py
new file mode 100644
index 0000000000..6cd2bf3c94
--- /dev/null
+++ b/input/kinetics/families/Cation_Addition_MultipleBond_Disprop/training/reactions.py
@@ -0,0 +1,100 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Addition_MultipleBond_Disprop/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C3H4LiO3 + Li <=> CLi2O3 + C2H4",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(2.23949e+06,'cm^3/(mol*s)'), n=2.34337, Ea=(16.2698,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-1.3791416734787092,B=0.9825775784337702,E=1.344561385839825,L=1.6867692078977448,A=2.9918711355986547,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Li]OC(=O)OC[CH2] + [Lip] <=> C=C + [Li]OC(=O)O[Li]
+""",
+)
+
+entry(
+ index = 2,
+ label = "C4H6N + Li <=> C2H2LiN + C2H4",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(162517,'cm^3/(mol*s)'), n=2.55635, Ea=(59.4607,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: N#CCC[CH2] + [Lip] <=> C=C + [Li]N=C=C
+""",
+)
+
+entry(
+ index = 3,
+ label = "C3H5O2 + Li <=> CHLiO2 + C2H4",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(419384,'cm^3/(mol*s)'), n=2.21898, Ea=(48.2832,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.0247091484586592,B=2.5777645372278832,E=0.3431344611927818,L=9.346538089381045,A=0.8860009592023523,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: O=COC[CH2] + [Lip] <=> C=C + [Li]OC=O
+""",
+)
+
+entry(
+ index = 4,
+ label = "C3H5O2-2 + Li <=> C2H3LiO + CH2O",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.74272e+07,'cm^3/(mol*s)'), n=2.05933, Ea=(-27.3358,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.2490249849978214,B=2.6960753668589854,E=2.1706425235190108,L=14.985510873166351,A=0.7334126588566799,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: O=CCC[O] + [Lip] <=> O=C + [Li]OC=C
+""",
+)
+
+entry(
+ index = 5,
+ label = "C3H7N2 + Li <=> C2H4LiN + CH3N",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(2.45437e+09,'cm^3/(mol*s)'), n=0.869935, Ea=(-36.817,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: N=CCN[CH2] + [Lip] <=> N=C + [Li]NC=C
+""",
+)
+
+entry(
+ index = 6,
+ label = "C4H9O2S + Li <=> C2H5LiO2S + C2H4",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(312580,'cm^3/(mol*s)'), n=2.72776, Ea=(68.0852,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: O=S(=O)(C)CC[CH2] + [Lip] <=> C=C + [Li]OS(=O)(=C)C
+""",
+)
+
+entry(
+ index = 7,
+ label = "C5H9O3 + Li <=> C3H5LiO3 + C2H4",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(9.5603e+07,'cm^3/(mol*s)'), n=1.70021, Ea=(38.7352,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.1943783976602214,B=0.894154843812189,E=5.394280864555017,L=8.956244842828797,A=0.23494209646668668,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: CCOC(=O)OC[CH2] + [Lip] <=> C=C + [Li]OC(=O)OCC
+""",
+)
+
diff --git a/input/kinetics/families/Cation_Li_Abstraction/groups.py b/input/kinetics/families/Cation_Li_Abstraction/groups.py
new file mode 100644
index 0000000000..e907f99258
--- /dev/null
+++ b/input/kinetics/families/Cation_Li_Abstraction/groups.py
@@ -0,0 +1,101 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Li_Abstraction/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["RJ_R_Y", "R2"], ownReverse=False)
+
+reverse = "Cation_Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*2', 1, '*3'],
+ ['GAIN_RADICAL', '*1', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R u0 {2,S}
+2 *2 [Cl,F,H] u0 {1,S}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_2ClFH->H",
+ group =
+"""
+1 *1 C u0 r0 {2,S}
+2 *2 H u0 r0 {1,S}
+3 *3 Li u0 p0 c+1 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_N-2ClFH->H",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 [Cl,F] u0 {1,S}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_N-2ClFH->H_2ClF->Cl",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 Cl u0 {1,S}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_N-2ClFH->H_N-2ClF->Cl",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 F u0 {1,S}
+3 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_2ClFH->H
+ L2: Root_N-2ClFH->H
+ L3: Root_N-2ClFH->H_2ClF->Cl
+ L3: Root_N-2ClFH->H_N-2ClF->Cl
+"""
+)
+
diff --git a/input/kinetics/families/Cation_Li_Abstraction/rules.py b/input/kinetics/families/Cation_Li_Abstraction/rules.py
new file mode 100644
index 0000000000..ae9a7eff81
--- /dev/null
+++ b/input/kinetics/families/Cation_Li_Abstraction/rules.py
@@ -0,0 +1,82 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Li_Abstraction/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusChargeTransfer(A=(62.0316,'m^3/(mol*s)'), n=2.36922, Ea=(79.4161,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=5.998356318514794e-16, var=505.91409392421104, Tref=1000.0, N=3, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 3 training reactions at node Root
+ Total Standard Deviation in ln(k): 45.09157225395358"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root
+Total Standard Deviation in ln(k): 45.09157225395358""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root
+Total Standard Deviation in ln(k): 45.09157225395358
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_2ClFH->H",
+ kinetics = ArrheniusChargeTransferBM(A=(0.16967,'m^3/(mol*s)'), n=3.09275, w0=(329000,'J/mol'), E0=(32900,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_2ClFH->H',), comment="""BM rule fitted to 1 training reactions at node Root_2ClFH->H
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_2ClFH->H
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_2ClFH->H
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-2ClFH->H",
+ kinetics = ArrheniusChargeTransferBM(A=(0.00259259,'m^3/(mol*s)'), n=3.67979, w0=(464500,'J/mol'), E0=(46450,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=1.3891038420719923, var=3.145896398464165, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-2ClFH->H',), comment="""BM rule fitted to 2 training reactions at node Root_N-2ClFH->H
+ Total Standard Deviation in ln(k): 7.045944110173986"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-2ClFH->H
+Total Standard Deviation in ln(k): 7.045944110173986""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-2ClFH->H
+Total Standard Deviation in ln(k): 7.045944110173986
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_N-2ClFH->H_2ClF->Cl",
+ kinetics = ArrheniusChargeTransferBM(A=(4264.72,'m^3/(mol*s)'), n=1.78731, w0=(398000,'J/mol'), E0=(39800,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-2ClFH->H_2ClF->Cl',), comment="""BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_2ClF->Cl
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_2ClF->Cl
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_2ClF->Cl
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_N-2ClFH->H_N-2ClF->Cl",
+ kinetics = ArrheniusChargeTransferBM(A=(329.871,'m^3/(mol*s)'), n=2.2276, w0=(531000,'J/mol'), E0=(53100,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-2ClFH->H_N-2ClF->Cl',), comment="""BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_N-2ClF->Cl
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_N-2ClF->Cl
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-2ClFH->H_N-2ClF->Cl
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
diff --git a/input/kinetics/families/Cation_Li_Abstraction/training/dictionary.txt b/input/kinetics/families/Cation_Li_Abstraction/training/dictionary.txt
new file mode 100644
index 0000000000..72b73869ee
--- /dev/null
+++ b/input/kinetics/families/Cation_Li_Abstraction/training/dictionary.txt
@@ -0,0 +1,43 @@
+CH4
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+Li
+1 *3 Li u0 p0 c+1
+
+CH3
+multiplicity 2
+1 *1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+HLi
+1 *3 Li u0 p0 c0 {2,S}
+2 *2 H u0 p0 c0 {1,S}
+
+CH3F
+1 *2 F u0 p3 c0 {2,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+FLi
+1 *2 F u0 p3 c0 {2,S}
+2 *3 Li u0 p0 c0 {1,S}
+
+CH3Cl
+1 *2 Cl u0 p3 c0 {2,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+ClLi
+1 *2 Cl u0 p3 c0 {2,S}
+2 *3 Li u0 p0 c0 {1,S}
+
diff --git a/input/kinetics/families/Cation_Li_Abstraction/training/reactions.py b/input/kinetics/families/Cation_Li_Abstraction/training/reactions.py
new file mode 100644
index 0000000000..7d6cb1e14d
--- /dev/null
+++ b/input/kinetics/families/Cation_Li_Abstraction/training/reactions.py
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_Li_Abstraction/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "CH4 + Li <=> CH3 + HLi",
+ degeneracy = 4.0,
+ kinetics = ArrheniusChargeTransfer(A=(678680,'cm^3/(mol*s)'), n=3.09275, Ea=(215.149,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.39470212956669,B=1.6022203760198037,E=1.4946262264125265,L=10.49010693814182,A=0.4943151788298517,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.37586, dn = +|- 0.0415605, dEa = +|- 0.237673 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + C <=> [CH3] + [Li][H]
+""",
+)
+
+entry(
+ index = 2,
+ label = "CH3F + Li <=> CH3 + FLi",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(3.29871e+08,'cm^3/(mol*s)'), n=2.2276, Ea=(25.9849,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8681935378213759,B=2.373498032935028,E=0.32859248603303737,L=5.004153890392606,A=0.8849787213003473,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.4013, dn = +|- 0.043947, dEa = +|- 0.251321 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CF <=> [CH3] + [Li]F
+""",
+)
+
+entry(
+ index = 3,
+ label = "CH3Cl + Li <=> CH3 + ClLi",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(4.26472e+09,'cm^3/(mol*s)'), n=1.78731, Ea=(-2.88557,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.40096476096442,B=0.7611537028291462,E=0.36695032193123533,L=5.182274882516309,A=0.578711830957878,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.33939, dn = +|- 0.0380613, dEa = +|- 0.217662 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CCl <=> [CH3] + [Li]Cl
+""",
+)
+
diff --git a/input/kinetics/families/Cation_NO_Ring_Opening/groups.py b/input/kinetics/families/Cation_NO_Ring_Opening/groups.py
new file mode 100644
index 0000000000..afebd329c9
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Ring_Opening/groups.py
@@ -0,0 +1,118 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Ring_Opening/groups"
+shortDesc = ""
+longDesc = """
+If a birad, the reacting site *3 must be a triplet instead of singlet for this reaction family.
+"""
+
+template(reactants=["Root"], products=["YJ"], ownReverse=False)
+
+reverse = "Cation_NO_Ring_Opening_reverse"
+reversible = True
+
+reverseMap = {'*2': '*3', '*3': '*2'}
+
+reactantNum = 2
+
+productNum = 1
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['GAIN_RADICAL', '*2', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_Ext-2R-R",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {2,S} {6,[S,D,T,B,Q]}
+6 C ux {5,[S,D,T,B,Q]} {7,S}
+7 C u0 {6,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O",
+ group =
+"""
+1 *1 O u0 r1 {2,S} {3,S}
+2 *2 C u[0,1] r1 {1,S} {5,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 r1 {2,S} {6,[S,D,T,B,Q]}
+6 C ux r1 {5,[S,D,T,B,Q]} {7,S}
+7 C u0 r1 {6,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O",
+ group =
+"""
+1 *1 N u0 r1 {2,S} {3,S}
+2 *2 C u[0,1] r1 {1,S} {5,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 r1 {2,S} {6,[S,D,T,B,Q]}
+6 C ux r1 {5,[S,D,T,B,Q]} {7,S}
+7 C u0 r1 {6,S}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_Ext-2R-R
+ L3: Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+ L4: Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O
+ L4: Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O
+"""
+)
+
diff --git a/input/kinetics/families/Cation_NO_Ring_Opening/rules.py b/input/kinetics/families/Cation_NO_Ring_Opening/rules.py
new file mode 100644
index 0000000000..c6d8adbb4d
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Ring_Opening/rules.py
@@ -0,0 +1,82 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Ring_Opening/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusChargeTransfer(A=(58120,'m^3/(mol*s)'), n=1.21832, Ea=(50.6022,'kJ/mol'), V0=(0,'V'), alpha=0.125, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-1.5745685336101335e-15, var=45.176682218361336, Tref=1000.0, N=4, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 4 training reactions at node Root
+ Total Standard Deviation in ln(k): 13.474546453398474"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 13.474546453398474""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 13.474546453398474
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-2R-R",
+ kinetics = ArrheniusChargeTransfer(A=(295357,'m^3/(mol*s)'), n=1.03263, Ea=(67.486,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-8.997534477772192e-16, var=47.31059998036416, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_Ext-2R-R',), comment="""BM rule fitted to 3 training reactions at node Root_Ext-2R-R
+ Total Standard Deviation in ln(k): 13.789109401274187"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_Ext-2R-R
+Total Standard Deviation in ln(k): 13.789109401274187""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_Ext-2R-R
+Total Standard Deviation in ln(k): 13.789109401274187
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R",
+ kinetics = ArrheniusChargeTransfer(A=(1674.36,'m^3/(mol*s)'), n=1.43292, Ea=(69.2534,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-1.124691809721524e-16, var=3.4421337695732377, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+ Total Standard Deviation in ln(k): 3.719382654880908"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 3.719382654880908""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 3.719382654880908
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O",
+ kinetics = ArrheniusChargeTransferBM(A=(714805,'m^3/(mol*s)'), n=0.521642, w0=(349800,'J/mol'), E0=(34980,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O",
+ kinetics = ArrheniusChargeTransferBM(A=(3.92201,'m^3/(mol*s)'), n=2.34419, w0=(303700,'J/mol'), E0=(30370,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
diff --git a/input/kinetics/families/Cation_NO_Ring_Opening/training/dictionary.txt b/input/kinetics/families/Cation_NO_Ring_Opening/training/dictionary.txt
new file mode 100644
index 0000000000..bd44aa8f9b
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Ring_Opening/training/dictionary.txt
@@ -0,0 +1,133 @@
+C2H4O
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+Li
+1 *3 Li u0 p0 c+1
+
+C2H4LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *2 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+C4H9N
+1 *1 N u0 p1 c0 {4,S} {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+C4H9LiN
+multiplicity 2
+1 *1 N u0 p1 c0 {4,S} {6,S} {15,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 *2 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 *3 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+C6H12O
+1 *1 O u0 p2 c0 {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+4 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {7,S} {14,S} {15,S}
+6 *2 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+7 C u0 p0 c0 {1,S} {5,S} {18,S} {19,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {7,S}
+
+C6H12LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {6,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {6,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {7,S} {15,S} {16,S}
+6 C u0 p0 c0 {1,S} {4,S} {17,S} {18,S}
+7 *2 C u1 p0 c0 {5,S} {19,S} {20,S}
+8 *3 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {5,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {7,S}
+20 H u0 p0 c0 {7,S}
+
+C4H8O
+1 *1 O u0 p2 c0 {4,S} {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+C4H8LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {4,S} {6,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 *2 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 *3 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/Cation_NO_Ring_Opening/training/reactions.py b/input/kinetics/families/Cation_NO_Ring_Opening/training/reactions.py
new file mode 100644
index 0000000000..702f925e99
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Ring_Opening/training/reactions.py
@@ -0,0 +1,61 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Ring_Opening/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C2H4O + Li <=> C2H4LiO",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(8.85706e+08,'cm^3/(mol*s)'), n=1.77542, Ea=(-0.0494826,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9429002183123382,B=0.4142522035781646,E=0.9271382422782674,L=0.5080999191526422,A=1.2701035125702795,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.16129, dn = +|- 0.0194768, dEa = +|- 0.111383 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + O1CC1 <=> [Li]OC[CH2]
+""",
+)
+
+entry(
+ index = 2,
+ label = "C4H9N + Li <=> C4H9LiN",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(7.84401e+06,'cm^3/(mol*s)'), n=2.34419, Ea=(76.6884,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7063184659079954,B=0.6546888841685338,E=1.4167685288377097,L=7.086460323740072,A=0.6763993010322846,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.4264, dn = +|- 0.0462593, dEa = +|- 0.264544 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + N1CCCC1 <=> [Li]NCCC[CH2]
+""",
+)
+
+entry(
+ index = 3,
+ label = "C6H12O + Li <=> C6H12LiO",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.42961e+12,'cm^3/(mol*s)'), n=0.521642, Ea=(61.8184,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8745309700808286,B=0.6489379258617733,E=0.27349172242979114,L=6.280608540134562,A=0.35178208431790287,comment=''), comment="""Fitted to 50 data points; dA = *|/ 3.24532, dn = +|- 0.153333, dEa = +|- 0.876872 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + O1CCCCCC1 <=> [Li]OCCCCC[CH2]
+""",
+)
+
+entry(
+ index = 4,
+ label = "C4H8O + Li <=> C4H8LiO",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.83813e+16,'cm^3/(mol*s)'), n=0.232048, Ea=(63.9513,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.975919765798433,B=0.5933221434562257,E=0.10249027371088437,L=4.734916369654065,A=0.4382337255257122,comment=''), comment="""Fitted to 50 data points; dA = *|/ 2.45172, dn = +|- 0.116808, dEa = +|- 0.667992 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + O1CCCC1 <=> [Li]OCCC[CH2]
+""",
+)
+
diff --git a/input/kinetics/families/Cation_NO_Substitution/groups.py b/input/kinetics/families/Cation_NO_Substitution/groups.py
new file mode 100644
index 0000000000..10139c8e7e
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Substitution/groups.py
@@ -0,0 +1,401 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Substitution/groups"
+shortDesc = ""
+longDesc = """
+If a birad, the reacting site *3 must be a triplet instead of singlet for this reaction family.
+"""
+
+template(reactants=["Root"], products=["O-RR_or_RRrad", "YJ"], ownReverse=False)
+
+reverse = "Cation_NO_Substitution_reverse"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['GAIN_RADICAL', '*2', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_1NO->O",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O_Ext-3R-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u0 {1,S}
+3 C u0 {1,S} {5,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_1NO->O_Ext-3R-R_2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 C u0 r0 {1,S}
+3 C u0 r0 {1,S} {5,S}
+4 *3 Li u0 p0 c+1 r0
+5 C u0 r0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-3R-R_N-2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 H u0 r0 {1,S}
+3 C u0 r0 {1,S} {5,S}
+4 *3 Li u0 p0 c+1 r0
+5 C u0 r0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_1NO->O_3R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_1NO->O_3R->C_2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "Root_1NO->O_3R->C_2R->C_Ext-2C-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,[S,D,T,B,Q]}
+3 C u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "Root_1NO->O_3R->C_N-2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 H u0 r0 {1,S}
+3 C u0 r0 {1,S}
+4 *3 Li u0 p0 c+1 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "Root_1NO->O_N-3R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "Root_1NO->O_N-3R->C_2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "Root_1NO->O_N-3R->C_2R->C_Ext-2C-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,[S,D,T,B,Q]}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 12,
+ label = "Root_1NO->O_N-3R->C_N-2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "Root_N-1NO->O",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "Root_N-1NO->O_Ext-2R-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 C u0 {1,S} {5,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "Root_N-1NO->O_Ext-2R-R_Ext-1N-R",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {6,[S,D,T,B,Q]}
+2 *2 C u0 r0 {1,S} {5,S}
+3 H u0 r0 {1,S}
+4 *3 Li u0 p0 c+1 r0
+5 C u0 r0 {2,S}
+6 R!H ux {1,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 16,
+ label = "Root_N-1NO->O_2R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 17,
+ label = "Root_N-1NO->O_2R->C_Ext-1N-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 18,
+ label = "Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 r0 {1,S} {6,[S,D,T,B,Q]}
+6 R!H ux {5,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 19,
+ label = "Root_N-1NO->O_N-2R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 20,
+ label = "Root_N-1NO->O_N-2R->C_3R->H",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 21,
+ label = "Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1
+5 C u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 22,
+ label = "Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u0 p0 c+1 r0
+5 C u0 r0 {1,S} {6,[S,D,T,B,Q]}
+6 R!H ux {5,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 23,
+ label = "Root_N-1NO->O_N-2R->C_N-3R->H",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 24,
+ label = "Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 C u0 {1,S} {5,[S,D,T,B,Q]}
+4 *3 Li u0 p0 c+1
+5 R!H ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_1NO->O
+ L3: Root_1NO->O_Ext-3R-R
+ L4: Root_1NO->O_Ext-3R-R_2R->C
+ L4: Root_1NO->O_Ext-3R-R_N-2R->C
+ L3: Root_1NO->O_3R->C
+ L4: Root_1NO->O_3R->C_2R->C
+ L5: Root_1NO->O_3R->C_2R->C_Ext-2C-R
+ L4: Root_1NO->O_3R->C_N-2R->C
+ L3: Root_1NO->O_N-3R->C
+ L4: Root_1NO->O_N-3R->C_2R->C
+ L5: Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+ L4: Root_1NO->O_N-3R->C_N-2R->C
+ L2: Root_N-1NO->O
+ L3: Root_N-1NO->O_Ext-2R-R
+ L4: Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+ L3: Root_N-1NO->O_2R->C
+ L4: Root_N-1NO->O_2R->C_Ext-1N-R
+ L5: Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R
+ L3: Root_N-1NO->O_N-2R->C
+ L4: Root_N-1NO->O_N-2R->C_3R->H
+ L5: Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R
+ L6: Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R
+ L4: Root_N-1NO->O_N-2R->C_N-3R->H
+ L5: Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R
+"""
+)
+
diff --git a/input/kinetics/families/Cation_NO_Substitution/rules.py b/input/kinetics/families/Cation_NO_Substitution/rules.py
new file mode 100644
index 0000000000..e699ff1c98
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Substitution/rules.py
@@ -0,0 +1,382 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Substitution/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusChargeTransfer(A=(0.339735,'m^3/(mol*s)'), n=2.63972, Ea=(71.3307,'kJ/mol'), V0=(0,'V'), alpha=0.0277778, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=3.823952153053182e-15, var=9.193633917678232, Tref=1000.0, N=18, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 18 training reactions at node Root
+ Total Standard Deviation in ln(k): 6.078558387753341"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 18 training reactions at node Root
+Total Standard Deviation in ln(k): 6.078558387753341""",
+ longDesc =
+"""
+BM rule fitted to 18 training reactions at node Root
+Total Standard Deviation in ln(k): 6.078558387753341
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O",
+ kinetics = ArrheniusChargeTransfer(A=(1.30887,'m^3/(mol*s)'), n=2.52389, Ea=(51.775,'kJ/mol'), V0=(0,'V'), alpha=0.0625, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-2.249383619443048e-16, var=2.336282225810139, Tref=1000.0, N=8, data_mean=0.0, correlation='Root_1NO->O',), comment="""BM rule fitted to 8 training reactions at node Root_1NO->O
+ Total Standard Deviation in ln(k): 3.0642178763170635"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 8 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 3.0642178763170635""",
+ longDesc =
+"""
+BM rule fitted to 8 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 3.0642178763170635
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1NO->O",
+ kinetics = ArrheniusChargeTransfer(A=(0.115488,'m^3/(mol*s)'), n=2.73237, Ea=(86.9753,'kJ/mol'), V0=(0,'V'), alpha=0.05, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-7.422965944162058e-16, var=0.7852653031721386, Tref=1000.0, N=10, data_mean=0.0, correlation='Root_N-1NO->O',), comment="""BM rule fitted to 10 training reactions at node Root_N-1NO->O
+ Total Standard Deviation in ln(k): 1.7764999259866798"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 10 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 1.7764999259866798""",
+ longDesc =
+"""
+BM rule fitted to 10 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 1.7764999259866798
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-3R-R",
+ kinetics = ArrheniusChargeTransfer(A=(0.731943,'m^3/(mol*s)'), n=2.46517, Ea=(51.9321,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=14.899976043759057, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R',), comment="""BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R
+ Total Standard Deviation in ln(k): 7.738375049435379"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R
+Total Standard Deviation in ln(k): 7.738375049435379""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R
+Total Standard Deviation in ln(k): 7.738375049435379
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_1NO->O_3R->C",
+ kinetics = ArrheniusChargeTransfer(A=(0.0537704,'m^3/(mol*s)'), n=2.99372, Ea=(52.8544,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.249383619443048e-16, var=0.6252581610901395, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_3R->C',), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+ Total Standard Deviation in ln(k): 1.585209527596837"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+Total Standard Deviation in ln(k): 1.585209527596837""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+Total Standard Deviation in ln(k): 1.585209527596837
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_1NO->O_N-3R->C",
+ kinetics = ArrheniusChargeTransfer(A=(46.9384,'m^3/(mol*s)'), n=2.09322, Ea=(50.5908,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.249383619443048e-16, var=5.090793804312459, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_N-3R->C',), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+ Total Standard Deviation in ln(k): 4.5232411574409275"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+Total Standard Deviation in ln(k): 4.5232411574409275""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+Total Standard Deviation in ln(k): 4.5232411574409275
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_N-1NO->O_Ext-2R-R",
+ kinetics = ArrheniusChargeTransfer(A=(0.3923,'m^3/(mol*s)'), n=2.66478, Ea=(99.8333,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.81172952430381e-16, var=0.8047578317736759, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_Ext-2R-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+ Total Standard Deviation in ln(k): 1.7984136712681347"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 1.7984136712681347""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 1.7984136712681347
+""",
+)
+
+entry(
+ index = 8,
+ label = "Root_N-1NO->O_2R->C",
+ kinetics = ArrheniusChargeTransfer(A=(0.873751,'m^3/(mol*s)'), n=2.65999, Ea=(93.4166,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-7.497945398143493e-16, var=0.9378755998816197, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-1NO->O_2R->C',), comment="""BM rule fitted to 3 training reactions at node Root_N-1NO->O_2R->C
+ Total Standard Deviation in ln(k): 1.9414651894386081"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_N-1NO->O_2R->C
+Total Standard Deviation in ln(k): 1.9414651894386081""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_N-1NO->O_2R->C
+Total Standard Deviation in ln(k): 1.9414651894386081
+""",
+)
+
+entry(
+ index = 9,
+ label = "Root_N-1NO->O_N-2R->C",
+ kinetics = ArrheniusChargeTransfer(A=(0.0210276,'m^3/(mol*s)'), n=2.80284, Ea=(77.9672,'kJ/mol'), V0=(0,'V'), alpha=0.1, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.5642973261650746e-15, var=0.65182806422055, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C',), comment="""BM rule fitted to 5 training reactions at node Root_N-1NO->O_N-2R->C
+ Total Standard Deviation in ln(k): 1.618540298175747"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_N-1NO->O_N-2R->C
+Total Standard Deviation in ln(k): 1.618540298175747""",
+ longDesc =
+"""
+BM rule fitted to 5 training reactions at node Root_N-1NO->O_N-2R->C
+Total Standard Deviation in ln(k): 1.618540298175747
+""",
+)
+
+entry(
+ index = 10,
+ label = "Root_1NO->O_Ext-3R-R_2R->C",
+ kinetics = ArrheniusChargeTransferBM(A=(0.137812,'m^3/(mol*s)'), n=2.70251, w0=(349800,'J/mol'), E0=(34980,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R_2R->C',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 11,
+ label = "Root_1NO->O_Ext-3R-R_N-2R->C",
+ kinetics = ArrheniusChargeTransferBM(A=(3.88747,'m^3/(mol*s)'), n=2.22783, w0=(400300,'J/mol'), E0=(40030,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R_N-2R->C',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 12,
+ label = "Root_1NO->O_3R->C_2R->C",
+ kinetics = ArrheniusChargeTransfer(A=(0.00621408,'m^3/(mol*s)'), n=3.375, Ea=(58.8965,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=1.6870377145822858e-16, var=0.7135037538998786, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1NO->O_3R->C_2R->C',), comment="""BM rule fitted to 2 training reactions at node Root_1NO->O_3R->C_2R->C
+ Total Standard Deviation in ln(k): 1.6933827077834618"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_1NO->O_3R->C_2R->C
+Total Standard Deviation in ln(k): 1.6933827077834618""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_1NO->O_3R->C_2R->C
+Total Standard Deviation in ln(k): 1.6933827077834618
+""",
+)
+
+entry(
+ index = 13,
+ label = "Root_1NO->O_3R->C_N-2R->C",
+ kinetics = ArrheniusChargeTransferBM(A=(4.02602,'m^3/(mol*s)'), n=2.23116, w0=(400300,'J/mol'), E0=(40030,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_3R->C_N-2R->C',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 14,
+ label = "Root_1NO->O_N-3R->C_2R->C",
+ kinetics = ArrheniusChargeTransfer(A=(9.68195,'m^3/(mol*s)'), n=2.46198, Ea=(51.4641,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=8.435188572911429e-17, var=0.19634980008381608, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_2R->C',), comment="""BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+ Total Standard Deviation in ln(k): 0.8883256884075514"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 0.8883256884075514""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 0.8883256884075514
+""",
+)
+
+entry(
+ index = 15,
+ label = "Root_1NO->O_N-3R->C_N-2R->C",
+ kinetics = ArrheniusChargeTransferBM(A=(1103.21,'m^3/(mol*s)'), n=1.35569, w0=(400300,'J/mol'), E0=(40030,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_N-2R->C',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 16,
+ label = "Root_N-1NO->O_Ext-2R-R_Ext-1N-R",
+ kinetics = ArrheniusChargeTransferBM(A=(117.529,'m^3/(mol*s)'), n=2.07905, w0=(303700,'J/mol'), E0=(30370,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-2R-R_Ext-1N-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 17,
+ label = "Root_N-1NO->O_2R->C_Ext-1N-R",
+ kinetics = ArrheniusChargeTransfer(A=(2.17011,'m^3/(mol*s)'), n=2.5453, Ea=(97.3379,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=2.81172952430381e-17, var=0.32578247857116904, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_2R->C_Ext-1N-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R
+ Total Standard Deviation in ln(k): 1.1442498152233505"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R
+Total Standard Deviation in ln(k): 1.1442498152233505""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R
+Total Standard Deviation in ln(k): 1.1442498152233505
+""",
+)
+
+entry(
+ index = 18,
+ label = "Root_N-1NO->O_N-2R->C_3R->H",
+ kinetics = ArrheniusChargeTransfer(A=(0.0395507,'m^3/(mol*s)'), n=2.73403, Ea=(82.3125,'kJ/mol'), V0=(0,'V'), alpha=0.166667, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-6.748150858329144e-16, var=0.700188362203178, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C_3R->H',), comment="""BM rule fitted to 3 training reactions at node Root_N-1NO->O_N-2R->C_3R->H
+ Total Standard Deviation in ln(k): 1.6775073567792615"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_N-1NO->O_N-2R->C_3R->H
+Total Standard Deviation in ln(k): 1.6775073567792615""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_N-1NO->O_N-2R->C_3R->H
+Total Standard Deviation in ln(k): 1.6775073567792615
+""",
+)
+
+entry(
+ index = 19,
+ label = "Root_N-1NO->O_N-2R->C_N-3R->H",
+ kinetics = ArrheniusChargeTransfer(A=(0.00815164,'m^3/(mol*s)'), n=2.90606, Ea=(71.4493,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=-2.81172952430381e-16, var=0.16223107893088848, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C_N-3R->H',), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H
+ Total Standard Deviation in ln(k): 0.8074655781874773"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H
+Total Standard Deviation in ln(k): 0.8074655781874773""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H
+Total Standard Deviation in ln(k): 0.8074655781874773
+""",
+)
+
+entry(
+ index = 20,
+ label = "Root_1NO->O_3R->C_2R->C_Ext-2C-R",
+ kinetics = ArrheniusChargeTransferBM(A=(0.000236033,'m^3/(mol*s)'), n=3.84908, w0=(349800,'J/mol'), E0=(34980,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_3R->C_2R->C_Ext-2C-R',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C_Ext-2C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 21,
+ label = "Root_1NO->O_N-3R->C_2R->C_Ext-2C-R",
+ kinetics = ArrheniusChargeTransferBM(A=(0.609636,'m^3/(mol*s)'), n=2.90468, w0=(349800,'J/mol'), E0=(34980,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_2R->C_Ext-2C-R',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 22,
+ label = "Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R",
+ kinetics = ArrheniusChargeTransferBM(A=(1.61257,'m^3/(mol*s)'), n=2.55041, w0=(303700,'J/mol'), E0=(30370,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 23,
+ label = "Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R",
+ kinetics = ArrheniusChargeTransfer(A=(0.00998483,'m^3/(mol*s)'), n=2.88005, Ea=(79.901,'kJ/mol'), V0=(0,'V'), alpha=0.25, electrons=1, T0=(1,'K'), uncertainty=RateUncertainty(mu=1.124691809721524e-16, var=2.344383112979754, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R
+ Total Standard Deviation in ln(k): 3.069525754438298"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R
+Total Standard Deviation in ln(k): 3.069525754438298""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R
+Total Standard Deviation in ln(k): 3.069525754438298
+""",
+)
+
+entry(
+ index = 24,
+ label = "Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R",
+ kinetics = ArrheniusChargeTransferBM(A=(0.00331961,'m^3/(mol*s)'), n=3.0459, w0=(344200,'J/mol'), E0=(34420,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_N-3R->H_Ext-3C-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 25,
+ label = "Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R",
+ kinetics = ArrheniusChargeTransferBM(A=(0.00225166,'m^3/(mol*s)'), n=2.99604, w0=(344200,'J/mol'), E0=(34420,'J/mol'), V0=(0,'V'), alpha=0.5, electrons=0, Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C_3R->H_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
diff --git a/input/kinetics/families/Cation_NO_Substitution/training/dictionary.txt b/input/kinetics/families/Cation_NO_Substitution/training/dictionary.txt
new file mode 100644
index 0000000000..51072ca4bb
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Substitution/training/dictionary.txt
@@ -0,0 +1,301 @@
+C3H8O
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+Li
+1 *3 Li u0 p0 c+1
+
+CH3LiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C2H5
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+C2H7N
+1 *1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 *2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+CH4LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+CH3
+multiplicity 2
+1 *2 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+C2H7N-2
+1 *1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 *2 H u0 p0 c0 {1,S}
+
+C2H6LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+H
+multiplicity 2
+1 *2 H u1 p0 c0
+
+C3H9N
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+C3H9N-2
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+C2H6LiN-2
+1 *1 N u0 p1 c0 {2,S} {4,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+C3H9N-3
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 *2 H u0 p0 c0 {1,S}
+
+C3H8LiN
+1 *1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+5 *3 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+H2O
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+HLiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *3 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+H3N
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+H2LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *3 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH4O
+1 *1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *2 H u0 p0 c0 {1,S}
+
+CH4O-2
+1 *1 O u0 p2 c0 {2,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CH5N
+1 *1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *2 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+C2H6O
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+C2H6O-2
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 *2 H u0 p0 c0 {1,S}
+
+C2H5LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C2H7N-3
+1 *1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+C2H6O-3
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C3H8O-2
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+CH5N-2
+1 *1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+C2H7N-4
+1 *1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 *2 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
diff --git a/input/kinetics/families/Cation_NO_Substitution/training/reactions.py b/input/kinetics/families/Cation_NO_Substitution/training/reactions.py
new file mode 100644
index 0000000000..c22ead2a11
--- /dev/null
+++ b/input/kinetics/families/Cation_NO_Substitution/training/reactions.py
@@ -0,0 +1,243 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_NO_Substitution/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C3H8O + Li <=> CH3LiO + C2H5",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(236.033,'cm^3/(mol*s)'), n=3.84908, Ea=(56.4483,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), comment="""Fitted to 50 data points; dA = *|/ 1.07254, dn = +|- 0.00912116, dEa = +|- 0.0521614 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + COCC <=> [Li]OC + C[CH2]
+""",
+)
+
+entry(
+ index = 2,
+ label = "C2H7N + Li <=> CH4LiN + CH3",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(5.84081e+06,'cm^3/(mol*s)'), n=2.5402, Ea=(97.8358,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=5.9720845035693655,B=-11.11835148496454,E=1.2672065293713617,L=34.51723438776737,A=-10.461680798130194,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.31573, dn = +|- 0.0357396, dEa = +|- 0.204385 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CNC <=> [Li]NC + [CH3]
+""",
+)
+
+entry(
+ index = 3,
+ label = "C2H7N-2 + Li <=> C2H6LiN + H",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(20017.2,'cm^3/(mol*s)'), n=2.76621, Ea=(72.0709,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.996332219215656,B=1.029302623121347,E=1.007550487792502,L=7.3685642232941575,A=0.4814345945968402,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.20383, dn = +|- 0.024163, dEa = +|- 0.138181 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CNC <=> [Li]N(C)C + [H]
+""",
+)
+
+entry(
+ index = 4,
+ label = "C3H9N + Li <=> CH4LiN + C2H5",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.17529e+08,'cm^3/(mol*s)'), n=2.07905, Ea=(110.968,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9175438008860265,B=1.1395826064596657,E=0.4944811262263229,L=5.415263196320309,A=0.6943364764189893,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.06164, dn = +|- 0.00779066, dEa = +|- 0.0445526 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CNCC <=> [Li]NC + C[CH2]
+""",
+)
+
+entry(
+ index = 5,
+ label = "C3H9N-2 + Li <=> C2H6LiN-2 + CH3",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.61257e+06,'cm^3/(mol*s)'), n=2.55041, Ea=(96.84,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.877486735996646,B=0.6916407047808263,E=0.748415650862252,L=5.385263016210897,A=0.5210754074032086,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.25373, dn = +|- 0.029453, dEa = +|- 0.168434 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CNCC <=> [Li]NCC + [CH3]
+""",
+)
+
+entry(
+ index = 6,
+ label = "C3H9N-3 + Li <=> C3H8LiN + H",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(3319.61,'cm^3/(mol*s)'), n=3.0459, Ea=(70.8277,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.1131935806214712,B=1.1556454917670655,E=1.2169728270193971,L=7.839572648134702,A=0.31656236651087616,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.28575, dn = +|- 0.0327372, dEa = +|- 0.187215 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CNCC <=> [Li]N(C)CC + [H]
+""",
+)
+
+entry(
+ index = 7,
+ label = "H2O + Li <=> HLiO + H",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(2.20642e+09,'cm^3/(mol*s)'), n=1.35569, Ea=(48.8442,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6576610150461983,B=2.4435784684265482,E=0.404796645816695,L=7.698368077501874,A=0.9750486732350473,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.12448, dn = +|- 0.0152811, dEa = +|- 0.0873886 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + O <=> [Li]O + [H]
+""",
+)
+
+entry(
+ index = 8,
+ label = "H3N + Li <=> H2LiN + H",
+ degeneracy = 3.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.86167e+06,'cm^3/(mol*s)'), n=2.44198, Ea=(87.1355,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9471505265788214,B=1.7274624400621788,E=0.6115119617819315,L=6.871072605917964,A=0.6704069036466952,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.22038, dn = +|- 0.025941, dEa = +|- 0.148349 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + N <=> [Li]N + [H]
+""",
+)
+
+entry(
+ index = 9,
+ label = "CH4O + Li <=> CH3LiO + H",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(4.02602e+06,'cm^3/(mol*s)'), n=2.23116, Ea=(40.7702,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.4067121409688057,B=1.4628968939845368,E=0.9656443938025181,L=7.661570379273675,A=0.443175955652443,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.0796, dn = +|- 0.00997547, dEa = +|- 0.057047 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CO <=> [Li]OC + [H]
+""",
+)
+
+entry(
+ index = 10,
+ label = "CH4O-2 + Li <=> HLiO + CH3",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.53764e+08,'cm^3/(mol*s)'), n=2.01928, Ea=(47.7262,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.4173362998736376,B=2.357499252462657,E=0.5167298959343533,L=7.9017680525604375,A=1.0064038665607862,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.49606, dn = +|- 0.0524693, dEa = +|- 0.300058 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CO <=> [Li]O + [CH3]
+""",
+)
+
+entry(
+ index = 11,
+ label = "CH5N + Li <=> CH4LiN + H",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(88554.1,'cm^3/(mol*s)'), n=2.76407, Ea=(81.1221,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-5.4761368991675985,B=-6.829449919467144,E=14.43663245128814,L=28.957970295010895,A=0.4259943743771139,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.19079, dn = +|- 0.0227446, dEa = +|- 0.13007 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CN <=> [Li]NC + [H]
+""",
+)
+
+entry(
+ index = 12,
+ label = "C2H6O + Li <=> HLiO + C2H5",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(609636,'cm^3/(mol*s)'), n=2.90468, Ea=(55.2021,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9913576154323054,B=3.1755887609180435,E=-0.2623364392566645,L=7.244831699370673,A=0.5572363451823703,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.27825, dn = +|- 0.0319751, dEa = +|- 0.182857 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CCO <=> [Li]O + C[CH2]
+""",
+)
+
+entry(
+ index = 13,
+ label = "C2H6O-2 + Li <=> C2H5LiO + H",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(3.88747e+06,'cm^3/(mol*s)'), n=2.22783, Ea=(40.8372,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-8.623486006056842,B=14.917486429580572,E=-5.719694357458241,L=40.120001635540106,A=-6.502228345652631,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.09972, dn = +|- 0.0123813, dEa = +|- 0.0708054 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CCO <=> [Li]OCC + [H]
+""",
+)
+
+entry(
+ index = 14,
+ label = "C2H7N-3 + Li <=> H2LiN + C2H5",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1309.46,'cm^3/(mol*s)'), n=3.2505, Ea=(88.6985,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6195332200790409,B=2.120893670736446,E=10.142480436000628,L=-0.8781474558081529,A=3.410407959634951,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.25466, dn = +|- 0.0295493, dEa = +|- 0.168984 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CCN <=> [Li]N + C[CH2]
+""",
+)
+
+entry(
+ index = 15,
+ label = "C2H6O-3 + Li <=> CH3LiO + CH3",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(327198,'cm^3/(mol*s)'), n=2.90093, Ea=(61.3447,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.223920620501668,B=0.8264175269682525,E=0.40415741933873844,L=5.605210034978575,A=0.4397271958947774,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.20785, dn = +|- 0.0245968, dEa = +|- 0.140662 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + COC <=> [Li]OC + [CH3]
+""",
+)
+
+entry(
+ index = 16,
+ label = "C3H8O-2 + Li <=> C2H5LiO + CH3",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(137812,'cm^3/(mol*s)'), n=2.70251, Ea=(63.027,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.091886494292463,B=0.5254418313743373,E=1.2963729646265112,L=5.721969023897385,A=0.6575614317431779,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.12328, dn = +|- 0.0151425, dEa = +|- 0.086596 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + COCC <=> [Li]OCC + [CH3]
+""",
+)
+
+entry(
+ index = 17,
+ label = "CH5N-2 + Li <=> H2LiN + CH3",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(141645,'cm^3/(mol*s)'), n=2.88935, Ea=(85.5741,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.8306578175990244,B=1.956506108230911,E=0.011774617070094268,L=6.100850860272114,A=1.0441801517777485,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.50683, dn = +|- 0.0534042, dEa = +|- 0.305404 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CN <=> [Li]N + [CH3]
+""",
+)
+
+entry(
+ index = 18,
+ label = "C2H7N-4 + Li <=> C2H6LiN-2 + H",
+ degeneracy = 2.0,
+ kinetics = ArrheniusChargeTransfer(A=(4503.32,'cm^3/(mol*s)'), n=2.99604, Ea=(78.6799,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9852422925798727,B=1.2991389460904967,E=1.413033851489418,L=7.445245509701895,A=0.5371087291175491,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.17557, dn = +|- 0.0210685, dEa = +|- 0.120485 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryChargedKinetics
+Original entry: [Lip] + CCN <=> [Li]NCC + [H]
+""",
+)
+
diff --git a/input/kinetics/families/Cation_R_Recombination/groups.py b/input/kinetics/families/Cation_R_Recombination/groups.py
new file mode 100644
index 0000000000..e1fef9411e
--- /dev/null
+++ b/input/kinetics/families/Cation_R_Recombination/groups.py
@@ -0,0 +1,121 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_R_Recombination/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["Y_Y"], ownReverse=False)
+
+reverse = "Cation_Bond_Dissociation"
+reversible = True
+
+reactantNum = 2
+
+productNum = 1
+
+autoGenerated = True
+
+allowChargedSpecies = True
+
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*1', 1],
+ ['FORM_BOND', '*1', 1, '*2'],
+ ['LOSE_RADICAL', '*2', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 R u1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_2R->C",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 C u1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_2R->C_Ext-2C-R",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 C u1 {3,[S,D,T,B,Q]}
+3 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_N-2R->C",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 [S,F,I,O,Br,Si,P,Li,H,Cl,N] u1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 [S,F,I,O,Br,Si,P,Li,H,Cl,N] u1 {3,[S,D,T,B,Q]}
+3 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_N-2R->C_2BrClFHILiNOPSSi->S",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 S u1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_N-2R->C_N-2BrClFHILiNOPSSi->S",
+ group =
+"""
+1 *1 Li+ u0 p0 c+1
+2 *2 N u1
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_2R->C
+ L3: Root_2R->C_Ext-2C-R
+ L2: Root_N-2R->C
+ L3: Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R
+ L3: Root_N-2R->C_2BrClFHILiNOPSSi->S
+ L3: Root_N-2R->C_N-2BrClFHILiNOPSSi->S
+"""
+)
+
diff --git a/input/kinetics/families/Cation_R_Recombination/rules.py b/input/kinetics/families/Cation_R_Recombination/rules.py
new file mode 100644
index 0000000000..8d5d60ed2b
--- /dev/null
+++ b/input/kinetics/families/Cation_R_Recombination/rules.py
@@ -0,0 +1,92 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_R_Recombination/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[33460.9,-0.743262,-0.00216677,8.22742e-07], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 5 training reactions at node Root"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 5 training reactions at node Root""",
+ longDesc =
+"""
+Marcus rule fitted to 5 training reactions at node Root
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_2R->C",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[51487.7,-0.166019,-0.00176034,4.42738e-07], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 2 training reactions at node Root_2R->C"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 2 training reactions at node Root_2R->C""",
+ longDesc =
+"""
+Marcus rule fitted to 2 training reactions at node Root_2R->C
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-2R->C",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[21443.1,-1.12809,-0.00243772,1.07608e-06], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 3 training reactions at node Root_N-2R->C"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 3 training reactions at node Root_N-2R->C""",
+ longDesc =
+"""
+Marcus rule fitted to 3 training reactions at node Root_N-2R->C
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_2R->C_Ext-2C-R",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[51072.9,0.770449,0.00461441,-2.38037e-06], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 1 training reactions at node Root_2R->C_Ext-2C-R"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 1 training reactions at node Root_2R->C_Ext-2C-R""",
+ longDesc =
+"""
+Marcus rule fitted to 1 training reactions at node Root_2R->C_Ext-2C-R
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[22140,-3.52755,-0.00528491,2.76922e-06], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 1 training reactions at node Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 1 training reactions at node Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R""",
+ longDesc =
+"""
+Marcus rule fitted to 1 training reactions at node Root_N-2R->C_Ext-2BrClFHILiNOPSSi-R
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_N-2R->C_2BrClFHILiNOPSSi->S",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[20364.7,0.177444,-0.000702861,-3.39533e-08], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 1 training reactions at node Root_N-2R->C_2BrClFHILiNOPSSi->S"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 1 training reactions at node Root_N-2R->C_2BrClFHILiNOPSSi->S""",
+ longDesc =
+"""
+Marcus rule fitted to 1 training reactions at node Root_N-2R->C_2BrClFHILiNOPSSi->S
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_N-2R->C_N-2BrClFHILiNOPSSi->S",
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[21824.5,-0.0341626,-0.0013254,4.92966e-07], beta=(1.2e+10,'1/m'), wr=(0,'kJ/mol'), wp=(0,'kJ/mol'), lmbd_o=(0,'J/mol'), comment="""Marcus rule fitted to 1 training reactions at node Root_N-2R->C_N-2BrClFHILiNOPSSi->S"""),
+ rank = 11,
+ shortDesc = """Marcus rule fitted to 1 training reactions at node Root_N-2R->C_N-2BrClFHILiNOPSSi->S""",
+ longDesc =
+"""
+Marcus rule fitted to 1 training reactions at node Root_N-2R->C_N-2BrClFHILiNOPSSi->S
+""",
+)
+
diff --git a/input/kinetics/families/Cation_R_Recombination/training/dictionary.txt b/input/kinetics/families/Cation_R_Recombination/training/dictionary.txt
new file mode 100644
index 0000000000..d1060d8577
--- /dev/null
+++ b/input/kinetics/families/Cation_R_Recombination/training/dictionary.txt
@@ -0,0 +1,77 @@
+NH2
+multiplicity 2
+1 *2 N u1 p1 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+Li
+1 *1 Li u0 p0 c+1
+
+NH2Li
+1 *2 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 *1 Li u0 p0 c0 {1,S}
+
+C2H5
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+C2H5Li
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 *1 Li u0 p0 c0 {2,S}
+
+CH3
+multiplicity 2
+1 *2 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH3Li
+1 *2 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 *1 Li u0 p0 c0 {1,S}
+
+CH3NH
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 N u1 p1 c0 {1,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+
+CH3NHLi
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 N u0 p1 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 *1 Li u0 p0 c0 {2,S}
+
+SH
+multiplicity 2
+1 *2 S u1 p2 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+SHLi
+1 *2 S u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *1 Li u0 p0 c0 {1,S}
+
diff --git a/input/kinetics/families/Cation_R_Recombination/training/reactions.py b/input/kinetics/families/Cation_R_Recombination/training/reactions.py
new file mode 100644
index 0000000000..8a1fcec8cd
--- /dev/null
+++ b/input/kinetics/families/Cation_R_Recombination/training/reactions.py
@@ -0,0 +1,69 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Cation_R_Recombination/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 0,
+ label = "NH2 + Li <=> NH2Li",
+ degeneracy = 1.0,
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[21824.5,-0.0341626,-0.0013254,4.92966e-07], beta=(1.2e+10,'m^-1'), wr=(0,'J/mol'), wp=(0,'J/mol'), lmbd_o=(0,'J/mol')),
+ rank = 3,
+ longDesc =
+"""
+Calculated using a geometric mean with the four point method at ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 1,
+ label = "C2H5 + Li <=> C2H5Li",
+ degeneracy = 1.0,
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[51072.9,0.770449,0.00461441,-2.38037e-06], beta=(1.2e+10,'m^-1'), wr=(0,'J/mol'), wp=(0,'J/mol'), lmbd_o=(0,'J/mol')),
+ rank = 3,
+ longDesc =
+"""
+Calculated using a geometric mean with the four point method at ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 2,
+ label = "CH3 + Li <=> CH3Li",
+ degeneracy = 1.0,
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[51902.4,-1.10249,-0.00813508,3.26585e-06], beta=(1.2e+10,'m^-1'), wr=(0,'J/mol'), wp=(0,'J/mol'), lmbd_o=(0,'J/mol')),
+ rank = 3,
+ longDesc =
+"""
+Calculated using a geometric mean with the four point method at ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 3,
+ label = "CH3NH + Li <=> CH3NHLi",
+ degeneracy = 1.0,
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[22140,-3.52755,-0.00528491,2.76922e-06], beta=(1.2e+10,'m^-1'), wr=(0,'J/mol'), wp=(0,'J/mol'), lmbd_o=(0,'J/mol')),
+ rank = 3,
+ longDesc =
+"""
+Calculated using a geometric mean with the four point method at ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 4,
+ label = "SH + Li <=> SHLi",
+ degeneracy = 1.0,
+ kinetics = Marcus(A=(1.73e+06,'m^3/(mol*s)'), n=2, lmbd_i_coefs=[20364.7,0.177444,-0.000702861,-3.39533e-08], beta=(1.2e+10,'m^-1'), wr=(0,'J/mol'), wp=(0,'J/mol'), lmbd_o=(0,'J/mol')),
+ rank = 3,
+ longDesc =
+"""
+Calculated using a geometric mean with the four point method at ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
diff --git a/input/kinetics/families/H_Abstraction/groups.py b/input/kinetics/families/H_Abstraction/groups.py
index e1c5d81fc9..a47bd3dc77 100644
--- a/input/kinetics/families/H_Abstraction/groups.py
+++ b/input/kinetics/families/H_Abstraction/groups.py
@@ -42,7 +42,7 @@
entry(
index = 3,
label = "C_quartet_H",
- group =
+ group =
"""
1 *1 C u3 p0 {2,S}
2 *2 H u0 p0 {1,S}
@@ -53,7 +53,7 @@
entry(
index = 4,
label = "C_doublet_H",
- group =
+ group =
"""
1 *1 C u1 p1 {2,S}
2 *2 H u0 p0 {1,S}
@@ -71,7 +71,7 @@
entry(
index = 6,
label = "CH2_triplet_H",
- group =
+ group =
"""
1 *1 Cs u2 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -83,7 +83,7 @@
entry(
index = 7,
label = "CH2_singlet_H",
- group =
+ group =
"""
1 *1 C u0 p1 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -95,7 +95,7 @@
entry(
index = 8,
label = "NH_triplet_H",
- group =
+ group =
"""
1 *1 N u2 p1 {2,S}
2 *2 H u0 {1,S}
@@ -106,7 +106,7 @@
entry(
index = 9,
label = "NH_singlet_H",
- group =
+ group =
"""
1 *1 N u0 p2 {2,S}
2 *2 H u0 {1,S}
@@ -117,7 +117,7 @@
entry(
index = 10,
label = "Xrad_H",
- group =
+ group =
"""
1 *1 R!H u1 {2,S}
2 *2 H u0 {1,S}
@@ -128,7 +128,7 @@
entry(
index = 11,
label = "C_rad_H",
- group =
+ group =
"""
1 *1 C u1 {2,S}
2 *2 H u0 {1,S}
@@ -139,7 +139,7 @@
entry(
index = 12,
label = "CH3_rad_H",
- group =
+ group =
"""
1 *1 Cs u1 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -152,7 +152,7 @@
entry(
index = 13,
label = "Cs/H2/OneDeN",
- group =
+ group =
"""
1 *1 C u1 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -165,7 +165,7 @@
entry(
index = 14,
label = "OH_rad_H",
- group =
+ group =
"""
1 *1 O u1 {2,S}
2 *2 H u0 {1,S}
@@ -176,7 +176,7 @@
entry(
index = 15,
label = "Srad_H",
- group =
+ group =
"""
1 *1 S u1 {2,S}
2 *2 H u0 {1,S}
@@ -187,7 +187,7 @@
entry(
index = 16,
label = "N3s_rad_H",
- group =
+ group =
"""
1 *1 N3s u1 {2,S}
2 *2 H u0 {1,S}
@@ -198,7 +198,7 @@
entry(
index = 17,
label = "NH2_rad_H",
- group =
+ group =
"""
1 *1 N3s u1 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -210,7 +210,7 @@
entry(
index = 18,
label = "N3s_rad_H_pri",
- group =
+ group =
"""
1 *1 N3s u1 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -222,7 +222,7 @@
entry(
index = 19,
label = "N3s_rad_H/H/NonDeN",
- group =
+ group =
"""
1 *1 N3s u1 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -245,7 +245,7 @@
entry(
index = 20,
label = "X_H",
- group =
+ group =
"""
1 *1 R u0 {2,S}
2 *2 H u0 {1,S}
@@ -256,7 +256,7 @@
entry(
index = 21,
label = "H2",
- group =
+ group =
"""
1 *1 H u0 {2,S}
2 *2 H u0 {1,S}
@@ -267,7 +267,7 @@
entry(
index = 22,
label = "Ct_H",
- group =
+ group =
"""
1 *1 Ct u0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -279,7 +279,7 @@
entry(
index = 23,
label = "Ct/H/NonDeC",
- group =
+ group =
"""
1 *1 Ct u0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -291,7 +291,7 @@
entry(
index = 24,
label = "Ct/H/NonDeN",
- group =
+ group =
"""
1 *1 Ct u0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -303,7 +303,7 @@
entry(
index = 25,
label = "O_H",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -315,7 +315,7 @@
entry(
index = 26,
label = "O_pri",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -327,7 +327,7 @@
entry(
index = 27,
label = "O_sec",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -339,7 +339,7 @@
entry(
index = 28,
label = "O/H/NonDeC",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -351,7 +351,7 @@
entry(
index = 29,
label = "O/H/NonDeO",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -363,7 +363,7 @@
entry(
index = 30,
label = "H2O2",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 O u0 {1,S} {4,S}
@@ -376,7 +376,7 @@
entry(
index = 31,
label = "ROOH_pri",
- group =
+ group =
"""
1 C u0 {2,S} {4,S} {5,S} {6,S}
2 O u0 {1,S} {3,S}
@@ -392,7 +392,7 @@
entry(
index = 32,
label = "ROOH_sec",
- group =
+ group =
"""
1 C u0 {2,S} {4,S} {5,S} {6,S}
2 O u0 {1,S} {3,S}
@@ -408,7 +408,7 @@
entry(
index = 33,
label = "ROOH_ter",
- group =
+ group =
"""
1 *1 O u0 {2,S} {7,S}
2 O u0 {1,S} {3,S}
@@ -424,7 +424,7 @@
entry(
index = 34,
label = "O/H/NonDeN",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -436,7 +436,7 @@
entry(
index = 35,
label = "O/H/OneDe",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -448,7 +448,7 @@
entry(
index = 36,
label = "O/H/OneDeC",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -460,7 +460,7 @@
entry(
index = 37,
label = "O/H/OneDeN",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -472,7 +472,7 @@
entry(
index = 38,
label = "OSrad_O_H",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -484,7 +484,7 @@
entry(
index = 39,
label = "Orad_O_H",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -496,7 +496,7 @@
entry(
index = 40,
label = "Srad_O_H",
- group =
+ group =
"""
1 *1 O u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -508,7 +508,7 @@
entry(
index = 41,
label = "S_H",
- group =
+ group =
"""
1 *1 S u0 {2,S}
2 *2 H u0 {1,S}
@@ -519,7 +519,7 @@
entry(
index = 42,
label = "S_pri",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -531,7 +531,7 @@
entry(
index = 43,
label = "S/H/single",
- group =
+ group =
"""
1 *1 S u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -543,7 +543,7 @@
entry(
index = 44,
label = "S/H/NonDeC",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -555,7 +555,7 @@
entry(
index = 45,
label = "S/H/NonDeS",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -567,7 +567,7 @@
entry(
index = 46,
label = "S/H/NonDeN",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -579,7 +579,7 @@
entry(
index = 47,
label = "S/H/NonDeO",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -591,7 +591,7 @@
entry(
index = 48,
label = "S/H/OneDe",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -603,7 +603,7 @@
entry(
index = 49,
label = "S/H/Ct",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -615,7 +615,7 @@
entry(
index = 50,
label = "S/H/Cb",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -627,7 +627,7 @@
entry(
index = 51,
label = "S/H/CO",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -639,7 +639,7 @@
entry(
index = 52,
label = "S/H/Cd",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 Cd u0 {1,S} {4,D}
@@ -652,7 +652,7 @@
entry(
index = 53,
label = "S/H/CS",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 CS u0 {1,S} {4,D}
@@ -665,7 +665,7 @@
entry(
index = 54,
label = "S/H/Rad",
- group =
+ group =
"""
1 *1 S u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -677,7 +677,7 @@
entry(
index = 55,
label = "S/H/CRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -689,7 +689,7 @@
entry(
index = 56,
label = "S/H/SRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -701,7 +701,7 @@
entry(
index = 57,
label = "S/H/NRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -713,7 +713,7 @@
entry(
index = 58,
label = "S/H/ORad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -725,7 +725,7 @@
entry(
index = 59,
label = "S/H/MulBondRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -737,7 +737,7 @@
entry(
index = 60,
label = "S/H/CORad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -749,7 +749,7 @@
entry(
index = 61,
label = "S/H/CdRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -762,7 +762,7 @@
entry(
index = 62,
label = "S/H/CSRad",
- group =
+ group =
"""
1 *1 S2s u0 {2,S} {3,S}
2 *2 H u0 {1,S}
@@ -775,7 +775,7 @@
entry(
index = 63,
label = "S/H/double",
- group =
+ group =
"""
1 *1 S u0 p[0,1] {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -787,7 +787,7 @@
entry(
index = 64,
label = "S/H/double_val4",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -799,7 +799,7 @@
entry(
index = 65,
label = "S/H/double_val4C",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -811,7 +811,7 @@
entry(
index = 66,
label = "S/H/double_val4N",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -823,7 +823,7 @@
entry(
index = 67,
label = "S/H/double_val4S",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -835,7 +835,7 @@
entry(
index = 68,
label = "S/H/double_val4O",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -847,7 +847,7 @@
entry(
index = 69,
label = "S/H/double_val6",
- group =
+ group =
"""
1 *1 S6d u0 p0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -859,7 +859,7 @@
entry(
index = 70,
label = "S/H/double_val6C",
- group =
+ group =
"""
1 *1 S6d u0 p0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -871,7 +871,7 @@
entry(
index = 71,
label = "S/H/double_val6N",
- group =
+ group =
"""
1 *1 S6d u0 p0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -883,7 +883,7 @@
entry(
index = 72,
label = "S/H/double_val6S",
- group =
+ group =
"""
1 *1 S6d u0 p0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -895,7 +895,7 @@
entry(
index = 73,
label = "S/H/double_val6O",
- group =
+ group =
"""
1 *1 S6d u0 p0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -907,7 +907,7 @@
entry(
index = 74,
label = "S/H/twoDoubles",
- group =
+ group =
"""
1 *1 S6dd u0 p0 {2,S} {3,D} {4,D}
2 *2 H u0 {1,S}
@@ -920,7 +920,7 @@
entry(
index = 75,
label = "S/H/twoDoublesOO",
- group =
+ group =
"""
1 *1 S6dd u0 p0 {2,S} {3,D} {4,D}
2 *2 H u0 {1,S}
@@ -933,7 +933,7 @@
entry(
index = 76,
label = "S/H/triple",
- group =
+ group =
"""
1 *1 S u0 p[0,1] {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -945,7 +945,7 @@
entry(
index = 77,
label = "S/H/triple_val4",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -957,7 +957,7 @@
entry(
index = 78,
label = "S/H/triple_val4C",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -969,7 +969,7 @@
entry(
index = 79,
label = "S/H/triple_val4N",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -981,7 +981,7 @@
entry(
index = 80,
label = "S/H/triple_val4S",
- group =
+ group =
"""
1 *1 S u0 p1 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -993,7 +993,7 @@
entry(
index = 81,
label = "S/H/triple_val6",
- group =
+ group =
"""
1 *1 S u0 p0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -1005,7 +1005,7 @@
entry(
index = 82,
label = "S/H/triple_val6C",
- group =
+ group =
"""
1 *1 S u0 p0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -1017,7 +1017,7 @@
entry(
index = 83,
label = "S/H/triple_val6N",
- group =
+ group =
"""
1 *1 S u0 p0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -1029,7 +1029,7 @@
entry(
index = 84,
label = "S/H/triple_val6S",
- group =
+ group =
"""
1 *1 S u0 p0 {2,S} {3,T}
2 *2 H u0 {1,S}
@@ -1041,7 +1041,7 @@
entry(
index = 85,
label = "Cd_H",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 [C,N] u0 {1,D}
@@ -1054,7 +1054,7 @@
entry(
index = 86,
label = "Cd_pri",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 [Cd,N] u0 {1,D} {5,S}
@@ -1068,7 +1068,7 @@
entry(
index = 87,
label = "Cd/H2/NonDeC",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1082,7 +1082,7 @@
entry(
index = 88,
label = "Cd/H2/NonDeN",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 N3d u0 {1,D} {5,S}
@@ -1096,7 +1096,7 @@
entry(
index = 89,
label = "Cd_sec",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 [Cd,N] u0 {1,D} {5,S}
@@ -1110,7 +1110,7 @@
entry(
index = 90,
label = "Cd/H/NonDeC",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1124,7 +1124,7 @@
entry(
index = 91,
label = "Cd/H/NonDeO",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1138,7 +1138,7 @@
entry(
index = 92,
label = "Cd/H/NonDeS",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1152,7 +1152,7 @@
entry(
index = 93,
label = "Cd/H/NonDeN",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1166,7 +1166,7 @@
entry(
index = 94,
label = "Cd/H/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1180,7 +1180,7 @@
entry(
index = 95,
label = "Cd/H/Ct",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1194,7 +1194,7 @@
entry(
index = 96,
label = "Cd/H/Cb",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1208,7 +1208,7 @@
entry(
index = 97,
label = "Cd/H/CO",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1222,7 +1222,7 @@
entry(
index = 98,
label = "Cd/H/Cd",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {6,S}
@@ -1237,7 +1237,7 @@
entry(
index = 99,
label = "Cd/H/CS",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1251,7 +1251,7 @@
entry(
index = 100,
label = "Cd/H/DeN",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S}
@@ -1265,7 +1265,7 @@
entry(
index = 101,
label = "Cd_allenic",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cdd u0 {1,D}
@@ -1278,7 +1278,7 @@
entry(
index = 102,
label = "Cd_Cdd/H2",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 Cdd u0 {1,D}
@@ -1291,7 +1291,7 @@
entry(
index = 103,
label = "Cb_H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,B} {4,S}
2 [Cb,Cbf] u0 {1,B}
@@ -1304,7 +1304,7 @@
entry(
index = 104,
label = "CO_H",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1317,7 +1317,7 @@
entry(
index = 105,
label = "CO_pri",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1330,7 +1330,7 @@
entry(
index = 106,
label = "CO_sec",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1343,7 +1343,7 @@
entry(
index = 107,
label = "CO/H/NonDe",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1356,7 +1356,7 @@
entry(
index = 108,
label = "CO/H/Cs",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1369,7 +1369,7 @@
entry(
index = 109,
label = "CO/H/Cs\Cs|Cs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,D} {5,S}
2 Cs u0 {1,S} {3,S}
@@ -1384,7 +1384,7 @@
entry(
index = 110,
label = "CO/H/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 O u0 {1,D}
@@ -1397,7 +1397,7 @@
entry(
index = 111,
label = "CS_H",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1410,7 +1410,7 @@
entry(
index = 112,
label = "CS_pri",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1423,7 +1423,7 @@
entry(
index = 113,
label = "CS_sec",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1436,7 +1436,7 @@
entry(
index = 114,
label = "CS/H/NonDeC",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1449,7 +1449,7 @@
entry(
index = 115,
label = "CS/H/NonDeO",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1462,7 +1462,7 @@
entry(
index = 116,
label = "CS/H/NonDeS",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1475,7 +1475,7 @@
entry(
index = 117,
label = "CS/H/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1488,7 +1488,7 @@
entry(
index = 118,
label = "CS/H/Ct",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1501,7 +1501,7 @@
entry(
index = 119,
label = "CS/H/Cb",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1514,7 +1514,7 @@
entry(
index = 120,
label = "CS/H/CO",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1527,7 +1527,7 @@
entry(
index = 121,
label = "CS/H/Cd",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,D} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -1541,7 +1541,7 @@
entry(
index = 122,
label = "CS/H/CS",
- group =
+ group =
"""
1 *1 C u0 {2,D} {3,S} {4,S}
2 S u0 {1,D}
@@ -1555,7 +1555,7 @@
entry(
index = 123,
label = "Cs_H",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1569,7 +1569,7 @@
entry(
index = 124,
label = "C_methane",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1583,7 +1583,7 @@
entry(
index = 125,
label = "C_pri",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1597,7 +1597,7 @@
entry(
index = 126,
label = "C/H3/Cs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1611,7 +1611,7 @@
entry(
index = 127,
label = "C/H3/Cs\H3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1628,7 +1628,7 @@
entry(
index = 128,
label = "C/H3/Cs\OneNonDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1645,7 +1645,7 @@
entry(
index = 129,
label = "C/H3/Cs\H2\Cs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1662,7 +1662,7 @@
entry(
index = 130,
label = "C/H3/Cs\H2\Cs|O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *1 C u0 {1,S} {6,S} {7,S} {8,S}
@@ -1680,7 +1680,7 @@
entry(
index = 131,
label = "C/H3/Cs\H2\O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1697,7 +1697,7 @@
entry(
index = 132,
label = "C/H3/Cs\TwoNonDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1714,7 +1714,7 @@
entry(
index = 133,
label = "C/H3/Cs\H\Cs\O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1731,7 +1731,7 @@
entry(
index = 134,
label = "C/H3/Cs\H\Cs\Cs|O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1749,7 +1749,7 @@
entry(
index = 135,
label = "C/H3/Cs\TwoDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -1766,7 +1766,7 @@
entry(
index = 136,
label = "1_methyl_CPD",
- group =
+ group =
"""
1 *1 Cs u0 {6,S} {7,S} {8,S} {9,S}
2 Cd u0 {3,D} {6,S}
@@ -1785,7 +1785,7 @@
entry(
index = 137,
label = "C/H3/O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1799,7 +1799,7 @@
entry(
index = 138,
label = "C/H3/S",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1813,7 +1813,7 @@
entry(
index = 139,
label = "C/H3/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1827,7 +1827,7 @@
entry(
index = 140,
label = "C/H3/Ct",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1841,7 +1841,7 @@
entry(
index = 141,
label = "C/H3/Cb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1855,7 +1855,7 @@
entry(
index = 142,
label = "C/H3/CO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1869,7 +1869,7 @@
entry(
index = 143,
label = "C/H3/CS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -1883,7 +1883,7 @@
entry(
index = 144,
label = "C/H3/Cd",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -1898,7 +1898,7 @@
entry(
index = 145,
label = "2_methyl_CPD",
- group =
+ group =
"""
1 *1 Cs u0 {2,S} {7,S} {8,S} {9,S}
2 Cd u0 {1,S} {3,D} {4,S}
@@ -1916,7 +1916,7 @@
entry(
index = 146,
label = "3_methyl_CPD",
- group =
+ group =
"""
1 *1 Cs u0 {2,S} {7,S} {8,S} {9,S}
2 Cd u0 {1,S} {3,D} {4,S}
@@ -1934,7 +1934,7 @@
entry(
index = 147,
label = "C/H3/Cd\H_Cd\H2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {5,S} {6,S}
2 Cd u0 {1,S} {3,D} {7,S}
@@ -1952,7 +1952,7 @@
entry(
index = 148,
label = "C/H3/Cd\H_Cd\H\Cs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {5,S} {6,S}
2 Cd u0 {1,S} {3,D} {7,S}
@@ -1970,7 +1970,7 @@
entry(
index = 149,
label = "C/H3/Cd\Cs_Cd\H2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {5,S} {6,S}
2 Cd u0 {1,S} {3,D} {7,S}
@@ -1988,7 +1988,7 @@
entry(
index = 150,
label = "Cs/H3/NonDeN",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 N3s u0 {1,S}
@@ -2002,7 +2002,7 @@
entry(
index = 151,
label = "Cs/H3/OneDeN",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 [N3d,N5dc] u0 {1,S}
@@ -2016,7 +2016,7 @@
entry(
index = 152,
label = "C_sec",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2030,7 +2030,7 @@
entry(
index = 153,
label = "C/H2/NonDeC",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2044,7 +2044,7 @@
entry(
index = 154,
label = "C/H2/Cs/Cs\O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S}
@@ -2059,7 +2059,7 @@
entry(
index = 155,
label = "C/H2/Cs/Cs\Cs|O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {5,S} {6,S}
2 Cs u0 {1,S} {3,S}
@@ -2075,7 +2075,7 @@
entry(
index = 156,
label = "C/H2/NonDeC_5ring",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {6,S} {7,S}
2 Cs u0 {1,S} {4,S}
@@ -2091,7 +2091,7 @@
entry(
index = 157,
label = "C/H2/NonDeC_5ring_fused6_1",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {8,S} {9,S}
2 Cs u0 {1,S} {5,S} {6,S}
@@ -2109,7 +2109,7 @@
entry(
index = 158,
label = "C/H2/NonDeC_5ring_fused6_2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {8,S} {9,S}
2 Cs u0 {1,S} {4,S} {6,S}
@@ -2127,7 +2127,7 @@
entry(
index = 159,
label = "C/H2/NonDeC_5ring_alpha6ring",
- group =
+ group =
"""
1 *1 C u0 {2,S} {4,S} {10,S} {11,S}
2 Cs u0 {1,S} {3,S} {6,S}
@@ -2147,7 +2147,7 @@
entry(
index = 160,
label = "C/H2/NonDeC_5ring_beta6ring",
- group =
+ group =
"""
1 *1 C u0 {4,S} {5,S} {10,S} {11,S}
2 Cs u0 {3,S} {4,S} {6,S}
@@ -2167,7 +2167,7 @@
entry(
index = 161,
label = "C/H2/Cs\H3/Cs\H3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -2187,7 +2187,7 @@
entry(
index = 162,
label = "C/H2/NonDeO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2201,7 +2201,7 @@
entry(
index = 163,
label = "C/H2/CsO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2215,7 +2215,7 @@
entry(
index = 164,
label = "C/H2/Cs\Cs2/O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {6,S}
2 *1 C u0 {1,S} {5,S} {7,S} {8,S}
@@ -2239,7 +2239,7 @@
entry(
index = 165,
label = "C/H2/O2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2253,7 +2253,7 @@
entry(
index = 166,
label = "C/H2/NonDeS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2267,7 +2267,7 @@
entry(
index = 167,
label = "C/H2/CsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2281,7 +2281,7 @@
entry(
index = 168,
label = "C/H2/NonDeN",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2295,7 +2295,7 @@
entry(
index = 169,
label = "C/H2/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2309,7 +2309,7 @@
entry(
index = 170,
label = "C/H2/OneDeC",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2323,7 +2323,7 @@
entry(
index = 171,
label = "C/H2/CtCs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2337,7 +2337,7 @@
entry(
index = 172,
label = "C/H2/CbCs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2351,7 +2351,7 @@
entry(
index = 173,
label = "C/H2/COCs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2365,7 +2365,7 @@
entry(
index = 174,
label = "C/H2/CO\H/Cs\H3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cs u0 {1,S} {6,S} {7,S} {8,S}
@@ -2384,7 +2384,7 @@
entry(
index = 175,
label = "C/H2/CdCs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2399,7 +2399,7 @@
entry(
index = 176,
label = "C/H2/Cd\H_Cd\H2/Cs\H3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {5,S} {6,S}
2 Cs u0 {1,S} {7,S} {8,S} {9,S}
@@ -2420,7 +2420,7 @@
entry(
index = 177,
label = "C/H2/CSCs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 CS u0 {1,S} {6,D}
@@ -2435,7 +2435,7 @@
entry(
index = 178,
label = "C/H2/OneDeO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2449,7 +2449,7 @@
entry(
index = 179,
label = "C/H2/OneDeS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2463,7 +2463,7 @@
entry(
index = 180,
label = "C/H2/CbS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2477,7 +2477,7 @@
entry(
index = 181,
label = "C/H2/CtS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2491,7 +2491,7 @@
entry(
index = 182,
label = "C/H2/CdS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2506,7 +2506,7 @@
entry(
index = 183,
label = "C/H2/CSS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 CS u0 {1,S} {6,D}
@@ -2521,7 +2521,7 @@
entry(
index = 184,
label = "C/H2/TwoDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2535,7 +2535,7 @@
entry(
index = 185,
label = "C/H2/CtCt",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2549,7 +2549,7 @@
entry(
index = 186,
label = "C/H2/CtCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2563,7 +2563,7 @@
entry(
index = 187,
label = "C/H2/CtCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2577,7 +2577,7 @@
entry(
index = 188,
label = "C/H2/CbCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2591,7 +2591,7 @@
entry(
index = 189,
label = "C/H2/CbCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2605,7 +2605,7 @@
entry(
index = 190,
label = "C/H2/COCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2619,7 +2619,7 @@
entry(
index = 191,
label = "C/H2/CdCt",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2634,7 +2634,7 @@
entry(
index = 192,
label = "C/H2/CtCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2649,7 +2649,7 @@
entry(
index = 193,
label = "C/H2/CdCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2664,7 +2664,7 @@
entry(
index = 194,
label = "C/H2/CbCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2679,7 +2679,7 @@
entry(
index = 195,
label = "C/H2/CdCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2694,7 +2694,7 @@
entry(
index = 196,
label = "C/H2/COCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2709,7 +2709,7 @@
entry(
index = 197,
label = "C/H2/CdCd",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -2725,7 +2725,7 @@
entry(
index = 198,
label = "C/H2/CdCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2741,7 +2741,7 @@
entry(
index = 199,
label = "C/H2/CSCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2757,7 +2757,7 @@
entry(
index = 200,
label = "C_ter",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2771,7 +2771,7 @@
entry(
index = 201,
label = "C/H/NonDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2785,7 +2785,7 @@
entry(
index = 202,
label = "C/H/Cs3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2799,7 +2799,7 @@
entry(
index = 203,
label = "C/H/Cs2/Cs\O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {6,S}
2 Cs u0 {1,S} {5,S} {7,S} {8,S}
@@ -2823,7 +2823,7 @@
entry(
index = 204,
label = "C/H/Cs2/Cs\Cs|O",
- group =
+ group =
"""
1 *1 Cs u0 {2,S} {3,S} {4,S} {6,S}
2 Cs u0 {1,S} {5,S} {7,S} {8,S}
@@ -2849,7 +2849,7 @@
entry(
index = 205,
label = "C/H/Cs3_5ring",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {6,S} {7,S}
2 Cs u0 {1,S} {4,S}
@@ -2865,7 +2865,7 @@
entry(
index = 206,
label = "C/H/Cs3_5ring_fused6",
- group =
+ group =
"""
1 *1 C u0 {3,S} {4,S} {5,S} {8,S}
2 Cs u0 {3,S} {6,S} {7,S}
@@ -2882,7 +2882,7 @@
entry(
index = 207,
label = "C/H/Cs3_5ring_adj5",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {9,S}
2 Cs u0 {1,S} {5,S} {6,S}
@@ -2900,7 +2900,7 @@
entry(
index = 208,
label = "C/H/Cs2N",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2914,7 +2914,7 @@
entry(
index = 209,
label = "C/H/NDMustO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2928,7 +2928,7 @@
entry(
index = 210,
label = "C/H/Cs2O",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2942,7 +2942,7 @@
entry(
index = 211,
label = "C/H/CsO2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2956,7 +2956,7 @@
entry(
index = 212,
label = "C/H/O3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2970,7 +2970,7 @@
entry(
index = 213,
label = "C/H/NDMustS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2984,7 +2984,7 @@
entry(
index = 214,
label = "C/H/Cs2S",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -2998,7 +2998,7 @@
entry(
index = 215,
label = "C/H/CsS2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3012,7 +3012,7 @@
entry(
index = 216,
label = "C/H/S3",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3026,7 +3026,7 @@
entry(
index = 217,
label = "C/H/NDMustOS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3040,7 +3040,7 @@
entry(
index = 218,
label = "C/H/CsOS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3054,7 +3054,7 @@
entry(
index = 219,
label = "C/H/OneDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3068,7 +3068,7 @@
entry(
index = 220,
label = "C/H/Cs2",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3082,7 +3082,7 @@
entry(
index = 221,
label = "C/H/Cs2Ct",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3096,7 +3096,7 @@
entry(
index = 222,
label = "C/H/Cs2Cb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3110,7 +3110,7 @@
entry(
index = 223,
label = "C/H/Cs2CO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3124,7 +3124,7 @@
entry(
index = 224,
label = "C/H/Cs2Cd",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3139,7 +3139,7 @@
entry(
index = 225,
label = "C/H/Cs2CS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 CS u0 {1,S} {6,D}
@@ -3154,7 +3154,7 @@
entry(
index = 226,
label = "C/H/CsO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3168,7 +3168,7 @@
entry(
index = 227,
label = "C/H/CsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3182,7 +3182,7 @@
entry(
index = 228,
label = "C/H/CbCsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3196,7 +3196,7 @@
entry(
index = 229,
label = "C/H/CtCsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3210,7 +3210,7 @@
entry(
index = 230,
label = "C/H/CdCsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3225,7 +3225,7 @@
entry(
index = 231,
label = "C/H/CSCsS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 CS u0 {1,S} {6,D}
@@ -3240,7 +3240,7 @@
entry(
index = 232,
label = "C/H/OO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3254,7 +3254,7 @@
entry(
index = 233,
label = "C/H/OS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3268,7 +3268,7 @@
entry(
index = 234,
label = "C/H/SS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3282,7 +3282,7 @@
entry(
index = 235,
label = "C/H/TwoDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3296,7 +3296,7 @@
entry(
index = 236,
label = "C/H/Cs",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3310,7 +3310,7 @@
entry(
index = 237,
label = "C/H/CtCt",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3324,7 +3324,7 @@
entry(
index = 238,
label = "C/H/CtCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3338,7 +3338,7 @@
entry(
index = 239,
label = "C/H/CtCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3352,7 +3352,7 @@
entry(
index = 240,
label = "C/H/CbCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3366,7 +3366,7 @@
entry(
index = 241,
label = "C/H/CbCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3380,7 +3380,7 @@
entry(
index = 242,
label = "C/H/COCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3394,7 +3394,7 @@
entry(
index = 243,
label = "C/H/CdCt",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3409,7 +3409,7 @@
entry(
index = 244,
label = "C/H/CtCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3424,7 +3424,7 @@
entry(
index = 245,
label = "C/H/CdCb",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3439,7 +3439,7 @@
entry(
index = 246,
label = "C/H/CbCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3453,7 +3453,7 @@
entry(
index = 247,
label = "C/H/CdCO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3468,7 +3468,7 @@
entry(
index = 248,
label = "C/H/COCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3483,7 +3483,7 @@
entry(
index = 249,
label = "C/H/CdCd",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 Cd u0 {1,S} {6,D}
@@ -3499,7 +3499,7 @@
entry(
index = 250,
label = "C/H/CdCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3515,7 +3515,7 @@
entry(
index = 251,
label = "C/H/CSCS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3531,7 +3531,7 @@
entry(
index = 252,
label = "C/H/TDMustO",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3545,7 +3545,7 @@
entry(
index = 253,
label = "C/H/TDMustS",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3559,7 +3559,7 @@
entry(
index = 254,
label = "C/H/ThreeDe",
- group =
+ group =
"""
1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
2 *2 H u0 {1,S}
@@ -3573,7 +3573,7 @@
entry(
index = 255,
label = "N3_H",
- group =
+ group =
"""
1 *1 [N3s,N3d] u0 {2,S}
2 *2 H u0 {1,S}
@@ -3584,7 +3584,7 @@
entry(
index = 256,
label = "N3s_H",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3597,7 +3597,7 @@
entry(
index = 257,
label = "NH3",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3610,7 +3610,7 @@
entry(
index = 258,
label = "N3s_pri_H",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3623,7 +3623,7 @@
entry(
index = 259,
label = "N3s/H2/NonDe",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3636,7 +3636,7 @@
entry(
index = 260,
label = "N3s/H2/NonDeC",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3649,7 +3649,7 @@
entry(
index = 261,
label = "N3s/H2/NonDeO",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3662,7 +3662,7 @@
entry(
index = 262,
label = "N3s/H2/NonDeN",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3675,7 +3675,7 @@
entry(
index = 263,
label = "N3s/H2/OneDe",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3688,7 +3688,7 @@
entry(
index = 264,
label = "N3s/H2/OneDeN",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3701,7 +3701,7 @@
entry(
index = 265,
label = "N3s_sec_H",
- group =
+ group =
"""
1 *1 N3s u0 {2,S} {3,S} {4,S}
2 *2 H u0 {1,S}
@@ -3714,7 +3714,7 @@
entry(
index = 266,
label = "N3d_H",
- group =
+ group =
"""
1 *1 N3d u0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -3726,7 +3726,7 @@
entry(
index = 267,
label = "N3d/H/NonDe",
- group =
+ group =
"""
1 *1 N3d u0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -3738,7 +3738,7 @@
entry(
index = 268,
label = "N3d/H/NonDeC",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -3752,7 +3752,7 @@
entry(
index = 269,
label = "N3d/H/NonDeO",
- group =
+ group =
"""
1 *1 N3d u0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -3764,7 +3764,7 @@
entry(
index = 270,
label = "N3d/H/NonDeN",
- group =
+ group =
"""
1 *1 N3d u0 {2,S} {3,D}
2 *2 H u0 {1,S}
@@ -3776,7 +3776,7 @@
entry(
index = 271,
label = "N3d/H/OneDe",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 Cdd u0 {1,D} {4,D}
@@ -3789,7 +3789,7 @@
entry(
index = 272,
label = "N3d/H/CddO",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 Cdd u0 {1,D} {4,D}
@@ -3802,7 +3802,7 @@
entry(
index = 273,
label = "N5_H",
- group =
+ group =
"""
1 *1 [N5sc,N5dc,N5ddc,N5tc,N5b] u0 p0 c+1 {2,S}
2 *2 H u0 {1,S}
@@ -3813,7 +3813,7 @@
entry(
index = 274,
label = "N5dc_H",
- group =
+ group =
"""
1 *1 N5dc u0 p0 c+1 {2,S}
2 *2 H u0 {1,S}
@@ -3824,7 +3824,7 @@
entry(
index = 275,
label = "N5dc/H/NonDeOO",
- group =
+ group =
"""
1 *1 N5dc u0 p0 c+1 {2,S} {3,S} {4,D}
2 *2 H u0 {1,S}
@@ -3837,7 +3837,7 @@
entry(
index = 276,
label = "HCl",
- group =
+ group =
"""
1 *1 Cl1s u0 {2,S}
2 *2 H u0 {1,S}
@@ -3855,7 +3855,7 @@
entry(
index = 278,
label = "C_quintet",
- group =
+ group =
"""
1 *3 C u4 p0
""",
@@ -3865,7 +3865,7 @@
entry(
index = 279,
label = "C_triplet",
- group =
+ group =
"""
1 *3 C u2 p1
""",
@@ -3882,7 +3882,7 @@
entry(
index = 281,
label = "N_atom_quartet",
- group =
+ group =
"""
1 *3 N u3 p1
""",
@@ -3892,7 +3892,7 @@
entry(
index = 282,
label = "N_atom_doublet",
- group =
+ group =
"""
1 *3 N u1 p2
""",
@@ -3902,7 +3902,7 @@
entry(
index = 283,
label = "CH_quartet",
- group =
+ group =
"""
1 *3 C u3 p0 {2,S}
2 H u0 p0 {1,S}
@@ -3913,7 +3913,7 @@
entry(
index = 284,
label = "CH_doublet",
- group =
+ group =
"""
1 *3 C u1 p1 {2,S}
2 H u0 {1,S}
@@ -3924,7 +3924,7 @@
entry(
index = 285,
label = "Y_1centerbirad",
- group =
+ group =
"""
1 *3 [Cs,Cd,CO,CS,O,S,N] u2
""",
@@ -3934,7 +3934,7 @@
entry(
index = 286,
label = "O_atom_triplet",
- group =
+ group =
"""
1 *3 O u2
""",
@@ -3944,7 +3944,7 @@
entry(
index = 287,
label = "S_atom_triplet",
- group =
+ group =
"""
1 *3 S u2
""",
@@ -3954,7 +3954,7 @@
entry(
index = 288,
label = "CH2_triplet",
- group =
+ group =
"""
1 *3 Cs u2 {2,S} {3,S}
2 H u0 {1,S}
@@ -3966,7 +3966,7 @@
entry(
index = 289,
label = "NH_triplet",
- group =
+ group =
"""
1 *3 N3s u2 {2,S}
2 H u0 {1,S}
@@ -3977,7 +3977,7 @@
entry(
index = 290,
label = "Y_rad",
- group =
+ group =
"""
1 *3 R u1
""",
@@ -3987,7 +3987,7 @@
entry(
index = 291,
label = "H_rad",
- group =
+ group =
"""
1 *3 H u1
""",
@@ -3997,7 +3997,7 @@
entry(
index = 292,
label = "Y_2centeradjbirad",
- group =
+ group =
"""
1 *3 [Ct,O2s,S2s] u1 {2,[S,T]}
2 [Ct,O2s,S2s] u1 {1,[S,T]}
@@ -4008,7 +4008,7 @@
entry(
index = 293,
label = "O2b",
- group =
+ group =
"""
1 *3 O2s u1 {2,S}
2 O2s u1 {1,S}
@@ -4019,7 +4019,7 @@
entry(
index = 294,
label = "S2b",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 S2s u1 p2 {1,S}
@@ -4030,7 +4030,7 @@
entry(
index = 295,
label = "C2b",
- group =
+ group =
"""
1 *3 Ct u1 {2,T}
2 Ct u1 {1,T}
@@ -4041,7 +4041,7 @@
entry(
index = 296,
label = "Ct_rad",
- group =
+ group =
"""
1 *3 C u1 {2,T}
2 [C,N] u0 {1,T}
@@ -4052,7 +4052,7 @@
entry(
index = 297,
label = "Ct_rad/Ct",
- group =
+ group =
"""
1 *3 Ct u1 {2,T}
2 Ct u0 {1,T}
@@ -4063,7 +4063,7 @@
entry(
index = 298,
label = "Ct_rad/N",
- group =
+ group =
"""
1 *3 Ct u1 {2,T}
2 [N3t,N5tc] u0 {1,T}
@@ -4074,7 +4074,7 @@
entry(
index = 299,
label = "O_rad",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 R u0 {1,S}
@@ -4085,7 +4085,7 @@
entry(
index = 300,
label = "O_pri_rad",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 H u0 {1,S}
@@ -4096,7 +4096,7 @@
entry(
index = 301,
label = "O_sec_rad",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 R!H u0 {1,S}
@@ -4107,7 +4107,7 @@
entry(
index = 302,
label = "O_rad/NonDeC",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 Cs u0 {1,S}
@@ -4118,7 +4118,7 @@
entry(
index = 303,
label = "O_rad/Cs\H2\Cs|H|Cs2",
- group =
+ group =
"""
1 C u0 {2,S} {3,S} {4,S} {5,S}
2 C u0 {1,S} {7,S} {8,S} {9,S}
@@ -4141,7 +4141,7 @@
entry(
index = 304,
label = "O_rad/NonDeO",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 O u0 {1,S}
@@ -4152,7 +4152,7 @@
entry(
index = 305,
label = "OOC",
- group =
+ group =
"""
1 O u0 {2,S} {3,S}
2 *3 O u1 {1,S}
@@ -4164,7 +4164,7 @@
entry(
index = 306,
label = "O_rad/NonDeN",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 N3s u0 {1,S}
@@ -4175,7 +4175,7 @@
entry(
index = 307,
label = "O_rad/OneDe",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N3t,N5dc] u0 {1,S}
@@ -4186,7 +4186,7 @@
entry(
index = 308,
label = "O_rad/OneDeC",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -4197,7 +4197,7 @@
entry(
index = 309,
label = "O_rad/Cd",
- group =
+ group =
"""
1 Cd u0 {2,S} {3,D}
2 *3 O u1 {1,S}
@@ -4209,7 +4209,7 @@
entry(
index = 310,
label = "O_rad/Cd\H_Cd\H2",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S} {6,S}
@@ -4224,7 +4224,7 @@
entry(
index = 311,
label = "O_rad/Cd\H_Cd\H\Cs",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S} {6,S}
@@ -4239,7 +4239,7 @@
entry(
index = 312,
label = "O_rad/Cd\H_Cd\Cs2",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 Cd u0 {1,S} {3,D} {4,S}
@@ -4254,7 +4254,7 @@
entry(
index = 313,
label = "O_rad/Cd\Cs_Cd\H2",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 Cd u0 {1,D} {5,S} {6,S}
@@ -4269,7 +4269,7 @@
entry(
index = 314,
label = "O_rad/Cd\Cs_Cd\H\Cs",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 Cd u0 {1,S} {3,D} {4,S}
@@ -4284,7 +4284,7 @@
entry(
index = 315,
label = "O_rad/Cd\Cs_Cd\Cs2",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 Cd u0 {1,S} {3,D} {4,S}
@@ -4299,7 +4299,7 @@
entry(
index = 316,
label = "O_rad/OneDeN",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [N3d,N3t,N5dc] u0 {1,S}
@@ -4310,7 +4310,7 @@
entry(
index = 317,
label = "InChI=1S/NO3/c2-1(3)4",
- group =
+ group =
"""
1 *3 O2s u1 {2,S}
2 N5dc u0 {1,S} {3,D} {4,S}
@@ -4323,7 +4323,7 @@
entry(
index = 318,
label = "S_rad",
- group =
+ group =
"""
1 *3 S u1
""",
@@ -4333,7 +4333,7 @@
entry(
index = 319,
label = "S_pri_rad",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 H u0 {1,S}
@@ -4344,7 +4344,7 @@
entry(
index = 320,
label = "S_rad/single",
- group =
+ group =
"""
1 *3 S u1 {2,S}
2 R!H u0 {1,S}
@@ -4355,7 +4355,7 @@
entry(
index = 321,
label = "S_rad/NonDeC",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 Cs u0 {1,S}
@@ -4366,7 +4366,7 @@
entry(
index = 322,
label = "S_rad/NonDeS",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 S u0 {1,S}
@@ -4377,7 +4377,7 @@
entry(
index = 323,
label = "S_rad/NonDeN",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 N u0 p1 {1,S}
@@ -4388,7 +4388,7 @@
entry(
index = 324,
label = "S_rad/NonDeO",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 O u0 {1,S}
@@ -4399,7 +4399,7 @@
entry(
index = 325,
label = "S_rad/OneDe",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -4410,7 +4410,7 @@
entry(
index = 326,
label = "S_rad/Ct",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 Ct u0 {1,S}
@@ -4421,7 +4421,7 @@
entry(
index = 327,
label = "S_rad/Cb",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 Cb u0 {1,S}
@@ -4432,7 +4432,7 @@
entry(
index = 328,
label = "S_rad/CO",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 CO u0 {1,S}
@@ -4443,7 +4443,7 @@
entry(
index = 329,
label = "S_rad/Cd",
- group =
+ group =
"""
1 Cd u0 {2,S} {3,D}
2 *3 S2s u1 {1,S}
@@ -4455,7 +4455,7 @@
entry(
index = 330,
label = "S_rad/CS",
- group =
+ group =
"""
1 *3 S2s u1 {2,S}
2 CS u0 {1,S} {3,D}
@@ -4467,7 +4467,7 @@
entry(
index = 331,
label = "S_rad/double",
- group =
+ group =
"""
1 *3 S u1 p[0,1] {2,D}
2 R!H u0 {1,D}
@@ -4478,7 +4478,7 @@
entry(
index = 332,
label = "S_rad/double_val4",
- group =
+ group =
"""
1 *3 S u1 p1 {2,D}
2 R!H u0 {1,D}
@@ -4489,7 +4489,7 @@
entry(
index = 333,
label = "S_rad/double_val4C",
- group =
+ group =
"""
1 *3 S u1 p1 {2,D}
2 C u0 {1,D}
@@ -4500,7 +4500,7 @@
entry(
index = 334,
label = "S_rad/double_val4N",
- group =
+ group =
"""
1 *3 S u1 p1 {2,D}
2 N u0 {1,D}
@@ -4511,7 +4511,7 @@
entry(
index = 335,
label = "S_rad/double_val4S",
- group =
+ group =
"""
1 *3 S u1 p1 {2,D}
2 S u0 {1,D}
@@ -4522,7 +4522,7 @@
entry(
index = 336,
label = "S_rad/double_val4O",
- group =
+ group =
"""
1 *3 S u1 p1 {2,D}
2 O u0 {1,D}
@@ -4533,7 +4533,7 @@
entry(
index = 337,
label = "S_rad/double_val6",
- group =
+ group =
"""
1 *3 [S6d,S6dc] u1 p0 {2,D}
2 R!H u0 {1,D}
@@ -4544,7 +4544,7 @@
entry(
index = 338,
label = "S_rad/double_val6C",
- group =
+ group =
"""
1 *3 [S6d,S6dc] u1 p0 {2,D}
2 C u0 {1,D}
@@ -4555,7 +4555,7 @@
entry(
index = 339,
label = "S_rad/double_val6N",
- group =
+ group =
"""
1 *3 [S6d,S6dc] u1 p0 {2,D}
2 N u0 {1,D}
@@ -4566,7 +4566,7 @@
entry(
index = 340,
label = "S_rad/double_val6S",
- group =
+ group =
"""
1 *3 [S6d,S6dc] u1 p0 {2,D}
2 S u0 {1,D}
@@ -4577,7 +4577,7 @@
entry(
index = 341,
label = "S_rad/double_val6O",
- group =
+ group =
"""
1 *3 [S6d,S6dc] u1 p0 {2,D}
2 O u0 {1,D}
@@ -4588,7 +4588,7 @@
entry(
index = 342,
label = "S_rad/twoDoubles",
- group =
+ group =
"""
1 *3 [S6dd,S6dc] u1 p0 {2,D} {3,D}
2 R!H u0 {1,D}
@@ -4600,7 +4600,7 @@
entry(
index = 343,
label = "S_rad/twoDoublesOO",
- group =
+ group =
"""
1 *3 [S6dd,S6dc] u1 p0 {2,D} {3,D}
2 O u0 {1,D}
@@ -4612,7 +4612,7 @@
entry(
index = 344,
label = "S_rad/triple",
- group =
+ group =
"""
1 *3 S u1 p[0,1] {2,T}
2 R!H u0 {1,T}
@@ -4623,7 +4623,7 @@
entry(
index = 345,
label = "S_rad/triple_val4",
- group =
+ group =
"""
1 *3 S u1 p1 {2,T}
2 R!H u0 {1,T}
@@ -4634,7 +4634,7 @@
entry(
index = 346,
label = "S_rad/triple_val4C",
- group =
+ group =
"""
1 *3 S u1 p1 {2,T}
2 C u0 {1,T}
@@ -4645,7 +4645,7 @@
entry(
index = 347,
label = "S_rad/triple_val4N",
- group =
+ group =
"""
1 *3 S u1 p1 {2,T}
2 N u0 {1,T}
@@ -4656,7 +4656,7 @@
entry(
index = 348,
label = "S_rad/triple_val4S",
- group =
+ group =
"""
1 *3 S u1 p1 {2,T}
2 S u0 p[0,1] {1,T}
@@ -4667,7 +4667,7 @@
entry(
index = 349,
label = "S_rad/triple_val6",
- group =
+ group =
"""
1 *3 S u1 p0 {2,T}
2 R!H u0 {1,T}
@@ -4678,7 +4678,7 @@
entry(
index = 350,
label = "S_rad/triple_val6C",
- group =
+ group =
"""
1 *3 S u1 p0 {2,T}
2 C u0 {1,T}
@@ -4689,7 +4689,7 @@
entry(
index = 351,
label = "S_rad/triple_val6N",
- group =
+ group =
"""
1 *3 S u1 p0 {2,T}
2 N u0 {1,T}
@@ -4700,7 +4700,7 @@
entry(
index = 352,
label = "S_rad/triple_val6S",
- group =
+ group =
"""
1 *3 S u1 p0 {2,T}
2 S u0 p[0,1] {1,T}
@@ -4711,7 +4711,7 @@
entry(
index = 353,
label = "Cd_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 C u0 {1,D}
@@ -4723,7 +4723,7 @@
entry(
index = 354,
label = "Cd_pri_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4736,7 +4736,7 @@
entry(
index = 355,
label = "Cd_Cd\H2_pri_rad",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 *3 C u1 {1,D} {5,S}
@@ -4750,7 +4750,7 @@
entry(
index = 356,
label = "Cd_Cd\H\Cs_pri_rad",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 *3 C u1 {1,D} {5,S}
@@ -4764,7 +4764,7 @@
entry(
index = 357,
label = "Cd_Cd\H\Cs|H2|Cs_pri_rad",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {5,S} {6,S}
2 Cd u0 {1,S} {3,D} {7,S}
@@ -4781,7 +4781,7 @@
entry(
index = 358,
label = "Cd_Cd\Cs2_pri_rad",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 *3 Cd u1 {1,D} {5,S}
@@ -4795,7 +4795,7 @@
entry(
index = 359,
label = "Cd_sec_rad",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4808,7 +4808,7 @@
entry(
index = 360,
label = "Cd_rad/NonDeC",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4821,7 +4821,7 @@
entry(
index = 361,
label = "Cd_Cd\H2_rad/Cs",
- group =
+ group =
"""
1 Cd u0 {2,D} {3,S} {4,S}
2 *3 Cd u1 {1,D} {5,S}
@@ -4835,7 +4835,7 @@
entry(
index = 362,
label = "Cd_Cd\H\Cs_rad/Cs",
- group =
+ group =
"""
1 Cs u0 {3,S} {4,S} {5,S} {6,S}
2 Cd u0 {3,D} {7,S} {8,S}
@@ -4852,7 +4852,7 @@
entry(
index = 363,
label = "Cd_rad/NonDeO",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4865,7 +4865,7 @@
entry(
index = 364,
label = "Cd_rad/NonDeS",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4878,7 +4878,7 @@
entry(
index = 365,
label = "Cd_rad/NonDeN",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4891,7 +4891,7 @@
entry(
index = 366,
label = "Cd_rad/OneDe",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4904,7 +4904,7 @@
entry(
index = 367,
label = "Cd_rad/Ct",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4917,7 +4917,7 @@
entry(
index = 368,
label = "Cd_rad/Cb",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4930,7 +4930,7 @@
entry(
index = 369,
label = "Cd_rad/CO",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {4,S}
@@ -4943,7 +4943,7 @@
entry(
index = 370,
label = "Cd_rad/Cd",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {5,S}
@@ -4957,7 +4957,7 @@
entry(
index = 371,
label = "Cd_rad/CS",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cd u0 {1,D} {5,S}
@@ -4971,7 +4971,7 @@
entry(
index = 372,
label = "Cd_allenic_rad",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cdd u0 {1,D}
@@ -4983,7 +4983,7 @@
entry(
index = 373,
label = "Cd_Cdd_rad/H",
- group =
+ group =
"""
1 *3 Cd u1 {2,D} {3,S}
2 Cdd u0 {1,D}
@@ -4995,7 +4995,7 @@
entry(
index = 374,
label = "Cb_rad",
- group =
+ group =
"""
1 *3 Cb u1 {2,B} {3,B}
2 [Cb,Cbf] u0 {1,B}
@@ -5007,7 +5007,7 @@
entry(
index = 375,
label = "CO_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5019,7 +5019,7 @@
entry(
index = 376,
label = "CO_pri_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5031,7 +5031,7 @@
entry(
index = 377,
label = "CO_sec_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5043,7 +5043,7 @@
entry(
index = 378,
label = "CO_rad/NonDe",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5055,7 +5055,7 @@
entry(
index = 379,
label = "CO_rad/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5067,7 +5067,7 @@
entry(
index = 380,
label = "CO_rad/OneDe",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 O u0 {1,D}
@@ -5079,7 +5079,7 @@
entry(
index = 381,
label = "CS_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5091,7 +5091,7 @@
entry(
index = 382,
label = "CS_pri_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5103,7 +5103,7 @@
entry(
index = 383,
label = "CS_sec_rad",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5115,7 +5115,7 @@
entry(
index = 384,
label = "CS_rad/NonDe",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5127,7 +5127,7 @@
entry(
index = 385,
label = "CS_rad/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5139,7 +5139,7 @@
entry(
index = 386,
label = "CS_rad/O",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5151,7 +5151,7 @@
entry(
index = 387,
label = "CS_rad/S",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5163,7 +5163,7 @@
entry(
index = 388,
label = "CS_rad/OneDe",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5175,7 +5175,7 @@
entry(
index = 389,
label = "CS_rad/Ct",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5187,7 +5187,7 @@
entry(
index = 390,
label = "CS_rad/Cb",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5199,7 +5199,7 @@
entry(
index = 391,
label = "CS_rad/CO",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5211,7 +5211,7 @@
entry(
index = 392,
label = "CS_rad/Cd",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,D}
2 Cd u0 {1,S} {4,D}
@@ -5224,7 +5224,7 @@
entry(
index = 393,
label = "CS_rad/CS",
- group =
+ group =
"""
1 *3 C u1 {2,D} {3,S}
2 S u0 {1,D}
@@ -5237,7 +5237,7 @@
entry(
index = 394,
label = "Cs_rad",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 R u0 {1,S}
@@ -5250,7 +5250,7 @@
entry(
index = 395,
label = "C_methyl",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5263,7 +5263,7 @@
entry(
index = 396,
label = "C_pri_rad",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5276,7 +5276,7 @@
entry(
index = 397,
label = "C_rad/H2/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5289,7 +5289,7 @@
entry(
index = 398,
label = "C_rad/H2/Cs\H3",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5305,7 +5305,7 @@
entry(
index = 399,
label = "C_rad/H2/Cs\Cs2\O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5321,7 +5321,7 @@
entry(
index = 400,
label = "C_rad/H2/Cs\H\Cs\Cs|O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5338,7 +5338,7 @@
entry(
index = 401,
label = "C_rad/H2/Cs\H\Cs|Cs\O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5355,7 +5355,7 @@
entry(
index = 402,
label = "C_rad/H2/Cs\H2\Cs|Cs|O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {8,S} {9,S}
@@ -5373,7 +5373,7 @@
entry(
index = 403,
label = "C_rad/H2/Cs\H2\Cs|Cs#O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {5,S} {6,S}
2 *3 C u1 {1,S} {7,S} {8,S}
@@ -5391,7 +5391,7 @@
entry(
index = 404,
label = "C_rad/H2/Ct",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5404,7 +5404,7 @@
entry(
index = 405,
label = "C_rad/H2/Cb",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5417,7 +5417,7 @@
entry(
index = 406,
label = "C_rad/H2/CO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5430,7 +5430,7 @@
entry(
index = 407,
label = "C_rad/H2/CS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5443,7 +5443,7 @@
entry(
index = 408,
label = "C_rad/H2/O",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5456,7 +5456,7 @@
entry(
index = 409,
label = "C_rad/H2/S",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5469,7 +5469,7 @@
entry(
index = 410,
label = "C_rad/H2/Cd",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 C u0 {1,S} {5,D}
@@ -5483,7 +5483,7 @@
entry(
index = 411,
label = "C_rad/H2/Cd\H_Cd\H2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {4,S} {5,S}
2 C u0 {1,S} {3,D} {6,S}
@@ -5498,7 +5498,7 @@
entry(
index = 412,
label = "C_rad/H2/Cd\Cs_Cd\H2",
- group =
+ group =
"""
1 C u0 {2,S} {5,S} {6,S} {7,S}
2 C u0 {1,S} {3,D} {4,S}
@@ -5518,7 +5518,7 @@
entry(
index = 413,
label = "C_rad/H2/N",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5531,7 +5531,7 @@
entry(
index = 414,
label = "C_sec_rad",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5544,7 +5544,7 @@
entry(
index = 415,
label = "C_rad/H/NonDeC",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5557,7 +5557,7 @@
entry(
index = 416,
label = "C_rad/H/NonDeC_5ring_fused6_1",
- group =
+ group =
"""
1 Cs u0 {3,S} {4,S} {6,S}
2 Cs u0 {4,S} {5,S} {7,S}
@@ -5574,7 +5574,7 @@
entry(
index = 417,
label = "C_rad/H/NonDeC_5ring_fused6_2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {8,S}
2 Cs u0 {1,S} {4,S} {6,S}
@@ -5591,7 +5591,7 @@
entry(
index = 418,
label = "C_rad/H/Cs\H3/Cs\H3",
- group =
+ group =
"""
1 Cs u0 {3,S} {4,S} {5,S} {6,S}
2 Cs u0 {3,S} {7,S} {8,S} {9,S}
@@ -5610,7 +5610,7 @@
entry(
index = 419,
label = "C_rad/H/NonDeC_5ring_alpha6ring",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {5,S}
2 Cs u0 {1,S} {4,S} {7,S}
@@ -5629,7 +5629,7 @@
entry(
index = 420,
label = "C_rad/H/NonDeC_5ring_beta6ring",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {6,S}
2 Cs u0 {1,S} {5,S} {7,S}
@@ -5648,7 +5648,7 @@
entry(
index = 421,
label = "C_rad/H/Cs\H2\CO/Cs",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5664,7 +5664,7 @@
entry(
index = 422,
label = "C_rad/H/Cs\H2\Cs/Cs\H2\O",
- group =
+ group =
"""
1 Cs u0 {3,S} {4,S} {6,S} {7,S}
2 Cs u0 {4,S} {5,S} {11,S} {12,S}
@@ -5687,7 +5687,7 @@
entry(
index = 423,
label = "C_rad/H/Cs\H\Cs\O/Cs",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {5,S} {6,S}
2 Cs u0 {1,S} {7,S} {8,S} {9,S}
@@ -5710,7 +5710,7 @@
entry(
index = 424,
label = "C_rad/H/Cs\H2\Cs|O/Cs",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {6,S} {7,S}
2 C u0 {1,S} {5,S} {8,S} {9,S}
@@ -5733,7 +5733,7 @@
entry(
index = 425,
label = "C_rad/H/NonDeO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5746,7 +5746,7 @@
entry(
index = 426,
label = "C_rad/H/CsO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5759,7 +5759,7 @@
entry(
index = 427,
label = "C_rad/H/Cs\H2\Cs/O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {4,S} {5,S}
2 *3 C u1 {1,S} {6,S} {7,S}
@@ -5775,7 +5775,7 @@
entry(
index = 428,
label = "C_rad/H/Cs\H2\Cs|H2|Cs/O",
- group =
+ group =
"""
1 Cs u0 {2,S} {3,S} {6,S} {7,S}
2 Cs u0 {1,S} {4,S} {8,S} {9,S}
@@ -5798,7 +5798,7 @@
entry(
index = 429,
label = "C_rad/H/Cs\H\Cs2/O",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {5,S} {6,S}
2 *3 C u1 {1,S} {3,S} {7,S}
@@ -5815,7 +5815,7 @@
entry(
index = 430,
label = "C_rad/H/O2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5828,7 +5828,7 @@
entry(
index = 431,
label = "C_rad/H/NonDeS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5841,7 +5841,7 @@
entry(
index = 432,
label = "C_rad/H/CsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5854,7 +5854,7 @@
entry(
index = 433,
label = "C_rad/H/S2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5867,7 +5867,7 @@
entry(
index = 434,
label = "C_rad/H/NonDeCN",
- group =
+ group =
"""
1 *3 Cs u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5880,7 +5880,7 @@
entry(
index = 435,
label = "C_rad/H/NonDeON",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5893,7 +5893,7 @@
entry(
index = 436,
label = "C_rad/H/NonDeNN",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5906,7 +5906,7 @@
entry(
index = 437,
label = "C_rad/H/OneDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5919,7 +5919,7 @@
entry(
index = 438,
label = "C_rad/H/OneDeC",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5932,7 +5932,7 @@
entry(
index = 439,
label = "C_rad/H/CtCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5945,7 +5945,7 @@
entry(
index = 440,
label = "C_rad/H/CbCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5958,7 +5958,7 @@
entry(
index = 441,
label = "C_rad/H/CO/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -5971,7 +5971,7 @@
entry(
index = 442,
label = "C_rad/H/CO\H/Cs\H3",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {5,S} {6,S}
2 *3 C u1 {1,S} {3,S} {7,S}
@@ -5989,7 +5989,7 @@
entry(
index = 443,
label = "C_rad/H/CdCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6003,7 +6003,7 @@
entry(
index = 444,
label = "C_rad/H/CSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6016,7 +6016,7 @@
entry(
index = 445,
label = "C_rad/H/OneDeO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6029,7 +6029,7 @@
entry(
index = 446,
label = "C_rad/H/OneDeS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6042,7 +6042,7 @@
entry(
index = 447,
label = "C_rad/H/CtS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6055,7 +6055,7 @@
entry(
index = 448,
label = "C_rad/H/CbS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6068,7 +6068,7 @@
entry(
index = 449,
label = "C_rad/H/CdS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6082,7 +6082,7 @@
entry(
index = 450,
label = "C_rad/H/CSS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CS u0 {1,S} {5,D}
@@ -6096,7 +6096,7 @@
entry(
index = 451,
label = "C_rad/H/OneDeN",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6109,7 +6109,7 @@
entry(
index = 452,
label = "C_rad/H/TwoDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6122,7 +6122,7 @@
entry(
index = 453,
label = "C_rad/H/CtCt",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6135,7 +6135,7 @@
entry(
index = 454,
label = "C_rad/H/CtCb",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6148,7 +6148,7 @@
entry(
index = 455,
label = "C_rad/H/CtCO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6161,7 +6161,7 @@
entry(
index = 456,
label = "C_rad/H/CbCb",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6174,7 +6174,7 @@
entry(
index = 457,
label = "C_rad/H/CbCO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6187,7 +6187,7 @@
entry(
index = 458,
label = "C_rad/H/COCO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6200,7 +6200,7 @@
entry(
index = 459,
label = "C_rad/H/CdCt",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6214,7 +6214,7 @@
entry(
index = 460,
label = "C_rad/H/CtCS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6228,7 +6228,7 @@
entry(
index = 461,
label = "C_rad/H/CdCb",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6242,7 +6242,7 @@
entry(
index = 462,
label = "C_rad/H/CbCS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6256,7 +6256,7 @@
entry(
index = 463,
label = "C_rad/H/CdCO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6270,7 +6270,7 @@
entry(
index = 464,
label = "C_rad/H/COCS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6283,7 +6283,7 @@
entry(
index = 465,
label = "C_rad/H/CdCd",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6298,7 +6298,7 @@
entry(
index = 466,
label = "C_rad/H/CdCS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6313,7 +6313,7 @@
entry(
index = 467,
label = "C_rad/H/CSCS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -6328,7 +6328,7 @@
entry(
index = 468,
label = "C_ter_rad",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 R!H u0 {1,S}
@@ -6341,7 +6341,7 @@
entry(
index = 469,
label = "C_rad/NonDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cs,O,S] u0 {1,S}
@@ -6354,7 +6354,7 @@
entry(
index = 470,
label = "C_rad/Cs3",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cs u0 {1,S}
@@ -6367,7 +6367,7 @@
entry(
index = 471,
label = "C_rad/Cs2/Cs\O",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cs u0 {1,S} {5,S}
@@ -6381,7 +6381,7 @@
entry(
index = 472,
label = "C_rad/Cs3_5ring_fused6",
- group =
+ group =
"""
1 *3 C u1 {3,S} {4,S} {5,S}
2 Cs u0 {3,S} {6,S} {7,S}
@@ -6397,7 +6397,7 @@
entry(
index = 473,
label = "C_rad/Cs3_5ring_adj5",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cs u0 {1,S} {5,S} {6,S}
@@ -6414,7 +6414,7 @@
entry(
index = 474,
label = "C_rad/NDMustO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 O u0 {1,S}
@@ -6427,7 +6427,7 @@
entry(
index = 475,
label = "C_rad/Cs2O",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 O u0 {1,S}
@@ -6440,7 +6440,7 @@
entry(
index = 476,
label = "C_rad/OOH/Cs/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 O u0 {1,S} {5,S}
@@ -6454,7 +6454,7 @@
entry(
index = 477,
label = "C_rad/O/Cs/Cs\Cs",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {6,S} {7,S}
2 C u0 {1,S} {8,S} {9,S} {10,S}
@@ -6477,7 +6477,7 @@
entry(
index = 478,
label = "C_rad/CsO2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 O u0 {1,S}
@@ -6490,7 +6490,7 @@
entry(
index = 479,
label = "C_rad/O3",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 O u0 {1,S}
@@ -6503,7 +6503,7 @@
entry(
index = 480,
label = "C_rad/NDMustS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 S u0 {1,S}
@@ -6516,7 +6516,7 @@
entry(
index = 481,
label = "C_rad/Cs2S",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 S u0 {1,S}
@@ -6529,7 +6529,7 @@
entry(
index = 482,
label = "C_rad/CsS2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 S u0 {1,S}
@@ -6542,7 +6542,7 @@
entry(
index = 483,
label = "C_rad/S3",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 S u0 {1,S}
@@ -6555,7 +6555,7 @@
entry(
index = 484,
label = "C_rad/OneDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6568,7 +6568,7 @@
entry(
index = 485,
label = "C_rad/Cs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6581,7 +6581,7 @@
entry(
index = 486,
label = "C_rad/CtCs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6594,7 +6594,7 @@
entry(
index = 487,
label = "C_rad/CbCs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -6607,7 +6607,7 @@
entry(
index = 488,
label = "C_rad/COCs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -6620,7 +6620,7 @@
entry(
index = 489,
label = "C_rad/CdCs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6634,7 +6634,7 @@
entry(
index = 490,
label = "C_rad/CSCs2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -6647,7 +6647,7 @@
entry(
index = 491,
label = "C_rad/CsO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6660,7 +6660,7 @@
entry(
index = 492,
label = "C_rad/CsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6673,7 +6673,7 @@
entry(
index = 493,
label = "C_rad/CtCsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6686,7 +6686,7 @@
entry(
index = 494,
label = "C_rad/CbCsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -6699,7 +6699,7 @@
entry(
index = 495,
label = "C_rad/CdCsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6713,7 +6713,7 @@
entry(
index = 496,
label = "C_rad/CSCsS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -6726,7 +6726,7 @@
entry(
index = 497,
label = "C_rad/O2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6739,7 +6739,7 @@
entry(
index = 498,
label = "C_rad/OS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6752,7 +6752,7 @@
entry(
index = 499,
label = "C_rad/S2",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6765,7 +6765,7 @@
entry(
index = 500,
label = "C_rad/TwoDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6778,7 +6778,7 @@
entry(
index = 501,
label = "C_rad/Cs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -6791,7 +6791,7 @@
entry(
index = 502,
label = "C_rad/CtCtCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6804,7 +6804,7 @@
entry(
index = 503,
label = "C_rad/CtCbCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6817,7 +6817,7 @@
entry(
index = 504,
label = "C_rad/CtCOCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6830,7 +6830,7 @@
entry(
index = 505,
label = "C_rad/CbCbCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -6843,7 +6843,7 @@
entry(
index = 506,
label = "C_rad/CbCOCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -6856,7 +6856,7 @@
entry(
index = 507,
label = "C_rad/COCOCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -6869,7 +6869,7 @@
entry(
index = 508,
label = "C_rad/CdCtCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6883,7 +6883,7 @@
entry(
index = 509,
label = "C_rad/CtCSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -6896,7 +6896,7 @@
entry(
index = 510,
label = "C_rad/CdCbCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6910,7 +6910,7 @@
entry(
index = 511,
label = "C_rad/CbCSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -6923,7 +6923,7 @@
entry(
index = 512,
label = "C_rad/CdCOCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6937,7 +6937,7 @@
entry(
index = 513,
label = "C_rad/COCSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -6950,7 +6950,7 @@
entry(
index = 514,
label = "C_rad/CdCdCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6965,7 +6965,7 @@
entry(
index = 515,
label = "C_rad/CdCSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -6979,7 +6979,7 @@
entry(
index = 516,
label = "C_rad/CSCSCs",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -6992,7 +6992,7 @@
entry(
index = 517,
label = "C_rad/TDMustO",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -7005,7 +7005,7 @@
entry(
index = 518,
label = "C_rad/TDMustS",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -7018,7 +7018,7 @@
entry(
index = 519,
label = "C_rad/ThreeDe",
- group =
+ group =
"""
1 *3 C u1 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -7031,7 +7031,7 @@
entry(
index = 520,
label = "N3_rad",
- group =
+ group =
"""
1 *3 [N3s,N3d] u1
""",
@@ -7041,7 +7041,7 @@
entry(
index = 521,
label = "N3s_rad",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 R u[0,1] {1,S}
@@ -7053,7 +7053,7 @@
entry(
index = 522,
label = "NH2_rad",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 H u0 {1,S}
@@ -7065,7 +7065,7 @@
entry(
index = 523,
label = "N3s_rad_pri",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 H u0 {1,S}
@@ -7077,7 +7077,7 @@
entry(
index = 524,
label = "N3s_rad_sec",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 R!H u0 {1,S}
@@ -7089,7 +7089,7 @@
entry(
index = 525,
label = "N3d_rad",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 R!H u0 {1,D}
@@ -7100,7 +7100,7 @@
entry(
index = 526,
label = "N3d_rad/OneDe",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 [Cd,Cdd] u0 {1,D}
@@ -7111,7 +7111,7 @@
entry(
index = 527,
label = "N3d_rad/OneDeC",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 Cdd u0 {1,D}
@@ -7122,7 +7122,7 @@
entry(
index = 528,
label = "N3d_rad/OneDeCdd_O",
- group =
+ group =
"""
1 Cdd u0 {2,D} {3,D}
2 *3 N3d u1 {1,D}
@@ -7134,7 +7134,7 @@
entry(
index = 529,
label = "N5_rad",
- group =
+ group =
"""
1 *3 [N5sc,N5dc,N5tc] u1
""",
@@ -7144,7 +7144,7 @@
entry(
index = 530,
label = "N5dc_rad",
- group =
+ group =
"""
1 *3 N5dc u1
""",
@@ -7154,7 +7154,7 @@
entry(
index = 531,
label = "Cl_rad",
- group =
+ group =
"""
1 *3 Cl1s u1
""",
@@ -7182,6 +7182,16 @@
kinetics = None,
)
+entry(
+ index = 534,
+ label = "Li_rad",
+ group =
+"""
+1 *3 Li u1
+""",
+ kinetics = None,
+)
+
tree(
"""
L1: X_H_or_Xrad_H_Xbirad_H_Xtrirad_H
@@ -7719,19 +7729,20 @@
L4: N5dc_rad
L3: Cl_rad
L3: I_rad
+ L3: Li_rad
"""
)
forbidden(
label = "disprop1_OS_rad",
- group =
+ group =
"""
1 *1 [C,N] u0 {2,S} {3,S}
2 [O,S] u1 {1,S}
3 *2 H u0 {1,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
This group forbids `H[C,N][O,S].`, where the radical site is O or S, but the non-rad site isn't O or S.
""",
@@ -7739,14 +7750,14 @@
forbidden(
label = "disprop1_base_case",
- group =
+ group =
"""
1 *1 R u0 {2,S} {3,S}
2 [C,N] u1 {1,S}
3 *2 H u0 {1,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
Generally, we'd like to forbid `HR[R.]` from reacting here (`.` marks a radical), since this is a disprop reaction.
However, the following specific cases must not be forbidden here: `HO2`, `HSS`, `HOS`, `HSO`
@@ -7757,14 +7768,14 @@
forbidden(
label = "disprop1_hyperS_H",
- group =
+ group =
"""
1 *1 S u0 p[0,1] {2,S} {3,S}
2 [O,S] u1 {1,S}
3 *2 H u0 {1,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
This group forbids `H[S p0,1][O,S].`, where hypervalance S is allowed at the H site
""",
@@ -7772,14 +7783,14 @@
forbidden(
label = "disprop1_hyperS_rad",
- group =
+ group =
"""
1 *1 [O,S] u0 {2,S} {3,S}
2 S u1 p[0,1] {1,S}
3 *2 H u0 {1,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
This group forbids `H[O,S][S p0,1].`, where hypervalance S is allowed at the rad site
""",
@@ -7787,7 +7798,7 @@
forbidden(
label = "disprop2",
- group =
+ group =
"""
1 R u0 {2,S} {3,D}
2 *1 R u0 {1,S} {4,S}
@@ -7796,7 +7807,7 @@
5 R u1 {3,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -7804,7 +7815,7 @@
forbidden(
label = "disprop3",
- group =
+ group =
"""
1 R u0 {2,S} {3,T}
2 *1 R u0 {1,S} {4,S}
@@ -7813,7 +7824,7 @@
5 R u1 {3,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -7821,7 +7832,7 @@
forbidden(
label = "disprop4",
- group =
+ group =
"""
1 R u0 {2,D} {3,S}
2 R u0 {1,D} {4,S}
@@ -7832,7 +7843,7 @@
7 R u1 {5,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -7840,7 +7851,7 @@
forbidden(
label = "disprop5",
- group =
+ group =
"""
1 R u0 {2,D} {3,S}
2 R u0 {1,D} {4,S}
@@ -7851,7 +7862,7 @@
7 R u1 {5,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
diff --git a/input/kinetics/families/H_Abstraction/training/dictionary.txt b/input/kinetics/families/H_Abstraction/training/dictionary.txt
index af04932154..d2641a2a10 100644
--- a/input/kinetics/families/H_Abstraction/training/dictionary.txt
+++ b/input/kinetics/families/H_Abstraction/training/dictionary.txt
@@ -5531,7 +5531,6 @@ multiplicity 2
15 H u0 p0 c0 {4,S}
16 H u0 p0 c0 {5,S}
-
C6H5-3
multiplicity 2
1 C u0 p0 c0 {2,B} {3,B} {8,S}
@@ -5906,4 +5905,12 @@ multiplicity 2
32 H u0 p0 c0 {12,S}
33 H u0 p0 c0 {13,S}
34 H u0 p0 c0 {14,S}
-35 H u0 p0 c0 {18,S}
\ No newline at end of file
+35 H u0 p0 c0 {18,S}
+
+HLi
+1 *1 Li u0 p0 c0 {2,S}
+2 *2 H u0 p0 c0 {1,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
diff --git a/input/kinetics/families/H_Abstraction/training/reactions.py b/input/kinetics/families/H_Abstraction/training/reactions.py
index 62cd6344f6..44c5110460 100755
--- a/input/kinetics/families/H_Abstraction/training/reactions.py
+++ b/input/kinetics/families/H_Abstraction/training/reactions.py
@@ -14,7 +14,7 @@
kinetics = Arrhenius(A=(5.76,'cm^3/(mol*s)'), n=3.16, Ea=(0.75,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + *CH2CH2CH2CH2OH = nButanol + HO2
@@ -42,7 +42,7 @@
kinetics = Arrhenius(A=(1.35,'cm^3/(mol*s)'), n=3.42, Ea=(1.43,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3*CHCH2CH2OH = nButanol + HO2
@@ -70,7 +70,7 @@
kinetics = Arrhenius(A=(0.629,'cm^3/(mol*s)'), n=3.52, Ea=(1.61,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2*CHCH2OH = nButanol + HO2
@@ -98,7 +98,7 @@
kinetics = Arrhenius(A=(2.97,'cm^3/(mol*s)'), n=3.39, Ea=(1.4,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2CH2*CHOH = nButanol + HO2
@@ -126,7 +126,7 @@
kinetics = Arrhenius(A=(11.5,'cm^3/(mol*s)'), n=2.94, Ea=(0.46,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + *CH2CH2CH[OH]CH3 = 2-Butanol + HO2
@@ -146,7 +146,7 @@
kinetics = Arrhenius(A=(1.75,'cm^3/(mol*s)'), n=2.91, Ea=(-0.41,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3*CHCH[OH]CH3 = 2-Butanol + HO2
@@ -166,7 +166,7 @@
kinetics = Arrhenius(A=(34.6,'cm^3/(mol*s)'), n=3.05, Ea=(1.02,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2*C[OH]CH3 = 2-Butanol + HO2
@@ -186,7 +186,7 @@
kinetics = Arrhenius(A=(0.611,'cm^3/(mol*s)'), n=3.53, Ea=(1.52,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2CH[OH]*CH2 = 2-Butanol + HO2
@@ -206,7 +206,7 @@
kinetics = Arrhenius(A=(0.42,'cm^3/(mol*s)'), n=3.53, Ea=(1.56,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + HOC[*CH2][CH3][CH3] = tert-Butanol + HO2
@@ -226,7 +226,7 @@
kinetics = Arrhenius(A=(0.0613,'cm^3/(mol*s)'), n=3.95, Ea=(12.22,'kcal/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
CH2O + H2C=C[*CH2][CH3] = HCO + H2C=C[CH3]2
@@ -239,10 +239,10 @@
electronic spin multiplicity was 1 for CH2O and iso-butene; the electronic spin multiplicity for all others was 2.
There are no rate coefficients for this reaction in the literature (based on MRH's limited search).
- Tsang {J. Phys. Chem. Ref. Data 20 (1991) 221-273} recommends the following for the reaction of
+ Tsang {J. Phys. Chem. Ref. Data 20 (1991) 221-273} recommends the following for the reaction of
CH2O + H2C=CH-*CH2 = HCO + H2C=CH-CH3: k(T) = 1.26e+08 * T^1.9 * exp(-18.184 kcal/mol / RT) cm3 mol-1 s-1.
This rate coefficient is 25-85x faster than MRH's calculation over the range 600-2000K.
-
+
The previous estimate by RMG for this reaction was: k(T) = 5.500e+03 * T^2.81 * exp(-5.86 kcal/mol / RT) cm3 mol-1 s-1.
This rate coefficient is 80-13,000x faster than MRH's calculation over the range 600-2000K.
""",
@@ -255,7 +255,7 @@
kinetics = Arrhenius(A=(1.822e-06,'cm^3/(mol*s)'), n=5.11, Ea=(5.69,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -276,7 +276,7 @@
kinetics = Arrhenius(A=(2.12e-06,'cm^3/(mol*s)'), n=5.06, Ea=(4.89,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -297,7 +297,7 @@
kinetics = Arrhenius(A=(5.034e-05,'cm^3/(mol*s)'), n=4.89, Ea=(4.32,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -318,7 +318,7 @@
kinetics = Arrhenius(A=(8.64e-05,'cm^3/(mol*s)'), n=4.52, Ea=(1.46,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -339,7 +339,7 @@
kinetics = Arrhenius(A=(2.946e-05,'cm^3/(mol*s)'), n=5.07, Ea=(3.66,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -360,7 +360,7 @@
kinetics = Arrhenius(A=(3.498,'cm^3/(mol*s)'), n=3.74, Ea=(1.45,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -381,7 +381,7 @@
kinetics = Arrhenius(A=(0.0001008,'cm^3/(mol*s)'), n=4.75, Ea=(4.13,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -406,7 +406,7 @@
kinetics = Arrhenius(A=(4.92e-06,'cm^3/(mol*s)'), n=4.98, Ea=(3.18,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -431,7 +431,7 @@
kinetics = Arrhenius(A=(9.33e-06,'cm^3/(mol*s)'), n=4.97, Ea=(3.64,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -452,7 +452,7 @@
kinetics = Arrhenius(A=(0.357,'cm^3/(mol*s)'), n=3.9, Ea=(1.81,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -473,7 +473,7 @@
kinetics = Arrhenius(A=(1.926e-05,'cm^3/(mol*s)'), n=5.28, Ea=(7.78,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -498,7 +498,7 @@
kinetics = Arrhenius(A=(1.41e-05,'cm^3/(mol*s)'), n=4.83, Ea=(4.37,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -523,7 +523,7 @@
kinetics = Arrhenius(A=(8.5e-06,'cm^3/(mol*s)'), n=5.01, Ea=(5.01,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -544,7 +544,7 @@
kinetics = Arrhenius(A=(0.03042,'cm^3/(mol*s)'), n=4.52, Ea=(2.34,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -565,7 +565,7 @@
kinetics = Arrhenius(A=(5.49,'cm^3/(mol*s)'), n=3.33, Ea=(0.63,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -590,7 +590,7 @@
kinetics = Arrhenius(A=(0.0001866,'cm^3/(mol*s)'), n=4.87, Ea=(3.5,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -611,7 +611,7 @@
kinetics = Arrhenius(A=(0.0256,'cm^3/(mol*s)'), n=4.09, Ea=(1.31,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -632,7 +632,7 @@
kinetics = Arrhenius(A=(0.000312,'cm^3/(mol*s)'), n=4.31, Ea=(3.39,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -653,7 +653,7 @@
kinetics = Arrhenius(A=(0.000485,'cm^3/(mol*s)'), n=4.37, Ea=(9.66,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -674,7 +674,7 @@
kinetics = Arrhenius(A=(0.00368,'cm^3/(mol*s)'), n=4.02, Ea=(7.92,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -695,7 +695,7 @@
kinetics = Arrhenius(A=(2.08e+07,'cm^3/(mol*s)'), n=1.84, Ea=(3.03,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -716,7 +716,7 @@
kinetics = Arrhenius(A=(4.512e-07,'cm^3/(mol*s)'), n=5.77, Ea=(12.04,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -737,7 +737,7 @@
kinetics = Arrhenius(A=(0.00346998,'cm^3/(mol*s)'), n=4.65, Ea=(9.78,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO.
@@ -758,7 +758,7 @@
kinetics = Arrhenius(A=(0.875,'cm^3/(mol*s)'), n=3.59, Ea=(-4.03,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO.
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -781,7 +781,7 @@
kinetics = Arrhenius(A=(0.000508,'cm^3/(mol*s)'), n=4.59, Ea=(7.16,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO.
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -804,7 +804,7 @@
kinetics = Arrhenius(A=(2,'cm^3/(mol*s)'), n=3.52, Ea=(-7.48,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO . Pre-exponential was divided by 2 to account for summetry of H2O2
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -827,7 +827,7 @@
kinetics = Arrhenius(A=(0.0699,'cm^3/(mol*s)','*|/',3), n=3.75, Ea=(10.89,'kcal/mol','+|-',2), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
Exact reaction: HOOH + *O-CH=CH-C2H5 <=> HO-CH=CH-C2H5 + HOO*
Rxn family nodes: H2O2 + InChI=1/C4H7O/c1-2-3-4-5/h3-4H,2H2,1H3
@@ -855,7 +855,7 @@
kinetics = Arrhenius(A=(0.184,'cm^3/(mol*s)','*|/',3), n=3.96, Ea=(6.63,'kcal/mol','+|-',2), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
Exact reaction: HOOH + *O-O-CH3 <=> HO-O-CH3 + HOO*
Rxn family nodes: H2O2 + OOCH3
@@ -883,7 +883,7 @@
kinetics = Arrhenius(A=(0.01482,'cm^3/(mol*s)','*|/',3), n=4.313, Ea=(8.016,'kcal/mol','+|-',2), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations, w/1dHR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/1d hindered rotor corrections
Exact reaction: CH3CH2CH=CH2 + OOCH3 = HOOCH3 + CH3CHCH=CH2
@@ -920,7 +920,7 @@
kinetics = Arrhenius(A=(0.0351,'cm^3/(mol*s)','*|/',3), n=4.22, Ea=(9.86,'kcal/mol','+|-',2), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
MHS CBS-QB3 calculations w/1d hindered rotor corrections
Exact reaction: *CH2-CH=CH2 + H2O2 = CH3-CH=CH2 + HO2
@@ -948,7 +948,7 @@
kinetics = Arrhenius(A=(0.000191,'cm^3/(mol*s)','*|/',3), n=4.25, Ea=(0.81,'kcal/mol','+|-',2), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MHS CBS-QB3 w/o 1dHR calculations""",
- longDesc =
+ longDesc =
"""
MHS CBS-QB3 calculations without 1d hindered rotor correction (due to presence of hydrogen bond interactions)
Exact reaction: HO2 + CH3-CH2-CH2-CH=O = H2O2 + CH3-CH2-CH2-C*=O
@@ -969,7 +969,7 @@
kinetics = Arrhenius(A=(2.35e-06,'cm^3/(mol*s)'), n=4.84, Ea=(4.27,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -994,7 +994,7 @@
kinetics = Arrhenius(A=(132.6,'cm^3/(mol*s)'), n=3.29, Ea=(-1,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)C + OH --> CJC(=O)C + H2O
@@ -1017,7 +1017,7 @@
kinetics = Arrhenius(A=(399,'cm^3/(mol*s)'), n=3.08, Ea=(-0.9433,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)CC + OH --> CJC(=O)CC + H2O
@@ -1040,7 +1040,7 @@
kinetics = Arrhenius(A=(236,'cm^3/(mol*s)'), n=3.15, Ea=(-3.048,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)CC + OH --> CC(=)CJC + H2O
@@ -1063,7 +1063,7 @@
kinetics = Arrhenius(A=(1.35,'cm^3/(mol*s)'), n=3.81, Ea=(-2.897,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)CC + OH --> CC(=O)CCJ + H2O
@@ -1086,7 +1086,7 @@
kinetics = Arrhenius(A=(2568,'cm^3/(mol*s)'), n=2.9, Ea=(-1.0505,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)C(C)C + OH --> CJC(=O)C(C)C
@@ -1109,7 +1109,7 @@
kinetics = Arrhenius(A=(4920,'cm^3/(mol*s)'), n=2.7, Ea=(-4.033,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)C(C)C + OH --> CC(=O)CJ(C)C
@@ -1132,7 +1132,7 @@
kinetics = Arrhenius(A=(15.54,'cm^3/(mol*s)'), n=3.54, Ea=(-2.907,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """John Simmie, G3 calculations. Rate constant per H atom.""",
- longDesc =
+ longDesc =
"""
CC(=O)C(C)C + OH --> CC(=O)C(C)CJ + H2O
@@ -1155,7 +1155,7 @@
kinetics = Arrhenius(A=(3610,'cm^3/(mol*s)'), n=2.89, Ea=(-2291,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Zador CCSD(T) calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation by J. Zador at CCSD(T) level
[ This rate was obtained by personal communication as of Sept 2012]
@@ -1169,7 +1169,7 @@
kinetics = Arrhenius(A=(469,'cm^3/(mol*s)'), n=3.02, Ea=(66.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1183,7 +1183,7 @@
kinetics = Arrhenius(A=(263,'cm^3/(mol*s)'), n=3.41, Ea=(42.2,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1197,7 +1197,7 @@
kinetics = Arrhenius(A=(512,'cm^3/(mol*s)'), n=3.39, Ea=(43.2,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1211,7 +1211,7 @@
kinetics = Arrhenius(A=(3.16e+06,'cm^3/(mol*s)'), n=1.79, Ea=(34.6,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1225,7 +1225,7 @@
kinetics = Arrhenius(A=(19400,'cm^3/(mol*s)'), n=2.53, Ea=(31.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1239,7 +1239,7 @@
kinetics = Arrhenius(A=(0.178,'cm^3/(mol*s)'), n=3.31, Ea=(81.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1253,7 +1253,7 @@
kinetics = Arrhenius(A=(1.2,'cm^3/(mol*s)'), n=3.79, Ea=(9.9,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1267,7 +1267,7 @@
kinetics = Arrhenius(A=(13.2,'cm^3/(mol*s)'), n=3.4, Ea=(0.4,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1281,7 +1281,7 @@
kinetics = Arrhenius(A=(162,'cm^3/(mol*s)'), n=3.32, Ea=(36.5,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1295,7 +1295,7 @@
kinetics = Arrhenius(A=(151,'cm^3/(mol*s)'), n=3.37, Ea=(30.2,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1309,7 +1309,7 @@
kinetics = Arrhenius(A=(66.2,'cm^3/(mol*s)'), n=3.32, Ea=(8.01,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Glarborg CBS-QB3 calc""",
- longDesc =
+ longDesc =
"""
Rate comes from quantum calculation at CBS-QB3 level
J. Phys. Chem. A 2016, 120, 8941-8948; doi: 10.1021/acs.jpca.6b09357
@@ -1323,7 +1323,7 @@
kinetics = Arrhenius(A=(1.48e+22,'cm^3/(mol*s)'), n=-3.37, Ea=(5429,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
k8 in S. Xu, M.C. Lin, Proceedings of the Combustion Institute, 2009, 32, 99-106, doi: 10.1016/j.proci.2008.07.011
Done at the CCSD(T)/6-311+G(3df,2p)//CCSD/6-311++G(d,p) level of theory
@@ -1338,7 +1338,7 @@
kinetics = Arrhenius(A=(1.61e+08,'cm^3/(mol*s)'), n=1.25, Ea=(24443,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
k13 in S. Xu, M.C. Lin, Proceedings of the Combustion Institute, 2009, 32, 99-106, doi: 10.1016/j.proci.2008.07.011
Done at the CCSD(T)/6-311+G(3df,2p)//CCSD/6-311++G(d,p) level of theory
@@ -1353,7 +1353,7 @@
kinetics = Arrhenius(A=(1.6e+14,'cm^3/(mol*s)'), n=0, Ea=(25138,'cal/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
D.F. Davidson, R.K. Hanson, Int. J. Chem. Kin., 1990, 22(8), 843-861, doi: 10.1002/kin.550220805
""",
@@ -1366,7 +1366,7 @@
kinetics = Arrhenius(A=(64.4,'cm^3/(mol*s)'), n=3.16, Ea=(30488,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
P. Raghunath, Y.H. Lin, M.C. Lin, Computational and Theoretical Chemistry, 2014, 1046, 73-80, doi: 10.1016/j.comptc.2014.07.011
calculations done at the CCSD(T)/CBS//CCSD level of theoty,
@@ -1381,7 +1381,7 @@
kinetics = Arrhenius(A=(104000,'cm^3/(mol*s)'), n=2.48, Ea=(-1886,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
k7 in: S. Xu, M.C. Lin, J. Phys. Chem. A, 2007, 111, 6730-6740, doi: 10.1021/jp069038+
Done at the CCSD(T)/6-311+G(3df,2p)//B3LYP/6-311+G(3df,2p) level of theory
@@ -1395,7 +1395,7 @@
kinetics = Arrhenius(A=(1.04e+07,'cm^3/(mol*s)'), n=1.73, Ea=(56544,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(5000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
A.M. Mebel, E.W.G. Diau, M.C. Lin, K.Morokuma, J. Phys. Chem., 1996, 100, 7517-7525, doi: 10.1021/jp953644f
k1 on p. 7519
@@ -1410,7 +1410,7 @@
kinetics = Arrhenius(A=(20300,'cm^3/(mol*s)'), n=2.58163, Ea=(6538,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """HEAT""",
- longDesc =
+ longDesc =
"""
T.L. Nguyen, J.F. Staton, IJCK 2019, doi: 10.1002/kin.21255
calculations done at the HEAT-456QP level of theory
@@ -1424,7 +1424,7 @@
kinetics = Arrhenius(A=(13600,'cm^3/(mol*s)'), n=2.87, Ea=(10691,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(5000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
A.M. Mebel, L.V. Moskaleva, M.C. Lin, J. Molec. Struc. (Theochem), 1999, 461-462, 223-238, doi: 10.1016/S0166-1280(98)00423-0
k2 on p. 232
@@ -1439,7 +1439,7 @@
kinetics = Arrhenius(A=(2.62e+13,'cm^3/(mol*s)'), n=0, Ea=(16846,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(5000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
A.M. Mebel, L.V. Moskaleva, M.C. Lin, J. Molec. Struc. (Theochem), 1999, 461-462, 223-238, doi: 10.1016/S0166-1280(98)00423-0
k4 on p. 233
@@ -1456,7 +1456,7 @@
kinetics = Arrhenius(A=(3.5e+07,'cm^3/(mol*s)'), n=1.94, Ea=(904,'cal/mol'), T0=(1,'K'), Tmin=(190,'K'), Tmax=(2237,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
J. Peng, X. Hu, P. Marshall, J. Phys. Chem. A, 1999, 103, 5307-5311, doi: 10.1021/jp984242l
Combined experimental (298-598 K) and computational calculation at the QCISD(T)/6-311+G(3df,2p) level
@@ -1471,7 +1471,7 @@
kinetics = Arrhenius(A=(3.7e+06,'cm^3/(mol*s)'), n=2.297, Ea=(9010,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
C.R. Zhou, K. Sendt, B.S. Haynes, J. Phys. Chem. A, 2008, 112, 3239-3247, doi: 10.1021/jp710488d
calculations done at the MRCI/aug-cc-pV(Q+d)Z//MRCI/aug-cc-pVTZ level of theory
@@ -1485,7 +1485,7 @@
kinetics = Arrhenius(A=(1.58e+14,'cm^3/(mol*s)'), n=0, Ea=(19700,'cal/mol'), T0=(1,'K'), Tmin=(2740,'K'), Tmax=(3570,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
Shock Tube
H. Shiina, M. Oya, K. Yamashita, A. Miyoshi, H. Matsui, J. Phys. Chem., 1996, 100(6), 2136-2140, doi: 10.1021/jp952472j
@@ -1499,7 +1499,7 @@
kinetics = Arrhenius(A=(2.04e+14,'cm^3/(mol*s)'), n=0, Ea=(19910,'cal/mol'), T0=(1,'K'), Tmin=(830,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Tsuchiya, K. Yamashita, A. Miyoshi, H. Matsui, J. Phys. Chem., 1996, 100(43), 17202-17206, doi: 10.1021/jp961252i
Shock Tube
@@ -1514,7 +1514,7 @@
kinetics = Arrhenius(A=(1.23e+14,'cm^3/(mol*s)'), n=0, Ea=(14750,'cal/mol'), T0=(1,'K'), Tmin=(830,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Tsuchiya, K. Yamashita, A. Miyoshi, H. Matsui, J. Phys. Chem., 1996, 100(43), 17202-17206, doi: 10.1021/jp961252i
Shock Tube
@@ -1529,7 +1529,7 @@
kinetics = Arrhenius(A=(4.17e+06,'cm^3/(mol*s)'), n=2.2, Ea=(-600,'cal/mol'), T0=(1,'K'), Tmin=(873,'K'), Tmax=(1423,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Sendt, M. Jazbec, B.S. Haynes, Proceedings of the Combustion Institute, 2002, 29, 2439-2446, doi: 10.1016/S1540-7489(02)80297-8
TST
@@ -1543,7 +1543,7 @@
kinetics = Arrhenius(A=(9.56,'cm^3/(mol*s)'), n=3.37, Ea=(-1672,'cal/mol'), T0=(1,'K'), Tmin=(873,'K'), Tmax=(1423,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Sendt, M. Jazbec, B.S. Haynes, Proceedings of the Combustion Institute, 2002, 29, 2439-2446, doi: 10.1016/S1540-7489(02)80297-8
TST
@@ -1557,7 +1557,7 @@
kinetics = Arrhenius(A=(9.56,'cm^3/(mol*s)'), n=3.37, Ea=(-1672,'cal/mol'), T0=(1,'K'), Tmin=(873,'K'), Tmax=(1423,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Sendt, M. Jazbec, B.S. Haynes, Proceedings of the Combustion Institute, 2002, 29, 2439-2446, doi: 10.1016/S1540-7489(02)80297-8
TST
@@ -1571,7 +1571,7 @@
kinetics = Arrhenius(A=(6400,'cm^3/(mol*s)'), n=2.98, Ea=(-1480,'cal/mol'), T0=(1,'K'), Tmin=(873,'K'), Tmax=(1423,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Sendt, M. Jazbec, B.S. Haynes, Proceedings of the Combustion Institute, 2002, 29, 2439-2446, doi: 10.1016/S1540-7489(02)80297-8
TST
@@ -1585,7 +1585,7 @@
kinetics = Arrhenius(A=(6400,'cm^3/(mol*s)'), n=2.98, Ea=(-1480,'cal/mol'), T0=(1,'K'), Tmin=(873,'K'), Tmax=(1423,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
K. Sendt, M. Jazbec, B.S. Haynes, Proceedings of the Combustion Institute, 2002, 29, 2439-2446, doi: 10.1016/S1540-7489(02)80297-8
TST
@@ -1599,7 +1599,7 @@
kinetics = Arrhenius(A=(2.01e+08,'cm^3/(mol*s)'), n=1.55, Ea=(6614,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3500,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
C.C. Hsu, M.C. Lin, A.M. Mebel, C.F. Melius, J. Phys. Chem. A, 1997, 101(1), 60-66, doi: 10.1021/jp962286t
G2 and BAC-MP4
@@ -1613,7 +1613,7 @@
kinetics = Arrhenius(A=(4.46e+11,'cm^3/(mol*s)'), n=0.72, Ea=(655,'cal/mol'), T0=(1,'K'), Tmin=(200,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
M.R. Soto, M. Page, J. Chem. Phys., 1992, 97, 7287, doi: 10.1063/1.463501
calculations done at the CASSCF//(CASSCF and CISD) levels of theory
@@ -1627,7 +1627,7 @@
kinetics = Arrhenius(A=(5.56e+08,'cm^3/(mol*s)'), n=1.53, Ea=(16400,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
J.W. Boughton, S. Kristyan, M.C. Lin, Chemical Physics, 1997, 214(2-3), 219-227, doi: 10.1016/S0301-0104(96)00313-8
CTST
@@ -1641,7 +1641,7 @@
kinetics = Arrhenius(A=(0.583,'cm^3/(mol*s)'), n=3.84, Ea=(115,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
Z.F. Xu, M.C. Lin, Int. J. Chem. Kin., 2004, 36(4), 205-215, doi: 10.1002/kin.10178
calculations done at the G2M//BH&HLYP/6-311G(d, p) level of theory
@@ -1655,7 +1655,7 @@
kinetics = Arrhenius(A=(1.42e-07,'cm^3/(mol*s)'), n=5.64, Ea=(9221,'cal/mol'), T0=(1,'K'), Tmin=(200,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
Z.F. Xu, M.C. Lin, Int. J. Chem. Kin., 2003, 35(5), 184-190, doi: 10.1002/kin.10115
calculations done at the G2M//B3LYP/6-311+G(d,p) and G2M//MPW1PW91/6-311+G(3df,2p) levels of theory
@@ -1670,7 +1670,7 @@
kinetics = Arrhenius(A=(8.73,'cm^3/(mol*s)'), n=3.5, Ea=(-1667,'cal/mol'), T0=(1,'K'), Tmin=(750,'K'), Tmax=(1500,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
W.S. Xia, M.C. Lin, J. Chem. Phys., 2001, 114, 4522-4532, doi: 10.1063/1.1337061
calculations done at the B3LYP/6-311G(d,p)//B3LYP/6-311G(d,p) level of theory
@@ -1684,7 +1684,7 @@
kinetics = Arrhenius(A=(2e+08,'cm^3/(mol*s)'), n=1.47, Ea=(7550,'cal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
W. Tsang, J.T. Herron, Journal of Physical and Chemical Reference Data, 1991, 20, 609, doi: 10.1063/1.555890
Review and reccomendation, based on 5 different experimental studies
@@ -1698,7 +1698,7 @@
kinetics = Arrhenius(A=(3.8e+14,'cm^3/(mol*s)'), n=0, Ea=(24600,'cal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
W. Tsang, J.T. Herron, Journal of Physical and Chemical Reference Data, 1991, 20, 609, doi: 10.1063/1.555890
Review and reccomendation, based on experimental studies
@@ -1712,7 +1712,7 @@
kinetics = Arrhenius(A=(3.8e+14,'cm^3/(mol*s)'), n=0, Ea=(24600,'cal/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2840,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: primaryNitrogenLibrary""",
- longDesc =
+ longDesc =
"""
W. Tsang, J.T. Herron, Journal of Physical and Chemical Reference Data, 1991, 20, 609, doi: 10.1063/1.555890
Review and reccomendation, based on experimental studies
@@ -1726,7 +1726,7 @@
kinetics = Arrhenius(A=(1.39e+08,'cm^3/(mol*s)'), n=1.729, Ea=(986,'cal/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
WK.E. Kerr, I.M. Alecu, K.M. Thompson, Y. Gao, P. Marshall, J. Phys. CHem. A, 2015, 119, 7352-7360, doi: 10.1021/jp512966a
Table 5, R1
@@ -1741,7 +1741,7 @@
kinetics = Arrhenius(A=(4160,'cm^3/(mol*s)'), n=2.925, Ea=(4747,'cal/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(3000,'K')),
rank = 4,
shortDesc = """Training reaction from kinetics library: primarySulfurLibrary""",
- longDesc =
+ longDesc =
"""
WK.E. Kerr, I.M. Alecu, K.M. Thompson, Y. Gao, P. Marshall, J. Phys. CHem. A, 2015, 119, 7352-7360, doi: 10.1021/jp512966a
Table 5, R2
@@ -1756,7 +1756,7 @@
kinetics = Arrhenius(A=(3.46e+13,'cm^3/(mol*s)'), n=0, Ea=(13800,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R2) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1771,7 +1771,7 @@
kinetics = Arrhenius(A=(1.37e+13,'cm^3/(mol*s)'), n=0, Ea=(10000,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R3a) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1786,7 +1786,7 @@
kinetics = Arrhenius(A=(1.48e+13,'cm^3/(mol*s)'), n=0, Ea=(8533,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R3b) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1801,7 +1801,7 @@
kinetics = Arrhenius(A=(2.11e+13,'cm^3/(mol*s)'), n=0, Ea=(9870,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R4a) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1816,7 +1816,7 @@
kinetics = Arrhenius(A=(1.72e+13,'cm^3/(mol*s)'), n=0, Ea=(7770,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R4b) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1831,7 +1831,7 @@
kinetics = Arrhenius(A=(1.84e+13,'cm^3/(mol*s)'), n=0, Ea=(10100,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R5a) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1846,7 +1846,7 @@
kinetics = Arrhenius(A=(1.35e+13,'cm^3/(mol*s)'), n=0, Ea=(6450,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R5b) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1861,7 +1861,7 @@
kinetics = Arrhenius(A=(2.76e+12,'cm^3/(mol*s)'), n=0, Ea=(6450,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R6) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1876,7 +1876,7 @@
kinetics = Arrhenius(A=(1.42e+13,'cm^3/(mol*s)'), n=0, Ea=(11900,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R7a) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1891,7 +1891,7 @@
kinetics = Arrhenius(A=(1.5e+13,'cm^3/(mol*s)'), n=0, Ea=(6670,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R7b) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1906,7 +1906,7 @@
kinetics = Arrhenius(A=(4.33e+13,'cm^3/(mol*s)'), n=0, Ea=(8700,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R8) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1921,7 +1921,7 @@
kinetics = Arrhenius(A=(1.37e+13,'cm^3/(mol*s)'), n=0, Ea=(8010,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R9) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1936,7 +1936,7 @@
kinetics = Arrhenius(A=(6.14e+12,'cm^3/(mol*s)'), n=0, Ea=(5810,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R10) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1951,7 +1951,7 @@
kinetics = Arrhenius(A=(1.54e+13,'cm^3/(mol*s)'), n=0, Ea=(9570,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R11a) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1966,7 +1966,7 @@
kinetics = Arrhenius(A=(4.87e+12,'cm^3/(mol*s)'), n=0, Ea=(5400,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R11b) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1981,7 +1981,7 @@
kinetics = Arrhenius(A=(1.13e+13,'cm^3/(mol*s)'), n=0, Ea=(7720,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R13) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -1996,7 +1996,7 @@
kinetics = Arrhenius(A=(1.56e+13,'cm^3/(mol*s)'), n=0, Ea=(13410,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R12) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -2011,7 +2011,7 @@
kinetics = Arrhenius(A=(1.62e+13,'cm^3/(mol*s)'), n=0, Ea=(5975,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R14) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -2026,7 +2026,7 @@
kinetics = Arrhenius(A=(9.94e+13,'cm^3/(mol*s)'), n=0, Ea=(8510,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R15) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -2041,7 +2041,7 @@
kinetics = Arrhenius(A=(2.67e+14,'cm^3/(mol*s)'), n=0, Ea=(3270,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
(R16) in:
K. Siddique, M. Altarawneh, J. Gore, P.R. Westmoreland, B.Z. Dlugogorski, J. Chem. Phys. A 2017, 121, 3332-2231,
@@ -2056,7 +2056,7 @@
kinetics = Arrhenius(A=(1.6e+13,'cm^3/(mol*s)'), n=0, Ea=(8174,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2070,7 +2070,7 @@
kinetics = Arrhenius(A=(1.16e+13,'cm^3/(mol*s)'), n=0, Ea=(3585,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2084,7 +2084,7 @@
kinetics = Arrhenius(A=(5.47e+12,'cm^3/(mol*s)'), n=0, Ea=(6907,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2098,7 +2098,7 @@
kinetics = Arrhenius(A=(6e+12,'cm^3/(mol*s)'), n=0, Ea=(12620,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2112,7 +2112,7 @@
kinetics = Arrhenius(A=(1.23e+13,'cm^3/(mol*s)'), n=0, Ea=(7911,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2126,7 +2126,7 @@
kinetics = Arrhenius(A=(2.23e+12,'cm^3/(mol*s)'), n=0, Ea=(9441,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2140,7 +2140,7 @@
kinetics = Arrhenius(A=(9.21e+12,'cm^3/(mol*s)'), n=0, Ea=(9393,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2154,7 +2154,7 @@
kinetics = Arrhenius(A=(8.01e+12,'cm^3/(mol*s)'), n=0, Ea=(4493,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2168,7 +2168,7 @@
kinetics = Arrhenius(A=(2.14e+12,'cm^3/(mol*s)'), n=0, Ea=(5927,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
doi: 10.1016/j.combustflame.2015.10.032
@@ -2182,7 +2182,7 @@
kinetics = Arrhenius(A=(794,'cm^3/(mol*s)'), n=2.97, Ea=(-1040,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """VTST CCSD(T)/6-311++g(2d,2p)""",
- longDesc =
+ longDesc =
"""
S. Li, E. Dames, D.F. Davidson, R.K. Hanson
"High-Temperature Measurements of the Reactions of OH with Ethylamine and Dimethylamine"
@@ -2199,7 +2199,7 @@
kinetics = Arrhenius(A=(328000,'cm^3/(mol*s)'), n=2.24, Ea=(-3040,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """VTST CCSD(T)/6-311++g(2d,2p)""",
- longDesc =
+ longDesc =
"""
S. Li, E. Dames, D.F. Davidson, R.K. Hanson
"High-Temperature Measurements of the Reactions of OH with Ethylamine and Dimethylamine"
@@ -2216,7 +2216,7 @@
kinetics = Arrhenius(A=(112000,'cm^3/(mol*s)'), n=2.36, Ea=(-2860,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """VTST CCSD(T)/6-311++g(2d,2p)""",
- longDesc =
+ longDesc =
"""
S. Li, E. Dames, D.F. Davidson, R.K. Hanson
"High-Temperature Measurements of the Reactions of OH with Ethylamine and Dimethylamine"
@@ -2233,7 +2233,7 @@
kinetics = Arrhenius(A=(1.48e+08,'cm^3/(mol*s)'), n=1.69, Ea=(4000,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
""",
@@ -2246,7 +2246,7 @@
kinetics = Arrhenius(A=(17.7,'cm^3/(mol*s)'), n=3.6, Ea=(3500,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
""",
@@ -2259,7 +2259,7 @@
kinetics = Arrhenius(A=(2590,'cm^3/(mol*s)'), n=2.83, Ea=(700,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
""",
@@ -2272,7 +2272,7 @@
kinetics = Arrhenius(A=(39800,'cm^3/(mol*s)'), n=2.76, Ea=(4400,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
""",
@@ -2285,7 +2285,7 @@
kinetics = Arrhenius(A=(1.19e+07,'cm^3/(mol*s)'), n=1.96, Ea=(2400,'cal/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: Ethylamine""",
- longDesc =
+ longDesc =
"""
CBS-QB3
""",
@@ -2298,7 +2298,7 @@
kinetics = Arrhenius(A=(9e+13,'cm^3/(mol*s)','*|/',1.5), n=0, Ea=(84,'kJ/mol','+|-',5), T0=(1,'K'), Tmin=(1150,'K'), Tmax=(1500,'K')),
rank = 1,
shortDesc = """Wagner""",
- longDesc =
+ longDesc =
"""
Experimental measurements
@@ -2316,7 +2316,7 @@
kinetics = Arrhenius(A=(7e+13,'cm^3/(mol*s)','*|/',1.75), n=0, Ea=(70,'kJ/mol','+|-',5), T0=(1,'K'), Tmin=(1150,'K'), Tmax=(1500,'K')),
rank = 1,
shortDesc = """Wagner""",
- longDesc =
+ longDesc =
"""
Experimental measurements
@@ -2334,7 +2334,7 @@
kinetics = Arrhenius(A=(6.26e+12,'cm^3/(mol*s)'), n=1.82, Ea=(99.82,'kJ/mol'), T0=(1,'K'), Tmin=(1000,'K'), Tmax=(3000,'K')),
rank = 5,
shortDesc = """Sun""",
- longDesc =
+ longDesc =
"""
calculated at UQCISD(T)/6-311G** level
Zhen-Feng Xu and Jia-Zhong Sun
@@ -2351,7 +2351,7 @@
kinetics = Arrhenius(A=(1.36534e-19,'cm^3/(molecule*s)'), n=2.6, Ea=(3201.07,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + CH4 <=> HCl + CH3""",
- longDesc =
+ longDesc =
"""
Kinetics of Cl atom reactions with methane, ethane, and propane from 292 to 800 K
J. S. Pilgrim, A. McIlroy, and C. A. Taatjes, J. Phys. Chem. A 101, 1873 (1997)
@@ -2366,7 +2366,7 @@
kinetics = Arrhenius(A=(7.23e-13,'cm^3/(molecule*s)'), n=0.7, Ea=(-972.793,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C2H6 <=> HCl + C2H5""",
- longDesc =
+ longDesc =
"""
Kinetics of Reactions of Cl Atoms with Ethane, Chloroethane, and 1,1-Dichloroethane
Bryukov, M. G., Slagle, I. R., and Knyazev, V. D.: J. Phys. Chem. A., 107, 6565, 2003.
@@ -2381,7 +2381,7 @@
kinetics = Arrhenius(A=(8.26e-11,'cm^3/(molecule*s)'), n=0, Ea=(748.302,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C3H8 <=> HCl + nC3H7""",
- longDesc =
+ longDesc =
"""
IUPAC recommendation: http://iupac.pole-ether.fr
from 200-700 K
@@ -2395,7 +2395,7 @@
kinetics = Arrhenius(A=(6.02e-11,'cm^3/(molecule*s)'), n=0, Ea=(-623.585,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C3H8 <=> HCl + iC3H7""",
- longDesc =
+ longDesc =
"""
IUPAC recommendation: http://iupac.pole-ether.fr
from 200-700 K
@@ -2409,7 +2409,7 @@
kinetics = Arrhenius(A=(9.02e-11,'cm^3/(molecule*s)'), n=0, Ea=(997.737,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + nC4H10 <=> HCl + C4H9-1""",
- longDesc =
+ longDesc =
"""
IUPAC recommendation: http://iupac.pole-ether.fr
from 290-600 K
@@ -2423,9 +2423,9 @@
kinetics = Arrhenius(A=(1.21e-10,'cm^3/(molecule*s)'), n=0, Ea=(-457.296,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + nC4H10 <=> HCl + C4H9-2""",
- longDesc =
+ longDesc =
"""
-IUPAC recommendation: http://iupac.pole-ether.fr
+IUPAC recommendation: http://iupac.pole-ether.fr
from 290-600 K
""",
)
@@ -2437,9 +2437,9 @@
kinetics = Arrhenius(A=(8.1e-11,'cm^3/(molecule*s)'), n=0, Ea=(282.692,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + HCHO <=> HCl + HCO""",
- longDesc =
+ longDesc =
"""
-IUPAC recommendation: http://iupac.pole-ether.fr
+IUPAC recommendation: http://iupac.pole-ether.fr
from 200-500 K
""",
)
@@ -2451,9 +2451,9 @@
kinetics = Arrhenius(A=(8e-11,'cm^3/(molecule*s)'), n=0, Ea=(0,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + CH3CHO <=> HCl + CH3CO""",
- longDesc =
+ longDesc =
"""
-IUPAC recommendation: http://iupac.pole-ether.fr
+IUPAC recommendation: http://iupac.pole-ether.fr
from 210-340 K
""",
)
@@ -2465,9 +2465,9 @@
kinetics = Arrhenius(A=(1.5e-11,'cm^3/(molecule*s)'), n=0, Ea=(4905.54,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + CH3COCH3 <=> HCl + CH3COCH2""",
- longDesc =
+ longDesc =
"""
-IUPAC recommendation: http://iupac.pole-ether.fr
+IUPAC recommendation: http://iupac.pole-ether.fr
from 215-440 K
""",
)
@@ -2479,9 +2479,9 @@
kinetics = Arrhenius(A=(7.1e-11,'cm^3/(molecule*s)'), n=0, Ea=(623.585,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + CH3OH <=> HCl + CH2OH""",
- longDesc =
+ longDesc =
"""
-IUPAC recommendation: http://iupac.pole-ether.fr
+IUPAC recommendation: http://iupac.pole-ether.fr
from 200-500 K
""",
)
@@ -2493,7 +2493,7 @@
kinetics = Arrhenius(A=(9.65431e-19,'cm^3/(molecule*s)'), n=2.5, Ea=(30470,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + CH3OH <=> HCl + CH3O""",
- longDesc =
+ longDesc =
"""
Theoretical study of the kinetics of the hydrogen abstraction from methanol. 2. Reaction of methanol with chlorine and bromine atoms
Jodkowski, J.T.; Rayez, M-T.; Rayez, J-C.; Berces, T.; Dobe, S., JPCA, 102, 9230-9243, 1998
@@ -2508,7 +2508,7 @@
kinetics = Arrhenius(A=(1.44e-10,'cm^3/(molecule*s)'), n=-0.089, Ea=(-374.151,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C2H5OH <=> HCl + CH3CHOH""",
- longDesc =
+ longDesc =
"""
Absolute and Site-Specific Abstraction Rate Coefficients for Reactions of Cl with CH3CH2 OH, CH3CD2OH, and CD3CH2OH Between 295 and 600 K
Taatjes, C. A., Christensen, L. K., Hurley M. D. and Wallington, T. J.: J. Phys. Chem. A, 103, 9805, 1999.
@@ -2523,7 +2523,7 @@
kinetics = Arrhenius(A=(1.13e-13,'cm^3/(molecule*s)'), n=0.7494, Ea=(-374.151,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C2H5OH <=> HCl + CH2CH2OH""",
- longDesc =
+ longDesc =
"""
Absolute and Site-Specific Abstraction Rate Coefficients for Reactions of Cl with CH3CH2 OH, CH3CD2OH, and CD3CH2OH Between 295 and 600 K
Taatjes, C. A., Christensen, L. K., Hurley M. D. and Wallington, T. J.: J. Phys. Chem. A, 103, 9805, 1999.
@@ -2538,7 +2538,7 @@
kinetics = Arrhenius(A=(2.79e-11,'cm^3/(molecule*s)'), n=0, Ea=(72086.5,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + H2O <=> HCl + OH""",
- longDesc =
+ longDesc =
"""
Evaluated kinetic data for high temperature reactions. Volume 4 Homogeneous gas phase reactions of halogen- and cyanide- containing species
Baulch, D.L.; Duxbury, J.; Grant, S.J.; Montague, D.C., J. Phys. Chem. Ref. Data, 10, 1981.
@@ -2553,7 +2553,7 @@
kinetics = Arrhenius(A=(1.1e-11,'cm^3/(molecule*s)'), n=0, Ea=(8148.18,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + H2O2 <=> HCl + HO2""",
- longDesc =
+ longDesc =
"""
Evaluated kinetic and photochemical data for atmospheric chemistry: Volume III - gas phase reactions of inorganic halogens
Atkinson, R.;Baulch, D.L.;Cox, R.A.;Crowley, J.N.;Hampson, R.F.;Hynes, R.G.;Jenkin, M.E.;Rossi, M.J.;Troe, J., Atmos. Chem. Phys., 7, 981-1191, 2007
@@ -2568,7 +2568,7 @@
kinetics = Arrhenius(A=(4.59e-16,'cm^3/(molecule*s)'), n=1.588, Ea=(13984.9,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + H2 <=> HCl + H""",
- longDesc =
+ longDesc =
"""
Thermal rate constants for the Cl+H2 and Cl+D2 reactions between 296 and 3000 K
Kumaran, S.S.; Lim, K.P.; Michael, J.V., J. Chem. Phys., 101, 9487 - 9498, 1994
@@ -2583,7 +2583,7 @@
kinetics = Arrhenius(A=(1.24e-11,'cm^3/(molecule*s)'), n=0, Ea=(2500.16,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OCHO <=> HCl + C4H8OCHO-1""",
- longDesc =
+ longDesc =
"""
Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
@@ -2598,7 +2598,7 @@
kinetics = Arrhenius(A=(3.32e-10,'cm^3/(molecule*s)'), n=0, Ea=(1249.67,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OCHO <=> HCl + C4H8OCHO-2""",
- longDesc =
+ longDesc =
"""
Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
@@ -2613,7 +2613,7 @@
kinetics = Arrhenius(A=(1.05e-11,'cm^3/(molecule*s)'), n=0, Ea=(1249.67,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C4H9OCHO <=> HCl + C4H8OCHO-3""",
- longDesc =
+ longDesc =
"""
Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
@@ -2628,7 +2628,7 @@
kinetics = Arrhenius(A=(2.79e-10,'cm^3/(molecule*s)'), n=0, Ea=(3849.6,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + neoC5H12 <=> HCl + neoC5H11""",
- longDesc =
+ longDesc =
"""
Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
@@ -2643,7 +2643,7 @@
kinetics = Arrhenius(A=(1.40759e-16,'cm^3/(molecule*s)'), n=2, Ea=(4400.02,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + aC3H4 <=> HCl + C3H3""",
- longDesc =
+ longDesc =
"""
Infrared frequency-modulation probing of Cl + C3H4 (allene, propyne) reactions: kinetics of HCl production from 292 to 850 K
Farrell, J.T.; Taatjes, C.A., J. Phys. Chem. A, 102, 1998, 4846-4856
@@ -2658,7 +2658,7 @@
kinetics = Arrhenius(A=(4.87e-10,'cm^3/(molecule*s)'), n=0, Ea=(2419.51,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + cC5H10 <=> HCl + cC5H9""",
- longDesc =
+ longDesc =
"""
The study of chlorine atom reactions in the gas phase
Pritchard, H.O.; Pyke, J.B.; Trotman-Dickenson, A.F., JACS, 77, 1955
@@ -2673,7 +2673,7 @@
kinetics = Arrhenius(A=(4.25e-10,'cm^3/(molecule*s)'), n=0, Ea=(3449.67,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + cC4H8 <=> HCl + cC4H7""",
- longDesc =
+ longDesc =
"""
Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
@@ -2688,7 +2688,7 @@
kinetics = Arrhenius(A=(2.27e-10,'cm^3/(molecule*s)'), n=0, Ea=(300.152,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + Dioxane14 <=> HCl + Dioxanyl14""",
- longDesc =
+ longDesc =
"""
Experimental and Theoretical Investigation of the Kinetics of the Reaction of Atomic Chlorine with 1,4-Dioxane
Giri, B.R.; Roscoe, J.M.; Gonzalez-Garcia, N.; Olzmann, M.; Lo, J.MH.; Marriott, R.A., JPCA, 115, 2011, 5105-5111
@@ -2703,10 +2703,10 @@
kinetics = Arrhenius(A=(1.32e-11,'cm^3/(molecule*s)'), n=0, Ea=(2930.02,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OC(CH3)O <=> HCl + C4H8OC(CH3)O-1""",
- longDesc =
+ longDesc =
"""
-Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
-Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
+Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
+Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
313-433 K, experimental measurement
""",
)
@@ -2718,10 +2718,10 @@
kinetics = Arrhenius(A=(3.32e-11,'cm^3/(molecule*s)'), n=0, Ea=(1249.67,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OC(CH3)O <=> HCl + C4H8OC(CH3)O-2""",
- longDesc =
+ longDesc =
"""
-Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
-Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
+Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
+Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
313-433 K, experimental measurement
""",
)
@@ -2733,10 +2733,10 @@
kinetics = Arrhenius(A=(2.62e-11,'cm^3/(molecule*s)'), n=0, Ea=(2089.43,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OC(CH3)O <=> HCl + C4H8OC(CH3)O-3""",
- longDesc =
+ longDesc =
"""
-Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
-Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
+Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
+Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
313-433 K, experimental measurement
""",
)
@@ -2748,10 +2748,10 @@
kinetics = Arrhenius(A=(1.66e-12,'cm^3/(molecule*s)'), n=0, Ea=(3759.8,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C4H9OC(CH3)O <=> HCl + C4H8OC(CH3)O-4""",
- longDesc =
+ longDesc =
"""
-Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
-Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
+Free-radical substitution in aliphatic compounds. Part XIV. The halogenation of esters of butan-1-ol
+Singh, H.; Tedder, J.M., J. Chem. Soc. B, 1966
313-433 K, experimental measurement
""",
)
@@ -2763,7 +2763,7 @@
kinetics = Arrhenius(A=(1.76e-10,'cm^3/(molecule*s)'), n=0, Ea=(0,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + CH3OCH3 <=> HCl + CH3OCH2""",
- longDesc =
+ longDesc =
"""
Rate constants for the reaction of atomic chlorine with methanol and dimethyl ether from 200 to 500 K
Michael, J.V.; Nava, D.F.; Payne, W.A.; Stief, L.J., J. Chem. Phys., 70, 1979
@@ -2778,7 +2778,7 @@
kinetics = Arrhenius(A=(4.9e-11,'cm^3/(molecule*s)'), n=0, Ea=(748.302,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C3H6 <=> HCl + aC3H5""",
- longDesc =
+ longDesc =
"""
Infrared absorption probing of the Cl + C3H6 reaction: rate coefficients for HCl production between 290 and 800 K
Pilgrim, J.S.; Taatjes, C.A., JPCA, 101, 5776-5782, 1997
@@ -2793,7 +2793,7 @@
kinetics = Arrhenius(A=(2.41e-10,'cm^3/(molecule*s)'), n=0, Ea=(0,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + cC6H12 <=> HCl + cC6H11""",
- longDesc =
+ longDesc =
"""
Kinetic and mechanistic studies of the reactions of cyclopentylperoxy and cyclohexylperoxy radicals with HO2
Rowley, D.M.; Lesclaux, R.; Lightfoot, P.D.; Noziere, B.; Wallingotn, T.J.; Hurley, M.D., JPC, 96, 1992, 4889-4894
@@ -2808,7 +2808,7 @@
kinetics = Arrhenius(A=(1.59e-12,'cm^3/(molecule*s)'), n=1.073, Ea=(6406.3,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH3 <=> HCl + C6H5CH2""",
- longDesc =
+ longDesc =
"""
DFT study on the abstraction and addition of Cl atom with toluene
Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
@@ -2823,7 +2823,7 @@
kinetics = Arrhenius(A=(6.88e-45,'cm^3/(molecule*s)'), n=10.876, Ea=(-22746.7,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH3 <=> HCl + o-C6H4CH3""",
- longDesc =
+ longDesc =
"""
DFT study on the abstraction and addition of Cl atom with toluene
Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
@@ -2838,7 +2838,7 @@
kinetics = Arrhenius(A=(4.98e-43,'cm^3/(molecule*s)'), n=10.407, Ea=(-20733.8,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH3 <=> HCl + m-C6H4CH3""",
- longDesc =
+ longDesc =
"""
DFT study on the abstraction and addition of Cl atom with toluene
Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
@@ -2853,10 +2853,10 @@
kinetics = Arrhenius(A=(1.75e-27,'cm^3/(molecule*s)'), n=5.626, Ea=(-1163.19,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH3 <=> HCl + p-C6H4CH3""",
- longDesc =
+ longDesc =
"""
-DFT study on the abstraction and addition of Cl atom with toluene
-Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
+DFT study on the abstraction and addition of Cl atom with toluene
+Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
Theoretical predictions from 298-1000 K
""",
)
@@ -2868,7 +2868,7 @@
kinetics = Arrhenius(A=(1.94e-10,'cm^3/(molecule*s)'), n=0, Ea=(3429.72,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + iC4H10 <=> HCl + iC4H9""",
- longDesc =
+ longDesc =
"""
Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
@@ -2883,10 +2883,10 @@
kinetics = Arrhenius(A=(2.82e-11,'cm^3/(molecule*s)'), n=0, Ea=(79.8189,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + iC4H10 <=> HCl + tC4H9""",
- longDesc =
+ longDesc =
"""
-Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
-Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
+Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
+Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
193-593 K, experimental measurement
""",
)
@@ -2898,10 +2898,10 @@
kinetics = Arrhenius(A=(8.97e-11,'cm^3/(molecule*s)'), n=0, Ea=(17289.9,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + cC3H6 <=> HCl + cC3H5""",
- longDesc =
+ longDesc =
"""
-Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
-Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
+Competitive chlorination reactions in the gas phase: hydrogen and C1-C5 saturated hydrocarbons
+Knox, J.H.; Nelson, R.L., Trans. Faraday Soc., 55, 1959
193-593 K, experimental measurement
""",
)
@@ -2913,7 +2913,7 @@
kinetics = Arrhenius(A=(1.41e-17,'cm^3/(molecule*s)'), n=2, Ea=(4159.73,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + pC3H4 <=> HCl + C3H3""",
- longDesc =
+ longDesc =
"""
Infrared frequency-modulation probing of Cl + C3H4 (allene, propyne) reactions: kinetics of HCl production from 292 to 850 K
Farrell, J.T.; Taatjes, C.A., J. Phys. Chem. A, 102, 1998, 4846-4856
@@ -2928,7 +2928,7 @@
kinetics = Arrhenius(A=(6.19e-11,'cm^3/(molecule*s)'), n=0, Ea=(28269.2,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + Ethene <=> HCl + C2H3""",
- longDesc =
+ longDesc =
"""
Infrared absorption probing of the Cl + Ethene reaction: direct measurement of Arrhenius parameters for hydrogen abstraction
Pilgrim, J.S.; Taatjes, C.A., J. Phys. Chem. A, 101, 1997, 4172-4177
@@ -2943,7 +2943,7 @@
kinetics = Arrhenius(A=(6.1e-11,'cm^3/(molecule*s)'), n=0, Ea=(31600,'J/mol'), T0=(1,'K')),
rank = 1,
shortDesc = """Cl + C6H6 <=> HCl + C6H5""",
- longDesc =
+ longDesc =
"""
Studies of the kinetics and thermochemistry of the forward and reverse reaction Cl+C6H6=HCl+C6H5
Alecu, I.M.; Gao, Y.D.; Hsieh, P.C.; Sand, J.P.; Ors, A.; McLeod, A.; Marshall, P., JPCA, 111, 3970-3976, 2007
@@ -2958,10 +2958,10 @@
kinetics = Arrhenius(A=(1.06e-12,'cm^3/(molecule*s)'), n=1.073, Ea=(6406.3,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH2CH3 <=> HCl + C6H5CHCH3""",
- longDesc =
+ longDesc =
"""
-DFT study on the abstraction and addition of Cl atom with toluene
-Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
+DFT study on the abstraction and addition of Cl atom with toluene
+Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
Theoretical predictions from 298-1000 K, agrees well with 298 K experiments
A-factor multiplied by 2/3 to account for different degeneracy of ethylbenzene vs. toluene
""",
@@ -2974,10 +2974,10 @@
kinetics = Arrhenius(A=(5.3e-13,'cm^3/(molecule*s)'), n=1.073, Ea=(6406.3,'J/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Cl + C6H5CH(CH3)CH3 <=> HCl + C6H5C(CH3)CH3""",
- longDesc =
+ longDesc =
"""
-DFT study on the abstraction and addition of Cl atom with toluene
-Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
+DFT study on the abstraction and addition of Cl atom with toluene
+Huang, M.Q.; Wang, Z.Y.; Hao, L.Q.; Zhang, W.J., Comput. Theor. Chem., 996, 44-50, 2012
Theoretical predictions from 298-1000 K, agrees well with 298 K experiments
A-factor multiplied by 1/3 to account for different degeneracy of isopropylbenzene vs. toluene
""",
@@ -2990,7 +2990,7 @@
kinetics = Arrhenius(A=(0.00551,'cm^3/(mol*s)'), n=4.401, Ea=(4.745,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: First_to_Second_Aromatic_Ring/2017_Buras_C6H5_C3H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: C6H5 + C3H6 <=> C6H6 + CH3CHCH
""",
@@ -3003,7 +3003,7 @@
kinetics = Arrhenius(A=(0.06725,'cm^3/(mol*s)'), n=4.149, Ea=(3.361,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: First_to_Second_Aromatic_Ring/2017_Buras_C6H5_C3H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: C6H5 + C3H6 <=> C6H6 + CH3CCH2
""",
@@ -3016,7 +3016,7 @@
kinetics = Arrhenius(A=(0.2601,'cm^3/(mol*s)'), n=4.002, Ea=(1.735,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: First_to_Second_Aromatic_Ring/2017_Buras_C6H5_C3H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: C6H5 + C3H6 <=> C6H6 + CH2CHCH2
""",
@@ -3029,7 +3029,7 @@
kinetics = Arrhenius(A=(0.0003437,'cm^3/(mol*s)'), n=4.732, Ea=(6.579,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: 2015_Buras_C2H3_C4H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: C2H3 + C4H6 <=> C2H4 + nC4H5
""",
@@ -3042,7 +3042,7 @@
kinetics = Arrhenius(A=(0.000621,'cm^3/(mol*s)'), n=4.814, Ea=(4.902,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: 2015_Buras_C2H3_C4H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: C2H3 + C4H6 <=> C2H4 + iC4H5
""",
@@ -3055,7 +3055,7 @@
kinetics = Arrhenius(A=(8710,'cm^3/(mol*s)'), n=3.12, Ea=(8.1,'kJ/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: First_to_Second_Aromatic_Ring/2005_Ismail_C6H5_C4H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: phenyl + 1_3_butadiene <=> benzene + 1_3_butadien_2_yl
""",
@@ -3068,7 +3068,7 @@
kinetics = Arrhenius(A=(31600,'cm^3/(mol*s)'), n=3.11, Ea=(16.7,'kJ/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: First_to_Second_Aromatic_Ring/2005_Ismail_C6H5_C4H6_highP""",
- longDesc =
+ longDesc =
"""
Taken from entry: phenyl + 1_3_butadiene <=> benzene + 1_3_butadien_1_yl
""",
@@ -3081,7 +3081,7 @@
kinetics = Arrhenius(A=(5151,'cm^3/(mol*s)'), n=2.896, Ea=(15.308,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: kislovB""",
- longDesc =
+ longDesc =
"""
Taken from entry: benzene_1 + methyl_7 <=> phenyl_16 + CH4_26
""",
@@ -3102,7 +3102,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -3123,7 +3123,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -3136,7 +3136,7 @@
kinetics = Arrhenius(A=(5.54e+07,'cm^3/(mol*s)'), n=1.901, Ea=(15.418,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: kislovB""",
- longDesc =
+ longDesc =
"""
Taken from entry: C9H8_20 + H_15 <=> C9H7_18 + H2_23
""",
@@ -3149,7 +3149,7 @@
kinetics = Arrhenius(A=(6.725e+07,'cm^3/(mol*s)'), n=1.892, Ea=(16.619,'kcal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: kislovB""",
- longDesc =
+ longDesc =
"""
Taken from entry: C9H8_21 + H_15 <=> C9H7_22 + H2_23
""",
@@ -3378,7 +3378,7 @@
kinetics = Arrhenius(A=(1.15e+08,'cm^3/(mol*s)'), n=1.9, Ea=(7530,'cal/mol'), T0=(1,'K')),
rank = 5,
shortDesc = """Training reaction from kinetics library: GRI-Mech3.0""",
- longDesc =
+ longDesc =
"""
The respective reaction in the more recent Klippenstein_Glarborg2016 library is in a duplicate form
and cannot be added as training unless refitting the data
@@ -3712,7 +3712,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
Accurate geometries are obtained using coupled cluster theory with single, double, and perturbative triple excitations [CCSD(T)] combined with Dunnings correlation consistent quadruple- basis set cc pVQZ. The energies for these stationary points are then refined by a systematic series of computations, within the focal point scheme, using the cc-pVXZ (X = D, T, Q, 5, 6) basis sets and correlation treatments as extensive as coupled cluster with full single, double, and triple excitation and perturbative quadruple excitations [CCSDT(Q)]. TST rates calculated in CanTherm
""",
@@ -3733,7 +3733,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
Accurate geometries are obtained using coupled cluster theory with single, double, and perturbative triple excitations [CCSD(T)] combined with Dunnings correlation consistent quadruple- basis set cc pVQZ. The energies for these stationary points are then refined by a systematic series of computations, within the focal point scheme, using the cc-pVXZ (X = D, T, Q, 5, 6) basis sets and correlation treatments as extensive as coupled cluster with full single, double, and triple excitation and perturbative quadruple excitations [CCSDT(Q)]. TST rates calculated in CanTherm
""",
@@ -3754,7 +3754,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
Accurate geometries are obtained using coupled cluster theory with single, double, and perturbative triple excitations [CCSD(T)] combined with Dunnings correlation consistent quadruple- basis set cc pVQZ. The energies for these stationary points are then refined by a systematic series of computations, within the focal point scheme, using the cc-pVXZ (X = D, T, Q, 5, 6) basis sets and correlation treatments as extensive as coupled cluster with full single, double, and triple excitation and perturbative quadruple excitations [CCSDT(Q)]. TST rates calculated in CanTherm
""",
@@ -3775,7 +3775,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
Accurate geometries are obtained using coupled cluster theory with single, double, and perturbative triple excitations [CCSD(T)] combined with Dunnings correlation consistent quadruple- basis set cc pVQZ. The energies for these stationary points are then refined by a systematic series of computations, within the focal point scheme, using the cc-pVXZ (X = D, T, Q, 5, 6) basis sets and correlation treatments as extensive as coupled cluster with full single, double, and triple excitation and perturbative quadruple excitations [CCSDT(Q)]. TST rates calculated in CanTherm
""",
@@ -3787,7 +3787,7 @@
degeneracy = 1.0,
kinetics = Arrhenius(A=(9.24,'cm^3/(mol*s)'), n=3.335, Ea=(7.75,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3800,7 +3800,7 @@
degeneracy = 1.0,
kinetics = Arrhenius(A=(2.092e+06,'cm^3/(mol*s)'), n=2.211, Ea=(7.181,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3813,7 +3813,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(14.26,'cm^3/(mol*s)'), n=3.317, Ea=(6.61,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3826,7 +3826,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(1.867e+06,'cm^3/(mol*s)'), n=2.242, Ea=(5.318,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3839,7 +3839,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(29.41,'cm^3/(mol*s)'), n=3.184, Ea=(5.529,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3852,7 +3852,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(8.501e+06,'cm^3/(mol*s)'), n=2.027, Ea=(4.069,'kcal/mol'), T0=(1,'K')),
rank = 5,
- longDesc =
+ longDesc =
"""
TST calculation based on the CBS-QB3 level of theory with 1D hinder rotoer consideration
Jim Chu's calculation
@@ -3874,7 +3874,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
UCCSD(T)-F12b/cc-pVQZ-F12//M06-2X/6-311++G(d,p)
""",
@@ -3895,7 +3895,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
UCCSD(T)-F12b/cc-pVQZ-F12//M06-2X/6-311++G(d,p)
""",
@@ -3916,7 +3916,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -3937,7 +3937,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -3958,7 +3958,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -3979,7 +3979,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4000,7 +4000,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4021,7 +4021,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4042,7 +4042,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4063,7 +4063,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4084,7 +4084,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4105,7 +4105,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4126,7 +4126,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4147,7 +4147,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4168,7 +4168,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4189,7 +4189,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4210,7 +4210,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4231,7 +4231,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4252,7 +4252,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4273,7 +4273,7 @@
),
referenceType = "theory",
rank = 4,
- longDesc =
+ longDesc =
"""
G4//B3LYP/6-31G(2df,p)
""",
@@ -4294,7 +4294,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4315,7 +4315,7 @@
),
referenceType = "theory",
rank = 9,
- longDesc =
+ longDesc =
"""
B3LYP structural and vibrational information with BH&HLYP corrected barrier
""",
@@ -4336,7 +4336,7 @@
),
referenceType = "theory",
rank = 1,
- longDesc =
+ longDesc =
"""
CBS-QB3 + Exp.
""",
@@ -4357,7 +4357,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
CCSD(T)/CBS//BH&HLYP/cc-pVDZ, and canonical variational transition state theory (CVT) with corrections for small curvaturetunneling (SCT) and hindered internal rotation (HIR)
""",
@@ -4378,7 +4378,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
CCSD(T)/CBS//BH&HLYP/cc-pVDZ, and canonical variational transition state theory (CVT) with corrections for small curvaturetunneling (SCT) and hindered internal rotation (HIR)
""",
@@ -4399,7 +4399,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4420,7 +4420,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4441,7 +4441,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4462,7 +4462,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4483,7 +4483,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
"""
G3(MP2,CC)//B3LYP
""",
@@ -4496,7 +4496,7 @@
kinetics = Arrhenius(A=(3.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(96.0228,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Dean, A. M. [118]""",
- longDesc =
+ longDesc =
"""
[118] Dean, A.M. Development and application of Detailed Kinetic Mechanisms for Free Radical Systems.
@@ -4511,7 +4511,7 @@
kinetics = Arrhenius(A=(2.4e+06,'cm^3/(mol*s)'), n=2, Ea=(84.2448,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Dean, A. M. [118]""",
- longDesc =
+ longDesc =
"""
[118] Dean, A.M. Development and application of Detailed Kinetic Mechanisms for Free Radical Systems.
@@ -4526,7 +4526,7 @@
kinetics = Arrhenius(A=(28000,'cm^3/(mol*s)'), n=2.69, Ea=(89.2123,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Dean, A. M. [118]""",
- longDesc =
+ longDesc =
"""
[118] Dean, A.M. Development and application of Detailed Kinetic Mechanisms for Free Radical Systems.
@@ -4541,7 +4541,7 @@
kinetics = Arrhenius(A=(1.62e+06,'cm^3/(mol*s)'), n=1.87, Ea=(94.3429,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Dean, A. M. [118]""",
- longDesc =
+ longDesc =
"""
[118] Dean, A.M. Development and application of Detailed Kinetic Mechanisms for Free Radical Systems.
@@ -4556,7 +4556,7 @@
kinetics = Arrhenius(A=(2e+11,'cm^3/(mol*s)'), n=0, Ea=(52.9694,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """Estimate [W.H. Green]""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: X_H;O2b
""",
@@ -4569,11 +4569,11 @@
kinetics = Arrhenius(A=(3.558e+07,'cm^3/(mol*s)'), n=1.8, Ea=(39.2041,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. Fixed by RWest (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253. http://dx.doi.org/10.1016/S0010-2180(01)00373-X
-Rate expressions for H atom abstraction from fuels.
+Rate expressions for H atom abstraction from fuels.
pg 257 A Comprehensive Modelling Study of iso-Octane Oxidation, Table 1. Radical:OH, Site: primary (a)
Verified by Karma James
@@ -4598,12 +4598,12 @@
kinetics = Arrhenius(A=(900000,'cm^3/(mol*s)'), n=2, Ea=(-4.74047,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
http://dx.doi.org/10.1016/S0010-2180(01)00373-X
-Rate expressions for H atom abstraction from fuels.
+Rate expressions for H atom abstraction from fuels.
pg 257 A Comprehensive Modelling Study of iso-Octane Oxidation, Table 1. Radical:OH, Site: secondary (b)
Verified by Karma James
@@ -4626,7 +4626,7 @@
kinetics = Arrhenius(A=(1.7e+06,'cm^3/(mol*s)'), n=1.9, Ea=(-6.07098,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels.""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
http://dx.doi.org/10.1016/S0010-2180(01)00373-X
@@ -4650,7 +4650,7 @@
kinetics = Arrhenius(A=(5700,'cm^3/(mol*s)'), n=3.05, Ea=(46.4424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4673,7 +4673,7 @@
kinetics = Arrhenius(A=(47800,'cm^3/(mol*s)'), n=2.71, Ea=(57.4045,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4697,7 +4697,7 @@
kinetics = Arrhenius(A=(383000,'cm^3/(mol*s)'), n=2.41, Ea=(61.9232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels.""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4724,7 +4724,7 @@
kinetics = Arrhenius(A=(1.68e+13,'cm^3/(mol*s)'), n=0, Ea=(85.5,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Walker, R. W. Reactions of HO 2 radicals in combustion chemistry.""",
- longDesc =
+ longDesc =
"""
Walker, R. W. Symposium (International) on Combustion. Vol. 22. No. 1. Elsevier, 1989.
Reactions of HO 2 radicals in combustion chemistry.
@@ -4750,7 +4750,7 @@
kinetics = Arrhenius(A=(5.6e+12,'cm^3/(mol*s)'), n=0, Ea=(73.9982,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4773,7 +4773,7 @@
kinetics = Arrhenius(A=(2.8e+12,'cm^3/(mol*s)'), n=0, Ea=(66.9984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels.""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4793,7 +4793,7 @@
kinetics = Arrhenius(A=(3.162e+11,'cm^3/(mol*s)'), n=0, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4816,7 +4816,7 @@
kinetics = Arrhenius(A=(1.1e+11,'cm^3/(mol*s)'), n=0, Ea=(36.0818,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4839,7 +4839,7 @@
kinetics = Arrhenius(A=(1.9e+10,'cm^3/(mol*s)'), n=0, Ea=(40.6005,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels.""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4859,7 +4859,7 @@
kinetics = Arrhenius(A=(8.4e+13,'cm^3/(mol*s)'), n=0, Ea=(212.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4882,7 +4882,7 @@
kinetics = Arrhenius(A=(2.8e+13,'cm^3/(mol*s)'), n=0, Ea=(201.711,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels. (changed to per H)""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4905,7 +4905,7 @@
kinetics = Arrhenius(A=(1.4e+13,'cm^3/(mol*s)'), n=0, Ea=(192.715,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Curran et al. [8] Rate expressions for H atom abstraction from fuels.""",
- longDesc =
+ longDesc =
"""
[8] Curran, H.J.; Gaffuri, P.; Pit z, W.J.; Westbrook, C.K. Combust. Flame 2002, 129, 253.
Rate expressions for H atom abstraction from fuels.
@@ -4925,7 +4925,7 @@
kinetics = Arrhenius(A=(2.9e+14,'cm^3/(mol*s)','*|/',5), n=0, Ea=(236.982,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(800,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2 + O2 --> H + HO2 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -4951,7 +4951,7 @@
kinetics = Arrhenius(A=(9460,'cm^3/(mol*s)'), n=2.56, Ea=(21.0455,'kJ/mol'), T0=(1,'K'), Tmin=(200,'K'), Tmax=(3000,'K')),
rank = 6,
shortDesc = """Knyazev et al. [119] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[119] Knyazev, V.D; Bencsura, A.; Stoliarov, S.I.; Slagle, I.R. J. Phys. Chem. 1996, 100, 11346.
H2 + C2H3 --> H + C2H4 C.D.W divided original rate expression by 2 ( from A = 9.45E+03), to get rate expression per H atom.
@@ -4967,9 +4967,9 @@
kinetics = Arrhenius(A=(1.08e+13,'cm^3/(mol*s)','*|/',3.16), n=0, Ea=(9.07928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Baulch et al. [94] literature review.""",
- longDesc =
+ longDesc =
"""
-[94] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Frank, P.; Hayman, G,; Just, T.; Kerr, J.A.; Murrells, T.; Pilling, M.J.;
+[94] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Frank, P.; Hayman, G,; Just, T.; Kerr, J.A.; Murrells, T.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1994, 23, 847.
H2 + C2H --> H + C2H2 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -4997,7 +4997,7 @@
kinetics = Arrhenius(A=(57200,'cm^3/(mol*s)'), n=2.43, Ea=(26.2755,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(5000,'K')),
rank = 6,
shortDesc = """Mebel et al. [122] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[122] Mebel, A.M.; Lin, M.C.; Yu, T.; Morokuma, K. J. Phys. Chem. A. 1997, 101, 3189.
H2 + phenyl --> H + benzene C.D.W divided original rate expression by 2 ( from A = 5.71E+04), to get rate expression per H atom.
@@ -5013,7 +5013,7 @@
kinetics = Arrhenius(A=(1.8e+06,'cm^3/(mol*s)','*|/',5), n=2, Ea=(204.765,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2 + HCO --> H + CH2O C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5039,7 +5039,7 @@
kinetics = Arrhenius(A=(4.12e+06,'cm^3/(mol*s)','*|/',3), n=1.82, Ea=(217.289,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2 + CH3CO --> H + CH3CHO C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5067,7 +5067,7 @@
kinetics = Arrhenius(A=(1.82e+09,'cm^3/(mol*s)'), n=1.21, Ea=(83.9729,'kJ/mol'), T0=(1,'K'), Tmin=(200,'K'), Tmax=(2400,'K')),
rank = 6,
shortDesc = """Isaacson [123] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[123] Isaacson, A.D. J. Chem. Phys. 1997, 107, 3832.
H2 + O2 --> H + H2O C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5091,7 +5091,7 @@
kinetics = Arrhenius(A=(0.1264,'cm^3/(mol*s)'), n=4, Ea=(69.8885,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;O_rad/NonDeC
""",
@@ -5104,9 +5104,9 @@
kinetics = Arrhenius(A=(7.94e+13,'cm^3/(mol*s)','*|/',10), n=0, Ea=(237.777,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH4 + O2 --> CH3 + HO2 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5133,7 +5133,7 @@
kinetics = Arrhenius(A=(0.0864,'cm^3/(mol*s)','*|/',2), n=4.14, Ea=(52.551,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH4 + C2H5 --> CH3 + C2H6 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5159,7 +5159,7 @@
kinetics = Arrhenius(A=(0.000724,'cm^3/(mol*s)','*|/',2), n=4.4, Ea=(45.1454,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
CH4 + iso-C3H7 --> CH3 + C3H8 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5186,7 +5186,7 @@
kinetics = Arrhenius(A=(1.812e+12,'cm^3/(mol*s)','*|/',10), n=0, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH4 + C2H --> CH3 + C2H2 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5215,7 +5215,7 @@
kinetics = Arrhenius(A=(2e+12,'cm^3/(mol*s)'), n=0, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(560,'K'), Tmax=(1410,'K')),
rank = 5,
shortDesc = """Heckmann et al. [124]""",
- longDesc =
+ longDesc =
"""
[124] Heckmann, E.; Hippler, H. Troe, J. Sypm. Int. Combust. Proc. 1996, 26, 543.
Absolute value measured directly (excitation technique: thermal, analytical technique: vis-UV absorption) CH4 + phenyl --> benzene
@@ -5233,7 +5233,7 @@
kinetics = Arrhenius(A=(7280,'cm^3/(mol*s)','*|/',5), n=2.85, Ea=(143.302,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH4 + HCO --> CH3 + CH2O C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5259,7 +5259,7 @@
kinetics = Arrhenius(A=(2172,'cm^3/(mol*s)','*|/',5), n=2.88, Ea=(155.826,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH4 + CH3CO --> CH3 + CH3CHO C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5285,7 +5285,7 @@
kinetics = Arrhenius(A=(1.54,'cm^3/(mol*s)'), n=3.95, Ea=(22.5099,'kJ/mol'), T0=(1,'K'), Tmin=(223,'K'), Tmax=(2400,'K')),
rank = 6,
shortDesc = """Melissas and Truhlar [125] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[125] Melissas, V.S.; Truhlar, D.G. J. Chem. Phys. 1993,99,1010.
CH4 + OH --> CH3 + H2O C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5301,7 +5301,7 @@
kinetics = Arrhenius(A=(0.00062,'cm^3/(mol*s)'), n=5, Ea=(23.3467,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
CH4 + CH3O --> CH3 + CH3OH The calculated reverse rate constants are in good agreement with experiment. (Rxn. -R3 in paper)
@@ -5321,7 +5321,7 @@
kinetics = Arrhenius(A=(1.812e+11,'cm^3/(mol*s)','*|/',5), n=0, Ea=(77.7387,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH4 + HO2 --> CH3 + H2O2 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5347,7 +5347,7 @@
kinetics = Arrhenius(A=(3.612e+12,'cm^3/(mol*s)','*|/',3), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H6 + C2H --> C2H5 + C2H2 C.D.W divided original rate expression by 6, to get rate expression per H atom.
@@ -5375,10 +5375,10 @@
kinetics = Arrhenius(A=(2.088e+11,'cm^3/(mol*s)','*|/',2.35), n=0, Ea=(18.577,'kJ/mol'), T0=(1,'K'), Tmin=(565,'K'), Tmax=(1000,'K')),
rank = 5,
shortDesc = """Park et al. [126]""",
- longDesc =
+ longDesc =
"""
[126] Park, J.; Gheyas, S.; Lin, M.C. Int. J. Chem. Kinet. 2001, 33, 64.
-Absolute value measured directly. Static or low flow, flash photolysis excitation, Vis-UV absoprtion analysis.
+Absolute value measured directly. Static or low flow, flash photolysis excitation, Vis-UV absoprtion analysis.
Phenyl radicals are produced from 193 nm photolysis of C6H5COCH3. The cavity ringdown spectroscopy and/or mass spectroscopy
@@ -5397,7 +5397,7 @@
kinetics = Arrhenius(A=(46920,'cm^3/(mol*s)','*|/',5), n=2.72, Ea=(159.996,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H6 + HCO --> C2H5 + CH2O C.D.W divided original rate expression by 6(from A = 4.69E+04), to get rate expression per H atom.
@@ -5423,7 +5423,7 @@
kinetics = Arrhenius(A=(18120,'cm^3/(mol*s)','*|/',5), n=2.75, Ea=(172.52,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang et al. [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H6 + CH3CO --> C2H5 + CH3CHO C.D.W divided original rate expression by 6(from A = 1.81E+04), to get rate expression per H atom.
@@ -5450,10 +5450,10 @@
kinetics = Arrhenius(A=(1.551e+06,'cm^3/(mol*s)'), n=2.2, Ea=(18.3785,'kJ/mol'), T0=(1,'K'), Tmin=(295,'K'), Tmax=(600,'K')),
rank = 6,
shortDesc = """Taylor et al. [127] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[127] Taylor, P.H.; Rahman, M.S.; Arif, M.; Dellinger, B.; Marshall, P. Sypm. Int. Combust. Proc. 1996, 26, 497.
-CH3CHO + OH --> CH2CHO + H2O Rate constant is high pressure limit (pressure 0.13-0.97atm?)
+CH3CHO + OH --> CH2CHO + H2O Rate constant is high pressure limit (pressure 0.13-0.97atm?)
C.D.W divided original rate expression by 3(from A = 1.55E+06), to get rate expression per H atom.
@@ -5468,7 +5468,7 @@
kinetics = Arrhenius(A=(0.000615,'cm^3/(mol*s)'), n=4.9, Ea=(28.1165,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
CH3OH + CH3 --> CH2OH + CH4 The calculated rate constants are in good agreement with experiment. (Rxn. R4 in paper)
@@ -5488,7 +5488,7 @@
kinetics = Arrhenius(A=(24420,'cm^3/(mol*s)'), n=2.8, Ea=(-1.75728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
CH3OH + OH --> CH2OH + H2O The calculated rate constants are in good agreement with experiment. (Rxn. R6 in paper)
@@ -5509,7 +5509,7 @@
kinetics = Arrhenius(A=(1.51,'cm^3/(mol*s)','*|/',10), n=3.46, Ea=(31.2545,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + CH2 --> iso-C3H7 + CH3 C.D.W divided original rate expression by 2(from A = 1.51), to get rate expression per H atom.
@@ -5535,7 +5535,7 @@
kinetics = Arrhenius(A=(60.4,'cm^3/(mol*s)','*|/',5), n=2.95, Ea=(50.1243,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + CH2OH --> iso-C3H7 + CH3OH C.D.W divided original rate expression by 2(from A = 6.03E+01), to get rate expression per H atom.
@@ -5569,7 +5569,7 @@
kinetics = Arrhenius(A=(1020,'cm^3/(mol*s)','*|/',10), n=3.1, Ea=(36.9029,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + C2H3 --> iso-C3H7 + C2H4 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5598,7 +5598,7 @@
kinetics = Arrhenius(A=(1.21e+12,'cm^3/(mol*s)','*|/',3), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + C2H --> iso-C3H7 + C2H2 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5628,7 +5628,7 @@
kinetics = Arrhenius(A=(1.08e+07,'cm^3/(mol*s)','*|/',3), n=1.9, Ea=(170.958,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + HCO --> iso-C3H7 + CH2O C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5656,7 +5656,7 @@
kinetics = Arrhenius(A=(5.3e+06,'cm^3/(mol*s)','*|/',3), n=2, Ea=(183.482,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
C3H8 + CH3CO --> iso-C3H7 + CH3CHO C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -5684,12 +5684,12 @@
kinetics = Arrhenius(A=(1.09e+12,'cm^3/(mol*s)','*|/',5), n=0, Ea=(20.5434,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
Iso-C4H10 + CH2 --> tert-C4H9 + CH3
-pg 6, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 6, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 43,25.
@@ -5714,12 +5714,12 @@
kinetics = Arrhenius(A=(0.904,'cm^3/(mol*s)','*|/',5), n=3.46, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
Iso-C4H10 + C2H3 --> tert-C4H9 + C2H4
-pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 43,19.
@@ -5744,12 +5744,12 @@
kinetics = Arrhenius(A=(6.62e+11,'cm^3/(mol*s)','*|/',3), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
Iso-C4H10 + C2H --> tert-C4H9 + C2H2
-pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 43,21.
@@ -5775,12 +5775,12 @@
kinetics = Arrhenius(A=(34300,'cm^3/(mol*s)','*|/',5), n=2.5, Ea=(175.477,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
Iso-C4H10 + HCO --> tert-C4H9 + CH2O
-pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 43,15.
@@ -5791,7 +5791,7 @@
Entry 43,15(b): No data available at the time. For the rxn iC4H10+HCO=CH2O+iC4H9, author
recommends 1.5x the rate of the rxn C3H8+HCO+CH2O+nC3H7 (9 vs. 6 primary H-atoms).
-The author then recommends the rate coefficient for iC4H10+HCO=CH2O+tC4H9 to be the
+The author then recommends the rate coefficient for iC4H10+HCO=CH2O+tC4H9 to be the
rate coefficient of iC4H10+HCO=CH2O+iC4H9, with the A factor divided by 9 (9 vs. 1
H-atoms) and the Ea decreased by 20 kJ/mol.
MRH 31-Aug-2009
@@ -5807,12 +5807,12 @@
kinetics = Arrhenius(A=(34300,'cm^3/(mol*s)','*|/',10), n=2.5, Ea=(188.001,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
Iso-C4H10 + CH3CO --> tert-C4H9 + CH3CHO
-pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 5, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 43,22.
@@ -5836,7 +5836,7 @@
kinetics = Arrhenius(A=(1.4336e+14,'cm^3/(mol*s)'), n=0, Ea=(251.082,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Hua, Ruscic, and Wang 2005, transition state theory.""",
- longDesc =
+ longDesc =
"""
FORMER RATES
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
@@ -5874,7 +5874,7 @@
kinetics = Arrhenius(A=(1.512e+07,'cm^3/(mol*s)'), n=1.91, Ea=(116.399,'kJ/mol'), T0=(1,'K'), Tmin=(290,'K'), Tmax=(1510,'K')),
rank = 6,
shortDesc = """Mahmud et al. [128] Transition state theory""",
- longDesc =
+ longDesc =
"""
[128] Mahmud, K.; Marshall, P.; Fontijn, A. J Phys. Chem. 1987, 91, `568.
C2H4 + O --> C2H3 + OH C.D.W divided original rate expression by 4(from A= 1.51E+07), to get rate expression per H atom.
@@ -5890,7 +5890,7 @@
kinetics = Arrhenius(A=(632,'cm^3/(mol*s)','*|/',10), n=3.13, Ea=(75.312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H4 + C2H5 --> C2H3 + C2H6 C.D.W divided original rate expression by 4, to get rate expression per H atom.
@@ -5918,9 +5918,9 @@
kinetics = Arrhenius(A=(2.052e+13,'cm^3/(mol*s)','*|/',3.16), n=0, Ea=(109.161,'kJ/mol'), T0=(1,'K'), Tmin=(650,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
C2H4 + OH --> C2H3 + H2O C.D.W divided original rate expression by 4(from A= 2.05E+13), to get rate expression per H atom.
@@ -5946,7 +5946,7 @@
kinetics = Arrhenius(A=(6.02e+10,'cm^3/(mol*s)','*|/',3), n=0.7, Ea=(116.943,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
CH3CH=CH2 + O --> CH3C=CH2 + OH
@@ -5981,7 +5981,7 @@
kinetics = Arrhenius(A=(409000,'cm^3/(mol*s)','*|/',4), n=2.5, Ea=(40.9614,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
CH3CH=CH2 + H --> CH3C=CH2 + H2
@@ -6011,7 +6011,7 @@
kinetics = Arrhenius(A=(0.842,'cm^3/(mol*s)','*|/',6), n=3.5, Ea=(87.1946,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
CH3CH=CH2 + CH3 --> CH3C=CH2 + CH4
@@ -6040,7 +6040,7 @@
kinetics = Arrhenius(A=(0.842,'cm^3/(mol*s)','*|/',6), n=3.5, Ea=(40.4593,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
CH3CH=CH2 + C2H3 --> CH3C=CH2 + C2H4
@@ -6070,10 +6070,10 @@
kinetics = Arrhenius(A=(1.21e+12,'cm^3/(mol*s)','*|/',5), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
-CH3CH=CH2 + C2H --> CH3C=CH2 + C2H2
+CH3CH=CH2 + C2H --> CH3C=CH2 + C2H2
pg 241
@@ -6096,7 +6096,7 @@
kinetics = Arrhenius(A=(1.11e+06,'cm^3/(mol*s)','*|/',2), n=2, Ea=(109.704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [93] literature review.""",
- longDesc =
+ longDesc =
"""
[93] Tsang, W. J. Phys. Chem. Ref. Data 1991, 20, 221.
CH3CH=CH2 + OH --> CH3C=CH2 + H2O
@@ -6128,7 +6128,7 @@
kinetics = Arrhenius(A=(2.42e+13,'cm^3/(mol*s)','*|/',10), n=0, Ea=(311.792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H2 + O2 --> C2H + HO2 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6156,7 +6156,7 @@
kinetics = Arrhenius(A=(2.72e+11,'cm^3/(mol*s)','*|/',5), n=0, Ea=(174.389,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H2 + C2H5 --> C2H + C2H6 C.D.W divided original rate expression by 2 (from A= 2.71E+11), to get rate expression per H atom.
@@ -6182,7 +6182,7 @@
kinetics = Arrhenius(A=(14500,'cm^3/(mol*s)','*|/',10), n=2.68, Ea=(213.593,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
C2H2 + OH --> C2H + H2O C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6208,7 +6208,7 @@
kinetics = Arrhenius(A=(1.2624e+14,'cm^3/(mol*s)'), n=0, Ea=(251.082,'kJ/mol'), T0=(1,'K'), Tmin=(1200,'K'), Tmax=(1700,'K')),
rank = 10,
shortDesc = """Asaba et al. [129]. Data are estimated.""",
- longDesc =
+ longDesc =
"""
[129] Asaba, T.; Fujii, N.; Proc. Int. Symp. Shock Tubes Waves 1971, 8, 1.
Benzene + O2 --> phenyl + HO2 C.D.W divided original rate expression by 6(from A = 6.31E+13), to get rate expression per H atom.
@@ -6224,7 +6224,7 @@
kinetics = Arrhenius(A=(6e+08,'cm^3/(mol*s)'), n=1.8, Ea=(68.4084,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(800,'K')),
rank = 10,
shortDesc = """Mebel et al. [122] RRK(M) extrapolation.""",
- longDesc =
+ longDesc =
"""
[122] Mebel, A.M.; Lin, M.C.; Yu, T.; Morokuma, K. J. Phys. Chem. A. 1997, 101, 3189.
Rate constant is high pressure limit. Benzene + H --> phenyl + H2
@@ -6242,7 +6242,7 @@
kinetics = Arrhenius(A=(6.3e+11,'cm^3/(mol*s)','*|/',2), n=0, Ea=(85.3118,'kJ/mol'), T0=(1,'K'), Tmin=(650,'K'), Tmax=(770,'K')),
rank = 11,
shortDesc = """Zhang et al. [131]""",
- longDesc =
+ longDesc =
"""
[131] Zhang, H.X.; Ahonkhai, S.I. Back, H.M. Can. J. Chem. 1989, 67, 1541.
Pressure 0.30-0.50 atm Excitation: thermal, analysis: GC. Benzene + C2H5 --> phenyl + C2H6
@@ -6260,9 +6260,9 @@
kinetics = Arrhenius(A=(1.632e+08,'cm^3/(mol*s)','*|/',2), n=1.42, Ea=(124.516,'kJ/mol'), T0=(1,'K'), Tmin=(400,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
Benzene + OH --> phenyl + H2O C.D.W divided original rate expression by 6(from A = 1.63E+08), to get rate expression per H atom.
@@ -6290,7 +6290,7 @@
kinetics = Arrhenius(A=(9.36e+07,'cm^3/(mol*s)'), n=2.05, Ea=(158.699,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2200,'K')),
rank = 6,
shortDesc = """Michael et al. [132] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[132] Michael, J.V.; Kumaran, S.S.; Su, M.-C. J. Phys. Chem. A. 1999, 103, 5942.
CH2O + O2 --> HCO + HO2 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6306,9 +6306,9 @@
kinetics = Arrhenius(A=(4.16e+11,'cm^3/(mol*s)','*|/',2), n=0.57, Ea=(11.5478,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2200,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH2O + O --> HCO + OH C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6335,7 +6335,7 @@
kinetics = Arrhenius(A=(6.04e+09,'cm^3/(mol*s)'), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
Rate constant is an upper limit. CH2O + CH2 --> HCO + CH3
@@ -6364,9 +6364,9 @@
kinetics = Arrhenius(A=(7.78e-08,'cm^3/(mol*s)','*|/',1.58), n=6.1, Ea=(8.24248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Baulch et al. [94] literature review.""",
- longDesc =
+ longDesc =
"""
-[94] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Frank, P.; Hayman, G,; Just, T.; Kerr, J.A.; Murrells, T.; Pilling, M.J.;
+[94] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Frank, P.; Hayman, G,; Just, T.; Kerr, J.A.; Murrells, T.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1994, 23, 847.
CH2O + CH3 --> HCO + CH4 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6394,7 +6394,7 @@
kinetics = Arrhenius(A=(5500,'cm^3/(mol*s)','*|/',5), n=2.81, Ea=(24.5182,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH2O + C2H5 --> HCO + C2H6 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6422,7 +6422,7 @@
kinetics = Arrhenius(A=(1.08e+11,'cm^3/(mol*s)','*|/',2.5), n=0, Ea=(29.1206,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
CH2O + iso-C3H7 --> HCO + C3H8 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6452,12 +6452,12 @@
kinetics = Arrhenius(A=(3.26e+09,'cm^3/(mol*s)','*|/',5), n=0, Ea=(14.895,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
CH2O + tert-C4H9 --> HCO + iso-C4H10 C.D.W divided original rate expression by 2 (from A= 3.25E+09), to get rate expression per H atom.
-pg 7, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
+pg 7, Chemical Kinetic Database For Combustion Chemistry, Part 4 - Isobutane.
Index of Reactions and Summary of Recommended Rate Expressions. No. 44,12.
@@ -6484,7 +6484,7 @@
kinetics = Arrhenius(A=(5420,'cm^3/(mol*s)','*|/',5), n=2.81, Ea=(24.5182,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH2O + C2H3 --> HCO + C2H4 C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6512,7 +6512,7 @@
kinetics = Arrhenius(A=(1.81e+11,'cm^3/(mol*s)','*|/',10), n=0, Ea=(54.0573,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH2O + CH3CO --> HCO + CH3CHO C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6538,9 +6538,9 @@
kinetics = Arrhenius(A=(3.44e+09,'cm^3/(mol*s)','*|/',5), n=1.18, Ea=(-1.8828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH2O + OH --> HCO + H2O C.D.W divided original rate expression by 2 (from A= 3.43E+09), to get rate expression per H atom.
@@ -6567,7 +6567,7 @@
kinetics = Arrhenius(A=(1.02e+11,'cm^3/(mol*s)','*|/',3), n=0, Ea=(12.4683,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
CH2O + CH3O --> HCO + CH3OH C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6595,7 +6595,7 @@
kinetics = Arrhenius(A=(41200,'cm^3/(mol*s)'), n=2.5, Ea=(42.7186,'kJ/mol'), T0=(1,'K'), Tmin=(641,'K'), Tmax=(1600,'K')),
rank = 10,
shortDesc = """Eiteneer et al. [133] literature review.""",
- longDesc =
+ longDesc =
"""
[133] Eiteneer, B.; Yu, C.-L.; Goldenberg, M.; Frenklach, M. J. Phys. Chem. A. 1998, 102, 5196.
CH2O + HO2 --> HCO + H2O2 C.D.W divided original rate expression by 2 (from A= 4.11E+04), to get rate expression per H atom.
@@ -6611,9 +6611,9 @@
kinetics = Arrhenius(A=(6.02e+13,'cm^3/(mol*s)','*|/',10), n=0, Ea=(163.804,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(1100,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH3CHO + O2 --> CH3CO + HO2
@@ -6642,7 +6642,7 @@
kinetics = Arrhenius(A=(5e+12,'cm^3/(mol*s)','*|/',2), n=0, Ea=(7.48936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Warnatz [134] literature review""",
- longDesc =
+ longDesc =
"""
[134] Warnatz, J. Rate coefficeints in the C/H/O system. In Combustion Chemistry, 1984; pp 197.
CH3CHO + O --> CH3CO + OH
@@ -6658,7 +6658,7 @@
kinetics = Arrhenius(A=(4e+13,'cm^3/(mol*s)','*|/',2), n=0, Ea=(17.6146,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 10,
shortDesc = """Warnatz [134] literature review""",
- longDesc =
+ longDesc =
"""
[134] Warnatz, J. Rate coefficeints in the C/H/O system. In Combustion Chemistry, 1984; pp 197.
CH3CHO + H --> CH3CO + H2
@@ -6674,9 +6674,9 @@
kinetics = Arrhenius(A=(1.99e-06,'cm^3/(mol*s)','*|/',2), n=5.64, Ea=(10.2926,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1250,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH3CHO + CH3 --> CH3CO + CH4
@@ -6705,7 +6705,7 @@
kinetics = Arrhenius(A=(7.6e+11,'cm^3/(mol*s)'), n=0, Ea=(30.1666,'kJ/mol'), T0=(1,'K'), Tmin=(790,'K'), Tmax=(810,'K')),
rank = 11,
shortDesc = """Loser et al. [135] bond strength-bond length method.""",
- longDesc =
+ longDesc =
"""
[135] Loser, U.; Scherzer, K.; Weber, K. Z. Phys. Chem. (Leipzig) 1989, 270, 237.
CH3CHO + CH2CH=CH2 --> CH3CO + CH3CH=CH2
@@ -6721,7 +6721,7 @@
kinetics = Arrhenius(A=(8.13e+10,'cm^3/(mol*s)'), n=0, Ea=(15.3971,'kJ/mol'), T0=(1,'K'), Tmin=(480,'K'), Tmax=(520,'K')),
rank = 11,
shortDesc = """Scherzer et al. [136] bond energy-bond order method.""",
- longDesc =
+ longDesc =
"""
[136] Scherzer, K.; Loser, U.; Stiller, W. Z. Phys. Chem. 1987, 27, 300.
CH3CHO + C2H3 --> CH3CO + C2H4
@@ -6737,7 +6737,7 @@
kinetics = Arrhenius(A=(2e+06,'cm^3/(mol*s)'), n=1.8, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(295,'K'), Tmax=(600,'K')),
rank = 6,
shortDesc = """Taylor et al. [127] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[127] Taylor, P.H.; Rahman, M.S.; Arif, M.; Dellinger, B.; Marshall, P. Sypm. Int. Combust. Proc. 1996, 26, 497.
CH3CHO + OH --> CH3CO + H2O Pressure 0.13-0.97 atm. Rate constant is high pressure limit.
@@ -6759,9 +6759,9 @@
kinetics = Arrhenius(A=(3.01e+12,'cm^3/(mol*s)','*|/',5), n=0, Ea=(49.8733,'kJ/mol'), T0=(1,'K'), Tmin=(900,'K'), Tmax=(1200,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
CH3CHO + HO2 --> CH3CO + H2O2
@@ -6789,12 +6789,12 @@
kinetics = Arrhenius(A=(9.3e+12,'cm^3/(mol*s)'), n=0, Ea=(310.118,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """Mayer et al. [137] Bond energy-bond order.""",
- longDesc =
+ longDesc =
"""
[137] Mayer, S.W.; Schieler, L. J. Phys. Chem. 1968, 72, 2628.
http://dx.doi.org/10.1021/j100853a066
-H2O + O2 --> OH + HO2.
+H2O + O2 --> OH + HO2.
C.D.W divided original rate expression by 2, to get rate expression per H atom.
Converted to training reaction from rate rule: O_pri;O2b
@@ -6808,7 +6808,7 @@
kinetics = Arrhenius(A=(5.26e+09,'cm^3/(mol*s)'), n=1.2, Ea=(74.6007,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """Karach et al. [138] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[138] Karach, S.P.; Oscherov, V.I. J. Phys. Chem. 1999, 110, 11918.
H2O + O --> OH + OH. C.D.W divided original rate expression by 2 (from A= 2.95E+39), to get rate expression per H atom.
@@ -6824,9 +6824,9 @@
kinetics = Arrhenius(A=(4.52e+08,'cm^3/(mol*s)','*|/',1.6), n=1.6, Ea=(80.8349,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Baulch et al. [95] literature review.""",
- longDesc =
+ longDesc =
"""
-[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
+[95] Baulch, D.L.; Cobos, C.J.; Cox, R.A.; Esser, C.; Frank, P.; Just, T.; Kerr, J.A.; Pilling, M.J.;
Troe, J.; Walker, R.W.; Warnatz, J. J. Phys. Chem. Ref. Data 1992, 21, 411.
H2O + H --> OH + H2. C.D.W divided original rate expression by 2, to get rate expression per H atom.
@@ -6858,7 +6858,7 @@
kinetics = Arrhenius(A=(6.4,'cm^3/(mol*s)'), n=3.31, Ea=(52.551,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """Ma et al. [140] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[140] Ma, S.; Liu, R.; Sci. China Ser. S: 1996, 39, 37.
H2O + CH3 --> OH + CH4. C.D.W divided original rate expression by 2 (from A= 6.39), to get rate expression per H atom.
@@ -6874,7 +6874,7 @@
kinetics = Arrhenius(A=(3.4e+06,'cm^3/(mol*s)','*|/',2), n=1.44, Ea=(84.8097,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2O + C2H5 --> OH + C2H6. C.D.W divided original rate expression by 2 (from A= 3.39E+06), to get rate expression per H atom.
@@ -6900,7 +6900,7 @@
kinetics = Arrhenius(A=(484,'cm^3/(mol*s)','*|/',5), n=2.9, Ea=(62.1742,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2O + C2H3 --> OH + C2H4. C.D.W divided original rate expression by 2 (from A= 4.83E+02), to get rate expression per H atom.
@@ -6926,7 +6926,7 @@
kinetics = Arrhenius(A=(2.36e+08,'cm^3/(mol*s)','*|/',5), n=1.35, Ea=(120.792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [89] literature review.""",
- longDesc =
+ longDesc =
"""
[89] Tsang, W.; Hampson, R.F. J. Phys. Chem. Ref. Data 1986, 15, 1087.
H2O + HCO --> OH + CH2O. C.D.W divided original rate expression by 2 (from A= 2.35E+08), to get rate expression per H atom.
@@ -6952,7 +6952,7 @@
kinetics = Arrhenius(A=(0.348,'cm^3/(mol*s)'), n=3.8, Ea=(48.0742,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
H2O + CH3O --> OH + CH3OH C.D.W divided original rate expression by 2 (from A= 9.03E+08), to get rate expression per H atom.; This is Rxn. -R5 from mpaper
@@ -6970,7 +6970,7 @@
kinetics = Arrhenius(A=(1e+13,'cm^3/(mol*s)','*|/',2.51), n=0, Ea=(21.3227,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K')),
rank = 10,
shortDesc = """Warnatz [134] literature review""",
- longDesc =
+ longDesc =
"""
[134] Warnatz, J. Rate coefficeints in the C/H/O system. In Combustion Chemistry, 1984; pp 197.
CH3OH + O --> CH3O + OH
@@ -6986,12 +6986,12 @@
kinetics = Arrhenius(A=(14.4,'cm^3/(mol*s)','*|/',3), n=3.1, Ea=(29.037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [90] literature review.""",
- longDesc =
+ longDesc =
"""
[90] Tsang, W. J. Phys. Chem. Ref. Data 1987, 16, 471.
CH3OH + CH2 --> CH3O + CH3
-pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
+pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
//Index of Reactions and Summary of Recommended Rate Expressions. No. 38,25.
@@ -7019,7 +7019,7 @@
kinetics = Arrhenius(A=(0.00037,'cm^3/(mol*s)'), n=4.7, Ea=(24.1835,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
The calculated rate constants are in good agreement with experiment. CH3OH + CH3 --> CH3O + CH4 (Rxn. R3 from paper)
@@ -7037,12 +7037,12 @@
kinetics = Arrhenius(A=(14.4,'cm^3/(mol*s)','*|/',3), n=3.1, Ea=(37.405,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [90] literature review.""",
- longDesc =
+ longDesc =
"""
[90] Tsang, W. J. Phys. Chem. Ref. Data 1987, 16, 471.
CH3OH + C2H5 --> CH3O + C2H6
-pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
+pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
Index of Reactions and Summary of Recommended Rate Expressions. No. 38,17.
@@ -7070,7 +7070,7 @@
kinetics = Arrhenius(A=(14.5,'cm^3/(mol*s)','*|/',5), n=3.1, Ea=(43.2207,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [91] literature review.""",
- longDesc =
+ longDesc =
"""
[91] Tsang, W. J. Phys. Chem. Ref. Data 1988, 17, 887.
CH3OH + iso-C3H7 --> CH3O + C3H8
@@ -7104,7 +7104,7 @@
kinetics = Arrhenius(A=(1510,'cm^3/(mol*s)','*|/',10), n=1.8, Ea=(39.1622,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [92] literature review.""",
- longDesc =
+ longDesc =
"""
[92] Tsang, W. J. Phys. Chem. Ref. Data 1990, 19, 1.
CH3OH + tert-C4H9 --> CH3O + iso-C4H10
@@ -7137,12 +7137,12 @@
kinetics = Arrhenius(A=(14.4,'cm^3/(mol*s)','*|/',10), n=3.1, Ea=(29.037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [90] literature review.""",
- longDesc =
+ longDesc =
"""
[90] Tsang, W. J. Phys. Chem. Ref. Data 1987, 16, 471.
CH3OH + C2H3 --> CH3O + C2H4
-pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
+pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
Index of Reactions and Summary of Recommended Rate Expressions. No. 38,19.
@@ -7166,12 +7166,12 @@
kinetics = Arrhenius(A=(1.21e+12,'cm^3/(mol*s)','*|/',5), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 10,
shortDesc = """Tsang [90] literature review.""",
- longDesc =
+ longDesc =
"""
[90] Tsang, W. J. Phys. Chem. Ref. Data 1987, 16, 471.
CH3OH + C2H --> CH3O + C2H2
-pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
+pg 475, Chemical Kinetic Database For Combustion Chemistry, Part 2 - Methanol.
Index of Reactions and Summary of Recommended Rate Expressions. No. 38,21.
@@ -7195,7 +7195,7 @@
kinetics = Arrhenius(A=(17.3,'cm^3/(mol*s)'), n=3.4, Ea=(-4.76976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations.""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
The calculated rate constants are in good agreement with experiment. CH3OH + OH --> CH3O + H2O (Rxn. R5 from paper)
@@ -7213,7 +7213,7 @@
kinetics = Arrhenius(A=(5.76,'cm^3/(mol*s)'), n=3.16, Ea=(3.138,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + *CH2CH2CH2CH2OH = nButanol + HO2
@@ -7244,7 +7244,7 @@
kinetics = Arrhenius(A=(1.35,'cm^3/(mol*s)'), n=3.42, Ea=(5.98312,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3*CHCH2CH2OH = nButanol + HO2
@@ -7275,7 +7275,7 @@
kinetics = Arrhenius(A=(0.629,'cm^3/(mol*s)'), n=3.52, Ea=(6.73624,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2*CHCH2OH = nButanol + HO2
@@ -7306,7 +7306,7 @@
kinetics = Arrhenius(A=(2.97,'cm^3/(mol*s)'), n=3.39, Ea=(7.3132,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2CH2*CHOH = nButanol + HO2
@@ -7337,7 +7337,7 @@
kinetics = Arrhenius(A=(11.5,'cm^3/(mol*s)'), n=2.94, Ea=(1.92464,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + *CH2CH2CH[OH]CH3 = 2-Butanol + HO2
@@ -7360,7 +7360,7 @@
kinetics = Arrhenius(A=(1.75,'cm^3/(mol*s)'), n=2.91, Ea=(-1.71544,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3*CHCH[OH]CH3 = 2-Butanol + HO2
@@ -7383,7 +7383,7 @@
kinetics = Arrhenius(A=(34.6,'cm^3/(mol*s)'), n=3.05, Ea=(4.26768,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2*C[OH]CH3 = 2-Butanol + HO2
@@ -7406,7 +7406,7 @@
kinetics = Arrhenius(A=(0.611,'cm^3/(mol*s)'), n=3.53, Ea=(6.35968,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + CH3CH2CH[OH]*CH2 = 2-Butanol + HO2
@@ -7429,7 +7429,7 @@
kinetics = Arrhenius(A=(0.42,'cm^3/(mol*s)'), n=3.53, Ea=(6.52704,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
H2O2 + HOC[*CH2][CH3][CH3] = tert-Butanol + HO2
@@ -7452,7 +7452,7 @@
kinetics = Arrhenius(A=(1.75e+10,'cm^3/(mol*s)'), n=0, Ea=(-13.7026,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """[8] Curran's estimation in reaction type 13, RO2 + HO2 --> RO2H + O2""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Orad_O_H;O_rad/NonDeO
""",
@@ -7465,7 +7465,7 @@
kinetics = Arrhenius(A=(0.1226,'cm^3/(mol*s)'), n=3.95, Ea=(51.1285,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/o HR corrections
CH2O + H2C=C[*CH2][CH3] = HCO + H2C=C[CH3]2
@@ -7479,10 +7479,10 @@
The computed pre-exponential factor was divided by 2 (symmetry of CH2O), from 6.13e-02 to 3.065e-02.
There are no rate coefficients for this reaction in the literature (based on MRH's limited search).
- Tsang {J. Phys. Chem. Ref. Data 20 (1991) 221-273} recommends the following for the reaction of
+ Tsang {J. Phys. Chem. Ref. Data 20 (1991) 221-273} recommends the following for the reaction of
CH2O + H2C=CH-*CH2 = HCO + H2C=CH-CH3: k(T) = 1.26e+08 * T^1.9 * exp(-18.184 kcal/mol / RT) cm3 mol-1 s-1.
This rate coefficient is 25-85x faster than MRH's calculation over the range 600-2000K.
-
+
The previous estimate by RMG for this reaction was: k(T) = 5.500e+03 * T^2.81 * exp(-5.86 kcal/mol / RT) cm3 mol-1 s-1.
This rate coefficient is 80-13,000x faster than MRH's calculation over the range 600-2000K.
@@ -7497,7 +7497,7 @@
kinetics = Arrhenius(A=(1.822e-06,'cm^3/(mol*s)'), n=5.11, Ea=(29.8373,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7520,7 +7520,7 @@
kinetics = Arrhenius(A=(2.12e-06,'cm^3/(mol*s)'), n=5.06, Ea=(20.4598,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7543,7 +7543,7 @@
kinetics = Arrhenius(A=(5.034e-05,'cm^3/(mol*s)'), n=4.89, Ea=(18.0749,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7566,7 +7566,7 @@
kinetics = Arrhenius(A=(8.64e-05,'cm^3/(mol*s)'), n=4.52, Ea=(6.10864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7589,7 +7589,7 @@
kinetics = Arrhenius(A=(2.946e-05,'cm^3/(mol*s)'), n=5.07, Ea=(15.3134,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7612,7 +7612,7 @@
kinetics = Arrhenius(A=(3.498,'cm^3/(mol*s)'), n=3.74, Ea=(6.0668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7635,7 +7635,7 @@
kinetics = Arrhenius(A=(0.0001008,'cm^3/(mol*s)'), n=4.75, Ea=(17.2799,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 3 to get per-H value.
@@ -7662,7 +7662,7 @@
kinetics = Arrhenius(A=(4.92e-06,'cm^3/(mol*s)'), n=4.98, Ea=(13.3051,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 3 to get per-H value.
@@ -7689,7 +7689,7 @@
kinetics = Arrhenius(A=(9.33e-06,'cm^3/(mol*s)'), n=4.97, Ea=(15.2298,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 3 to get per-H value.
@@ -7712,7 +7712,7 @@
kinetics = Arrhenius(A=(0.357,'cm^3/(mol*s)'), n=3.9, Ea=(7.57304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 3 to get per-H value.
@@ -7735,7 +7735,7 @@
kinetics = Arrhenius(A=(1.926e-05,'cm^3/(mol*s)'), n=5.28, Ea=(32.5515,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7762,7 +7762,7 @@
kinetics = Arrhenius(A=(1.41e-05,'cm^3/(mol*s)'), n=4.83, Ea=(18.2841,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -7789,7 +7789,7 @@
kinetics = Arrhenius(A=(8.5e-06,'cm^3/(mol*s)'), n=5.01, Ea=(20.9618,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7812,7 +7812,7 @@
kinetics = Arrhenius(A=(0.03042,'cm^3/(mol*s)'), n=4.52, Ea=(18.4854,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7835,7 +7835,7 @@
kinetics = Arrhenius(A=(5.49,'cm^3/(mol*s)'), n=3.33, Ea=(2.63592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -7862,7 +7862,7 @@
kinetics = Arrhenius(A=(9.33e-05,'cm^3/(mol*s)'), n=4.87, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -7885,7 +7885,7 @@
kinetics = Arrhenius(A=(0.0256,'cm^3/(mol*s)'), n=4.09, Ea=(5.48104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7908,7 +7908,7 @@
kinetics = Arrhenius(A=(0.000312,'cm^3/(mol*s)'), n=4.31, Ea=(14.1838,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7931,7 +7931,7 @@
kinetics = Arrhenius(A=(0.000485,'cm^3/(mol*s)'), n=4.37, Ea=(40.4174,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -7954,7 +7954,7 @@
kinetics = Arrhenius(A=(0.00368,'cm^3/(mol*s)'), n=4.02, Ea=(33.1373,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 2 to get per-H value.
@@ -7977,7 +7977,7 @@
kinetics = Arrhenius(A=(2.08e+07,'cm^3/(mol*s)'), n=1.84, Ea=(12.6775,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -8000,7 +8000,7 @@
kinetics = Arrhenius(A=(4.512e-07,'cm^3/(mol*s)'), n=5.77, Ea=(72.2118,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_. Pre-exponential was divided by 6 to get per-H value.
@@ -8023,7 +8023,7 @@
kinetics = Arrhenius(A=(0.00173499,'cm^3/(mol*s)'), n=4.65, Ea=(40.9195,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM due to lack of better value ref rate rule 525""",
- longDesc =
+ longDesc =
"""
This rate rules matches C=C-CH3 + HO-O* <=> C=C-CH2* + H2O2
@@ -8042,7 +8042,7 @@
kinetics = Arrhenius(A=(0.00346998,'cm^3/(mol*s)'), n=4.65, Ea=(40.9195,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO . Pre-exponential was divided by 6 to get per-H value.
@@ -8065,7 +8065,7 @@
kinetics = Arrhenius(A=(0.875,'cm^3/(mol*s)'), n=3.59, Ea=(-16.8615,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM due to lack of better value ref rate rule 527""",
- longDesc =
+ longDesc =
"""
This rate rules matches C=C*-C + H2O2 <=> C=C-C + HO-O*
@@ -8084,7 +8084,7 @@
kinetics = Arrhenius(A=(0.875,'cm^3/(mol*s)'), n=3.59, Ea=(-16.8615,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO . Pre-exponential was divided by 2 to account for summetry of H2O2
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -8109,7 +8109,7 @@
kinetics = Arrhenius(A=(0.000508,'cm^3/(mol*s)'), n=4.59, Ea=(29.9574,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM due to lack of better value ref rate rule 529""",
- longDesc =
+ longDesc =
"""
This rate rules matches Cs-CH2-C=C + HO-O* <=> Cs-CH*-C=C + H2O2
@@ -8131,7 +8131,7 @@
kinetics = Arrhenius(A=(0.000508,'cm^3/(mol*s)'), n=4.59, Ea=(29.9574,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO . Pre-exponential was divided by 2 to get per-H value.
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -8156,7 +8156,7 @@
kinetics = Arrhenius(A=(2,'cm^3/(mol*s)'), n=3.52, Ea=(-31.2963,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM due to lack of better value ref rate rule 531""",
- longDesc =
+ longDesc =
"""
This rate rules matches C-HC=CH* + H2O2 <=> C-HC=CH2 + HO=O*
@@ -8175,7 +8175,7 @@
kinetics = Arrhenius(A=(2,'cm^3/(mol*s)'), n=3.52, Ea=(-31.2963,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations w/RRHO . Pre-exponential was divided by 2 to account for summetry of H2O2
The rate rule is valid in a range of temperature from 300 -2000 K.
@@ -8200,7 +8200,7 @@
kinetics = Arrhenius(A=(6e+13,'cm^3/(mol*s)','+|-',1.6e+12), n=0, Ea=(4.3932,'kJ/mol'), T0=(1,'K'), Tmin=(294,'K'), Tmax=(376,'K')),
rank = 10,
shortDesc = """Matsugi et al 10.1021/jp1012494""",
- longDesc =
+ longDesc =
"""
For CH4 + C2 = CH3 + C2H
@@ -8214,13 +8214,13 @@
rates are plotted but the expression is not reported.
k = (10.0 +- 2.1)E-11 exp[-(4.4+-0.5 kJ mol)/RT] cm3 molecule-1 s-1
-which gives
+which gives
A = 6e13+-1.3e13 cm3/mole/s
n = 0
Ea = 1.05+-0.12 kcal/mol
The degeneracy of this reaction is 8 though, so per-site A is:
A = 7.5e12+-1.6e12
-
+
(See also doi:10.1063/1.3480395 for reactions of C2, but that may be the wrong electronic state.)
Converted to training reaction from rate rule: C_methane;C2b
@@ -8234,7 +8234,7 @@
kinetics = Arrhenius(A=(0.0699,'cm^3/(mol*s)','*|/',3), n=3.75, Ea=(117.985,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
Exact reaction: HOOH + *O-CH=CH-C2H5 <=> HO-CH=CH-C2H5 + HOO*
Rxn family nodes: H2O2 + InChI=1/C4H7O/c1-2-3-4-5/h3-4H,2H2,1H3
@@ -8264,7 +8264,7 @@
kinetics = Arrhenius(A=(0.0699,'cm^3/(mol*s)','*|/',3), n=3.75, Ea=(117.985,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/1dHR calculations, see node 534.""",
- longDesc =
+ longDesc =
"""
Rxn family nodes: H2O2 + O_rad/OneDeC
@@ -8282,7 +8282,7 @@
kinetics = Arrhenius(A=(0.184,'cm^3/(mol*s)','*|/',3), n=3.96, Ea=(27.7399,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
Exact reaction: HOOH + *O-O-CH3 <=> HO-O-CH3 + HOO*
Rxn family nodes: H2O2 + OOCH3
@@ -8312,7 +8312,7 @@
kinetics = Arrhenius(A=(0.01482,'cm^3/(mol*s)','*|/',3), n=4.313, Ea=(33.5389,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations, w/1dHR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/1d hindered rotor corrections
Exact reaction: CH3CH2CH=CH2 + OOCH3 = HOOCH3 + CH3CHCH=CH2
@@ -8352,7 +8352,7 @@
kinetics = Arrhenius(A=(0.0702,'cm^3/(mol*s)','*|/',3), n=4.22, Ea=(45.773,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/1dHR calculations""",
- longDesc =
+ longDesc =
"""
MHS CBS-QB3 calculations w/1d hindered rotor corrections
Exact reaction: *CH2-CH=CH2 + H2O2 = CH3-CH=CH2 + HO2
@@ -8382,7 +8382,7 @@
kinetics = Arrhenius(A=(0.000191,'cm^3/(mol*s)','*|/',3), n=4.25, Ea=(3.38904,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/o 1dHR calculations""",
- longDesc =
+ longDesc =
"""
MHS CBS-QB3 calculations without 1d hindered rotor correction (due to presence of hydrogen bond interactions)
Exact reaction: HO2 + CH3-CH2-CH2-CH=O = H2O2 + CH3-CH2-CH2-C*=O
@@ -8405,7 +8405,7 @@
kinetics = Arrhenius(A=(1.26e+13,'cm^3/(mol*s)'), n=0, Ea=(10.8366,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """Tully et al. experimental data (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;O_pri_rad
""",
@@ -8418,7 +8418,7 @@
kinetics = Arrhenius(A=(3.96e+11,'cm^3/(mol*s)'), n=0, Ea=(58.9107,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """Baulch et al. literature review (value for HO2 + toluene) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;O_rad/NonDeO
""",
@@ -8431,7 +8431,7 @@
kinetics = Arrhenius(A=(2.66e+11,'cm^3/(mol*s)'), n=0, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """Baulch et al. literature review (value for HO2 + ethylbenzene) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;O_rad/NonDeO
""",
@@ -8444,7 +8444,7 @@
kinetics = Arrhenius(A=(1.33e+11,'cm^3/(mol*s)'), n=0, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """Baulch et al. literature review (value for HO2 + ethylbenzene) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;O_rad/NonDeO
""",
@@ -8457,7 +8457,7 @@
kinetics = Arrhenius(A=(3.6e+12,'cm^3/(mol*s)'), n=0, Ea=(166.147,'kJ/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(1200,'K')),
rank = 6,
shortDesc = """Baulch et al. literature review (value for HO2 + toluene entered here) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;O2b
""",
@@ -8470,7 +8470,7 @@
kinetics = Arrhenius(A=(2.4e+12,'cm^3/(mol*s)'), n=0, Ea=(166.147,'kJ/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(1200,'K')),
rank = 11,
shortDesc = """Baulch et al. literature review (value for HO2 + toluene entered here) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;O2b
""",
@@ -8483,7 +8483,7 @@
kinetics = Arrhenius(A=(1.2e+12,'cm^3/(mol*s)'), n=0, Ea=(166.147,'kJ/mol'), T0=(1,'K'), Tmin=(700,'K'), Tmax=(1200,'K')),
rank = 11,
shortDesc = """Baulch et al. literature review (value for HO2 + toluene entered here) (changed to per H)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;O2b
""",
@@ -8496,7 +8496,7 @@
kinetics = Arrhenius(A=(2.51e-11,'cm^3/(mol*s)'), n=6.77, Ea=(-35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ]Assumed to be same as for ROOH_sec""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;C_rad/H/NonDeC
""",
@@ -8509,7 +8509,7 @@
kinetics = Arrhenius(A=(2.51e-11,'cm^3/(mol*s)'), n=6.77, Ea=(-35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """[AJ]CBS-QB3 calculations with 1DHR corrections, reverse rates computed using DFT_QCI_thermo""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;C_rad/H/NonDeC
""",
@@ -8522,7 +8522,7 @@
kinetics = Arrhenius(A=(2.51e-11,'cm^3/(mol*s)'), n=6.77, Ea=(-35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ]Assumed to be same as for C_rad/H/NonDeC""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;C_rad/H2/Cs
""",
@@ -8535,7 +8535,7 @@
kinetics = Arrhenius(A=(2.51e-11,'cm^3/(mol*s)'), n=6.77, Ea=(-35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ]Assumed to be same as for C_rad/H/NonDeC""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;C_rad/H2/Cs
""",
@@ -8548,7 +8548,7 @@
kinetics = Arrhenius(A=(5.066e-14,'cm^3/(mol*s)'), n=7.18, Ea=(-22.0497,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ] Assumed to be same as for ROOH_sec""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;C_rad/OOH/Cs/Cs
""",
@@ -8561,7 +8561,7 @@
kinetics = Arrhenius(A=(5.066e-14,'cm^3/(mol*s)'), n=7.18, Ea=(-22.0497,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """[AJ] CBS-QB3 calculations with 1DHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;C_rad/OOH/Cs/Cs
""",
@@ -8574,7 +8574,7 @@
kinetics = Arrhenius(A=(0.0009569,'cm^3/(mol*s)'), n=4.45, Ea=(177.164,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ] Assumed to be same as for ROOH_sec""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;CO_rad/NonDe
""",
@@ -8587,7 +8587,7 @@
kinetics = Arrhenius(A=(0.0009569,'cm^3/(mol*s)'), n=4.45, Ea=(177.164,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """[AJ] CBS-QB3 calculations with 1DHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;CO_rad/NonDe
""",
@@ -8600,7 +8600,7 @@
kinetics = Arrhenius(A=(1.73e-10,'cm^3/(mol*s)'), n=6.3, Ea=(-8.95376,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ] Assumed to be same as for ROOH_sec""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;C_rad/H/CO/Cs
""",
@@ -8613,7 +8613,7 @@
kinetics = Arrhenius(A=(1.73e-10,'cm^3/(mol*s)'), n=6.3, Ea=(-8.95376,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ] Assumed to be same as for C_rad/H2/CO""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;C_rad/H/CO/Cs
""",
@@ -8626,7 +8626,7 @@
kinetics = Arrhenius(A=(1.73e-10,'cm^3/(mol*s)'), n=6.3, Ea=(-8.95376,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 11,
shortDesc = """[AJ] Assumed to be same as for ROOH_sec""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_pri;C_rad/H2/CO
""",
@@ -8639,7 +8639,7 @@
kinetics = Arrhenius(A=(1.73e-10,'cm^3/(mol*s)'), n=6.3, Ea=(-8.95376,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1000,'K')),
rank = 6,
shortDesc = """[AJ] CBS-QB3 calculations with 1DHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: ROOH_sec;C_rad/H2/CO
""",
@@ -8652,7 +8652,7 @@
kinetics = Arrhenius(A=(4.36e-10,'cm^3/(mol*s)'), n=4.56, Ea=(89.9142,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CAC CBS-QB3 calc, 1dhr""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CsS
""",
@@ -8665,7 +8665,7 @@
kinetics = Arrhenius(A=(0.377,'cm^3/(mol*s)'), n=3.63, Ea=(77.4877,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CAC CBS-QB3 calc, 1dhr""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/Cs
""",
@@ -8678,7 +8678,7 @@
kinetics = Arrhenius(A=(192.2,'cm^3/(mol*s)'), n=3.34, Ea=(-1.12968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CAC CBS-QB3 1dhr""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;S_pri_rad
""",
@@ -8691,7 +8691,7 @@
kinetics = Arrhenius(A=(24.2,'cm^3/(mol*s)'), n=3.35, Ea=(27.8236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CAC CBS-QB3 1dhr""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cs_rad
""",
@@ -8704,7 +8704,7 @@
kinetics = Arrhenius(A=(0.0376,'cm^3/(mol*s)'), n=4.57, Ea=(16.987,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """CAC CBS-QB3, HO approx""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;S_rad/NonDeC
""",
@@ -8717,7 +8717,7 @@
kinetics = Arrhenius(A=(1353,'cm^3/(mol*s)'), n=3.2, Ea=(14.6022,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """Jodkowski et al. [100] ab initio calculations. added by Greg Magoon 08/25/09""",
- longDesc =
+ longDesc =
"""
[100] Jodkowski, J.T.; Rauez, M.-T.; Rayez, J.-C. J. Phys. Chem. A. 1999, 103, 3750.
@@ -8738,7 +8738,7 @@
kinetics = Arrhenius(A=(2.35e-06,'cm^3/(mol*s)'), n=4.84, Ea=(17.8657,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 calculations w/o HR corrections""",
- longDesc =
+ longDesc =
"""
MRH CBS-QB3 calculations w/RRHO [MRHCBSQB3RRHO]_.
@@ -8765,7 +8765,7 @@
kinetics = Arrhenius(A=(395,'cm^3/(mol*s)'), n=3.17, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;CS_pri_rad
""",
@@ -8778,7 +8778,7 @@
kinetics = Arrhenius(A=(166400,'cm^3/(mol*s)'), n=2.3, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_methyl
""",
@@ -8791,7 +8791,7 @@
kinetics = Arrhenius(A=(1.26e+08,'cm^3/(mol*s)'), n=1.71, Ea=(-2.80328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;O_pri_rad
""",
@@ -8804,7 +8804,7 @@
kinetics = Arrhenius(A=(203000,'cm^3/(mol*s)'), n=2.41, Ea=(-17.531,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;O_pri_rad
""",
@@ -8817,7 +8817,7 @@
kinetics = Arrhenius(A=(1.32e+06,'cm^3/(mol*s)'), n=2.09, Ea=(-1.96648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;O_rad/NonDeC
""",
@@ -8830,7 +8830,7 @@
kinetics = Arrhenius(A=(41800,'cm^3/(mol*s)'), n=2.44, Ea=(4.97896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;O_rad/NonDeC
""",
@@ -8843,7 +8843,7 @@
kinetics = Arrhenius(A=(0.000194,'cm^3/(mol*s)'), n=4.68, Ea=(26.401,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CO/H/NonDe;C_rad/H/CsS
""",
@@ -8856,7 +8856,7 @@
kinetics = Arrhenius(A=(0.512,'cm^3/(mol*s)'), n=3.74, Ea=(15.5645,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """CAC calculation CBS-QB3 1dhr""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CsOS;Cs_rad
""",
@@ -8869,7 +8869,7 @@
kinetics = Arrhenius(A=(1.34,'cm^3/(mol*s)'), n=3.51, Ea=(-3.5564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CO;Cs_rad
""",
@@ -8882,7 +8882,7 @@
kinetics = Arrhenius(A=(111000,'cm^3/(mol*s)'), n=2.47, Ea=(24.9366,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CsOS;S_pri_rad
""",
@@ -8895,7 +8895,7 @@
kinetics = Arrhenius(A=(11900,'cm^3/(mol*s)'), n=2.9, Ea=(0.75312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CO/H/NonDe;S_pri_rad
""",
@@ -8908,7 +8908,7 @@
kinetics = Arrhenius(A=(0.0204,'cm^3/(mol*s)'), n=4.42, Ea=(27.8236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: O/H/OneDe;S_pri_rad
""",
@@ -8921,7 +8921,7 @@
kinetics = Arrhenius(A=(2.95e-06,'cm^3/(mol*s)'), n=5.63, Ea=(49.162,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CAC calculation CBS-QB3 1dhr, F12a energy""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: O/H/OneDe;S_rad/NonDeC
""",
@@ -8934,7 +8934,7 @@
kinetics = Arrhenius(A=(5.52e+06,'cm^3/(mol*s)'), n=1.94, Ea=(21.1707,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_pri;NH2_rad
""",
@@ -8947,7 +8947,7 @@
kinetics = Arrhenius(A=(0.1016,'cm^3/(mol*s)'), n=4.24, Ea=(55.1451,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_methyl
""",
@@ -8960,7 +8960,7 @@
kinetics = Arrhenius(A=(1.84e+06,'cm^3/(mol*s)'), n=1.94, Ea=(23.6919,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Dean and Bozzelli chapter 2, estimation same as C_pri;NH2_rad""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_sec;NH2_rad
""",
@@ -8973,7 +8973,7 @@
kinetics = Arrhenius(A=(0.01176,'cm^3/(mol*s)'), n=4.24, Ea=(38.451,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H2/Cs
""",
@@ -8986,7 +8986,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(24.7312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Dean and Bozzelli chapter 2, estimation same as C_pri;NH2_rad""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_ter;NH2_rad
""",
@@ -8999,7 +8999,7 @@
kinetics = Arrhenius(A=(0.01768,'cm^3/(mol*s)'), n=4.24, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/NonDeC
""",
@@ -9012,7 +9012,7 @@
kinetics = Arrhenius(A=(7.2e+08,'cm^3/(mol*s)'), n=1.5, Ea=(48.8667,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: N3s_H;H_rad
""",
@@ -9025,7 +9025,7 @@
kinetics = Arrhenius(A=(0.00528,'cm^3/(mol*s)'), n=4.24, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/Cs3
""",
@@ -9038,7 +9038,7 @@
kinetics = Arrhenius(A=(5.1e+08,'cm^3/(mol*s)'), n=1.5, Ea=(116.662,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: N3s_H;O_atom_triplet
""",
@@ -9051,7 +9051,7 @@
kinetics = Arrhenius(A=(0.2016,'cm^3/(mol*s)'), n=4.24, Ea=(92.4246,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H2/Cd
""",
@@ -9064,7 +9064,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=2, Ea=(109.424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: N3s_H;O_pri_rad
""",
@@ -9077,7 +9077,7 @@
kinetics = Arrhenius(A=(0.04536,'cm^3/(mol*s)'), n=4.24, Ea=(80.542,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/CdCs
""",
@@ -9090,7 +9090,7 @@
kinetics = Arrhenius(A=(2.43e+06,'cm^3/(mol*s)'), n=1.87, Ea=(86.9142,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: N3s_H;C_methyl
""",
@@ -9103,7 +9103,7 @@
kinetics = Arrhenius(A=(0.007048,'cm^3/(mol*s)'), n=4.24, Ea=(76.0233,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/CdCs2
""",
@@ -9116,7 +9116,7 @@
kinetics = Arrhenius(A=(0.152,'cm^3/(mol*s)'), n=4.24, Ea=(118.742,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/CdCd
""",
@@ -9129,7 +9129,7 @@
kinetics = Arrhenius(A=(0.007688,'cm^3/(mol*s)'), n=4.24, Ea=(103.763,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/CdCdCs
""",
@@ -9142,7 +9142,7 @@
kinetics = Arrhenius(A=(0.046,'cm^3/(mol*s)'), n=4.24, Ea=(87.4038,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H2/Ct
""",
@@ -9155,7 +9155,7 @@
kinetics = Arrhenius(A=(0.01088,'cm^3/(mol*s)'), n=4.24, Ea=(74.5589,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/CtCs
""",
@@ -9168,7 +9168,7 @@
kinetics = Arrhenius(A=(0.004392,'cm^3/(mol*s)'), n=4.24, Ea=(72.425,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/CtCs2
""",
@@ -9181,7 +9181,7 @@
kinetics = Arrhenius(A=(0.04616,'cm^3/(mol*s)'), n=4.24, Ea=(79.496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/CtCt
""",
@@ -9194,7 +9194,7 @@
kinetics = Arrhenius(A=(0.001288,'cm^3/(mol*s)'), n=4.24, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/CtCtCs
""",
@@ -9207,7 +9207,7 @@
kinetics = Arrhenius(A=(0.0984,'cm^3/(mol*s)'), n=4.24, Ea=(81.5964,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H2/Cb
""",
@@ -9220,7 +9220,7 @@
kinetics = Arrhenius(A=(0.02888,'cm^3/(mol*s)'), n=4.24, Ea=(70.651,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/H/CbCs
""",
@@ -9233,7 +9233,7 @@
kinetics = Arrhenius(A=(0.0007816,'cm^3/(mol*s)'), n=4.24, Ea=(72.2577,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;C_rad/CbCs2
""",
@@ -9246,7 +9246,7 @@
kinetics = Arrhenius(A=(0.0952,'cm^3/(mol*s)'), n=4.24, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;Cd_pri_rad
""",
@@ -9259,7 +9259,7 @@
kinetics = Arrhenius(A=(0.05376,'cm^3/(mol*s)'), n=4.24, Ea=(7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;Cd_rad/NonDeC
""",
@@ -9272,7 +9272,7 @@
kinetics = Arrhenius(A=(0.04512,'cm^3/(mol*s)'), n=4.24, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;Cd_rad/Cd
""",
@@ -9285,7 +9285,7 @@
kinetics = Arrhenius(A=(0.1136,'cm^3/(mol*s)'), n=4.24, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;Cb_rad
""",
@@ -9298,7 +9298,7 @@
kinetics = Arrhenius(A=(0.00968,'cm^3/(mol*s)'), n=4.24, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;Cd_rad/Ct
""",
@@ -9311,7 +9311,7 @@
kinetics = Arrhenius(A=(0.0366,'cm^3/(mol*s)'), n=4.24, Ea=(77.8642,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_methyl
""",
@@ -9324,7 +9324,7 @@
kinetics = Arrhenius(A=(0.0032,'cm^3/(mol*s)'), n=4.24, Ea=(61.1701,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H2/Cs
""",
@@ -9337,7 +9337,7 @@
kinetics = Arrhenius(A=(0.00362,'cm^3/(mol*s)'), n=4.24, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/NonDeC
""",
@@ -9350,7 +9350,7 @@
kinetics = Arrhenius(A=(0.000816,'cm^3/(mol*s)'), n=4.24, Ea=(45.6893,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/Cs3
""",
@@ -9363,7 +9363,7 @@
kinetics = Arrhenius(A=(0.05,'cm^3/(mol*s)'), n=4.24, Ea=(115.144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H2/Cd
""",
@@ -9376,7 +9376,7 @@
kinetics = Arrhenius(A=(0.00848,'cm^3/(mol*s)'), n=4.24, Ea=(103.261,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/CdCs
""",
@@ -9389,7 +9389,7 @@
kinetics = Arrhenius(A=(0.000996,'cm^3/(mol*s)'), n=4.24, Ea=(98.7424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/CdCs2
""",
@@ -9402,7 +9402,7 @@
kinetics = Arrhenius(A=(0.026,'cm^3/(mol*s)'), n=4.24, Ea=(141.461,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/CdCd
""",
@@ -9415,7 +9415,7 @@
kinetics = Arrhenius(A=(0.00099,'cm^3/(mol*s)'), n=4.24, Ea=(103.345,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/CdCdCs
""",
@@ -9428,7 +9428,7 @@
kinetics = Arrhenius(A=(0.0114,'cm^3/(mol*s)'), n=4.24, Ea=(110.123,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H2/Ct
""",
@@ -9441,7 +9441,7 @@
kinetics = Arrhenius(A=(0.00204,'cm^3/(mol*s)'), n=4.24, Ea=(97.278,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/CtCs
""",
@@ -9454,7 +9454,7 @@
kinetics = Arrhenius(A=(0.00062,'cm^3/(mol*s)'), n=4.24, Ea=(95.1442,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/CtCs2
""",
@@ -9467,7 +9467,7 @@
kinetics = Arrhenius(A=(0.00788,'cm^3/(mol*s)'), n=4.24, Ea=(79.496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/CtCt
""",
@@ -9480,7 +9480,7 @@
kinetics = Arrhenius(A=(0.0001664,'cm^3/(mol*s)'), n=4.24, Ea=(81.588,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/CtCtCs
""",
@@ -9493,7 +9493,7 @@
kinetics = Arrhenius(A=(0.0244,'cm^3/(mol*s)'), n=4.24, Ea=(104.315,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H2/Cb
""",
@@ -9506,7 +9506,7 @@
kinetics = Arrhenius(A=(0.0054,'cm^3/(mol*s)'), n=4.24, Ea=(93.3701,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/H/CbCs
""",
@@ -9519,7 +9519,7 @@
kinetics = Arrhenius(A=(0.0001104,'cm^3/(mol*s)'), n=4.24, Ea=(94.9768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;C_rad/CbCs2
""",
@@ -9532,7 +9532,7 @@
kinetics = Arrhenius(A=(0.0344,'cm^3/(mol*s)'), n=4.24, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;Cd_pri_rad
""",
@@ -9545,7 +9545,7 @@
kinetics = Arrhenius(A=(0.0146,'cm^3/(mol*s)'), n=4.24, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;Cd_rad/NonDeC
""",
@@ -9558,7 +9558,7 @@
kinetics = Arrhenius(A=(0.01626,'cm^3/(mol*s)'), n=4.24, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;Cd_rad/Cd
""",
@@ -9571,7 +9571,7 @@
kinetics = Arrhenius(A=(0.041,'cm^3/(mol*s)'), n=4.24, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;Cb_rad
""",
@@ -9584,7 +9584,7 @@
kinetics = Arrhenius(A=(0.00348,'cm^3/(mol*s)'), n=4.24, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;Cd_rad/Ct
""",
@@ -9597,7 +9597,7 @@
kinetics = Arrhenius(A=(0.01452,'cm^3/(mol*s)'), n=4.24, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_methyl
""",
@@ -9610,7 +9610,7 @@
kinetics = Arrhenius(A=(0.001684,'cm^3/(mol*s)'), n=4.24, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H2/Cs
""",
@@ -9623,7 +9623,7 @@
kinetics = Arrhenius(A=(0.00254,'cm^3/(mol*s)'), n=4.24, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/NonDeC
""",
@@ -9636,7 +9636,7 @@
kinetics = Arrhenius(A=(0.000756,'cm^3/(mol*s)'), n=4.24, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/Cs3
""",
@@ -9649,7 +9649,7 @@
kinetics = Arrhenius(A=(0.02896,'cm^3/(mol*s)'), n=4.24, Ea=(77.8224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H2/Cd
""",
@@ -9662,7 +9662,7 @@
kinetics = Arrhenius(A=(0.0065,'cm^3/(mol*s)'), n=4.24, Ea=(83.68,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/CdCs
""",
@@ -9675,7 +9675,7 @@
kinetics = Arrhenius(A=(0.00101,'cm^3/(mol*s)'), n=4.24, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/CdCs2
""",
@@ -9688,7 +9688,7 @@
kinetics = Arrhenius(A=(0.0218,'cm^3/(mol*s)'), n=4.24, Ea=(111.713,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/CdCd
""",
@@ -9701,7 +9701,7 @@
kinetics = Arrhenius(A=(0.0011,'cm^3/(mol*s)'), n=4.24, Ea=(112.131,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/CdCdCs
""",
@@ -9714,7 +9714,7 @@
kinetics = Arrhenius(A=(0.00658,'cm^3/(mol*s)'), n=4.24, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H2/Ct
""",
@@ -9727,7 +9727,7 @@
kinetics = Arrhenius(A=(0.001558,'cm^3/(mol*s)'), n=4.24, Ea=(66.944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/CtCs
""",
@@ -9740,7 +9740,7 @@
kinetics = Arrhenius(A=(0.000628,'cm^3/(mol*s)'), n=4.24, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/CtCs2
""",
@@ -9753,7 +9753,7 @@
kinetics = Arrhenius(A=(0.00662,'cm^3/(mol*s)'), n=4.24, Ea=(87.864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/CtCt
""",
@@ -9766,7 +9766,7 @@
kinetics = Arrhenius(A=(0.000185,'cm^3/(mol*s)'), n=4.24, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/CtCtCs
""",
@@ -9779,7 +9779,7 @@
kinetics = Arrhenius(A=(0.01412,'cm^3/(mol*s)'), n=4.24, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H2/Cb
""",
@@ -9792,7 +9792,7 @@
kinetics = Arrhenius(A=(0.00412,'cm^3/(mol*s)'), n=4.24, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/H/CbCs
""",
@@ -9805,7 +9805,7 @@
kinetics = Arrhenius(A=(0.000112,'cm^3/(mol*s)'), n=4.24, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;C_rad/CbCs2
""",
@@ -9818,7 +9818,7 @@
kinetics = Arrhenius(A=(0.01368,'cm^3/(mol*s)'), n=4.24, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;Cd_pri_rad
""",
@@ -9831,7 +9831,7 @@
kinetics = Arrhenius(A=(0.0077,'cm^3/(mol*s)'), n=4.24, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;Cd_rad/NonDeC
""",
@@ -9844,7 +9844,7 @@
kinetics = Arrhenius(A=(0.00646,'cm^3/(mol*s)'), n=4.24, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;Cd_rad/Cd
""",
@@ -9857,7 +9857,7 @@
kinetics = Arrhenius(A=(0.01626,'cm^3/(mol*s)'), n=4.24, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;Cb_rad
""",
@@ -9870,7 +9870,7 @@
kinetics = Arrhenius(A=(0.001386,'cm^3/(mol*s)'), n=4.24, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;Cd_rad/Ct
""",
@@ -9883,7 +9883,7 @@
kinetics = Arrhenius(A=(0.0133,'cm^3/(mol*s)'), n=4.24, Ea=(28.8278,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_methyl
""",
@@ -9896,7 +9896,7 @@
kinetics = Arrhenius(A=(0.001164,'cm^3/(mol*s)'), n=4.24, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H2/Cs
""",
@@ -9909,7 +9909,7 @@
kinetics = Arrhenius(A=(0.00132,'cm^3/(mol*s)'), n=4.24, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/NonDeC
""",
@@ -9922,7 +9922,7 @@
kinetics = Arrhenius(A=(0.000298,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/Cs3
""",
@@ -9935,7 +9935,7 @@
kinetics = Arrhenius(A=(0.01828,'cm^3/(mol*s)'), n=4.24, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H2/Cd
""",
@@ -9948,7 +9948,7 @@
kinetics = Arrhenius(A=(0.00308,'cm^3/(mol*s)'), n=4.24, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/CdCs
""",
@@ -9961,7 +9961,7 @@
kinetics = Arrhenius(A=(0.000362,'cm^3/(mol*s)'), n=4.24, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/CdCs2
""",
@@ -9974,7 +9974,7 @@
kinetics = Arrhenius(A=(0.00946,'cm^3/(mol*s)'), n=4.24, Ea=(93.3032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/CdCd
""",
@@ -9987,7 +9987,7 @@
kinetics = Arrhenius(A=(0.00036,'cm^3/(mol*s)'), n=4.24, Ea=(92.8848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/CdCdCs
""",
@@ -10000,7 +10000,7 @@
kinetics = Arrhenius(A=(0.00416,'cm^3/(mol*s)'), n=4.24, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H2/Ct
""",
@@ -10013,7 +10013,7 @@
kinetics = Arrhenius(A=(0.000742,'cm^3/(mol*s)'), n=4.24, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/CtCs
""",
@@ -10026,7 +10026,7 @@
kinetics = Arrhenius(A=(0.000226,'cm^3/(mol*s)'), n=4.24, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/CtCs2
""",
@@ -10039,7 +10039,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.24, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/CtCt
""",
@@ -10052,7 +10052,7 @@
kinetics = Arrhenius(A=(6.06e-05,'cm^3/(mol*s)'), n=4.24, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/CtCtCs
""",
@@ -10065,7 +10065,7 @@
kinetics = Arrhenius(A=(0.00892,'cm^3/(mol*s)'), n=4.24, Ea=(55.279,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H2/Cb
""",
@@ -10078,7 +10078,7 @@
kinetics = Arrhenius(A=(0.001966,'cm^3/(mol*s)'), n=4.24, Ea=(56.0656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/H/CbCs
""",
@@ -10091,7 +10091,7 @@
kinetics = Arrhenius(A=(4.02e-05,'cm^3/(mol*s)'), n=4.24, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;C_rad/CbCs2
""",
@@ -10104,7 +10104,7 @@
kinetics = Arrhenius(A=(0.01254,'cm^3/(mol*s)'), n=4.24, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;Cd_pri_rad
""",
@@ -10117,7 +10117,7 @@
kinetics = Arrhenius(A=(0.00532,'cm^3/(mol*s)'), n=4.24, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;Cd_rad/NonDeC
""",
@@ -10130,7 +10130,7 @@
kinetics = Arrhenius(A=(0.00592,'cm^3/(mol*s)'), n=4.24, Ea=(35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;Cd_rad/Cd
""",
@@ -10143,7 +10143,7 @@
kinetics = Arrhenius(A=(0.0149,'cm^3/(mol*s)'), n=4.24, Ea=(-7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;Cb_rad
""",
@@ -10156,7 +10156,7 @@
kinetics = Arrhenius(A=(0.00127,'cm^3/(mol*s)'), n=4.24, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;Cd_rad/Ct
""",
@@ -10169,7 +10169,7 @@
kinetics = Arrhenius(A=(0.0416,'cm^3/(mol*s)'), n=4.24, Ea=(27.6562,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_methyl
""",
@@ -10182,7 +10182,7 @@
kinetics = Arrhenius(A=(0.00484,'cm^3/(mol*s)'), n=4.24, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H2/Cs
""",
@@ -10195,7 +10195,7 @@
kinetics = Arrhenius(A=(0.00728,'cm^3/(mol*s)'), n=4.24, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/NonDeC
""",
@@ -10208,7 +10208,7 @@
kinetics = Arrhenius(A=(0.002172,'cm^3/(mol*s)'), n=4.24, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/Cs3
""",
@@ -10221,7 +10221,7 @@
kinetics = Arrhenius(A=(0.0832,'cm^3/(mol*s)'), n=4.24, Ea=(71.5464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H2/Cd
""",
@@ -10234,7 +10234,7 @@
kinetics = Arrhenius(A=(0.01864,'cm^3/(mol*s)'), n=4.24, Ea=(77.404,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/CdCs
""",
@@ -10247,7 +10247,7 @@
kinetics = Arrhenius(A=(0.002896,'cm^3/(mol*s)'), n=4.24, Ea=(77.8224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/CdCs2
""",
@@ -10260,7 +10260,7 @@
kinetics = Arrhenius(A=(0.0624,'cm^3/(mol*s)'), n=4.24, Ea=(105.437,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/CdCd
""",
@@ -10273,7 +10273,7 @@
kinetics = Arrhenius(A=(0.003156,'cm^3/(mol*s)'), n=4.24, Ea=(105.855,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/CdCdCs
""",
@@ -10286,7 +10286,7 @@
kinetics = Arrhenius(A=(0.01888,'cm^3/(mol*s)'), n=4.24, Ea=(59.9149,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H2/Ct
""",
@@ -10299,7 +10299,7 @@
kinetics = Arrhenius(A=(0.00448,'cm^3/(mol*s)'), n=4.24, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/CtCs
""",
@@ -10312,7 +10312,7 @@
kinetics = Arrhenius(A=(0.001804,'cm^3/(mol*s)'), n=4.24, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/CtCs2
""",
@@ -10325,7 +10325,7 @@
kinetics = Arrhenius(A=(0.01896,'cm^3/(mol*s)'), n=4.24, Ea=(81.588,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/CtCt
""",
@@ -10338,7 +10338,7 @@
kinetics = Arrhenius(A=(0.000532,'cm^3/(mol*s)'), n=4.24, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/CtCtCs
""",
@@ -10351,7 +10351,7 @@
kinetics = Arrhenius(A=(0.0404,'cm^3/(mol*s)'), n=4.24, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H2/Cb
""",
@@ -10364,7 +10364,7 @@
kinetics = Arrhenius(A=(0.01184,'cm^3/(mol*s)'), n=4.24, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/H/CbCs
""",
@@ -10377,7 +10377,7 @@
kinetics = Arrhenius(A=(0.0003212,'cm^3/(mol*s)'), n=4.24, Ea=(61.5048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;C_rad/CbCs2
""",
@@ -10390,7 +10390,7 @@
kinetics = Arrhenius(A=(0.03924,'cm^3/(mol*s)'), n=4.24, Ea=(7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;Cd_pri_rad
""",
@@ -10403,7 +10403,7 @@
kinetics = Arrhenius(A=(0.02208,'cm^3/(mol*s)'), n=4.24, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;Cd_rad/NonDeC
""",
@@ -10416,7 +10416,7 @@
kinetics = Arrhenius(A=(0.01852,'cm^3/(mol*s)'), n=4.24, Ea=(39.3296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;Cd_rad/Cd
""",
@@ -10429,7 +10429,7 @@
kinetics = Arrhenius(A=(0.0468,'cm^3/(mol*s)'), n=4.24, Ea=(-4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;Cb_rad
""",
@@ -10442,7 +10442,7 @@
kinetics = Arrhenius(A=(0.003976,'cm^3/(mol*s)'), n=4.24, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;Cd_rad/Ct
""",
@@ -10455,7 +10455,7 @@
kinetics = Arrhenius(A=(0.0302,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_methyl
""",
@@ -10468,7 +10468,7 @@
kinetics = Arrhenius(A=(0.0035,'cm^3/(mol*s)'), n=4.24, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H2/Cs
""",
@@ -10481,7 +10481,7 @@
kinetics = Arrhenius(A=(0.00526,'cm^3/(mol*s)'), n=4.24, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/NonDeC
""",
@@ -10494,7 +10494,7 @@
kinetics = Arrhenius(A=(0.001574,'cm^3/(mol*s)'), n=4.24, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/Cs3
""",
@@ -10507,7 +10507,7 @@
kinetics = Arrhenius(A=(0.0604,'cm^3/(mol*s)'), n=4.24, Ea=(70.2912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H2/Cd
""",
@@ -10520,7 +10520,7 @@
kinetics = Arrhenius(A=(0.0135,'cm^3/(mol*s)'), n=4.24, Ea=(76.1488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/CdCs
""",
@@ -10533,7 +10533,7 @@
kinetics = Arrhenius(A=(0.0021,'cm^3/(mol*s)'), n=4.24, Ea=(76.1488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/CdCs2
""",
@@ -10546,7 +10546,7 @@
kinetics = Arrhenius(A=(0.0452,'cm^3/(mol*s)'), n=4.24, Ea=(104.182,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/CdCd
""",
@@ -10559,7 +10559,7 @@
kinetics = Arrhenius(A=(0.00228,'cm^3/(mol*s)'), n=4.24, Ea=(104.182,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/CdCdCs
""",
@@ -10572,7 +10572,7 @@
kinetics = Arrhenius(A=(0.0137,'cm^3/(mol*s)'), n=4.24, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H2/Ct
""",
@@ -10585,7 +10585,7 @@
kinetics = Arrhenius(A=(0.00324,'cm^3/(mol*s)'), n=4.24, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/CtCs
""",
@@ -10598,7 +10598,7 @@
kinetics = Arrhenius(A=(0.001308,'cm^3/(mol*s)'), n=4.24, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/CtCs2
""",
@@ -10611,7 +10611,7 @@
kinetics = Arrhenius(A=(0.01376,'cm^3/(mol*s)'), n=4.24, Ea=(79.9144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/CtCt
""",
@@ -10624,7 +10624,7 @@
kinetics = Arrhenius(A=(0.000384,'cm^3/(mol*s)'), n=4.24, Ea=(82.8432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/CtCtCs
""",
@@ -10637,7 +10637,7 @@
kinetics = Arrhenius(A=(0.0294,'cm^3/(mol*s)'), n=4.24, Ea=(61.5048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H2/Cb
""",
@@ -10650,7 +10650,7 @@
kinetics = Arrhenius(A=(0.0086,'cm^3/(mol*s)'), n=4.24, Ea=(63.1784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/H/CbCs
""",
@@ -10663,7 +10663,7 @@
kinetics = Arrhenius(A=(0.000232,'cm^3/(mol*s)'), n=4.24, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;C_rad/CbCs2
""",
@@ -10676,7 +10676,7 @@
kinetics = Arrhenius(A=(0.0284,'cm^3/(mol*s)'), n=4.24, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;Cd_pri_rad
""",
@@ -10689,7 +10689,7 @@
kinetics = Arrhenius(A=(0.016,'cm^3/(mol*s)'), n=4.24, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;Cd_rad/NonDeC
""",
@@ -10702,7 +10702,7 @@
kinetics = Arrhenius(A=(0.01344,'cm^3/(mol*s)'), n=4.24, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;Cd_rad/Cd
""",
@@ -10715,7 +10715,7 @@
kinetics = Arrhenius(A=(0.0338,'cm^3/(mol*s)'), n=4.24, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;Cb_rad
""",
@@ -10728,7 +10728,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.24, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte GAVs BMK/6-311G(2,d,p)""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;Cd_rad/Ct
""",
@@ -10741,7 +10741,7 @@
kinetics = Arrhenius(A=(2.89e+06,'cm^3/(mol*s)'), n=2.23036, Ea=(10407,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2500,'K')),
rank = 1,
shortDesc = """HEAT""",
- longDesc =
+ longDesc =
"""
T.L. Nguyen, J.F. Staton, IJCK 2019, doi: 10.1002/kin.21255
calculations done at the HEAT-456QP level of theory
@@ -10755,7 +10755,7 @@
kinetics = Arrhenius(A=(1.5e+08,'cm^3/(mol*s)'), n=1.6, Ea=(109.424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH3 + OH = NH2 + H2O (B&D #7) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10770,7 +10770,7 @@
kinetics = Arrhenius(A=(2.82e+07,'cm^3/(mol*s)'), n=1.94, Ea=(116.662,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH3 + O = NH2 + OH (B&D #8) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10785,7 +10785,7 @@
kinetics = Arrhenius(A=(9.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(33.221,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2 + H = NH + H2 (B&D #9) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
""",
@@ -10798,7 +10798,7 @@
kinetics = Arrhenius(A=(1.4e+13,'cm^3/(mol*s)'), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2 + O = NH + OH (B&D #15d2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
""",
@@ -10811,7 +10811,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(83.4834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2 + OH = NH + H2O (B&D #16b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
""",
@@ -10824,7 +10824,7 @@
kinetics = Arrhenius(A=(1e+14,'cm^3/(mol*s)'), n=0, Ea=(41.589,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2 + NH2 = NH3 + NH (B&D #17e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10839,7 +10839,7 @@
kinetics = Arrhenius(A=(5.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(60.9734,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3 + NH2 = CH4 + NH (B&D #21e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10854,7 +10854,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=1.87, Ea=(31.6729,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3 + NH2 = CH2 + NH3 (B&D #21f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10869,7 +10869,7 @@
kinetics = Arrhenius(A=(6.4e+12,'cm^3/(mol*s)'), n=0.1, Ea=(88.9518,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N + OH = NH + O (B&D #26b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10884,7 +10884,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(101.215,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH + NH2 = NH3 + N (B&D #27b2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10899,7 +10899,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-2.05016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH + OH = N + H2O (B&D #27c2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10914,7 +10914,7 @@
kinetics = Arrhenius(A=(3.5e+13,'cm^3/(mol*s)'), n=0, Ea=(126.666,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH + H = N + H2 (B&D #27d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10929,7 +10929,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(217.878,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH + O = N + OH (B&D #27e2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10944,7 +10944,7 @@
kinetics = Arrhenius(A=(820000,'cm^3/(mol*s)'), n=1.87, Ea=(188.129,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH + CH3 = CH4 + N (B&D #27f2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10959,7 +10959,7 @@
kinetics = Arrhenius(A=(9.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(6.61072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + H = NNH + H2 (B&D #29c1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10974,7 +10974,7 @@
kinetics = Arrhenius(A=(6.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(21.2673,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + O = NNH + OH (B&D #29c2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -10989,7 +10989,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(-4.97896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + OH = NNH + H2O (B&D #29c3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11004,7 +11004,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(-4.8116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + NH2 = NNH + NH3 (B&D #29c4) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11019,7 +11019,7 @@
kinetics = Arrhenius(A=(3.2e+06,'cm^3/(mol*s)'), n=1.87, Ea=(12.4265,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + CH3 = NNH + CH4 (B&D #29c5) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11034,7 +11034,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(-4.97896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H2 + NH = NNH + NH2 (B&D #29d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11049,7 +11049,7 @@
kinetics = Arrhenius(A=(3e+13,'cm^3/(mol*s)'), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H3 + OH = H2NN + H2O (B&D #31d2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11064,7 +11064,7 @@
kinetics = Arrhenius(A=(3e+13,'cm^3/(mol*s)'), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H3 + CH3 = H2NN + CH4 (B&D #31e2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11079,7 +11079,7 @@
kinetics = Arrhenius(A=(3e+13,'cm^3/(mol*s)'), n=0, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H3 + NH2 = H2NN + NH3 (B&D #31f2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11094,7 +11094,7 @@
kinetics = Arrhenius(A=(3.84e+09,'cm^3/(mol*s)'), n=1.5, Ea=(20.2506,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H4 + H = N2H3 + H2 (B&D #32a) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11109,7 +11109,7 @@
kinetics = Arrhenius(A=(2.68e+09,'cm^3/(mol*s)'), n=1.5, Ea=(40.0953,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H4 + O = N2H3 + OH (B&D #32b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11124,7 +11124,7 @@
kinetics = Arrhenius(A=(1.92e+07,'cm^3/(mol*s)'), n=2, Ea=(-2.7196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H4 + OH = N2H3 + H2O (B&D #32c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11139,7 +11139,7 @@
kinetics = Arrhenius(A=(1.32e+07,'cm^3/(mol*s)'), n=1.87, Ea=(22.3007,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H4 + CH3 = N2H3 + CH4 (B&D #32d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11154,7 +11154,7 @@
kinetics = Arrhenius(A=(1.48e+07,'cm^3/(mol*s)'), n=1.94, Ea=(6.81992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: N2H4 + NH2 = N2H3 + NH3 (B&D #32e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11169,7 +11169,7 @@
kinetics = Arrhenius(A=(1.3e+07,'cm^3/(mol*s)'), n=1.88, Ea=(-3.9748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + OH = NO + H2O (B&D #36c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11184,7 +11184,7 @@
kinetics = Arrhenius(A=(4.5e+11,'cm^3/(mol*s)'), n=0.72, Ea=(2.76144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + H = H2 + NO (B&D #36d1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11199,7 +11199,7 @@
kinetics = Arrhenius(A=(4.5e+11,'cm^3/(mol*s)'), n=0.72, Ea=(2.76144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + O = OH + NO (B&D #36e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11214,7 +11214,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(-4.8116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + NH2 = NH3 + NO (B&D #36f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11229,7 +11229,7 @@
kinetics = Arrhenius(A=(4e+13,'cm^3/(mol*s)'), n=0, Ea=(66.5256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + O2 = NO + HO2 (B&D #36h) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11244,7 +11244,7 @@
kinetics = Arrhenius(A=(820000,'cm^3/(mol*s)'), n=1.87, Ea=(3.9748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNO + CH3 = NO + CH4 (B&D #36i) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11259,7 +11259,7 @@
kinetics = Arrhenius(A=(2e+08,'cm^3/(mol*s)'), n=1.55, Ea=(27.6981,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HONO + H = H2 + NO2 (B&D #40b1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11274,7 +11274,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(103.596,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HONO + O = OH + NO2 (B&D #40c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11289,7 +11289,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HONO + OH = H2O + NO2 (B&D #40d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11304,7 +11304,7 @@
kinetics = Arrhenius(A=(810000,'cm^3/(mol*s)'), n=1.87, Ea=(73.8476,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HONO + CH3 = NO2 + CH4 (B&D #40e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11319,7 +11319,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(8.03328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HONO + NH2 = NO2 + NH3 (B&D #40f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11334,7 +11334,7 @@
kinetics = Arrhenius(A=(3.9e+06,'cm^3/(mol*s)'), n=1.83, Ea=(83.9729,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HCN + OH = CN + H2O (B&D #42a) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11349,7 +11349,7 @@
kinetics = Arrhenius(A=(4.2e+10,'cm^3/(mol*s)'), n=1.83, Ea=(91.2112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HCN + O = CN + OH (B&D #42c3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11364,7 +11364,7 @@
kinetics = Arrhenius(A=(7.2e+08,'cm^3/(mol*s)'), n=1.55, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CN + H2 = HCN + H (B&D #44a) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11379,7 +11379,7 @@
kinetics = Arrhenius(A=(1.56e+13,'cm^3/(mol*s)'), n=0, Ea=(31.1708,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CN + H2O = HCN + OH (B&D #44b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11394,7 +11394,7 @@
kinetics = Arrhenius(A=(480000,'cm^3/(mol*s)'), n=2.64, Ea=(-0.66944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CN + CH4 = HCN + CH3 (B&D #44i) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11409,7 +11409,7 @@
kinetics = Arrhenius(A=(2.76e+13,'cm^3/(mol*s)'), n=0, Ea=(-1.50624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CN + NH3 = HCN + NH2 (B&D #44j) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11424,7 +11424,7 @@
kinetics = Arrhenius(A=(2.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(30.6269,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + H = H2CN + H2 (B&D #48a1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11439,7 +11439,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(85.9519,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + O = H2CN + OH (B&D #48a2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11454,7 +11454,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-0.37656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + OH = H2CN + H2O (B&D #48a3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11469,7 +11469,7 @@
kinetics = Arrhenius(A=(820000,'cm^3/(mol*s)'), n=1.87, Ea=(56.2037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + CH3 = H2CN + CH4 (B&D #48a4) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11484,7 +11484,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(18.577,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + NH2 = H2CN + NH3 (B&D #48a5) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11499,7 +11499,7 @@
kinetics = Arrhenius(A=(6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(25.6479,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + H = HCNH + H2 (B&D #48b1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11514,7 +11514,7 @@
kinetics = Arrhenius(A=(4.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(108.617,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + O = HCNH + OH (B&D #48b2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11529,7 +11529,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(101.378,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + OH = HCNH + H2O (B&D #48b3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11544,7 +11544,7 @@
kinetics = Arrhenius(A=(1.06e+06,'cm^3/(mol*s)'), n=1.87, Ea=(78.8684,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + CH3 = HCNH + CH4 (B&D #48b4) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11559,7 +11559,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(25.4806,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2CNH + NH2 = HCNH + NH3 (B&D #48b5) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11574,7 +11574,7 @@
kinetics = Arrhenius(A=(1.68e+09,'cm^3/(mol*s)'), n=1.5, Ea=(22.8446,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + H = CH2NH2 + H2 (B&D #51a1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11589,7 +11589,7 @@
kinetics = Arrhenius(A=(1.2e+09,'cm^3/(mol*s)'), n=1.5, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + O = CH2NH2 + OH (B&D #51a2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11604,7 +11604,7 @@
kinetics = Arrhenius(A=(1.08e+07,'cm^3/(mol*s)'), n=2, Ea=(2.05016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + OH = CH2NH2 + H2O (B&D #51a3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11619,7 +11619,7 @@
kinetics = Arrhenius(A=(4.5e+06,'cm^3/(mol*s)'), n=1.87, Ea=(38.3673,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + CH3 = CH2NH2 + CH4 (B&D #51a4) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11634,7 +11634,7 @@
kinetics = Arrhenius(A=(8.4e+06,'cm^3/(mol*s)'), n=1.94, Ea=(22.9702,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + NH2 = CH2NH2 + NH3 (B&D #51a5) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11649,7 +11649,7 @@
kinetics = Arrhenius(A=(9.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(40.6266,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + H = CH3NH + H2 (B&D #51b1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11664,7 +11664,7 @@
kinetics = Arrhenius(A=(6.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(85.157,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + O = CH3NH + OH (B&D #51b2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11679,7 +11679,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(77.9186,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + OH = CH3NH + H2O (B&D #51b3) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11694,7 +11694,7 @@
kinetics = Arrhenius(A=(3.2e+06,'cm^3/(mol*s)'), n=1.87, Ea=(55.4087,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + CH3 = CH3NH + CH4 (B&D #51b4) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11709,7 +11709,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(29.8738,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NH2 + NH2 = CH3NH + NH3 (B&D #51b5) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11724,7 +11724,7 @@
kinetics = Arrhenius(A=(1520,'cm^3/(mol*s)'), n=3, Ea=(16.6105,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NCO + H2 = HNCO + H (B&D #53c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11739,7 +11739,7 @@
kinetics = Arrhenius(A=(3.92e+13,'cm^3/(mol*s)'), n=0, Ea=(34.0159,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NCO + CH4 = HNCO + CH3 (B&D #53i) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11754,7 +11754,7 @@
kinetics = Arrhenius(A=(84000,'cm^3/(mol*s)'), n=2.48, Ea=(30.7106,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NCO + NH3 = HNCO + NH2 (B&D #53j) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11769,7 +11769,7 @@
kinetics = Arrhenius(A=(2.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(27.6981,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HOCN + H = H2 + NCO (B&D #55d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11784,7 +11784,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(17.2799,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HOCN + O = OH + NCO (B&D #55e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11799,7 +11799,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-1.046,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HOCN + OH = H2O + NCO (B&D #55f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11814,7 +11814,7 @@
kinetics = Arrhenius(A=(820000,'cm^3/(mol*s)'), n=1.87, Ea=(27.6981,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HOCN + CH3 = CH4 + NCO (B&D #55g) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11829,7 +11829,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(15.2716,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HOCN + NH2 = NH3 + NCO (B&D #55h) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11844,7 +11844,7 @@
kinetics = Arrhenius(A=(5.2e+10,'cm^3/(mol*s)'), n=-0.03, Ea=(78.7136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNCO + OH = NCO + H2O (B&D #56d2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11859,7 +11859,7 @@
kinetics = Arrhenius(A=(180000,'cm^3/(mol*s)'), n=2.4, Ea=(41.5053,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNCO + H = NCO + H2 (B&D #56e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11874,7 +11874,7 @@
kinetics = Arrhenius(A=(3.1e+06,'cm^3/(mol*s)'), n=1.94, Ea=(85.9519,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNCO + O = NCO + OH (B&D #56f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11889,7 +11889,7 @@
kinetics = Arrhenius(A=(1e+12,'cm^3/(mol*s)'), n=0, Ea=(56.2037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNCO + CH3 = NCO + CH4 (B&D #56h) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11904,7 +11904,7 @@
kinetics = Arrhenius(A=(1e+12,'cm^3/(mol*s)'), n=0, Ea=(37.405,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: HNCO + NH2 = NCO + NH3 (B&D #56i) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11919,7 +11919,7 @@
kinetics = Arrhenius(A=(1.32e+09,'cm^3/(mol*s)'), n=1.5, Ea=(-3.72376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH2NO + O = HCNO + OH (B&D #57d2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11934,7 +11934,7 @@
kinetics = Arrhenius(A=(1.32e+09,'cm^3/(mol*s)'), n=1.5, Ea=(1.58992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NO + H = CH2NO + H2 (B&D #58a) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11949,7 +11949,7 @@
kinetics = Arrhenius(A=(9.9e+08,'cm^3/(mol*s)'), n=1.5, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NO + O = CH2NO + OH (B&D #58b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11964,7 +11964,7 @@
kinetics = Arrhenius(A=(1.08e+07,'cm^3/(mol*s)'), n=2, Ea=(-4.97896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NO + OH = CH2NO + H2O (B&D #58c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11979,7 +11979,7 @@
kinetics = Arrhenius(A=(2.37e+06,'cm^3/(mol*s)'), n=1.87, Ea=(22.6354,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NO + CH3 = CH2NO + CH4 (B&D #58d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -11994,7 +11994,7 @@
kinetics = Arrhenius(A=(8.4e+06,'cm^3/(mol*s)'), n=1.94, Ea=(4.47688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: CH3NO + NH2 = CH2NO + NH3 (B&D #58e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12009,7 +12009,7 @@
kinetics = Arrhenius(A=(9.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(26.15,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + H = HNOH + H2 (B&D #61b1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12024,7 +12024,7 @@
kinetics = Arrhenius(A=(6.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(51.5594,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + O = HNOH + OH (B&D #61c1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12039,7 +12039,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(-1.38072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + OH = HNOH + H2O (B&D #61d1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12054,7 +12054,7 @@
kinetics = Arrhenius(A=(3.2e+06,'cm^3/(mol*s)'), n=1.87, Ea=(26.5684,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + CH3 = HNOH + CH4 (B&D #61e1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12069,7 +12069,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(13.5143,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + NH2 = HNOH + NH3 (B&D #61f1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12084,7 +12084,7 @@
kinetics = Arrhenius(A=(58000,'cm^3/(mol*s)'), n=2.69, Ea=(39.999,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + HO2 = HNOH + H2O2 (B&D #61g1) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12099,7 +12099,7 @@
kinetics = Arrhenius(A=(2.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(21.2129,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + H = NH2O + H2 (B&D #61b2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12114,7 +12114,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(103.596,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + O = NH2O + OH (B&D #61c2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12129,7 +12129,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + OH = NH2O + H2O (B&D #61d2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12144,7 +12144,7 @@
kinetics = Arrhenius(A=(820000,'cm^3/(mol*s)'), n=1.87, Ea=(73.8476,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + CH3 = NH2O + CH4 (B&D #61e2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12159,7 +12159,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(7.90776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + NH2 = NH2O + NH3 (B&D #61f2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12174,7 +12174,7 @@
kinetics = Arrhenius(A=(14000,'cm^3/(mol*s)'), n=2.69, Ea=(65.3541,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2OH + HO2 = NH2O + H2O2 (B&D #61g2) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12189,7 +12189,7 @@
kinetics = Arrhenius(A=(9.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(31.0034,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + H = HNNO + H2 (B&D #62b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12204,7 +12204,7 @@
kinetics = Arrhenius(A=(6.6e+08,'cm^3/(mol*s)'), n=1.5, Ea=(40.0953,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + O = HNNO + OH (B&D #62c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12219,7 +12219,7 @@
kinetics = Arrhenius(A=(4.8e+06,'cm^3/(mol*s)'), n=2, Ea=(-0.29288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + OH = HNNO + H2O (B&D #62d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12234,7 +12234,7 @@
kinetics = Arrhenius(A=(3.2e+06,'cm^3/(mol*s)'), n=1.87, Ea=(30.0411,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + CH3 = HNNO + CH4 (B&D #62e) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12249,7 +12249,7 @@
kinetics = Arrhenius(A=(3.6e+06,'cm^3/(mol*s)'), n=1.94, Ea=(18.9954,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + NH2 = HNNO + NH3 (B&D #62f) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12264,7 +12264,7 @@
kinetics = Arrhenius(A=(58000,'cm^3/(mol*s)'), n=2.69, Ea=(52.8439,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: NH2NO + HO2 = HNNO + H2O2 (B&D #62g) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12279,7 +12279,7 @@
kinetics = Arrhenius(A=(116000,'cm^3/(mol*s)'), n=2.69, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 2,
shortDesc = """Added by Beat Buesser""",
- longDesc =
+ longDesc =
"""
Added by Beat Buesser, value for reaction: H2NNHO + HO2 = HNNHO + H2O2 (B&D #63g) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli",
@@ -12294,7 +12294,7 @@
kinetics = Arrhenius(A=(688800,'cm^3/(mol*s)'), n=2.38, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;O_pri_rad
""",
@@ -12307,7 +12307,7 @@
kinetics = Arrhenius(A=(556000,'cm^3/(mol*s)'), n=2.38, Ea=(-4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;O_pri_rad
""",
@@ -12320,7 +12320,7 @@
kinetics = Arrhenius(A=(168800,'cm^3/(mol*s)'), n=2.38, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;O_pri_rad
""",
@@ -12333,7 +12333,7 @@
kinetics = Arrhenius(A=(113400,'cm^3/(mol*s)'), n=2.38, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;O_pri_rad
""",
@@ -12346,7 +12346,7 @@
kinetics = Arrhenius(A=(275200,'cm^3/(mol*s)'), n=2.38, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;O_pri_rad
""",
@@ -12359,7 +12359,7 @@
kinetics = Arrhenius(A=(302000,'cm^3/(mol*s)'), n=2.38, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) OH + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;O_pri_rad
""",
@@ -12372,7 +12372,7 @@
kinetics = Arrhenius(A=(22960,'cm^3/(mol*s)'), n=3.02, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_1;H_rad
""",
@@ -12385,7 +12385,7 @@
kinetics = Arrhenius(A=(9040,'cm^3/(mol*s)'), n=3.02, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_fused6;H_rad
""",
@@ -12398,7 +12398,7 @@
kinetics = Arrhenius(A=(6360,'cm^3/(mol*s)'), n=3.02, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_fused6_2;H_rad
""",
@@ -12411,7 +12411,7 @@
kinetics = Arrhenius(A=(7680,'cm^3/(mol*s)'), n=3.02, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3_5ring_adj5;H_rad
""",
@@ -12424,7 +12424,7 @@
kinetics = Arrhenius(A=(8880,'cm^3/(mol*s)'), n=3.02, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_alpha6ring;H_rad
""",
@@ -12437,7 +12437,7 @@
kinetics = Arrhenius(A=(8040,'cm^3/(mol*s)'), n=3.02, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK/6-311G(2,d,p) H + JP10""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC_5ring_beta6ring;H_rad
""",
@@ -12450,7 +12450,7 @@
kinetics = Arrhenius(A=(0.002442,'cm^3/(mol*s)'), n=4.24, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/NonDeC_5ring_fused6_1
""",
@@ -12463,7 +12463,7 @@
kinetics = Arrhenius(A=(0.001323,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/Cs3_5ring_adj5
""",
@@ -12476,7 +12476,7 @@
kinetics = Arrhenius(A=(0.000948,'cm^3/(mol*s)'), n=4.24, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/NonDeC_5ring_alpha6ring
""",
@@ -12489,7 +12489,7 @@
kinetics = Arrhenius(A=(0.0002901,'cm^3/(mol*s)'), n=4.24, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/NonDeC_5ring_beta6ring
""",
@@ -12502,7 +12502,7 @@
kinetics = Arrhenius(A=(0.001323,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/NonDeC_5ring_fused6_2
""",
@@ -12515,7 +12515,7 @@
kinetics = Arrhenius(A=(0.001323,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Aaron Vandeputte BMK""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/Cs3_5ring_fused6
""",
@@ -12528,7 +12528,7 @@
kinetics = Arrhenius(A=(0.001628,'cm^3/(mol*s)'), n=4.24, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/NonDeC_5ring_fused6_1
""",
@@ -12541,7 +12541,7 @@
kinetics = Arrhenius(A=(0.000882,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/Cs3_5ring_adj5
""",
@@ -12554,7 +12554,7 @@
kinetics = Arrhenius(A=(0.000632,'cm^3/(mol*s)'), n=4.24, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/NonDeC_5ring_alpha6ring
""",
@@ -12567,7 +12567,7 @@
kinetics = Arrhenius(A=(0.0001934,'cm^3/(mol*s)'), n=4.24, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/NonDeC_5ring_beta6ring
""",
@@ -12580,7 +12580,7 @@
kinetics = Arrhenius(A=(0.000882,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/Cs3_5ring_fused6
""",
@@ -12593,7 +12593,7 @@
kinetics = Arrhenius(A=(0.000882,'cm^3/(mol*s)'), n=4.24, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated value""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/NonDeC_5ring_fused6_2
""",
@@ -12606,7 +12606,7 @@
kinetics = Arrhenius(A=(1.134e+07,'cm^3/(mol*s)'), n=2.21, Ea=(31.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs\H\Cs\O;H_rad
""",
@@ -12619,7 +12619,7 @@
kinetics = Arrhenius(A=(414000,'cm^3/(mol*s)'), n=2.34, Ea=(11.2131,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2O;H_rad
""",
@@ -12632,7 +12632,7 @@
kinetics = Arrhenius(A=(2.838,'cm^3/(mol*s)'), n=3.6, Ea=(46.2332,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs\H\Cs\O;C_methyl
""",
@@ -12645,7 +12645,7 @@
kinetics = Arrhenius(A=(0.389,'cm^3/(mol*s)'), n=3.53, Ea=(16.7778,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2O;C_methyl
""",
@@ -12658,7 +12658,7 @@
kinetics = Arrhenius(A=(45000,'cm^3/(mol*s)'), n=2.67, Ea=(14.5603,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;H_rad
""",
@@ -12671,7 +12671,7 @@
kinetics = Arrhenius(A=(0.204,'cm^3/(mol*s)'), n=3.99, Ea=(26.2337,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_methyl
""",
@@ -12684,7 +12684,7 @@
kinetics = Arrhenius(A=(3360,'cm^3/(mol*s)'), n=3.14, Ea=(17.9494,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """same as rule 3072. ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\H_Cd\H2;H_rad
""",
@@ -12697,7 +12697,7 @@
kinetics = Arrhenius(A=(6720,'cm^3/(mol*s)'), n=3.14, Ea=(17.9494,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\H_Cd\H\Cs;H_rad
""",
@@ -12710,7 +12710,7 @@
kinetics = Arrhenius(A=(0.072,'cm^3/(mol*s)'), n=4.25, Ea=(31.5055,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """same as rule 3072. ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\H_Cd\H2;C_methyl
""",
@@ -12723,7 +12723,7 @@
kinetics = Arrhenius(A=(0.144,'cm^3/(mol*s)'), n=4.25, Ea=(31.5055,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\H_Cd\H\Cs;C_methyl
""",
@@ -12736,7 +12736,7 @@
kinetics = Arrhenius(A=(5028,'cm^3/(mol*s)'), n=3.18, Ea=(18.2841,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\Cs_Cd\H2;H_rad
""",
@@ -12749,7 +12749,7 @@
kinetics = Arrhenius(A=(0.1188,'cm^3/(mol*s)'), n=4.26, Ea=(31.5892,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MRH CBS-QB3 with 1-dHR corrections ref: doi: 10.1021/ie1005349""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd\Cs_Cd\H2;C_methyl
""",
@@ -12762,7 +12762,7 @@
kinetics = Arrhenius(A=(0.00128,'cm^3/(mol*s)'), n=4.34, Ea=(70.5004,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """Aaron Vandeputte GAVs CBS-QB3""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/Cs
""",
@@ -12775,7 +12775,7 @@
kinetics = Arrhenius(A=(0.00148,'cm^3/(mol*s)'), n=4.34, Ea=(59.5383,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """Aaron Vandeputte GAVs CBS-QB3""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/NonDeC
""",
@@ -12788,7 +12788,7 @@
kinetics = Arrhenius(A=(0.00148,'cm^3/(mol*s)'), n=4.34, Ea=(55.0196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """Aaron Vandeputte GAVs CBS-QB3""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/Cs3
""",
@@ -12801,7 +12801,7 @@
kinetics = Arrhenius(A=(4.32e+06,'cm^3/(mol*s)'), n=2.002, Ea=(-0.472792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH + OH (communication from truhlar group) refitted to arrhenius form""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsO;O_pri_rad
""",
@@ -12814,7 +12814,7 @@
kinetics = Arrhenius(A=(34760,'cm^3/(mol*s)'), n=2.458, Ea=(-0.64852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH + OH (communication from truhlar group) refitted to arrhenius form""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2/Cs\O;O_pri_rad
""",
@@ -12827,7 +12827,7 @@
kinetics = Arrhenius(A=(0.293,'cm^3/(mol*s)'), n=4.14, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: O/H/NonDeC;H_rad
""",
@@ -12840,7 +12840,7 @@
kinetics = Arrhenius(A=(5220,'cm^3/(mol*s)'), n=3.04, Ea=(10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsO;H_rad
""",
@@ -12853,7 +12853,7 @@
kinetics = Arrhenius(A=(5760,'cm^3/(mol*s)'), n=3.02, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2/Cs\O;H_rad
""",
@@ -12866,7 +12866,7 @@
kinetics = Arrhenius(A=(6180,'cm^3/(mol*s)'), n=3.24, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;H_rad
""",
@@ -12879,7 +12879,7 @@
kinetics = Arrhenius(A=(4.488e-05,'cm^3/(mol*s)'), n=4.99, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH & iPtOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_methyl
""",
@@ -12892,7 +12892,7 @@
kinetics = Arrhenius(A=(0.0146,'cm^3/(mol*s)'), n=4.47, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH & iPtOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2/Cs\O;C_methyl
""",
@@ -12905,7 +12905,7 @@
kinetics = Arrhenius(A=(0.0719,'cm^3/(mol*s)'), n=3.96, Ea=(32.175,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH & iPtOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Value for ipentanol, x3 lower mainly because of gamma O restricting rotation of abstracting methyl
@@ -12920,7 +12920,7 @@
kinetics = Arrhenius(A=(0.00248,'cm^3/(mol*s)'), n=4.44, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """iBuOH & iPtOH AG Vandeputte CBS-QB3 1dHR""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsO;C_methyl
""",
@@ -12933,7 +12933,7 @@
kinetics = Arrhenius(A=(0.00108,'cm^3/(mol*s)'), n=4.55, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """SSM CBS-QB3 with 1-dHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_Cd\H2_pri_rad
""",
@@ -12946,7 +12946,7 @@
kinetics = Arrhenius(A=(0.052,'cm^3/(mol*s)'), n=3.9, Ea=(3.59824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """SSM CBS-QB3 with 1-dHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsO;Cd_Cd\H2_pri_rad
""",
@@ -12959,7 +12959,7 @@
kinetics = Arrhenius(A=(78000,'cm^3/(mol*s)'), n=2.5, Ea=(27.5672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """iso-butane + O = OH + tert-C4H9""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2/Cs\O;O_atom_triplet
""",
@@ -12972,7 +12972,7 @@
kinetics = Arrhenius(A=(145000,'cm^3/(mol*s)'), n=2.47, Ea=(30.9286,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """C2H5OH+O=OH+CH3CHOH""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/Cs\Cs2/O;O_atom_triplet
""",
@@ -12985,7 +12985,7 @@
kinetics = Arrhenius(A=(3,'cm^3/(mol*s)'), n=3.28, Ea=(4.3932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 without 1-dHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2O2;C_rad/H2/Cs
""",
@@ -12998,7 +12998,7 @@
kinetics = Arrhenius(A=(2.91,'cm^3/(mol*s)'), n=3.31, Ea=(10.6746,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 without 1-dHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2O2;C_rad/Cs2/Cs\O
""",
@@ -13011,7 +13011,7 @@
kinetics = Arrhenius(A=(57,'cm^3/(mol*s)'), n=3.04, Ea=(7.3132,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """SSM CBS-QB3 without 1-dHR corrections""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2O2;C_rad/H/CsO
""",
@@ -13023,7 +13023,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(169,'cm^3/(mol*s)'), n=3.43, Ea=(62.3897,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/Cs/Cs\O;O_atom_triplet
""",
@@ -13036,7 +13036,7 @@
kinetics = Arrhenius(A=(28.7,'cm^3/(mol*s)'), n=3.42, Ea=(-5.25092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CCSD(T)-F12a/pVTZ with MS-VTST treatment for rotors""",
- longDesc =
+ longDesc =
"""
Seal, Prasenjit Oyedepo, Gbenga Truhlar, Donald G
doi: 10.1021/jp310910f
@@ -13052,7 +13052,7 @@
kinetics = Arrhenius(A=(26,'cm^3/(mol*s)'), n=3.44, Ea=(-10.2173,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CCSD(T)-F12a/pVTZ with MS-VTST treatment for rotors""",
- longDesc =
+ longDesc =
"""
Seal, Prasenjit Oyedepo, Gbenga Truhlar, Donald G
doi: 10.1021/jp310910f
@@ -13067,7 +13067,7 @@
degeneracy = 2.0,
kinetics = Arrhenius(A=(169,'cm^3/(mol*s)'), n=3.43, Ea=(57.4045,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/Cs/Cs\Cs|O;O_atom_triplet
""",
@@ -13080,7 +13080,7 @@
kinetics = Arrhenius(A=(0.0224,'cm^3/(mol*s)'), n=4.34, Ea=(61.463,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_methyl
""",
@@ -13093,7 +13093,7 @@
kinetics = Arrhenius(A=(0.00384,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/Cs
""",
@@ -13106,7 +13106,7 @@
kinetics = Arrhenius(A=(0.00542,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/NonDeC
""",
@@ -13119,7 +13119,7 @@
kinetics = Arrhenius(A=(0.00664,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/Cs3
""",
@@ -13132,7 +13132,7 @@
kinetics = Arrhenius(A=(0.1212,'cm^3/(mol*s)'), n=4.34, Ea=(98.7424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/Cd
""",
@@ -13145,7 +13145,7 @@
kinetics = Arrhenius(A=(0.0458,'cm^3/(mol*s)'), n=4.34, Ea=(92.8848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CdCs
""",
@@ -13158,7 +13158,7 @@
kinetics = Arrhenius(A=(0.0087,'cm^3/(mol*s)'), n=4.34, Ea=(94.9768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CdCs2
""",
@@ -13171,7 +13171,7 @@
kinetics = Arrhenius(A=(0.1828,'cm^3/(mol*s)'), n=4.34, Ea=(127.612,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CdCd
""",
@@ -13184,7 +13184,7 @@
kinetics = Arrhenius(A=(0.01,'cm^3/(mol*s)'), n=4.34, Ea=(129.286,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CdCdCs
""",
@@ -13197,7 +13197,7 @@
kinetics = Arrhenius(A=(0.031,'cm^3/(mol*s)'), n=4.34, Ea=(93.7216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/Ct
""",
@@ -13210,7 +13210,7 @@
kinetics = Arrhenius(A=(0.01242,'cm^3/(mol*s)'), n=4.34, Ea=(80.8767,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CtCs
""",
@@ -13223,7 +13223,7 @@
kinetics = Arrhenius(A=(0.0057,'cm^3/(mol*s)'), n=4.34, Ea=(79.496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CtCs2
""",
@@ -13236,7 +13236,7 @@
kinetics = Arrhenius(A=(0.0556,'cm^3/(mol*s)'), n=4.34, Ea=(103.345,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CtCt
""",
@@ -13249,7 +13249,7 @@
kinetics = Arrhenius(A=(0.00272,'cm^3/(mol*s)'), n=4.34, Ea=(107.947,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CtCtCs
""",
@@ -13262,7 +13262,7 @@
kinetics = Arrhenius(A=(0.0562,'cm^3/(mol*s)'), n=4.34, Ea=(87.9142,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/Cb
""",
@@ -13275,7 +13275,7 @@
kinetics = Arrhenius(A=(0.029,'cm^3/(mol*s)'), n=4.34, Ea=(79.9144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CbCs
""",
@@ -13288,7 +13288,7 @@
kinetics = Arrhenius(A=(0.00173,'cm^3/(mol*s)'), n=4.34, Ea=(78.5755,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CbCs2
""",
@@ -13301,7 +13301,7 @@
kinetics = Arrhenius(A=(0.01664,'cm^3/(mol*s)'), n=4.34, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_rad/NonDeC
""",
@@ -13314,7 +13314,7 @@
kinetics = Arrhenius(A=(0.01114,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_rad/Cd
""",
@@ -13327,7 +13327,7 @@
kinetics = Arrhenius(A=(0.0686,'cm^3/(mol*s)'), n=4.34, Ea=(74.4752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_Cdd_rad/H
""",
@@ -13340,7 +13340,7 @@
kinetics = Arrhenius(A=(0.00262,'cm^3/(mol*s)'), n=4.34, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_rad/Ct
""",
@@ -13353,7 +13353,7 @@
kinetics = Arrhenius(A=(0.00896,'cm^3/(mol*s)'), n=4.34, Ea=(69.0778,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/S
""",
@@ -13366,7 +13366,7 @@
kinetics = Arrhenius(A=(0.0306,'cm^3/(mol*s)'), n=4.34, Ea=(57.1953,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CsS
""",
@@ -13379,7 +13379,7 @@
kinetics = Arrhenius(A=(0.0216,'cm^3/(mol*s)'), n=4.34, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/Cs2S
""",
@@ -13392,7 +13392,7 @@
kinetics = Arrhenius(A=(0.0732,'cm^3/(mol*s)'), n=4.34, Ea=(99.9976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H2/CS
""",
@@ -13405,7 +13405,7 @@
kinetics = Arrhenius(A=(0.1388,'cm^3/(mol*s)'), n=4.34, Ea=(112.131,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CSCs
""",
@@ -13418,7 +13418,7 @@
kinetics = Arrhenius(A=(0.078,'cm^3/(mol*s)'), n=4.34, Ea=(122.173,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CSCs2
""",
@@ -13431,7 +13431,7 @@
kinetics = Arrhenius(A=(0.0576,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_rad/NonDeS
""",
@@ -13444,7 +13444,7 @@
kinetics = Arrhenius(A=(0.0964,'cm^3/(mol*s)'), n=4.34, Ea=(76.9856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;Cd_rad/CS
""",
@@ -13457,7 +13457,7 @@
kinetics = Arrhenius(A=(0.1448,'cm^3/(mol*s)'), n=4.34, Ea=(103.554,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CdS
""",
@@ -13470,7 +13470,7 @@
kinetics = Arrhenius(A=(0.0226,'cm^3/(mol*s)'), n=4.34, Ea=(100.416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CdCsS
""",
@@ -13483,7 +13483,7 @@
kinetics = Arrhenius(A=(1.138,'cm^3/(mol*s)'), n=4.34, Ea=(151.544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CSS
""",
@@ -13496,7 +13496,7 @@
kinetics = Arrhenius(A=(0.368,'cm^3/(mol*s)'), n=4.34, Ea=(150.289,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CSCsS
""",
@@ -13509,7 +13509,7 @@
kinetics = Arrhenius(A=(0.0734,'cm^3/(mol*s)'), n=4.34, Ea=(92.4664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CtS
""",
@@ -13522,7 +13522,7 @@
kinetics = Arrhenius(A=(0.0352,'cm^3/(mol*s)'), n=4.34, Ea=(95.8136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CtCsS
""",
@@ -13535,7 +13535,7 @@
kinetics = Arrhenius(A=(0.0346,'cm^3/(mol*s)'), n=4.34, Ea=(91.0438,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/H/CbS
""",
@@ -13548,7 +13548,7 @@
kinetics = Arrhenius(A=(0.01526,'cm^3/(mol*s)'), n=4.34, Ea=(87.4456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;C_rad/CbCsS
""",
@@ -13561,7 +13561,7 @@
kinetics = Arrhenius(A=(0.0832,'cm^3/(mol*s)'), n=4.34, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;CS_pri_rad
""",
@@ -13574,7 +13574,7 @@
kinetics = Arrhenius(A=(0.0646,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;CS_rad/Cs
""",
@@ -13587,7 +13587,7 @@
kinetics = Arrhenius(A=(0.0992,'cm^3/(mol*s)'), n=4.34, Ea=(70.7096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;CS_rad/S
""",
@@ -13600,7 +13600,7 @@
kinetics = Arrhenius(A=(0.0348,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;CS_rad/Cd
""",
@@ -13613,7 +13613,7 @@
kinetics = Arrhenius(A=(0.0974,'cm^3/(mol*s)'), n=4.34, Ea=(1.29704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: H2;CS_rad/Ct
""",
@@ -13626,7 +13626,7 @@
kinetics = Arrhenius(A=(0.876,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;H_rad
""",
@@ -13639,7 +13639,7 @@
kinetics = Arrhenius(A=(0.00616,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/Cs3
""",
@@ -13652,7 +13652,7 @@
kinetics = Arrhenius(A=(0.112,'cm^3/(mol*s)'), n=4.34, Ea=(96.6504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H2/Cd
""",
@@ -13665,7 +13665,7 @@
kinetics = Arrhenius(A=(0.0424,'cm^3/(mol*s)'), n=4.34, Ea=(104.182,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CdCs
""",
@@ -13678,7 +13678,7 @@
kinetics = Arrhenius(A=(0.00804,'cm^3/(mol*s)'), n=4.34, Ea=(105.855,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CdCs2
""",
@@ -13691,7 +13691,7 @@
kinetics = Arrhenius(A=(0.1692,'cm^3/(mol*s)'), n=4.34, Ea=(138.49,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CdCd
""",
@@ -13704,7 +13704,7 @@
kinetics = Arrhenius(A=(0.00924,'cm^3/(mol*s)'), n=4.34, Ea=(140.582,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CdCdCs
""",
@@ -13717,7 +13717,7 @@
kinetics = Arrhenius(A=(0.02864,'cm^3/(mol*s)'), n=4.34, Ea=(80.7512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H2/Ct
""",
@@ -13730,7 +13730,7 @@
kinetics = Arrhenius(A=(0.01148,'cm^3/(mol*s)'), n=4.34, Ea=(87.4456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CtCs
""",
@@ -13743,7 +13743,7 @@
kinetics = Arrhenius(A=(0.00528,'cm^3/(mol*s)'), n=4.34, Ea=(90.7928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CtCs2
""",
@@ -13756,7 +13756,7 @@
kinetics = Arrhenius(A=(0.0512,'cm^3/(mol*s)'), n=4.34, Ea=(114.642,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CtCt
""",
@@ -13769,7 +13769,7 @@
kinetics = Arrhenius(A=(0.002524,'cm^3/(mol*s)'), n=4.34, Ea=(118.826,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CtCtCs
""",
@@ -13782,7 +13782,7 @@
kinetics = Arrhenius(A=(0.052,'cm^3/(mol*s)'), n=4.34, Ea=(87.864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H2/Cb
""",
@@ -13795,7 +13795,7 @@
kinetics = Arrhenius(A=(0.02676,'cm^3/(mol*s)'), n=4.34, Ea=(91.2112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CbCs
""",
@@ -13808,7 +13808,7 @@
kinetics = Arrhenius(A=(0.0016,'cm^3/(mol*s)'), n=4.34, Ea=(89.5376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CbCs2
""",
@@ -13821,7 +13821,7 @@
kinetics = Arrhenius(A=(0.02236,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_pri_rad
""",
@@ -13834,7 +13834,7 @@
kinetics = Arrhenius(A=(0.0154,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_rad/NonDeC
""",
@@ -13847,7 +13847,7 @@
kinetics = Arrhenius(A=(0.01032,'cm^3/(mol*s)'), n=4.34, Ea=(56.0656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_rad/Cd
""",
@@ -13860,7 +13860,7 @@
kinetics = Arrhenius(A=(0.0636,'cm^3/(mol*s)'), n=4.34, Ea=(85.772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_Cdd_rad/H
""",
@@ -13873,7 +13873,7 @@
kinetics = Arrhenius(A=(0.00828,'cm^3/(mol*s)'), n=4.34, Ea=(65.2704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H2/S
""",
@@ -13886,7 +13886,7 @@
kinetics = Arrhenius(A=(0.00242,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_rad/Ct
""",
@@ -13899,7 +13899,7 @@
kinetics = Arrhenius(A=(0.02832,'cm^3/(mol*s)'), n=4.34, Ea=(65.2704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CsS
""",
@@ -13912,7 +13912,7 @@
kinetics = Arrhenius(A=(0.02004,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/Cs2S
""",
@@ -13925,7 +13925,7 @@
kinetics = Arrhenius(A=(0.0676,'cm^3/(mol*s)'), n=4.34, Ea=(111.294,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H2/CS
""",
@@ -13938,7 +13938,7 @@
kinetics = Arrhenius(A=(0.1284,'cm^3/(mol*s)'), n=4.34, Ea=(123.428,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CSCs
""",
@@ -13951,7 +13951,7 @@
kinetics = Arrhenius(A=(0.0724,'cm^3/(mol*s)'), n=4.34, Ea=(133.47,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CSCs2
""",
@@ -13964,7 +13964,7 @@
kinetics = Arrhenius(A=(0.0532,'cm^3/(mol*s)'), n=4.34, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_rad/NonDeS
""",
@@ -13977,7 +13977,7 @@
kinetics = Arrhenius(A=(0.0892,'cm^3/(mol*s)'), n=4.34, Ea=(87.864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;Cd_rad/CS
""",
@@ -13990,7 +13990,7 @@
kinetics = Arrhenius(A=(0.134,'cm^3/(mol*s)'), n=4.34, Ea=(111.713,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CdS
""",
@@ -14003,7 +14003,7 @@
kinetics = Arrhenius(A=(0.021,'cm^3/(mol*s)'), n=4.34, Ea=(111.713,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CdCsS
""",
@@ -14016,7 +14016,7 @@
kinetics = Arrhenius(A=(1.052,'cm^3/(mol*s)'), n=4.34, Ea=(151.461,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CSS
""",
@@ -14029,7 +14029,7 @@
kinetics = Arrhenius(A=(0.3412,'cm^3/(mol*s)'), n=4.34, Ea=(157.318,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CSCsS
""",
@@ -14042,7 +14042,7 @@
kinetics = Arrhenius(A=(0.068,'cm^3/(mol*s)'), n=4.34, Ea=(103.345,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CtS
""",
@@ -14055,7 +14055,7 @@
kinetics = Arrhenius(A=(0.0326,'cm^3/(mol*s)'), n=4.34, Ea=(106.692,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CtCsS
""",
@@ -14068,7 +14068,7 @@
kinetics = Arrhenius(A=(0.03212,'cm^3/(mol*s)'), n=4.34, Ea=(102.09,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/H/CbS
""",
@@ -14081,7 +14081,7 @@
kinetics = Arrhenius(A=(0.01412,'cm^3/(mol*s)'), n=4.34, Ea=(98.324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;C_rad/CbCsS
""",
@@ -14094,7 +14094,7 @@
kinetics = Arrhenius(A=(0.0768,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;CS_pri_rad
""",
@@ -14107,7 +14107,7 @@
kinetics = Arrhenius(A=(0.06,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;CS_rad/Cs
""",
@@ -14120,7 +14120,7 @@
kinetics = Arrhenius(A=(0.0916,'cm^3/(mol*s)'), n=4.34, Ea=(82.0064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;CS_rad/S
""",
@@ -14133,7 +14133,7 @@
kinetics = Arrhenius(A=(0.03224,'cm^3/(mol*s)'), n=4.34, Ea=(82.8432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;CS_rad/Cd
""",
@@ -14146,7 +14146,7 @@
kinetics = Arrhenius(A=(0.09,'cm^3/(mol*s)'), n=4.34, Ea=(98.324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C_methane;CS_rad/Ct
""",
@@ -14159,7 +14159,7 @@
kinetics = Arrhenius(A=(0.00636,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/NonDeC
""",
@@ -14172,7 +14172,7 @@
kinetics = Arrhenius(A=(0.00636,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/Cs3
""",
@@ -14185,7 +14185,7 @@
kinetics = Arrhenius(A=(0.1752,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H2/Cd
""",
@@ -14198,7 +14198,7 @@
kinetics = Arrhenius(A=(0.054,'cm^3/(mol*s)'), n=4.34, Ea=(89.1192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CdCs
""",
@@ -14211,7 +14211,7 @@
kinetics = Arrhenius(A=(0.0084,'cm^3/(mol*s)'), n=4.34, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CdCs2
""",
@@ -14224,7 +14224,7 @@
kinetics = Arrhenius(A=(0.2166,'cm^3/(mol*s)'), n=4.34, Ea=(119.662,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CdCd
""",
@@ -14237,7 +14237,7 @@
kinetics = Arrhenius(A=(0.00966,'cm^3/(mol*s)'), n=4.34, Ea=(120.918,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CdCdCs
""",
@@ -14250,7 +14250,7 @@
kinetics = Arrhenius(A=(0.04464,'cm^3/(mol*s)'), n=4.34, Ea=(66.5256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H2/Ct
""",
@@ -14263,7 +14263,7 @@
kinetics = Arrhenius(A=(0.01464,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CtCs
""",
@@ -14276,7 +14276,7 @@
kinetics = Arrhenius(A=(0.00549,'cm^3/(mol*s)'), n=4.34, Ea=(75.312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CtCs2
""",
@@ -14289,7 +14289,7 @@
kinetics = Arrhenius(A=(0.066,'cm^3/(mol*s)'), n=4.34, Ea=(95.8136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CtCt
""",
@@ -14302,7 +14302,7 @@
kinetics = Arrhenius(A=(0.00264,'cm^3/(mol*s)'), n=4.34, Ea=(99.5792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CtCtCs
""",
@@ -14315,7 +14315,7 @@
kinetics = Arrhenius(A=(0.081,'cm^3/(mol*s)'), n=4.34, Ea=(73.6384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H2/Cb
""",
@@ -14328,7 +14328,7 @@
kinetics = Arrhenius(A=(0.03408,'cm^3/(mol*s)'), n=4.34, Ea=(76.1488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CbCs
""",
@@ -14341,7 +14341,7 @@
kinetics = Arrhenius(A=(0.001668,'cm^3/(mol*s)'), n=4.34, Ea=(74.0568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CbCs2
""",
@@ -14354,7 +14354,7 @@
kinetics = Arrhenius(A=(0.04248,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_pri_rad
""",
@@ -14367,7 +14367,7 @@
kinetics = Arrhenius(A=(0.02388,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_rad/NonDeC
""",
@@ -14380,7 +14380,7 @@
kinetics = Arrhenius(A=(0.01962,'cm^3/(mol*s)'), n=4.34, Ea=(46.024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_rad/Cd
""",
@@ -14393,7 +14393,7 @@
kinetics = Arrhenius(A=(0.004602,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_rad/Ct
""",
@@ -14406,7 +14406,7 @@
kinetics = Arrhenius(A=(0.01518,'cm^3/(mol*s)'), n=4.34, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H2/S
""",
@@ -14419,7 +14419,7 @@
kinetics = Arrhenius(A=(0.099,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_Cdd_rad/H
""",
@@ -14432,7 +14432,7 @@
kinetics = Arrhenius(A=(0.04236,'cm^3/(mol*s)'), n=4.34, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CsS
""",
@@ -14445,7 +14445,7 @@
kinetics = Arrhenius(A=(0.02448,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/Cs2S
""",
@@ -14458,7 +14458,7 @@
kinetics = Arrhenius(A=(0.0882,'cm^3/(mol*s)'), n=4.34, Ea=(94.5584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H2/CS
""",
@@ -14471,7 +14471,7 @@
kinetics = Arrhenius(A=(0.1362,'cm^3/(mol*s)'), n=4.34, Ea=(106.274,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CSCs
""",
@@ -14484,7 +14484,7 @@
kinetics = Arrhenius(A=(0.0624,'cm^3/(mol*s)'), n=4.34, Ea=(115.478,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CSCs2
""",
@@ -14497,7 +14497,7 @@
kinetics = Arrhenius(A=(0.069,'cm^3/(mol*s)'), n=4.34, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_rad/NonDeS
""",
@@ -14510,7 +14510,7 @@
kinetics = Arrhenius(A=(0.1698,'cm^3/(mol*s)'), n=4.34, Ea=(78.2408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;Cd_rad/CS
""",
@@ -14523,7 +14523,7 @@
kinetics = Arrhenius(A=(0.2016,'cm^3/(mol*s)'), n=4.34, Ea=(94.5584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CdS
""",
@@ -14536,7 +14536,7 @@
kinetics = Arrhenius(A=(0.0258,'cm^3/(mol*s)'), n=4.34, Ea=(93.7216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CdCsS
""",
@@ -14549,7 +14549,7 @@
kinetics = Arrhenius(A=(1.32,'cm^3/(mol*s)'), n=4.34, Ea=(131.796,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CSS
""",
@@ -14562,7 +14562,7 @@
kinetics = Arrhenius(A=(0.3492,'cm^3/(mol*s)'), n=4.34, Ea=(136.817,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CSCsS
""",
@@ -14575,7 +14575,7 @@
kinetics = Arrhenius(A=(0.102,'cm^3/(mol*s)'), n=4.34, Ea=(86.1904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CtS
""",
@@ -14588,7 +14588,7 @@
kinetics = Arrhenius(A=(0.04002,'cm^3/(mol*s)'), n=4.34, Ea=(88.7008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CtCsS
""",
@@ -14601,7 +14601,7 @@
kinetics = Arrhenius(A=(0.04824,'cm^3/(mol*s)'), n=4.34, Ea=(84.9352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/H/CbS
""",
@@ -14614,7 +14614,7 @@
kinetics = Arrhenius(A=(0.01734,'cm^3/(mol*s)'), n=4.34, Ea=(80.3328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;C_rad/CbCsS
""",
@@ -14627,7 +14627,7 @@
kinetics = Arrhenius(A=(0.1464,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;CS_pri_rad
""",
@@ -14640,7 +14640,7 @@
kinetics = Arrhenius(A=(0.093,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;CS_rad/Cs
""",
@@ -14653,7 +14653,7 @@
kinetics = Arrhenius(A=(0.168,'cm^3/(mol*s)'), n=4.34, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;CS_rad/S
""",
@@ -14666,7 +14666,7 @@
kinetics = Arrhenius(A=(0.0612,'cm^3/(mol*s)'), n=4.34, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;CS_rad/Cd
""",
@@ -14679,7 +14679,7 @@
kinetics = Arrhenius(A=(0.1716,'cm^3/(mol*s)'), n=4.34, Ea=(88.7008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cs;CS_rad/Ct
""",
@@ -14692,7 +14692,7 @@
kinetics = Arrhenius(A=(0.678,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;H_rad
""",
@@ -14705,7 +14705,7 @@
kinetics = Arrhenius(A=(0.01606,'cm^3/(mol*s)'), n=4.34, Ea=(27.6562,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_methyl
""",
@@ -14718,7 +14718,7 @@
kinetics = Arrhenius(A=(0.00184,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/Cs
""",
@@ -14731,7 +14731,7 @@
kinetics = Arrhenius(A=(0.001416,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/Cs3
""",
@@ -14744,7 +14744,7 @@
kinetics = Arrhenius(A=(0.0584,'cm^3/(mol*s)'), n=4.34, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/Cd
""",
@@ -14757,7 +14757,7 @@
kinetics = Arrhenius(A=(0.01476,'cm^3/(mol*s)'), n=4.34, Ea=(75.312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CdCs
""",
@@ -14770,7 +14770,7 @@
kinetics = Arrhenius(A=(0.00187,'cm^3/(mol*s)'), n=4.34, Ea=(75.7304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CdCs2
""",
@@ -14783,7 +14783,7 @@
kinetics = Arrhenius(A=(0.0594,'cm^3/(mol*s)'), n=4.34, Ea=(102.508,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CdCd
""",
@@ -14796,7 +14796,7 @@
kinetics = Arrhenius(A=(0.00216,'cm^3/(mol*s)'), n=4.34, Ea=(102.926,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CdCdCs
""",
@@ -14809,7 +14809,7 @@
kinetics = Arrhenius(A=(0.01494,'cm^3/(mol*s)'), n=4.34, Ea=(59.9149,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/Ct
""",
@@ -14822,7 +14822,7 @@
kinetics = Arrhenius(A=(0.004,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CtCs
""",
@@ -14835,7 +14835,7 @@
kinetics = Arrhenius(A=(0.001226,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CtCs2
""",
@@ -14848,7 +14848,7 @@
kinetics = Arrhenius(A=(0.01804,'cm^3/(mol*s)'), n=4.34, Ea=(78.2408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CtCt
""",
@@ -14861,7 +14861,7 @@
kinetics = Arrhenius(A=(0.000592,'cm^3/(mol*s)'), n=4.34, Ea=(81.1696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CtCtCs
""",
@@ -14874,7 +14874,7 @@
kinetics = Arrhenius(A=(0.0272,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/Cb
""",
@@ -14887,7 +14887,7 @@
kinetics = Arrhenius(A=(0.00932,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CbCs
""",
@@ -14900,7 +14900,7 @@
kinetics = Arrhenius(A=(0.000372,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CbCs2
""",
@@ -14913,7 +14913,7 @@
kinetics = Arrhenius(A=(0.00796,'cm^3/(mol*s)'), n=4.34, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_rad/NonDeC
""",
@@ -14926,7 +14926,7 @@
kinetics = Arrhenius(A=(0.008,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_rad/Cd
""",
@@ -14939,7 +14939,7 @@
kinetics = Arrhenius(A=(0.022,'cm^3/(mol*s)'), n=4.34, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cb_rad
""",
@@ -14952,7 +14952,7 @@
kinetics = Arrhenius(A=(0.001878,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_rad/Ct
""",
@@ -14965,7 +14965,7 @@
kinetics = Arrhenius(A=(0.00596,'cm^3/(mol*s)'), n=4.34, Ea=(41.0032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/S
""",
@@ -14978,7 +14978,7 @@
kinetics = Arrhenius(A=(0.01362,'cm^3/(mol*s)'), n=4.34, Ea=(39.748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CsS
""",
@@ -14991,7 +14991,7 @@
kinetics = Arrhenius(A=(0.0332,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_Cdd_rad/H
""",
@@ -15004,7 +15004,7 @@
kinetics = Arrhenius(A=(0.00642,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/Cs2S
""",
@@ -15017,7 +15017,7 @@
kinetics = Arrhenius(A=(0.0246,'cm^3/(mol*s)'), n=4.34, Ea=(79.496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H2/CS
""",
@@ -15030,7 +15030,7 @@
kinetics = Arrhenius(A=(0.031,'cm^3/(mol*s)'), n=4.34, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CSCs
""",
@@ -15043,7 +15043,7 @@
kinetics = Arrhenius(A=(0.01164,'cm^3/(mol*s)'), n=4.34, Ea=(99.1608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CSCs2
""",
@@ -15056,7 +15056,7 @@
kinetics = Arrhenius(A=(0.0193,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_rad/NonDeS
""",
@@ -15069,7 +15069,7 @@
kinetics = Arrhenius(A=(0.0692,'cm^3/(mol*s)'), n=4.34, Ea=(69.8728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;Cd_rad/CS
""",
@@ -15082,7 +15082,7 @@
kinetics = Arrhenius(A=(0.065,'cm^3/(mol*s)'), n=4.34, Ea=(78.6592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CdS
""",
@@ -15095,7 +15095,7 @@
kinetics = Arrhenius(A=(0.0068,'cm^3/(mol*s)'), n=4.34, Ea=(76.9856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CdCsS
""",
@@ -15108,7 +15108,7 @@
kinetics = Arrhenius(A=(0.354,'cm^3/(mol*s)'), n=4.34, Ea=(117.738,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CSS
""",
@@ -15121,7 +15121,7 @@
kinetics = Arrhenius(A=(0.0766,'cm^3/(mol*s)'), n=4.34, Ea=(117.989,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CSCsS
""",
@@ -15134,7 +15134,7 @@
kinetics = Arrhenius(A=(0.033,'cm^3/(mol*s)'), n=4.34, Ea=(70.2912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CtS
""",
@@ -15147,7 +15147,7 @@
kinetics = Arrhenius(A=(0.01056,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CtCsS
""",
@@ -15160,7 +15160,7 @@
kinetics = Arrhenius(A=(0.01556,'cm^3/(mol*s)'), n=4.34, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/H/CbS
""",
@@ -15173,7 +15173,7 @@
kinetics = Arrhenius(A=(0.00458,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;C_rad/CbCsS
""",
@@ -15186,7 +15186,7 @@
kinetics = Arrhenius(A=(0.0596,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;CS_pri_rad
""",
@@ -15199,7 +15199,7 @@
kinetics = Arrhenius(A=(0.031,'cm^3/(mol*s)'), n=4.34, Ea=(51.4632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;CS_rad/Cs
""",
@@ -15212,7 +15212,7 @@
kinetics = Arrhenius(A=(0.066,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;CS_rad/S
""",
@@ -15225,7 +15225,7 @@
kinetics = Arrhenius(A=(0.025,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;CS_rad/Cd
""",
@@ -15238,7 +15238,7 @@
kinetics = Arrhenius(A=(0.07,'cm^3/(mol*s)'), n=4.34, Ea=(80.3328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/NonDeC;CS_rad/Ct
""",
@@ -15251,7 +15251,7 @@
kinetics = Arrhenius(A=(0.476,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;H_rad
""",
@@ -15264,7 +15264,7 @@
kinetics = Arrhenius(A=(0.0113,'cm^3/(mol*s)'), n=4.34, Ea=(32.175,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_methyl
""",
@@ -15277,7 +15277,7 @@
kinetics = Arrhenius(A=(0.00106,'cm^3/(mol*s)'), n=4.34, Ea=(20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/Cs
""",
@@ -15290,7 +15290,7 @@
kinetics = Arrhenius(A=(0.000811,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/NonDeC
""",
@@ -15303,7 +15303,7 @@
kinetics = Arrhenius(A=(0.0338,'cm^3/(mol*s)'), n=4.34, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/Cd
""",
@@ -15316,7 +15316,7 @@
kinetics = Arrhenius(A=(0.00695,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CdCs
""",
@@ -15329,7 +15329,7 @@
kinetics = Arrhenius(A=(0.000719,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CdCs2
""",
@@ -15342,7 +15342,7 @@
kinetics = Arrhenius(A=(0.0281,'cm^3/(mol*s)'), n=4.34, Ea=(95.7718,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CdCd
""",
@@ -15355,7 +15355,7 @@
kinetics = Arrhenius(A=(0.000837,'cm^3/(mol*s)'), n=4.34, Ea=(85.3536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CdCdCs
""",
@@ -15368,7 +15368,7 @@
kinetics = Arrhenius(A=(0.00862,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/Ct
""",
@@ -15381,7 +15381,7 @@
kinetics = Arrhenius(A=(0.00189,'cm^3/(mol*s)'), n=4.34, Ea=(51.5887,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CtCs
""",
@@ -15394,7 +15394,7 @@
kinetics = Arrhenius(A=(0.000471,'cm^3/(mol*s)'), n=4.34, Ea=(49.4549,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CtCs2
""",
@@ -15407,7 +15407,7 @@
kinetics = Arrhenius(A=(0.00854,'cm^3/(mol*s)'), n=4.34, Ea=(61.5048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CtCt
""",
@@ -15420,7 +15420,7 @@
kinetics = Arrhenius(A=(0.000229,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CtCtCs
""",
@@ -15433,7 +15433,7 @@
kinetics = Arrhenius(A=(0.0157,'cm^3/(mol*s)'), n=4.34, Ea=(58.6262,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/Cb
""",
@@ -15446,7 +15446,7 @@
kinetics = Arrhenius(A=(0.00439,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CbCs
""",
@@ -15459,7 +15459,7 @@
kinetics = Arrhenius(A=(0.000143,'cm^3/(mol*s)'), n=4.34, Ea=(49.2875,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CbCs2
""",
@@ -15472,7 +15472,7 @@
kinetics = Arrhenius(A=(0.00457,'cm^3/(mol*s)'), n=4.34, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_rad/NonDeC
""",
@@ -15485,7 +15485,7 @@
kinetics = Arrhenius(A=(0.00562,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_rad/Cd
""",
@@ -15498,7 +15498,7 @@
kinetics = Arrhenius(A=(0.0155,'cm^3/(mol*s)'), n=4.34, Ea=(-13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cb_rad
""",
@@ -15511,7 +15511,7 @@
kinetics = Arrhenius(A=(0.00132,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_rad/Ct
""",
@@ -15524,7 +15524,7 @@
kinetics = Arrhenius(A=(0.00404,'cm^3/(mol*s)'), n=4.34, Ea=(39.7898,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/S
""",
@@ -15537,7 +15537,7 @@
kinetics = Arrhenius(A=(0.00753,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CsS
""",
@@ -15550,7 +15550,7 @@
kinetics = Arrhenius(A=(0.0029,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/Cs2S
""",
@@ -15563,7 +15563,7 @@
kinetics = Arrhenius(A=(0.0191,'cm^3/(mol*s)'), n=4.34, Ea=(46.024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_Cdd_rad/H
""",
@@ -15576,7 +15576,7 @@
kinetics = Arrhenius(A=(0.0118,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H2/CS
""",
@@ -15589,7 +15589,7 @@
kinetics = Arrhenius(A=(0.0122,'cm^3/(mol*s)'), n=4.34, Ea=(74.8936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CSCs
""",
@@ -15602,7 +15602,7 @@
kinetics = Arrhenius(A=(0.00373,'cm^3/(mol*s)'), n=4.34, Ea=(82.8432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CSCs2
""",
@@ -15615,7 +15615,7 @@
kinetics = Arrhenius(A=(0.00927,'cm^3/(mol*s)'), n=4.34, Ea=(-13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_rad/NonDeS
""",
@@ -15628,7 +15628,7 @@
kinetics = Arrhenius(A=(0.0487,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;Cd_rad/CS
""",
@@ -15641,7 +15641,7 @@
kinetics = Arrhenius(A=(0.0361,'cm^3/(mol*s)'), n=4.34, Ea=(74.266,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CdS
""",
@@ -15654,7 +15654,7 @@
kinetics = Arrhenius(A=(0.00308,'cm^3/(mol*s)'), n=4.34, Ea=(69.7891,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CdCsS
""",
@@ -15667,7 +15667,7 @@
kinetics = Arrhenius(A=(0.164,'cm^3/(mol*s)'), n=4.34, Ea=(122.256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CSS
""",
@@ -15680,7 +15680,7 @@
kinetics = Arrhenius(A=(0.029,'cm^3/(mol*s)'), n=4.34, Ea=(121.001,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CSCsS
""",
@@ -15693,7 +15693,7 @@
kinetics = Arrhenius(A=(0.0183,'cm^3/(mol*s)'), n=4.34, Ea=(57.781,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CtS
""",
@@ -15706,7 +15706,7 @@
kinetics = Arrhenius(A=(0.00479,'cm^3/(mol*s)'), n=4.34, Ea=(56.0656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CtCsS
""",
@@ -15719,7 +15719,7 @@
kinetics = Arrhenius(A=(0.00865,'cm^3/(mol*s)'), n=4.34, Ea=(61.7558,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/H/CbS
""",
@@ -15732,7 +15732,7 @@
kinetics = Arrhenius(A=(0.00207,'cm^3/(mol*s)'), n=4.34, Ea=(50.8774,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;C_rad/CbCsS
""",
@@ -15745,7 +15745,7 @@
kinetics = Arrhenius(A=(0.0419,'cm^3/(mol*s)'), n=4.34, Ea=(46.024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;CS_pri_rad
""",
@@ -15758,7 +15758,7 @@
kinetics = Arrhenius(A=(0.0178,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;CS_rad/Cs
""",
@@ -15771,7 +15771,7 @@
kinetics = Arrhenius(A=(0.0448,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;CS_rad/S
""",
@@ -15784,7 +15784,7 @@
kinetics = Arrhenius(A=(0.0176,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;CS_rad/Cd
""",
@@ -15797,7 +15797,7 @@
kinetics = Arrhenius(A=(0.0492,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs3;CS_rad/Ct
""",
@@ -15810,7 +15810,7 @@
kinetics = Arrhenius(A=(0.2607,'cm^3/(mol*s)'), n=4.34, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;H_rad
""",
@@ -15823,7 +15823,7 @@
kinetics = Arrhenius(A=(0.00618,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_methyl
""",
@@ -15836,7 +15836,7 @@
kinetics = Arrhenius(A=(0.00087,'cm^3/(mol*s)'), n=4.34, Ea=(20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H2/Cs
""",
@@ -15849,7 +15849,7 @@
kinetics = Arrhenius(A=(0.001008,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/NonDeC
""",
@@ -15862,7 +15862,7 @@
kinetics = Arrhenius(A=(0.001014,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/Cs3
""",
@@ -15875,7 +15875,7 @@
kinetics = Arrhenius(A=(0.002691,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CdCs
""",
@@ -15888,7 +15888,7 @@
kinetics = Arrhenius(A=(0.00042,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CdCs2
""",
@@ -15901,7 +15901,7 @@
kinetics = Arrhenius(A=(0.00339,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CdCd
""",
@@ -15914,7 +15914,7 @@
kinetics = Arrhenius(A=(0.0001521,'cm^3/(mol*s)'), n=4.34, Ea=(79.9144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CdCdCs
""",
@@ -15927,7 +15927,7 @@
kinetics = Arrhenius(A=(0.002217,'cm^3/(mol*s)'), n=4.34, Ea=(41.0032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H2/Ct
""",
@@ -15940,7 +15940,7 @@
kinetics = Arrhenius(A=(0.000729,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CtCs
""",
@@ -15953,7 +15953,7 @@
kinetics = Arrhenius(A=(0.0002748,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CtCs2
""",
@@ -15966,7 +15966,7 @@
kinetics = Arrhenius(A=(0.001032,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CtCt
""",
@@ -15979,7 +15979,7 @@
kinetics = Arrhenius(A=(4.17e-05,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CtCtCs
""",
@@ -15992,7 +15992,7 @@
kinetics = Arrhenius(A=(0.00402,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H2/Cb
""",
@@ -16005,7 +16005,7 @@
kinetics = Arrhenius(A=(0.001698,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CbCs
""",
@@ -16018,7 +16018,7 @@
kinetics = Arrhenius(A=(8.34e-05,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CbCs2
""",
@@ -16031,7 +16031,7 @@
kinetics = Arrhenius(A=(0.00666,'cm^3/(mol*s)'), n=4.34, Ea=(0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_pri_rad
""",
@@ -16044,7 +16044,7 @@
kinetics = Arrhenius(A=(0.00378,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_rad/NonDeC
""",
@@ -16057,7 +16057,7 @@
kinetics = Arrhenius(A=(0.00309,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_rad/Cd
""",
@@ -16070,7 +16070,7 @@
kinetics = Arrhenius(A=(0.00849,'cm^3/(mol*s)'), n=4.34, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cb_rad
""",
@@ -16083,7 +16083,7 @@
kinetics = Arrhenius(A=(0.000723,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_rad/Ct
""",
@@ -16096,7 +16096,7 @@
kinetics = Arrhenius(A=(0.001956,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H2/S
""",
@@ -16109,7 +16109,7 @@
kinetics = Arrhenius(A=(0.00549,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CsS
""",
@@ -16122,7 +16122,7 @@
kinetics = Arrhenius(A=(0.00318,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/Cs2S
""",
@@ -16135,7 +16135,7 @@
kinetics = Arrhenius(A=(0.00312,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H2/CS
""",
@@ -16148,7 +16148,7 @@
kinetics = Arrhenius(A=(0.00492,'cm^3/(mol*s)'), n=4.34, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_Cdd_rad/H
""",
@@ -16161,7 +16161,7 @@
kinetics = Arrhenius(A=(0.00486,'cm^3/(mol*s)'), n=4.34, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CSCs
""",
@@ -16174,7 +16174,7 @@
kinetics = Arrhenius(A=(0.002241,'cm^3/(mol*s)'), n=4.34, Ea=(74.0568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CSCs2
""",
@@ -16187,7 +16187,7 @@
kinetics = Arrhenius(A=(0.002454,'cm^3/(mol*s)'), n=4.34, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_rad/NonDeS
""",
@@ -16200,7 +16200,7 @@
kinetics = Arrhenius(A=(0.02664,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;Cd_rad/CS
""",
@@ -16213,7 +16213,7 @@
kinetics = Arrhenius(A=(0.00819,'cm^3/(mol*s)'), n=4.34, Ea=(60.2496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CdS
""",
@@ -16226,7 +16226,7 @@
kinetics = Arrhenius(A=(0.001053,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CdCsS
""",
@@ -16239,7 +16239,7 @@
kinetics = Arrhenius(A=(0.0384,'cm^3/(mol*s)'), n=4.34, Ea=(89.5376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CSS
""",
@@ -16252,7 +16252,7 @@
kinetics = Arrhenius(A=(0.0102,'cm^3/(mol*s)'), n=4.34, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CSCsS
""",
@@ -16265,7 +16265,7 @@
kinetics = Arrhenius(A=(0.00417,'cm^3/(mol*s)'), n=4.34, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CtS
""",
@@ -16278,7 +16278,7 @@
kinetics = Arrhenius(A=(0.001638,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CtCsS
""",
@@ -16291,7 +16291,7 @@
kinetics = Arrhenius(A=(0.001965,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/H/CbS
""",
@@ -16304,7 +16304,7 @@
kinetics = Arrhenius(A=(0.000708,'cm^3/(mol*s)'), n=4.34, Ea=(42.2584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;C_rad/CbCsS
""",
@@ -16317,7 +16317,7 @@
kinetics = Arrhenius(A=(0.02295,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;CS_pri_rad
""",
@@ -16330,7 +16330,7 @@
kinetics = Arrhenius(A=(0.01464,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;CS_rad/Cs
""",
@@ -16343,7 +16343,7 @@
kinetics = Arrhenius(A=(0.02166,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;CS_rad/S
""",
@@ -16356,7 +16356,7 @@
kinetics = Arrhenius(A=(0.00963,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;CS_rad/Cd
""",
@@ -16369,7 +16369,7 @@
kinetics = Arrhenius(A=(0.02691,'cm^3/(mol*s)'), n=4.34, Ea=(74.8936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cd;CS_rad/Ct
""",
@@ -16382,7 +16382,7 @@
kinetics = Arrhenius(A=(0.001806,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/Cs
""",
@@ -16395,7 +16395,7 @@
kinetics = Arrhenius(A=(0.001706,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/NonDeC
""",
@@ -16408,7 +16408,7 @@
kinetics = Arrhenius(A=(0.001402,'cm^3/(mol*s)'), n=4.34, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/Cs3
""",
@@ -16421,7 +16421,7 @@
kinetics = Arrhenius(A=(0.01808,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/Cd
""",
@@ -16434,7 +16434,7 @@
kinetics = Arrhenius(A=(0.000582,'cm^3/(mol*s)'), n=4.34, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CdCs2
""",
@@ -16447,7 +16447,7 @@
kinetics = Arrhenius(A=(0.0058,'cm^3/(mol*s)'), n=4.34, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CdCd
""",
@@ -16460,7 +16460,7 @@
kinetics = Arrhenius(A=(0.000212,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CdCdCs
""",
@@ -16473,7 +16473,7 @@
kinetics = Arrhenius(A=(0.00462,'cm^3/(mol*s)'), n=4.34, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/Ct
""",
@@ -16486,7 +16486,7 @@
kinetics = Arrhenius(A=(0.001242,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CtCs
""",
@@ -16499,7 +16499,7 @@
kinetics = Arrhenius(A=(0.000382,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CtCs2
""",
@@ -16512,7 +16512,7 @@
kinetics = Arrhenius(A=(0.001762,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CtCt
""",
@@ -16525,7 +16525,7 @@
kinetics = Arrhenius(A=(5.8e-05,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CtCtCs
""",
@@ -16538,7 +16538,7 @@
kinetics = Arrhenius(A=(0.00838,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/Cb
""",
@@ -16551,7 +16551,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CbCs
""",
@@ -16564,7 +16564,7 @@
kinetics = Arrhenius(A=(0.000116,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CbCs2
""",
@@ -16577,7 +16577,7 @@
kinetics = Arrhenius(A=(0.01692,'cm^3/(mol*s)'), n=4.34, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_pri_rad
""",
@@ -16590,7 +16590,7 @@
kinetics = Arrhenius(A=(0.00782,'cm^3/(mol*s)'), n=4.34, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_rad/NonDeC
""",
@@ -16603,7 +16603,7 @@
kinetics = Arrhenius(A=(0.00782,'cm^3/(mol*s)'), n=4.34, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_rad/Cd
""",
@@ -16616,7 +16616,7 @@
kinetics = Arrhenius(A=(0.0216,'cm^3/(mol*s)'), n=4.34, Ea=(-16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cb_rad
""",
@@ -16629,7 +16629,7 @@
kinetics = Arrhenius(A=(0.001834,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_rad/Ct
""",
@@ -16642,7 +16642,7 @@
kinetics = Arrhenius(A=(0.00478,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/S
""",
@@ -16655,7 +16655,7 @@
kinetics = Arrhenius(A=(0.01096,'cm^3/(mol*s)'), n=4.34, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CsS
""",
@@ -16668,7 +16668,7 @@
kinetics = Arrhenius(A=(0.0052,'cm^3/(mol*s)'), n=4.34, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/Cs2S
""",
@@ -16681,7 +16681,7 @@
kinetics = Arrhenius(A=(0.00542,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H2/CS
""",
@@ -16694,7 +16694,7 @@
kinetics = Arrhenius(A=(0.00688,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CSCs
""",
@@ -16707,7 +16707,7 @@
kinetics = Arrhenius(A=(0.01024,'cm^3/(mol*s)'), n=4.34, Ea=(35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_Cdd_rad/H
""",
@@ -16720,7 +16720,7 @@
kinetics = Arrhenius(A=(0.0026,'cm^3/(mol*s)'), n=4.34, Ea=(60.2496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CSCs2
""",
@@ -16733,7 +16733,7 @@
kinetics = Arrhenius(A=(0.00426,'cm^3/(mol*s)'), n=4.34, Ea=(-30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_rad/NonDeS
""",
@@ -16746,7 +16746,7 @@
kinetics = Arrhenius(A=(0.0676,'cm^3/(mol*s)'), n=4.34, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;Cd_rad/CS
""",
@@ -16759,7 +16759,7 @@
kinetics = Arrhenius(A=(0.01646,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CdS
""",
@@ -16772,7 +16772,7 @@
kinetics = Arrhenius(A=(0.00173,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CdCsS
""",
@@ -16785,7 +16785,7 @@
kinetics = Arrhenius(A=(0.0642,'cm^3/(mol*s)'), n=4.34, Ea=(74.0568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CSS
""",
@@ -16798,7 +16798,7 @@
kinetics = Arrhenius(A=(0.01394,'cm^3/(mol*s)'), n=4.34, Ea=(74.4752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CSCsS
""",
@@ -16811,7 +16811,7 @@
kinetics = Arrhenius(A=(0.00836,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CtS
""",
@@ -16824,7 +16824,7 @@
kinetics = Arrhenius(A=(0.00268,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CtCsS
""",
@@ -16837,7 +16837,7 @@
kinetics = Arrhenius(A=(0.00394,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/H/CbS
""",
@@ -16850,7 +16850,7 @@
kinetics = Arrhenius(A=(0.001164,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;C_rad/CbCsS
""",
@@ -16863,7 +16863,7 @@
kinetics = Arrhenius(A=(0.0584,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;CS_pri_rad
""",
@@ -16876,7 +16876,7 @@
kinetics = Arrhenius(A=(0.0304,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;CS_rad/Cs
""",
@@ -16889,7 +16889,7 @@
kinetics = Arrhenius(A=(0.053,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;CS_rad/S
""",
@@ -16902,7 +16902,7 @@
kinetics = Arrhenius(A=(0.0244,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;CS_rad/Cd
""",
@@ -16915,7 +16915,7 @@
kinetics = Arrhenius(A=(0.0684,'cm^3/(mol*s)'), n=4.34, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCs;CS_rad/Ct
""",
@@ -16928,7 +16928,7 @@
kinetics = Arrhenius(A=(0.248,'cm^3/(mol*s)'), n=4.34, Ea=(0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;H_rad
""",
@@ -16941,7 +16941,7 @@
kinetics = Arrhenius(A=(0.00587,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_methyl
""",
@@ -16954,7 +16954,7 @@
kinetics = Arrhenius(A=(0.000552,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/Cs
""",
@@ -16967,7 +16967,7 @@
kinetics = Arrhenius(A=(0.000426,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/NonDeC
""",
@@ -16980,7 +16980,7 @@
kinetics = Arrhenius(A=(0.000286,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/Cs3
""",
@@ -16993,7 +16993,7 @@
kinetics = Arrhenius(A=(0.00556,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/Cd
""",
@@ -17006,7 +17006,7 @@
kinetics = Arrhenius(A=(0.00115,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CdCs
""",
@@ -17019,7 +17019,7 @@
kinetics = Arrhenius(A=(0.00146,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CdCd
""",
@@ -17032,7 +17032,7 @@
kinetics = Arrhenius(A=(4.37e-05,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CdCdCs
""",
@@ -17045,7 +17045,7 @@
kinetics = Arrhenius(A=(0.00142,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/Ct
""",
@@ -17058,7 +17058,7 @@
kinetics = Arrhenius(A=(0.000311,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CtCs
""",
@@ -17071,7 +17071,7 @@
kinetics = Arrhenius(A=(7.82e-05,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CtCs2
""",
@@ -17084,7 +17084,7 @@
kinetics = Arrhenius(A=(0.000444,'cm^3/(mol*s)'), n=4.34, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CtCt
""",
@@ -17097,7 +17097,7 @@
kinetics = Arrhenius(A=(1.19e-05,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CtCtCs
""",
@@ -17110,7 +17110,7 @@
kinetics = Arrhenius(A=(0.00258,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/Cb
""",
@@ -17123,7 +17123,7 @@
kinetics = Arrhenius(A=(0.000724,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CbCs
""",
@@ -17136,7 +17136,7 @@
kinetics = Arrhenius(A=(2.37e-05,'cm^3/(mol*s)'), n=4.34, Ea=(18.4096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CbCs2
""",
@@ -17149,7 +17149,7 @@
kinetics = Arrhenius(A=(0.00633,'cm^3/(mol*s)'), n=4.34, Ea=(-10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_pri_rad
""",
@@ -17162,7 +17162,7 @@
kinetics = Arrhenius(A=(0.00239,'cm^3/(mol*s)'), n=4.34, Ea=(-12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_rad/NonDeC
""",
@@ -17175,7 +17175,7 @@
kinetics = Arrhenius(A=(0.00292,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_rad/Cd
""",
@@ -17188,7 +17188,7 @@
kinetics = Arrhenius(A=(0.00806,'cm^3/(mol*s)'), n=4.34, Ea=(-21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cb_rad
""",
@@ -17201,7 +17201,7 @@
kinetics = Arrhenius(A=(0.00314,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_Cdd_rad/H
""",
@@ -17214,7 +17214,7 @@
kinetics = Arrhenius(A=(0.00173,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/S
""",
@@ -17227,7 +17227,7 @@
kinetics = Arrhenius(A=(0.00323,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CsS
""",
@@ -17240,7 +17240,7 @@
kinetics = Arrhenius(A=(0.00125,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/Cs2S
""",
@@ -17253,7 +17253,7 @@
kinetics = Arrhenius(A=(0.00139,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H2/CS
""",
@@ -17266,7 +17266,7 @@
kinetics = Arrhenius(A=(0.00144,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CSCs
""",
@@ -17279,7 +17279,7 @@
kinetics = Arrhenius(A=(0.000443,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CSCs2
""",
@@ -17292,7 +17292,7 @@
kinetics = Arrhenius(A=(0.00109,'cm^3/(mol*s)'), n=4.34, Ea=(-41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_rad/NonDeS
""",
@@ -17305,7 +17305,7 @@
kinetics = Arrhenius(A=(0.000686,'cm^3/(mol*s)'), n=4.34, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_rad/Ct
""",
@@ -17318,7 +17318,7 @@
kinetics = Arrhenius(A=(0.0253,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;Cd_rad/CS
""",
@@ -17331,7 +17331,7 @@
kinetics = Arrhenius(A=(0.00487,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CdS
""",
@@ -17344,7 +17344,7 @@
kinetics = Arrhenius(A=(0.000418,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CdCsS
""",
@@ -17357,7 +17357,7 @@
kinetics = Arrhenius(A=(0.0158,'cm^3/(mol*s)'), n=4.34, Ea=(69.2034,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CSS
""",
@@ -17370,7 +17370,7 @@
kinetics = Arrhenius(A=(0.00281,'cm^3/(mol*s)'), n=4.34, Ea=(67.9482,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CSCsS
""",
@@ -17383,7 +17383,7 @@
kinetics = Arrhenius(A=(0.00247,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CtS
""",
@@ -17396,7 +17396,7 @@
kinetics = Arrhenius(A=(0.000649,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CtCsS
""",
@@ -17409,7 +17409,7 @@
kinetics = Arrhenius(A=(0.00117,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/H/CbS
""",
@@ -17422,7 +17422,7 @@
kinetics = Arrhenius(A=(0.000281,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;C_rad/CbCsS
""",
@@ -17435,7 +17435,7 @@
kinetics = Arrhenius(A=(0.0218,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;CS_pri_rad
""",
@@ -17448,7 +17448,7 @@
kinetics = Arrhenius(A=(0.00929,'cm^3/(mol*s)'), n=4.34, Ea=(31.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;CS_rad/Cs
""",
@@ -17461,7 +17461,7 @@
kinetics = Arrhenius(A=(0.0191,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;CS_rad/S
""",
@@ -17474,7 +17474,7 @@
kinetics = Arrhenius(A=(0.00914,'cm^3/(mol*s)'), n=4.34, Ea=(49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;CS_rad/Cd
""",
@@ -17487,7 +17487,7 @@
kinetics = Arrhenius(A=(0.0256,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cd;CS_rad/Ct
""",
@@ -17500,7 +17500,7 @@
kinetics = Arrhenius(A=(0.894,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;H_rad
""",
@@ -17513,7 +17513,7 @@
kinetics = Arrhenius(A=(0.0212,'cm^3/(mol*s)'), n=4.34, Ea=(7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_methyl
""",
@@ -17526,7 +17526,7 @@
kinetics = Arrhenius(A=(0.00244,'cm^3/(mol*s)'), n=4.34, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/Cs
""",
@@ -17539,7 +17539,7 @@
kinetics = Arrhenius(A=(0.00232,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/NonDeC
""",
@@ -17552,7 +17552,7 @@
kinetics = Arrhenius(A=(0.001916,'cm^3/(mol*s)'), n=4.34, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/Cs3
""",
@@ -17565,7 +17565,7 @@
kinetics = Arrhenius(A=(0.00772,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/Cd
""",
@@ -17578,7 +17578,7 @@
kinetics = Arrhenius(A=(0.001962,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CdCs
""",
@@ -17591,7 +17591,7 @@
kinetics = Arrhenius(A=(0.00025,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CdCs2
""",
@@ -17604,7 +17604,7 @@
kinetics = Arrhenius(A=(2.88e-05,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CdCdCs
""",
@@ -17617,7 +17617,7 @@
kinetics = Arrhenius(A=(0.001968,'cm^3/(mol*s)'), n=4.34, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/Ct
""",
@@ -17630,7 +17630,7 @@
kinetics = Arrhenius(A=(0.000532,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CtCs
""",
@@ -17643,7 +17643,7 @@
kinetics = Arrhenius(A=(0.0001644,'cm^3/(mol*s)'), n=4.34, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CtCs2
""",
@@ -17656,7 +17656,7 @@
kinetics = Arrhenius(A=(0.000238,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CtCt
""",
@@ -17669,7 +17669,7 @@
kinetics = Arrhenius(A=(7.86e-06,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CtCtCs
""",
@@ -17682,7 +17682,7 @@
kinetics = Arrhenius(A=(0.00358,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/Cb
""",
@@ -17695,7 +17695,7 @@
kinetics = Arrhenius(A=(0.001238,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CbCs
""",
@@ -17708,7 +17708,7 @@
kinetics = Arrhenius(A=(4.98e-05,'cm^3/(mol*s)'), n=4.34, Ea=(2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CbCs2
""",
@@ -17721,7 +17721,7 @@
kinetics = Arrhenius(A=(0.0228,'cm^3/(mol*s)'), n=4.34, Ea=(-11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_pri_rad
""",
@@ -17734,7 +17734,7 @@
kinetics = Arrhenius(A=(0.0106,'cm^3/(mol*s)'), n=4.34, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_rad/NonDeC
""",
@@ -17747,7 +17747,7 @@
kinetics = Arrhenius(A=(0.01054,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_rad/Cd
""",
@@ -17760,7 +17760,7 @@
kinetics = Arrhenius(A=(0.029,'cm^3/(mol*s)'), n=4.34, Ea=(-23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cb_rad
""",
@@ -17773,7 +17773,7 @@
kinetics = Arrhenius(A=(0.00248,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_rad/Ct
""",
@@ -17786,7 +17786,7 @@
kinetics = Arrhenius(A=(0.0053,'cm^3/(mol*s)'), n=4.34, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/S
""",
@@ -17799,7 +17799,7 @@
kinetics = Arrhenius(A=(0.01218,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CsS
""",
@@ -17812,7 +17812,7 @@
kinetics = Arrhenius(A=(0.0058,'cm^3/(mol*s)'), n=4.34, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/Cs2S
""",
@@ -17825,7 +17825,7 @@
kinetics = Arrhenius(A=(0.00165,'cm^3/(mol*s)'), n=4.34, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H2/CS
""",
@@ -17838,7 +17838,7 @@
kinetics = Arrhenius(A=(0.0021,'cm^3/(mol*s)'), n=4.34, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CSCs
""",
@@ -17851,7 +17851,7 @@
kinetics = Arrhenius(A=(0.000798,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CSCs2
""",
@@ -17864,7 +17864,7 @@
kinetics = Arrhenius(A=(0.001298,'cm^3/(mol*s)'), n=4.34, Ea=(-56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_rad/NonDeS
""",
@@ -17877,7 +17877,7 @@
kinetics = Arrhenius(A=(0.00436,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_Cdd_rad/H
""",
@@ -17890,7 +17890,7 @@
kinetics = Arrhenius(A=(0.0912,'cm^3/(mol*s)'), n=4.34, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;Cd_rad/CS
""",
@@ -17903,7 +17903,7 @@
kinetics = Arrhenius(A=(0.00576,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CdS
""",
@@ -17916,7 +17916,7 @@
kinetics = Arrhenius(A=(0.000608,'cm^3/(mol*s)'), n=4.34, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CdCsS
""",
@@ -17929,7 +17929,7 @@
kinetics = Arrhenius(A=(0.01606,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CSS
""",
@@ -17942,7 +17942,7 @@
kinetics = Arrhenius(A=(0.0035,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CSCsS
""",
@@ -17955,7 +17955,7 @@
kinetics = Arrhenius(A=(0.00292,'cm^3/(mol*s)'), n=4.34, Ea=(11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CtS
""",
@@ -17968,7 +17968,7 @@
kinetics = Arrhenius(A=(0.000944,'cm^3/(mol*s)'), n=4.34, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CtCsS
""",
@@ -17981,7 +17981,7 @@
kinetics = Arrhenius(A=(0.00138,'cm^3/(mol*s)'), n=4.34, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/H/CbS
""",
@@ -17994,7 +17994,7 @@
kinetics = Arrhenius(A=(0.00041,'cm^3/(mol*s)'), n=4.34, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;C_rad/CbCsS
""",
@@ -18007,7 +18007,7 @@
kinetics = Arrhenius(A=(0.0786,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;CS_pri_rad
""",
@@ -18020,7 +18020,7 @@
kinetics = Arrhenius(A=(0.0412,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;CS_rad/Cs
""",
@@ -18033,7 +18033,7 @@
kinetics = Arrhenius(A=(0.0586,'cm^3/(mol*s)'), n=4.34, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;CS_rad/S
""",
@@ -18046,7 +18046,7 @@
kinetics = Arrhenius(A=(0.033,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;CS_rad/Cd
""",
@@ -18059,7 +18059,7 @@
kinetics = Arrhenius(A=(0.0922,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdCd;CS_rad/Ct
""",
@@ -18072,7 +18072,7 @@
kinetics = Arrhenius(A=(0.221,'cm^3/(mol*s)'), n=4.34, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;H_rad
""",
@@ -18085,7 +18085,7 @@
kinetics = Arrhenius(A=(0.00524,'cm^3/(mol*s)'), n=4.34, Ea=(35.5222,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_methyl
""",
@@ -18098,7 +18098,7 @@
kinetics = Arrhenius(A=(0.000495,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/Cs
""",
@@ -18111,7 +18111,7 @@
kinetics = Arrhenius(A=(0.000384,'cm^3/(mol*s)'), n=4.34, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/NonDeC
""",
@@ -18124,7 +18124,7 @@
kinetics = Arrhenius(A=(0.000259,'cm^3/(mol*s)'), n=4.34, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/Cs3
""",
@@ -18137,7 +18137,7 @@
kinetics = Arrhenius(A=(0.001568,'cm^3/(mol*s)'), n=4.34, Ea=(72.8016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/Cd
""",
@@ -18150,7 +18150,7 @@
kinetics = Arrhenius(A=(0.000326,'cm^3/(mol*s)'), n=4.34, Ea=(60.919,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CdCs
""",
@@ -18163,7 +18163,7 @@
kinetics = Arrhenius(A=(3.4e-05,'cm^3/(mol*s)'), n=4.34, Ea=(56.4003,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CdCs2
""",
@@ -18176,7 +18176,7 @@
kinetics = Arrhenius(A=(0.00013,'cm^3/(mol*s)'), n=4.34, Ea=(99.119,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CdCd
""",
@@ -18189,7 +18189,7 @@
kinetics = Arrhenius(A=(0.0004,'cm^3/(mol*s)'), n=4.34, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/Ct
""",
@@ -18202,7 +18202,7 @@
kinetics = Arrhenius(A=(8.83e-05,'cm^3/(mol*s)'), n=4.34, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CtCs
""",
@@ -18215,7 +18215,7 @@
kinetics = Arrhenius(A=(2.23e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CtCs2
""",
@@ -18228,7 +18228,7 @@
kinetics = Arrhenius(A=(3.96e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CtCt
""",
@@ -18241,7 +18241,7 @@
kinetics = Arrhenius(A=(1.07e-06,'cm^3/(mol*s)'), n=4.34, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CtCtCs
""",
@@ -18254,7 +18254,7 @@
kinetics = Arrhenius(A=(0.000727,'cm^3/(mol*s)'), n=4.34, Ea=(61.9734,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/Cb
""",
@@ -18267,7 +18267,7 @@
kinetics = Arrhenius(A=(0.000205,'cm^3/(mol*s)'), n=4.34, Ea=(51.0281,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CbCs
""",
@@ -18280,7 +18280,7 @@
kinetics = Arrhenius(A=(6.76e-06,'cm^3/(mol*s)'), n=4.34, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CbCs2
""",
@@ -18293,7 +18293,7 @@
kinetics = Arrhenius(A=(0.00565,'cm^3/(mol*s)'), n=4.34, Ea=(-16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_pri_rad
""",
@@ -18306,7 +18306,7 @@
kinetics = Arrhenius(A=(0.00214,'cm^3/(mol*s)'), n=4.34, Ea=(-22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_rad/NonDeC
""",
@@ -18319,7 +18319,7 @@
kinetics = Arrhenius(A=(0.00261,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_rad/Cd
""",
@@ -18332,7 +18332,7 @@
kinetics = Arrhenius(A=(0.00719,'cm^3/(mol*s)'), n=4.34, Ea=(-27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cb_rad
""",
@@ -18345,7 +18345,7 @@
kinetics = Arrhenius(A=(0.000613,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_rad/Ct
""",
@@ -18358,7 +18358,7 @@
kinetics = Arrhenius(A=(0.00126,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/S
""",
@@ -18371,7 +18371,7 @@
kinetics = Arrhenius(A=(0.00238,'cm^3/(mol*s)'), n=4.34, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CsS
""",
@@ -18384,7 +18384,7 @@
kinetics = Arrhenius(A=(0.000924,'cm^3/(mol*s)'), n=4.34, Ea=(-22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/Cs2S
""",
@@ -18397,7 +18397,7 @@
kinetics = Arrhenius(A=(0.00028,'cm^3/(mol*s)'), n=4.34, Ea=(19.0372,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H2/CS
""",
@@ -18410,7 +18410,7 @@
kinetics = Arrhenius(A=(0.000291,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CSCs
""",
@@ -18423,7 +18423,7 @@
kinetics = Arrhenius(A=(9.01e-05,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CSCs2
""",
@@ -18436,7 +18436,7 @@
kinetics = Arrhenius(A=(0.00022,'cm^3/(mol*s)'), n=4.34, Ea=(-68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_rad/NonDeS
""",
@@ -18449,7 +18449,7 @@
kinetics = Arrhenius(A=(0.0226,'cm^3/(mol*s)'), n=4.34, Ea=(47.6976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_rad/CS
""",
@@ -18462,7 +18462,7 @@
kinetics = Arrhenius(A=(0.000887,'cm^3/(mol*s)'), n=4.34, Ea=(41.7563,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;Cd_Cdd_rad/H
""",
@@ -18475,7 +18475,7 @@
kinetics = Arrhenius(A=(0.00113,'cm^3/(mol*s)'), n=4.34, Ea=(77.6132,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CdS
""",
@@ -18488,7 +18488,7 @@
kinetics = Arrhenius(A=(9.72e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CdCsS
""",
@@ -18501,7 +18501,7 @@
kinetics = Arrhenius(A=(0.00262,'cm^3/(mol*s)'), n=4.34, Ea=(125.604,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CSS
""",
@@ -18514,7 +18514,7 @@
kinetics = Arrhenius(A=(0.000467,'cm^3/(mol*s)'), n=4.34, Ea=(124.348,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CSCsS
""",
@@ -18527,7 +18527,7 @@
kinetics = Arrhenius(A=(0.000573,'cm^3/(mol*s)'), n=4.34, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CtS
""",
@@ -18540,7 +18540,7 @@
kinetics = Arrhenius(A=(0.000151,'cm^3/(mol*s)'), n=4.34, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CtCsS
""",
@@ -18553,7 +18553,7 @@
kinetics = Arrhenius(A=(0.00027,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/H/CbS
""",
@@ -18566,7 +18566,7 @@
kinetics = Arrhenius(A=(6.54e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;C_rad/CbCsS
""",
@@ -18579,7 +18579,7 @@
kinetics = Arrhenius(A=(0.0195,'cm^3/(mol*s)'), n=4.34, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;CS_pri_rad
""",
@@ -18592,7 +18592,7 @@
kinetics = Arrhenius(A=(0.00833,'cm^3/(mol*s)'), n=4.34, Ea=(20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;CS_rad/Cs
""",
@@ -18605,7 +18605,7 @@
kinetics = Arrhenius(A=(0.014,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;CS_rad/S
""",
@@ -18618,7 +18618,7 @@
kinetics = Arrhenius(A=(0.00816,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;CS_rad/Cd
""",
@@ -18631,7 +18631,7 @@
kinetics = Arrhenius(A=(0.0228,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CdCd;CS_rad/Ct
""",
@@ -18644,7 +18644,7 @@
kinetics = Arrhenius(A=(0.813,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;H_rad
""",
@@ -18657,7 +18657,7 @@
kinetics = Arrhenius(A=(0.01923,'cm^3/(mol*s)'), n=4.34, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_methyl
""",
@@ -18670,7 +18670,7 @@
kinetics = Arrhenius(A=(0.002709,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H2/Cs
""",
@@ -18683,7 +18683,7 @@
kinetics = Arrhenius(A=(0.00315,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/NonDeC
""",
@@ -18696,7 +18696,7 @@
kinetics = Arrhenius(A=(0.00315,'cm^3/(mol*s)'), n=4.34, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/Cs3
""",
@@ -18709,7 +18709,7 @@
kinetics = Arrhenius(A=(0.02706,'cm^3/(mol*s)'), n=4.34, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H2/Cd
""",
@@ -18722,7 +18722,7 @@
kinetics = Arrhenius(A=(0.00837,'cm^3/(mol*s)'), n=4.34, Ea=(61.9232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CdCs
""",
@@ -18735,7 +18735,7 @@
kinetics = Arrhenius(A=(0.001305,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CdCs2
""",
@@ -18748,7 +18748,7 @@
kinetics = Arrhenius(A=(0.01056,'cm^3/(mol*s)'), n=4.34, Ea=(84.5168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CdCd
""",
@@ -18761,7 +18761,7 @@
kinetics = Arrhenius(A=(0.000474,'cm^3/(mol*s)'), n=4.34, Ea=(82.0064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CdCdCs
""",
@@ -18774,7 +18774,7 @@
kinetics = Arrhenius(A=(0.00564,'cm^3/(mol*s)'), n=4.34, Ea=(51.0448,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CtCs
""",
@@ -18787,7 +18787,7 @@
kinetics = Arrhenius(A=(0.002124,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CtCs2
""",
@@ -18800,7 +18800,7 @@
kinetics = Arrhenius(A=(0.01977,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CtCt
""",
@@ -18813,7 +18813,7 @@
kinetics = Arrhenius(A=(0.000798,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CtCtCs
""",
@@ -18826,7 +18826,7 @@
kinetics = Arrhenius(A=(0.01254,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H2/Cb
""",
@@ -18839,7 +18839,7 @@
kinetics = Arrhenius(A=(0.00528,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CbCs
""",
@@ -18852,7 +18852,7 @@
kinetics = Arrhenius(A=(0.0002595,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CbCs2
""",
@@ -18865,7 +18865,7 @@
kinetics = Arrhenius(A=(0.02076,'cm^3/(mol*s)'), n=4.34, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_pri_rad
""",
@@ -18878,7 +18878,7 @@
kinetics = Arrhenius(A=(0.01173,'cm^3/(mol*s)'), n=4.34, Ea=(1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_rad/NonDeC
""",
@@ -18891,7 +18891,7 @@
kinetics = Arrhenius(A=(0.00957,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_rad/Cd
""",
@@ -18904,7 +18904,7 @@
kinetics = Arrhenius(A=(0.0264,'cm^3/(mol*s)'), n=4.34, Ea=(-8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cb_rad
""",
@@ -18917,7 +18917,7 @@
kinetics = Arrhenius(A=(0.00225,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_rad/Ct
""",
@@ -18930,7 +18930,7 @@
kinetics = Arrhenius(A=(0.00609,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H2/S
""",
@@ -18943,7 +18943,7 @@
kinetics = Arrhenius(A=(0.01707,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CsS
""",
@@ -18956,7 +18956,7 @@
kinetics = Arrhenius(A=(0.0099,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/Cs2S
""",
@@ -18969,7 +18969,7 @@
kinetics = Arrhenius(A=(0.01335,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H2/CS
""",
@@ -18982,7 +18982,7 @@
kinetics = Arrhenius(A=(0.02076,'cm^3/(mol*s)'), n=4.34, Ea=(78.6592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CSCs
""",
@@ -18995,7 +18995,7 @@
kinetics = Arrhenius(A=(0.00957,'cm^3/(mol*s)'), n=4.34, Ea=(84.5168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CSCs2
""",
@@ -19008,7 +19008,7 @@
kinetics = Arrhenius(A=(0.0105,'cm^3/(mol*s)'), n=4.34, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_rad/NonDeS
""",
@@ -19021,7 +19021,7 @@
kinetics = Arrhenius(A=(0.0828,'cm^3/(mol*s)'), n=4.34, Ea=(66.944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_rad/CS
""",
@@ -19034,7 +19034,7 @@
kinetics = Arrhenius(A=(0.02553,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CdS
""",
@@ -19047,7 +19047,7 @@
kinetics = Arrhenius(A=(0.0153,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;Cd_Cdd_rad/H
""",
@@ -19060,7 +19060,7 @@
kinetics = Arrhenius(A=(0.00327,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CdCsS
""",
@@ -19073,7 +19073,7 @@
kinetics = Arrhenius(A=(0.1641,'cm^3/(mol*s)'), n=4.34, Ea=(99.9976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CSS
""",
@@ -19086,7 +19086,7 @@
kinetics = Arrhenius(A=(0.0435,'cm^3/(mol*s)'), n=4.34, Ea=(100.834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CSCsS
""",
@@ -19099,7 +19099,7 @@
kinetics = Arrhenius(A=(0.0321,'cm^3/(mol*s)'), n=4.34, Ea=(60.2496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CtS
""",
@@ -19112,7 +19112,7 @@
kinetics = Arrhenius(A=(0.01266,'cm^3/(mol*s)'), n=4.34, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CtCsS
""",
@@ -19125,7 +19125,7 @@
kinetics = Arrhenius(A=(0.00612,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/H/CbS
""",
@@ -19138,7 +19138,7 @@
kinetics = Arrhenius(A=(0.002208,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;C_rad/CbCsS
""",
@@ -19151,7 +19151,7 @@
kinetics = Arrhenius(A=(0.0714,'cm^3/(mol*s)'), n=4.34, Ea=(51.0448,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;CS_pri_rad
""",
@@ -19164,7 +19164,7 @@
kinetics = Arrhenius(A=(0.0456,'cm^3/(mol*s)'), n=4.34, Ea=(45.1872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;CS_rad/Cs
""",
@@ -19177,7 +19177,7 @@
kinetics = Arrhenius(A=(0.0675,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;CS_rad/S
""",
@@ -19190,7 +19190,7 @@
kinetics = Arrhenius(A=(0.02994,'cm^3/(mol*s)'), n=4.34, Ea=(61.9232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;CS_rad/Cd
""",
@@ -19203,7 +19203,7 @@
kinetics = Arrhenius(A=(0.0837,'cm^3/(mol*s)'), n=4.34, Ea=(76.9856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Ct;CS_rad/Ct
""",
@@ -19216,7 +19216,7 @@
kinetics = Arrhenius(A=(0.716,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;H_rad
""",
@@ -19229,7 +19229,7 @@
kinetics = Arrhenius(A=(0.01694,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_methyl
""",
@@ -19242,7 +19242,7 @@
kinetics = Arrhenius(A=(0.00195,'cm^3/(mol*s)'), n=4.34, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/Cs
""",
@@ -19255,7 +19255,7 @@
kinetics = Arrhenius(A=(0.001842,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/NonDeC
""",
@@ -19268,7 +19268,7 @@
kinetics = Arrhenius(A=(0.001514,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/Cs3
""",
@@ -19281,7 +19281,7 @@
kinetics = Arrhenius(A=(0.01952,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/Cd
""",
@@ -19294,7 +19294,7 @@
kinetics = Arrhenius(A=(0.00494,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CdCs
""",
@@ -19307,7 +19307,7 @@
kinetics = Arrhenius(A=(0.000628,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CdCs2
""",
@@ -19320,7 +19320,7 @@
kinetics = Arrhenius(A=(0.00626,'cm^3/(mol*s)'), n=4.34, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CdCd
""",
@@ -19333,7 +19333,7 @@
kinetics = Arrhenius(A=(0.00023,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CdCdCs
""",
@@ -19346,7 +19346,7 @@
kinetics = Arrhenius(A=(0.01238,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/Ct
""",
@@ -19359,7 +19359,7 @@
kinetics = Arrhenius(A=(0.001024,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CtCs2
""",
@@ -19372,7 +19372,7 @@
kinetics = Arrhenius(A=(0.01172,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CtCt
""",
@@ -19385,7 +19385,7 @@
kinetics = Arrhenius(A=(0.000386,'cm^3/(mol*s)'), n=4.34, Ea=(56.0656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CtCtCs
""",
@@ -19398,7 +19398,7 @@
kinetics = Arrhenius(A=(0.00906,'cm^3/(mol*s)'), n=4.34, Ea=(39.3296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/Cb
""",
@@ -19411,7 +19411,7 @@
kinetics = Arrhenius(A=(0.00312,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CbCs
""",
@@ -19424,7 +19424,7 @@
kinetics = Arrhenius(A=(0.0001252,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CbCs2
""",
@@ -19437,7 +19437,7 @@
kinetics = Arrhenius(A=(0.01828,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_pri_rad
""",
@@ -19450,7 +19450,7 @@
kinetics = Arrhenius(A=(0.00844,'cm^3/(mol*s)'), n=4.34, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_rad/NonDeC
""",
@@ -19463,7 +19463,7 @@
kinetics = Arrhenius(A=(0.00844,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_rad/Cd
""",
@@ -19476,7 +19476,7 @@
kinetics = Arrhenius(A=(0.0232,'cm^3/(mol*s)'), n=4.34, Ea=(-15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cb_rad
""",
@@ -19489,7 +19489,7 @@
kinetics = Arrhenius(A=(0.00198,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_rad/Ct
""",
@@ -19502,7 +19502,7 @@
kinetics = Arrhenius(A=(0.00516,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/S
""",
@@ -19515,7 +19515,7 @@
kinetics = Arrhenius(A=(0.01184,'cm^3/(mol*s)'), n=4.34, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CsS
""",
@@ -19528,7 +19528,7 @@
kinetics = Arrhenius(A=(0.0056,'cm^3/(mol*s)'), n=4.34, Ea=(11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/Cs2S
""",
@@ -19541,7 +19541,7 @@
kinetics = Arrhenius(A=(0.00804,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H2/CS
""",
@@ -19554,7 +19554,7 @@
kinetics = Arrhenius(A=(0.01022,'cm^3/(mol*s)'), n=4.34, Ea=(65.2704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CSCs
""",
@@ -19567,7 +19567,7 @@
kinetics = Arrhenius(A=(0.00384,'cm^3/(mol*s)'), n=4.34, Ea=(69.8728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CSCs2
""",
@@ -19580,7 +19580,7 @@
kinetics = Arrhenius(A=(0.00632,'cm^3/(mol*s)'), n=4.34, Ea=(-20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_rad/NonDeS
""",
@@ -19593,7 +19593,7 @@
kinetics = Arrhenius(A=(0.073,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_rad/CS
""",
@@ -19606,7 +19606,7 @@
kinetics = Arrhenius(A=(0.01778,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CdS
""",
@@ -19619,7 +19619,7 @@
kinetics = Arrhenius(A=(0.001868,'cm^3/(mol*s)'), n=4.34, Ea=(43.5136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CdCsS
""",
@@ -19632,7 +19632,7 @@
kinetics = Arrhenius(A=(0.01104,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;Cd_Cdd_rad/H
""",
@@ -19645,7 +19645,7 @@
kinetics = Arrhenius(A=(0.0952,'cm^3/(mol*s)'), n=4.34, Ea=(83.68,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CSS
""",
@@ -19658,7 +19658,7 @@
kinetics = Arrhenius(A=(0.0206,'cm^3/(mol*s)'), n=4.34, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CSCsS
""",
@@ -19671,7 +19671,7 @@
kinetics = Arrhenius(A=(0.0224,'cm^3/(mol*s)'), n=4.34, Ea=(46.4424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CtS
""",
@@ -19684,7 +19684,7 @@
kinetics = Arrhenius(A=(0.0072,'cm^3/(mol*s)'), n=4.34, Ea=(44.3504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CtCsS
""",
@@ -19697,7 +19697,7 @@
kinetics = Arrhenius(A=(0.00426,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/H/CbS
""",
@@ -19710,7 +19710,7 @@
kinetics = Arrhenius(A=(0.001256,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;C_rad/CbCsS
""",
@@ -19723,7 +19723,7 @@
kinetics = Arrhenius(A=(0.063,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;CS_pri_rad
""",
@@ -19736,7 +19736,7 @@
kinetics = Arrhenius(A=(0.0328,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;CS_rad/Cs
""",
@@ -19749,7 +19749,7 @@
kinetics = Arrhenius(A=(0.0572,'cm^3/(mol*s)'), n=4.34, Ea=(39.748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;CS_rad/S
""",
@@ -19762,7 +19762,7 @@
kinetics = Arrhenius(A=(0.0264,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;CS_rad/Cd
""",
@@ -19775,7 +19775,7 @@
kinetics = Arrhenius(A=(0.0738,'cm^3/(mol*s)'), n=4.34, Ea=(70.7096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCs;CS_rad/Ct
""",
@@ -19788,7 +19788,7 @@
kinetics = Arrhenius(A=(0.414,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;H_rad
""",
@@ -19801,7 +19801,7 @@
kinetics = Arrhenius(A=(0.0098,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_methyl
""",
@@ -19814,7 +19814,7 @@
kinetics = Arrhenius(A=(0.000921,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/Cs
""",
@@ -19827,7 +19827,7 @@
kinetics = Arrhenius(A=(0.000711,'cm^3/(mol*s)'), n=4.34, Ea=(7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/NonDeC
""",
@@ -19840,7 +19840,7 @@
kinetics = Arrhenius(A=(0.000477,'cm^3/(mol*s)'), n=4.34, Ea=(1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/Cs3
""",
@@ -19853,7 +19853,7 @@
kinetics = Arrhenius(A=(0.00926,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/Cd
""",
@@ -19866,7 +19866,7 @@
kinetics = Arrhenius(A=(0.00192,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CdCs
""",
@@ -19879,7 +19879,7 @@
kinetics = Arrhenius(A=(0.000199,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CdCs2
""",
@@ -19892,7 +19892,7 @@
kinetics = Arrhenius(A=(0.00244,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CdCd
""",
@@ -19905,7 +19905,7 @@
kinetics = Arrhenius(A=(7.3e-05,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CdCdCs
""",
@@ -19918,7 +19918,7 @@
kinetics = Arrhenius(A=(0.00587,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/Ct
""",
@@ -19931,7 +19931,7 @@
kinetics = Arrhenius(A=(0.00129,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CtCs
""",
@@ -19944,7 +19944,7 @@
kinetics = Arrhenius(A=(0.00456,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CtCt
""",
@@ -19957,7 +19957,7 @@
kinetics = Arrhenius(A=(0.000123,'cm^3/(mol*s)'), n=4.34, Ea=(40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CtCtCs
""",
@@ -19970,7 +19970,7 @@
kinetics = Arrhenius(A=(0.0043,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/Cb
""",
@@ -19983,7 +19983,7 @@
kinetics = Arrhenius(A=(0.00121,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CbCs
""",
@@ -19996,7 +19996,7 @@
kinetics = Arrhenius(A=(3.96e-05,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CbCs2
""",
@@ -20009,7 +20009,7 @@
kinetics = Arrhenius(A=(0.0106,'cm^3/(mol*s)'), n=4.34, Ea=(-9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_pri_rad
""",
@@ -20022,7 +20022,7 @@
kinetics = Arrhenius(A=(0.00399,'cm^3/(mol*s)'), n=4.34, Ea=(-12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_rad/NonDeC
""",
@@ -20035,7 +20035,7 @@
kinetics = Arrhenius(A=(0.00488,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_rad/Cd
""",
@@ -20048,7 +20048,7 @@
kinetics = Arrhenius(A=(0.0134,'cm^3/(mol*s)'), n=4.34, Ea=(-20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cb_rad
""",
@@ -20061,7 +20061,7 @@
kinetics = Arrhenius(A=(0.00115,'cm^3/(mol*s)'), n=4.34, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_rad/Ct
""",
@@ -20074,7 +20074,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/S
""",
@@ -20087,7 +20087,7 @@
kinetics = Arrhenius(A=(0.00539,'cm^3/(mol*s)'), n=4.34, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CsS
""",
@@ -20100,7 +20100,7 @@
kinetics = Arrhenius(A=(0.00209,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/Cs2S
""",
@@ -20113,7 +20113,7 @@
kinetics = Arrhenius(A=(0.00318,'cm^3/(mol*s)'), n=4.34, Ea=(45.1872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H2/CS
""",
@@ -20126,7 +20126,7 @@
kinetics = Arrhenius(A=(0.0033,'cm^3/(mol*s)'), n=4.34, Ea=(51.4632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CSCs
""",
@@ -20139,7 +20139,7 @@
kinetics = Arrhenius(A=(0.00101,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CSCs2
""",
@@ -20152,7 +20152,7 @@
kinetics = Arrhenius(A=(0.0025,'cm^3/(mol*s)'), n=4.34, Ea=(-33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_rad/NonDeS
""",
@@ -20165,7 +20165,7 @@
kinetics = Arrhenius(A=(0.0422,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_rad/CS
""",
@@ -20178,7 +20178,7 @@
kinetics = Arrhenius(A=(0.00813,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CdS
""",
@@ -20191,7 +20191,7 @@
kinetics = Arrhenius(A=(0.000697,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CdCsS
""",
@@ -20204,7 +20204,7 @@
kinetics = Arrhenius(A=(0.0363,'cm^3/(mol*s)'), n=4.34, Ea=(72.8016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CSS
""",
@@ -20217,7 +20217,7 @@
kinetics = Arrhenius(A=(0.00524,'cm^3/(mol*s)'), n=4.34, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;Cd_Cdd_rad/H
""",
@@ -20230,7 +20230,7 @@
kinetics = Arrhenius(A=(0.00643,'cm^3/(mol*s)'), n=4.34, Ea=(71.5464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CSCsS
""",
@@ -20243,7 +20243,7 @@
kinetics = Arrhenius(A=(0.0102,'cm^3/(mol*s)'), n=4.34, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CtS
""",
@@ -20256,7 +20256,7 @@
kinetics = Arrhenius(A=(0.00269,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CtCsS
""",
@@ -20269,7 +20269,7 @@
kinetics = Arrhenius(A=(0.00195,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/H/CbS
""",
@@ -20282,7 +20282,7 @@
kinetics = Arrhenius(A=(0.000469,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;C_rad/CbCsS
""",
@@ -20295,7 +20295,7 @@
kinetics = Arrhenius(A=(0.0364,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;CS_pri_rad
""",
@@ -20308,7 +20308,7 @@
kinetics = Arrhenius(A=(0.0155,'cm^3/(mol*s)'), n=4.34, Ea=(31.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;CS_rad/Cs
""",
@@ -20321,7 +20321,7 @@
kinetics = Arrhenius(A=(0.0319,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;CS_rad/S
""",
@@ -20334,7 +20334,7 @@
kinetics = Arrhenius(A=(0.0153,'cm^3/(mol*s)'), n=4.34, Ea=(49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;CS_rad/Cd
""",
@@ -20347,7 +20347,7 @@
kinetics = Arrhenius(A=(0.0427,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Ct;CS_rad/Ct
""",
@@ -20360,7 +20360,7 @@
kinetics = Arrhenius(A=(0.798,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;H_rad
""",
@@ -20373,7 +20373,7 @@
kinetics = Arrhenius(A=(0.01892,'cm^3/(mol*s)'), n=4.34, Ea=(44.8525,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_methyl
""",
@@ -20386,7 +20386,7 @@
kinetics = Arrhenius(A=(0.00218,'cm^3/(mol*s)'), n=4.34, Ea=(28.1583,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/Cs
""",
@@ -20399,7 +20399,7 @@
kinetics = Arrhenius(A=(0.00208,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/NonDeC
""",
@@ -20412,7 +20412,7 @@
kinetics = Arrhenius(A=(0.001714,'cm^3/(mol*s)'), n=4.34, Ea=(-10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/Cs3
""",
@@ -20425,7 +20425,7 @@
kinetics = Arrhenius(A=(0.00688,'cm^3/(mol*s)'), n=4.34, Ea=(82.1319,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/Cd
""",
@@ -20438,7 +20438,7 @@
kinetics = Arrhenius(A=(0.001754,'cm^3/(mol*s)'), n=4.34, Ea=(70.2494,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CdCs
""",
@@ -20451,7 +20451,7 @@
kinetics = Arrhenius(A=(0.000224,'cm^3/(mol*s)'), n=4.34, Ea=(65.7306,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CdCs2
""",
@@ -20464,7 +20464,7 @@
kinetics = Arrhenius(A=(0.0007,'cm^3/(mol*s)'), n=4.34, Ea=(108.449,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CdCd
""",
@@ -20477,7 +20477,7 @@
kinetics = Arrhenius(A=(2.58e-05,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CdCdCs
""",
@@ -20490,7 +20490,7 @@
kinetics = Arrhenius(A=(0.01084,'cm^3/(mol*s)'), n=4.34, Ea=(77.1111,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/Ct
""",
@@ -20503,7 +20503,7 @@
kinetics = Arrhenius(A=(0.00294,'cm^3/(mol*s)'), n=4.34, Ea=(64.2662,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CtCs
""",
@@ -20516,7 +20516,7 @@
kinetics = Arrhenius(A=(0.000906,'cm^3/(mol*s)'), n=4.34, Ea=(62.1324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CtCs2
""",
@@ -20529,7 +20529,7 @@
kinetics = Arrhenius(A=(0.000268,'cm^3/(mol*s)'), n=4.34, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CtCtCs
""",
@@ -20542,7 +20542,7 @@
kinetics = Arrhenius(A=(0.0032,'cm^3/(mol*s)'), n=4.34, Ea=(71.3037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/Cb
""",
@@ -20555,7 +20555,7 @@
kinetics = Arrhenius(A=(0.001106,'cm^3/(mol*s)'), n=4.34, Ea=(60.3584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CbCs
""",
@@ -20568,7 +20568,7 @@
kinetics = Arrhenius(A=(4.46e-05,'cm^3/(mol*s)'), n=4.34, Ea=(61.965,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CbCs2
""",
@@ -20581,7 +20581,7 @@
kinetics = Arrhenius(A=(0.0204,'cm^3/(mol*s)'), n=4.34, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_pri_rad
""",
@@ -20594,7 +20594,7 @@
kinetics = Arrhenius(A=(0.00946,'cm^3/(mol*s)'), n=4.34, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_rad/NonDeC
""",
@@ -20607,7 +20607,7 @@
kinetics = Arrhenius(A=(0.00942,'cm^3/(mol*s)'), n=4.34, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_rad/Cd
""",
@@ -20620,7 +20620,7 @@
kinetics = Arrhenius(A=(0.026,'cm^3/(mol*s)'), n=4.34, Ea=(-23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cb_rad
""",
@@ -20633,7 +20633,7 @@
kinetics = Arrhenius(A=(0.00222,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_rad/Ct
""",
@@ -20646,7 +20646,7 @@
kinetics = Arrhenius(A=(0.00474,'cm^3/(mol*s)'), n=4.34, Ea=(52.4674,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/S
""",
@@ -20659,7 +20659,7 @@
kinetics = Arrhenius(A=(0.0109,'cm^3/(mol*s)'), n=4.34, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CsS
""",
@@ -20672,7 +20672,7 @@
kinetics = Arrhenius(A=(0.00518,'cm^3/(mol*s)'), n=4.34, Ea=(-12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/Cs2S
""",
@@ -20685,7 +20685,7 @@
kinetics = Arrhenius(A=(0.00278,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H2/CS
""",
@@ -20698,7 +20698,7 @@
kinetics = Arrhenius(A=(0.00356,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CSCs
""",
@@ -20711,7 +20711,7 @@
kinetics = Arrhenius(A=(0.001344,'cm^3/(mol*s)'), n=4.34, Ea=(42.2584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CSCs2
""",
@@ -20724,7 +20724,7 @@
kinetics = Arrhenius(A=(0.00218,'cm^3/(mol*s)'), n=4.34, Ea=(-40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_rad/NonDeS
""",
@@ -20737,7 +20737,7 @@
kinetics = Arrhenius(A=(0.0816,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_rad/CS
""",
@@ -20750,7 +20750,7 @@
kinetics = Arrhenius(A=(0.00516,'cm^3/(mol*s)'), n=4.34, Ea=(86.9435,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CdS
""",
@@ -20763,7 +20763,7 @@
kinetics = Arrhenius(A=(0.000544,'cm^3/(mol*s)'), n=4.34, Ea=(82.4666,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CdCsS
""",
@@ -20776,7 +20776,7 @@
kinetics = Arrhenius(A=(0.027,'cm^3/(mol*s)'), n=4.34, Ea=(134.934,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CSS
""",
@@ -20789,7 +20789,7 @@
kinetics = Arrhenius(A=(0.0059,'cm^3/(mol*s)'), n=4.34, Ea=(133.679,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CSCsS
""",
@@ -20802,7 +20802,7 @@
kinetics = Arrhenius(A=(0.0039,'cm^3/(mol*s)'), n=4.34, Ea=(51.0866,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;Cd_Cdd_rad/H
""",
@@ -20815,7 +20815,7 @@
kinetics = Arrhenius(A=(0.01612,'cm^3/(mol*s)'), n=4.34, Ea=(70.4586,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CtS
""",
@@ -20828,7 +20828,7 @@
kinetics = Arrhenius(A=(0.0052,'cm^3/(mol*s)'), n=4.34, Ea=(65.8562,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CtCsS
""",
@@ -20841,7 +20841,7 @@
kinetics = Arrhenius(A=(0.001234,'cm^3/(mol*s)'), n=4.34, Ea=(74.4334,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/H/CbS
""",
@@ -20854,7 +20854,7 @@
kinetics = Arrhenius(A=(0.000366,'cm^3/(mol*s)'), n=4.34, Ea=(-2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;C_rad/CbCsS
""",
@@ -20867,7 +20867,7 @@
kinetics = Arrhenius(A=(0.0704,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;CS_pri_rad
""",
@@ -20880,7 +20880,7 @@
kinetics = Arrhenius(A=(0.0368,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;CS_rad/Cs
""",
@@ -20893,7 +20893,7 @@
kinetics = Arrhenius(A=(0.0524,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;CS_rad/S
""",
@@ -20906,7 +20906,7 @@
kinetics = Arrhenius(A=(0.0294,'cm^3/(mol*s)'), n=4.34, Ea=(47.6976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;CS_rad/Cd
""",
@@ -20919,7 +20919,7 @@
kinetics = Arrhenius(A=(0.0824,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtCt;CS_rad/Ct
""",
@@ -20932,7 +20932,7 @@
kinetics = Arrhenius(A=(0.44,'cm^3/(mol*s)'), n=4.34, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;H_rad
""",
@@ -20945,7 +20945,7 @@
kinetics = Arrhenius(A=(0.0104,'cm^3/(mol*s)'), n=4.34, Ea=(47.321,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_methyl
""",
@@ -20958,7 +20958,7 @@
kinetics = Arrhenius(A=(0.000985,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/Cs
""",
@@ -20971,7 +20971,7 @@
kinetics = Arrhenius(A=(0.000764,'cm^3/(mol*s)'), n=4.34, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/NonDeC
""",
@@ -20984,7 +20984,7 @@
kinetics = Arrhenius(A=(0.000515,'cm^3/(mol*s)'), n=4.34, Ea=(-16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/Cs3
""",
@@ -20997,7 +20997,7 @@
kinetics = Arrhenius(A=(0.00312,'cm^3/(mol*s)'), n=4.34, Ea=(84.6005,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/Cd
""",
@@ -21010,7 +21010,7 @@
kinetics = Arrhenius(A=(0.000648,'cm^3/(mol*s)'), n=4.34, Ea=(72.7179,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CdCs
""",
@@ -21023,7 +21023,7 @@
kinetics = Arrhenius(A=(6.76e-05,'cm^3/(mol*s)'), n=4.34, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CdCs2
""",
@@ -21036,7 +21036,7 @@
kinetics = Arrhenius(A=(0.00026,'cm^3/(mol*s)'), n=4.34, Ea=(110.918,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CdCd
""",
@@ -21049,7 +21049,7 @@
kinetics = Arrhenius(A=(7.8e-06,'cm^3/(mol*s)'), n=4.34, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CdCdCs
""",
@@ -21062,7 +21062,7 @@
kinetics = Arrhenius(A=(0.00491,'cm^3/(mol*s)'), n=4.34, Ea=(79.5797,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/Ct
""",
@@ -21075,7 +21075,7 @@
kinetics = Arrhenius(A=(0.00108,'cm^3/(mol*s)'), n=4.34, Ea=(66.7348,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CtCs
""",
@@ -21088,7 +21088,7 @@
kinetics = Arrhenius(A=(0.000273,'cm^3/(mol*s)'), n=4.34, Ea=(64.601,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CtCs2
""",
@@ -21101,7 +21101,7 @@
kinetics = Arrhenius(A=(0.00299,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CtCt
""",
@@ -21114,7 +21114,7 @@
kinetics = Arrhenius(A=(0.00145,'cm^3/(mol*s)'), n=4.34, Ea=(73.7723,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/Cb
""",
@@ -21127,7 +21127,7 @@
kinetics = Arrhenius(A=(0.000409,'cm^3/(mol*s)'), n=4.34, Ea=(62.8269,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CbCs
""",
@@ -21140,7 +21140,7 @@
kinetics = Arrhenius(A=(1.35e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CbCs2
""",
@@ -21153,7 +21153,7 @@
kinetics = Arrhenius(A=(0.0113,'cm^3/(mol*s)'), n=4.34, Ea=(-15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_pri_rad
""",
@@ -21166,7 +21166,7 @@
kinetics = Arrhenius(A=(0.00426,'cm^3/(mol*s)'), n=4.34, Ea=(-22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_rad/NonDeC
""",
@@ -21179,7 +21179,7 @@
kinetics = Arrhenius(A=(0.00519,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_rad/Cd
""",
@@ -21192,7 +21192,7 @@
kinetics = Arrhenius(A=(0.0143,'cm^3/(mol*s)'), n=4.34, Ea=(-27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cb_rad
""",
@@ -21205,7 +21205,7 @@
kinetics = Arrhenius(A=(0.00122,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_rad/Ct
""",
@@ -21218,7 +21218,7 @@
kinetics = Arrhenius(A=(0.00252,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/S
""",
@@ -21231,7 +21231,7 @@
kinetics = Arrhenius(A=(0.00473,'cm^3/(mol*s)'), n=4.34, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CsS
""",
@@ -21244,7 +21244,7 @@
kinetics = Arrhenius(A=(0.00184,'cm^3/(mol*s)'), n=4.34, Ea=(-21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/Cs2S
""",
@@ -21257,7 +21257,7 @@
kinetics = Arrhenius(A=(0.00105,'cm^3/(mol*s)'), n=4.34, Ea=(30.8361,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H2/CS
""",
@@ -21270,7 +21270,7 @@
kinetics = Arrhenius(A=(0.00109,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CSCs
""",
@@ -21283,7 +21283,7 @@
kinetics = Arrhenius(A=(0.000338,'cm^3/(mol*s)'), n=4.34, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CSCs2
""",
@@ -21296,7 +21296,7 @@
kinetics = Arrhenius(A=(0.000825,'cm^3/(mol*s)'), n=4.34, Ea=(-51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_rad/NonDeS
""",
@@ -21309,7 +21309,7 @@
kinetics = Arrhenius(A=(0.045,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_rad/CS
""",
@@ -21322,7 +21322,7 @@
kinetics = Arrhenius(A=(0.00225,'cm^3/(mol*s)'), n=4.34, Ea=(89.4121,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CdS
""",
@@ -21335,7 +21335,7 @@
kinetics = Arrhenius(A=(0.000194,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CdCsS
""",
@@ -21348,7 +21348,7 @@
kinetics = Arrhenius(A=(0.00985,'cm^3/(mol*s)'), n=4.34, Ea=(137.403,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CSS
""",
@@ -21361,7 +21361,7 @@
kinetics = Arrhenius(A=(0.00175,'cm^3/(mol*s)'), n=4.34, Ea=(136.147,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CSCsS
""",
@@ -21374,7 +21374,7 @@
kinetics = Arrhenius(A=(0.00703,'cm^3/(mol*s)'), n=4.34, Ea=(72.9271,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CtS
""",
@@ -21387,7 +21387,7 @@
kinetics = Arrhenius(A=(0.00177,'cm^3/(mol*s)'), n=4.34, Ea=(53.5552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;Cd_Cdd_rad/H
""",
@@ -21400,7 +21400,7 @@
kinetics = Arrhenius(A=(0.00185,'cm^3/(mol*s)'), n=4.34, Ea=(68.3247,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CtCsS
""",
@@ -21413,7 +21413,7 @@
kinetics = Arrhenius(A=(0.000538,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/H/CbS
""",
@@ -21426,7 +21426,7 @@
kinetics = Arrhenius(A=(0.00013,'cm^3/(mol*s)'), n=4.34, Ea=(-15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;C_rad/CbCsS
""",
@@ -21439,7 +21439,7 @@
kinetics = Arrhenius(A=(0.0388,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;CS_pri_rad
""",
@@ -21452,7 +21452,7 @@
kinetics = Arrhenius(A=(0.0166,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;CS_rad/Cs
""",
@@ -21465,7 +21465,7 @@
kinetics = Arrhenius(A=(0.0279,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;CS_rad/S
""",
@@ -21478,7 +21478,7 @@
kinetics = Arrhenius(A=(0.0162,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;CS_rad/Cd
""",
@@ -21491,7 +21491,7 @@
kinetics = Arrhenius(A=(0.0454,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCt;CS_rad/Ct
""",
@@ -21504,7 +21504,7 @@
kinetics = Arrhenius(A=(0.2214,'cm^3/(mol*s)'), n=4.34, Ea=(18.4096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;H_rad
""",
@@ -21517,7 +21517,7 @@
kinetics = Arrhenius(A=(0.00525,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_methyl
""",
@@ -21530,7 +21530,7 @@
kinetics = Arrhenius(A=(0.000738,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/Cs
""",
@@ -21543,7 +21543,7 @@
kinetics = Arrhenius(A=(0.000855,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/NonDeC
""",
@@ -21556,7 +21556,7 @@
kinetics = Arrhenius(A=(0.000861,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/Cs3
""",
@@ -21569,7 +21569,7 @@
kinetics = Arrhenius(A=(0.00738,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/Cd
""",
@@ -21582,7 +21582,7 @@
kinetics = Arrhenius(A=(0.002283,'cm^3/(mol*s)'), n=4.34, Ea=(67.3624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CdCs
""",
@@ -21595,7 +21595,7 @@
kinetics = Arrhenius(A=(0.000357,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CdCs2
""",
@@ -21608,7 +21608,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.34, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CdCd
""",
@@ -21621,7 +21621,7 @@
kinetics = Arrhenius(A=(0.0001293,'cm^3/(mol*s)'), n=4.34, Ea=(87.4456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CdCdCs
""",
@@ -21634,7 +21634,7 @@
kinetics = Arrhenius(A=(0.001881,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/Ct
""",
@@ -21647,7 +21647,7 @@
kinetics = Arrhenius(A=(0.000618,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CtCs
""",
@@ -21660,7 +21660,7 @@
kinetics = Arrhenius(A=(0.0002331,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CtCs2
""",
@@ -21673,7 +21673,7 @@
kinetics = Arrhenius(A=(0.000876,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CtCt
""",
@@ -21686,7 +21686,7 @@
kinetics = Arrhenius(A=(3.54e-05,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CtCtCs
""",
@@ -21699,7 +21699,7 @@
kinetics = Arrhenius(A=(0.00144,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CbCs
""",
@@ -21712,7 +21712,7 @@
kinetics = Arrhenius(A=(7.08e-05,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CbCs2
""",
@@ -21725,7 +21725,7 @@
kinetics = Arrhenius(A=(0.00564,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_pri_rad
""",
@@ -21738,7 +21738,7 @@
kinetics = Arrhenius(A=(0.00321,'cm^3/(mol*s)'), n=4.34, Ea=(7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_rad/NonDeC
""",
@@ -21751,7 +21751,7 @@
kinetics = Arrhenius(A=(0.00261,'cm^3/(mol*s)'), n=4.34, Ea=(40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_rad/Cd
""",
@@ -21764,7 +21764,7 @@
kinetics = Arrhenius(A=(0.0072,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cb_rad
""",
@@ -21777,7 +21777,7 @@
kinetics = Arrhenius(A=(0.000612,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_rad/Ct
""",
@@ -21790,7 +21790,7 @@
kinetics = Arrhenius(A=(0.001659,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/S
""",
@@ -21803,7 +21803,7 @@
kinetics = Arrhenius(A=(0.00465,'cm^3/(mol*s)'), n=4.34, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CsS
""",
@@ -21816,7 +21816,7 @@
kinetics = Arrhenius(A=(0.0027,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/Cs2S
""",
@@ -21829,7 +21829,7 @@
kinetics = Arrhenius(A=(0.002649,'cm^3/(mol*s)'), n=4.34, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/CS
""",
@@ -21842,7 +21842,7 @@
kinetics = Arrhenius(A=(0.00411,'cm^3/(mol*s)'), n=4.34, Ea=(76.1488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CSCs
""",
@@ -21855,7 +21855,7 @@
kinetics = Arrhenius(A=(0.001899,'cm^3/(mol*s)'), n=4.34, Ea=(82.0064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CSCs2
""",
@@ -21868,7 +21868,7 @@
kinetics = Arrhenius(A=(0.002082,'cm^3/(mol*s)'), n=4.34, Ea=(-10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_rad/NonDeS
""",
@@ -21881,7 +21881,7 @@
kinetics = Arrhenius(A=(0.02259,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_rad/CS
""",
@@ -21894,7 +21894,7 @@
kinetics = Arrhenius(A=(0.00696,'cm^3/(mol*s)'), n=4.34, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CdS
""",
@@ -21907,7 +21907,7 @@
kinetics = Arrhenius(A=(0.000894,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CdCsS
""",
@@ -21920,7 +21920,7 @@
kinetics = Arrhenius(A=(0.0327,'cm^3/(mol*s)'), n=4.34, Ea=(97.4872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CSS
""",
@@ -21933,7 +21933,7 @@
kinetics = Arrhenius(A=(0.00864,'cm^3/(mol*s)'), n=4.34, Ea=(98.324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CSCsS
""",
@@ -21946,7 +21946,7 @@
kinetics = Arrhenius(A=(0.00354,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CtS
""",
@@ -21959,7 +21959,7 @@
kinetics = Arrhenius(A=(0.001389,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CtCsS
""",
@@ -21972,7 +21972,7 @@
kinetics = Arrhenius(A=(0.00417,'cm^3/(mol*s)'), n=4.34, Ea=(53.5552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;Cd_Cdd_rad/H
""",
@@ -21985,7 +21985,7 @@
kinetics = Arrhenius(A=(0.001668,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H/CbS
""",
@@ -21998,7 +21998,7 @@
kinetics = Arrhenius(A=(0.000603,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/CbCsS
""",
@@ -22011,7 +22011,7 @@
kinetics = Arrhenius(A=(0.01947,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;CS_pri_rad
""",
@@ -22024,7 +22024,7 @@
kinetics = Arrhenius(A=(0.01242,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;CS_rad/Cs
""",
@@ -22037,7 +22037,7 @@
kinetics = Arrhenius(A=(0.01836,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;CS_rad/S
""",
@@ -22050,7 +22050,7 @@
kinetics = Arrhenius(A=(0.00816,'cm^3/(mol*s)'), n=4.34, Ea=(67.3624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;CS_rad/Cd
""",
@@ -22063,7 +22063,7 @@
kinetics = Arrhenius(A=(0.02283,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;CS_rad/Ct
""",
@@ -22076,7 +22076,7 @@
kinetics = Arrhenius(A=(0.218,'cm^3/(mol*s)'), n=4.34, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;H_rad
""",
@@ -22089,7 +22089,7 @@
kinetics = Arrhenius(A=(0.00516,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_methyl
""",
@@ -22102,7 +22102,7 @@
kinetics = Arrhenius(A=(0.000594,'cm^3/(mol*s)'), n=4.34, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/Cs
""",
@@ -22115,7 +22115,7 @@
kinetics = Arrhenius(A=(0.000562,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/NonDeC
""",
@@ -22128,7 +22128,7 @@
kinetics = Arrhenius(A=(0.00046,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/Cs3
""",
@@ -22141,7 +22141,7 @@
kinetics = Arrhenius(A=(0.00596,'cm^3/(mol*s)'), n=4.34, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/Cd
""",
@@ -22154,7 +22154,7 @@
kinetics = Arrhenius(A=(0.001506,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CdCs
""",
@@ -22167,7 +22167,7 @@
kinetics = Arrhenius(A=(0.0001916,'cm^3/(mol*s)'), n=4.34, Ea=(51.4632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CdCs2
""",
@@ -22180,7 +22180,7 @@
kinetics = Arrhenius(A=(0.001908,'cm^3/(mol*s)'), n=4.34, Ea=(73.6384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CdCd
""",
@@ -22193,7 +22193,7 @@
kinetics = Arrhenius(A=(6.98e-05,'cm^3/(mol*s)'), n=4.34, Ea=(70.2912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CdCdCs
""",
@@ -22206,7 +22206,7 @@
kinetics = Arrhenius(A=(0.001518,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/Ct
""",
@@ -22219,7 +22219,7 @@
kinetics = Arrhenius(A=(0.000408,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CtCs
""",
@@ -22232,7 +22232,7 @@
kinetics = Arrhenius(A=(0.0001256,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CtCs2
""",
@@ -22245,7 +22245,7 @@
kinetics = Arrhenius(A=(0.00058,'cm^3/(mol*s)'), n=4.34, Ea=(49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CtCt
""",
@@ -22258,7 +22258,7 @@
kinetics = Arrhenius(A=(1.91e-05,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CtCtCs
""",
@@ -22271,7 +22271,7 @@
kinetics = Arrhenius(A=(0.00276,'cm^3/(mol*s)'), n=4.34, Ea=(43.5136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/Cb
""",
@@ -22284,7 +22284,7 @@
kinetics = Arrhenius(A=(3.82e-05,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CbCs2
""",
@@ -22297,7 +22297,7 @@
kinetics = Arrhenius(A=(0.00556,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_pri_rad
""",
@@ -22310,7 +22310,7 @@
kinetics = Arrhenius(A=(0.00258,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_rad/NonDeC
""",
@@ -22323,7 +22323,7 @@
kinetics = Arrhenius(A=(0.00256,'cm^3/(mol*s)'), n=4.34, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_rad/Cd
""",
@@ -22336,7 +22336,7 @@
kinetics = Arrhenius(A=(0.00708,'cm^3/(mol*s)'), n=4.34, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cb_rad
""",
@@ -22349,7 +22349,7 @@
kinetics = Arrhenius(A=(0.000604,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_rad/Ct
""",
@@ -22362,7 +22362,7 @@
kinetics = Arrhenius(A=(0.001574,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/S
""",
@@ -22375,7 +22375,7 @@
kinetics = Arrhenius(A=(0.0036,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CsS
""",
@@ -22388,7 +22388,7 @@
kinetics = Arrhenius(A=(0.001708,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/Cs2S
""",
@@ -22401,7 +22401,7 @@
kinetics = Arrhenius(A=(0.001782,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H2/CS
""",
@@ -22414,7 +22414,7 @@
kinetics = Arrhenius(A=(0.00226,'cm^3/(mol*s)'), n=4.34, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CSCs
""",
@@ -22427,7 +22427,7 @@
kinetics = Arrhenius(A=(0.000852,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CSCs2
""",
@@ -22440,7 +22440,7 @@
kinetics = Arrhenius(A=(0.0014,'cm^3/(mol*s)'), n=4.34, Ea=(-24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_rad/NonDeS
""",
@@ -22453,7 +22453,7 @@
kinetics = Arrhenius(A=(0.0222,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_rad/CS
""",
@@ -22466,7 +22466,7 @@
kinetics = Arrhenius(A=(0.00542,'cm^3/(mol*s)'), n=4.34, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CdS
""",
@@ -22479,7 +22479,7 @@
kinetics = Arrhenius(A=(0.000568,'cm^3/(mol*s)'), n=4.34, Ea=(47.6976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CdCsS
""",
@@ -22492,7 +22492,7 @@
kinetics = Arrhenius(A=(0.0212,'cm^3/(mol*s)'), n=4.34, Ea=(79.9144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CSS
""",
@@ -22505,7 +22505,7 @@
kinetics = Arrhenius(A=(0.00458,'cm^3/(mol*s)'), n=4.34, Ea=(80.3328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CSCsS
""",
@@ -22518,7 +22518,7 @@
kinetics = Arrhenius(A=(0.00274,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CtS
""",
@@ -22531,7 +22531,7 @@
kinetics = Arrhenius(A=(0.000884,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CtCsS
""",
@@ -22544,7 +22544,7 @@
kinetics = Arrhenius(A=(0.001298,'cm^3/(mol*s)'), n=4.34, Ea=(43.5136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CbS
""",
@@ -22557,7 +22557,7 @@
kinetics = Arrhenius(A=(0.00336,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;Cd_Cdd_rad/H
""",
@@ -22570,7 +22570,7 @@
kinetics = Arrhenius(A=(0.000382,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/CbCsS
""",
@@ -22583,7 +22583,7 @@
kinetics = Arrhenius(A=(0.01918,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;CS_pri_rad
""",
@@ -22596,7 +22596,7 @@
kinetics = Arrhenius(A=(0.01,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;CS_rad/Cs
""",
@@ -22609,7 +22609,7 @@
kinetics = Arrhenius(A=(0.01742,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;CS_rad/S
""",
@@ -22622,7 +22622,7 @@
kinetics = Arrhenius(A=(0.00804,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;CS_rad/Cd
""",
@@ -22635,7 +22635,7 @@
kinetics = Arrhenius(A=(0.0224,'cm^3/(mol*s)'), n=4.34, Ea=(74.8936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;CS_rad/Ct
""",
@@ -22648,7 +22648,7 @@
kinetics = Arrhenius(A=(0.0948,'cm^3/(mol*s)'), n=4.34, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;H_rad
""",
@@ -22661,7 +22661,7 @@
kinetics = Arrhenius(A=(0.00225,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_methyl
""",
@@ -22674,7 +22674,7 @@
kinetics = Arrhenius(A=(0.000211,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/Cs
""",
@@ -22687,7 +22687,7 @@
kinetics = Arrhenius(A=(0.000163,'cm^3/(mol*s)'), n=4.34, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/NonDeC
""",
@@ -22700,7 +22700,7 @@
kinetics = Arrhenius(A=(0.000109,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/Cs3
""",
@@ -22713,7 +22713,7 @@
kinetics = Arrhenius(A=(0.00212,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/Cd
""",
@@ -22726,7 +22726,7 @@
kinetics = Arrhenius(A=(0.000439,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CdCs
""",
@@ -22739,7 +22739,7 @@
kinetics = Arrhenius(A=(4.56e-05,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CdCs2
""",
@@ -22752,7 +22752,7 @@
kinetics = Arrhenius(A=(0.000559,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CdCd
""",
@@ -22765,7 +22765,7 @@
kinetics = Arrhenius(A=(1.67e-05,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CdCdCs
""",
@@ -22778,7 +22778,7 @@
kinetics = Arrhenius(A=(0.000542,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/Ct
""",
@@ -22791,7 +22791,7 @@
kinetics = Arrhenius(A=(0.000119,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CtCs
""",
@@ -22804,7 +22804,7 @@
kinetics = Arrhenius(A=(2.99e-05,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CtCs2
""",
@@ -22817,7 +22817,7 @@
kinetics = Arrhenius(A=(0.00017,'cm^3/(mol*s)'), n=4.34, Ea=(35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CtCt
""",
@@ -22830,7 +22830,7 @@
kinetics = Arrhenius(A=(4.57e-06,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CtCtCs
""",
@@ -22843,7 +22843,7 @@
kinetics = Arrhenius(A=(0.000985,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/Cb
""",
@@ -22856,7 +22856,7 @@
kinetics = Arrhenius(A=(0.000277,'cm^3/(mol*s)'), n=4.34, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CbCs
""",
@@ -22869,7 +22869,7 @@
kinetics = Arrhenius(A=(0.00242,'cm^3/(mol*s)'), n=4.34, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_pri_rad
""",
@@ -22882,7 +22882,7 @@
kinetics = Arrhenius(A=(0.000914,'cm^3/(mol*s)'), n=4.34, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_rad/NonDeC
""",
@@ -22895,7 +22895,7 @@
kinetics = Arrhenius(A=(0.00112,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_rad/Cd
""",
@@ -22908,7 +22908,7 @@
kinetics = Arrhenius(A=(0.00308,'cm^3/(mol*s)'), n=4.34, Ea=(-15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cb_rad
""",
@@ -22921,7 +22921,7 @@
kinetics = Arrhenius(A=(0.0012,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_Cdd_rad/H
""",
@@ -22934,7 +22934,7 @@
kinetics = Arrhenius(A=(0.00066,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/S
""",
@@ -22947,7 +22947,7 @@
kinetics = Arrhenius(A=(0.00124,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CsS
""",
@@ -22960,7 +22960,7 @@
kinetics = Arrhenius(A=(0.000478,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/Cs2S
""",
@@ -22973,7 +22973,7 @@
kinetics = Arrhenius(A=(0.00053,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H2/CS
""",
@@ -22986,7 +22986,7 @@
kinetics = Arrhenius(A=(0.000551,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CSCs
""",
@@ -22999,7 +22999,7 @@
kinetics = Arrhenius(A=(0.000169,'cm^3/(mol*s)'), n=4.34, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CSCs2
""",
@@ -23012,7 +23012,7 @@
kinetics = Arrhenius(A=(0.000417,'cm^3/(mol*s)'), n=4.34, Ea=(-35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_rad/NonDeS
""",
@@ -23025,7 +23025,7 @@
kinetics = Arrhenius(A=(0.00968,'cm^3/(mol*s)'), n=4.34, Ea=(60.2496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_rad/CS
""",
@@ -23038,7 +23038,7 @@
kinetics = Arrhenius(A=(0.00186,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CdS
""",
@@ -23051,7 +23051,7 @@
kinetics = Arrhenius(A=(0.00016,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CdCsS
""",
@@ -23064,7 +23064,7 @@
kinetics = Arrhenius(A=(0.00606,'cm^3/(mol*s)'), n=4.34, Ea=(72.969,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CSS
""",
@@ -23077,7 +23077,7 @@
kinetics = Arrhenius(A=(0.00107,'cm^3/(mol*s)'), n=4.34, Ea=(71.7138,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CSCsS
""",
@@ -23090,7 +23090,7 @@
kinetics = Arrhenius(A=(0.000946,'cm^3/(mol*s)'), n=4.34, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CtS
""",
@@ -23103,7 +23103,7 @@
kinetics = Arrhenius(A=(0.000248,'cm^3/(mol*s)'), n=4.34, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CtCsS
""",
@@ -23116,7 +23116,7 @@
kinetics = Arrhenius(A=(0.000447,'cm^3/(mol*s)'), n=4.34, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/H/CbS
""",
@@ -23129,7 +23129,7 @@
kinetics = Arrhenius(A=(0.000108,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CbCsS
""",
@@ -23142,7 +23142,7 @@
kinetics = Arrhenius(A=(0.00835,'cm^3/(mol*s)'), n=4.34, Ea=(44.3504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;CS_pri_rad
""",
@@ -23155,7 +23155,7 @@
kinetics = Arrhenius(A=(0.000263,'cm^3/(mol*s)'), n=4.34, Ea=(16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;Cd_rad/Ct
""",
@@ -23168,7 +23168,7 @@
kinetics = Arrhenius(A=(0.00355,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;CS_rad/Cs
""",
@@ -23181,7 +23181,7 @@
kinetics = Arrhenius(A=(0.00731,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;CS_rad/S
""",
@@ -23194,7 +23194,7 @@
kinetics = Arrhenius(A=(0.0035,'cm^3/(mol*s)'), n=4.34, Ea=(55.2288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;CS_rad/Cd
""",
@@ -23207,7 +23207,7 @@
kinetics = Arrhenius(A=(0.00978,'cm^3/(mol*s)'), n=4.34, Ea=(70.2912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;CS_rad/Ct
""",
@@ -23220,7 +23220,7 @@
kinetics = Arrhenius(A=(1.448,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;H_rad
""",
@@ -23233,7 +23233,7 @@
kinetics = Arrhenius(A=(0.03432,'cm^3/(mol*s)'), n=4.34, Ea=(86.6506,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_methyl
""",
@@ -23246,7 +23246,7 @@
kinetics = Arrhenius(A=(0.00832,'cm^3/(mol*s)'), n=4.34, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/NonDeC
""",
@@ -23259,7 +23259,7 @@
kinetics = Arrhenius(A=(0.01016,'cm^3/(mol*s)'), n=4.34, Ea=(54.4757,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/Cs3
""",
@@ -23272,7 +23272,7 @@
kinetics = Arrhenius(A=(0.1856,'cm^3/(mol*s)'), n=4.34, Ea=(123.93,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H2/Cd
""",
@@ -23285,7 +23285,7 @@
kinetics = Arrhenius(A=(0.07,'cm^3/(mol*s)'), n=4.34, Ea=(112.048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CdCs
""",
@@ -23298,7 +23298,7 @@
kinetics = Arrhenius(A=(0.01332,'cm^3/(mol*s)'), n=4.34, Ea=(107.529,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CdCs2
""",
@@ -23311,7 +23311,7 @@
kinetics = Arrhenius(A=(0.28,'cm^3/(mol*s)'), n=4.34, Ea=(150.247,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CdCd
""",
@@ -23324,7 +23324,7 @@
kinetics = Arrhenius(A=(0.01532,'cm^3/(mol*s)'), n=4.34, Ea=(142.256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CdCdCs
""",
@@ -23337,7 +23337,7 @@
kinetics = Arrhenius(A=(0.0472,'cm^3/(mol*s)'), n=4.34, Ea=(118.909,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H2/Ct
""",
@@ -23350,7 +23350,7 @@
kinetics = Arrhenius(A=(0.01904,'cm^3/(mol*s)'), n=4.34, Ea=(106.064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CtCs
""",
@@ -23363,7 +23363,7 @@
kinetics = Arrhenius(A=(0.00872,'cm^3/(mol*s)'), n=4.34, Ea=(103.931,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CtCs2
""",
@@ -23376,7 +23376,7 @@
kinetics = Arrhenius(A=(0.0852,'cm^3/(mol*s)'), n=4.34, Ea=(116.315,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CtCt
""",
@@ -23389,7 +23389,7 @@
kinetics = Arrhenius(A=(0.0042,'cm^3/(mol*s)'), n=4.34, Ea=(120.918,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CtCtCs
""",
@@ -23402,7 +23402,7 @@
kinetics = Arrhenius(A=(0.086,'cm^3/(mol*s)'), n=4.34, Ea=(113.102,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H2/Cb
""",
@@ -23415,7 +23415,7 @@
kinetics = Arrhenius(A=(0.0444,'cm^3/(mol*s)'), n=4.34, Ea=(102.157,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CbCs
""",
@@ -23428,7 +23428,7 @@
kinetics = Arrhenius(A=(0.002652,'cm^3/(mol*s)'), n=4.34, Ea=(103.763,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CbCs2
""",
@@ -23441,7 +23441,7 @@
kinetics = Arrhenius(A=(0.02548,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_rad/NonDeC
""",
@@ -23454,7 +23454,7 @@
kinetics = Arrhenius(A=(0.01708,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_rad/Cd
""",
@@ -23467,7 +23467,7 @@
kinetics = Arrhenius(A=(0.0472,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cb_rad
""",
@@ -23480,7 +23480,7 @@
kinetics = Arrhenius(A=(0.1052,'cm^3/(mol*s)'), n=4.34, Ea=(92.8848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_Cdd_rad/H
""",
@@ -23493,7 +23493,7 @@
kinetics = Arrhenius(A=(0.01372,'cm^3/(mol*s)'), n=4.34, Ea=(94.2655,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H2/S
""",
@@ -23506,7 +23506,7 @@
kinetics = Arrhenius(A=(0.0468,'cm^3/(mol*s)'), n=4.34, Ea=(82.383,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CsS
""",
@@ -23519,7 +23519,7 @@
kinetics = Arrhenius(A=(0.03316,'cm^3/(mol*s)'), n=4.34, Ea=(72.2995,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/Cs2S
""",
@@ -23532,7 +23532,7 @@
kinetics = Arrhenius(A=(0.112,'cm^3/(mol*s)'), n=4.34, Ea=(112.968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H2/CS
""",
@@ -23545,7 +23545,7 @@
kinetics = Arrhenius(A=(0.2128,'cm^3/(mol*s)'), n=4.34, Ea=(125.102,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CSCs
""",
@@ -23558,7 +23558,7 @@
kinetics = Arrhenius(A=(0.1196,'cm^3/(mol*s)'), n=4.34, Ea=(135.143,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CSCs2
""",
@@ -23571,7 +23571,7 @@
kinetics = Arrhenius(A=(0.088,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_rad/NonDeS
""",
@@ -23584,7 +23584,7 @@
kinetics = Arrhenius(A=(0.148,'cm^3/(mol*s)'), n=4.34, Ea=(89.956,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_rad/CS
""",
@@ -23597,7 +23597,7 @@
kinetics = Arrhenius(A=(0.2216,'cm^3/(mol*s)'), n=4.34, Ea=(128.742,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CdS
""",
@@ -23610,7 +23610,7 @@
kinetics = Arrhenius(A=(0.03476,'cm^3/(mol*s)'), n=4.34, Ea=(124.265,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CdCsS
""",
@@ -23623,7 +23623,7 @@
kinetics = Arrhenius(A=(1.744,'cm^3/(mol*s)'), n=4.34, Ea=(176.732,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CSS
""",
@@ -23636,7 +23636,7 @@
kinetics = Arrhenius(A=(0.564,'cm^3/(mol*s)'), n=4.34, Ea=(175.477,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CSCsS
""",
@@ -23649,7 +23649,7 @@
kinetics = Arrhenius(A=(0.1124,'cm^3/(mol*s)'), n=4.34, Ea=(112.257,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CtS
""",
@@ -23662,7 +23662,7 @@
kinetics = Arrhenius(A=(0.054,'cm^3/(mol*s)'), n=4.34, Ea=(108.784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CtCsS
""",
@@ -23675,7 +23675,7 @@
kinetics = Arrhenius(A=(0.0532,'cm^3/(mol*s)'), n=4.34, Ea=(116.232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/H/CbS
""",
@@ -23688,7 +23688,7 @@
kinetics = Arrhenius(A=(0.0234,'cm^3/(mol*s)'), n=4.34, Ea=(105.353,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;C_rad/CbCsS
""",
@@ -23701,7 +23701,7 @@
kinetics = Arrhenius(A=(0.1276,'cm^3/(mol*s)'), n=4.34, Ea=(73.6384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;CS_pri_rad
""",
@@ -23714,7 +23714,7 @@
kinetics = Arrhenius(A=(0.0992,'cm^3/(mol*s)'), n=4.34, Ea=(72.8016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;CS_rad/Cs
""",
@@ -23727,7 +23727,7 @@
kinetics = Arrhenius(A=(0.004,'cm^3/(mol*s)'), n=4.34, Ea=(46.4424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;Cd_rad/Ct
""",
@@ -23740,7 +23740,7 @@
kinetics = Arrhenius(A=(0.152,'cm^3/(mol*s)'), n=4.34, Ea=(83.68,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;CS_rad/S
""",
@@ -23753,7 +23753,7 @@
kinetics = Arrhenius(A=(0.0532,'cm^3/(mol*s)'), n=4.34, Ea=(84.9352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;CS_rad/Cd
""",
@@ -23766,7 +23766,7 @@
kinetics = Arrhenius(A=(0.1492,'cm^3/(mol*s)'), n=4.34, Ea=(99.9976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_pri;CS_rad/Ct
""",
@@ -23779,7 +23779,7 @@
kinetics = Arrhenius(A=(0.0406,'cm^3/(mol*s)'), n=4.34, Ea=(124.474,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/Cd
""",
@@ -23792,7 +23792,7 @@
kinetics = Arrhenius(A=(0.0126,'cm^3/(mol*s)'), n=4.34, Ea=(112.591,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CdCs
""",
@@ -23805,7 +23805,7 @@
kinetics = Arrhenius(A=(0.00195,'cm^3/(mol*s)'), n=4.34, Ea=(108.073,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CdCs2
""",
@@ -23818,7 +23818,7 @@
kinetics = Arrhenius(A=(0.0503,'cm^3/(mol*s)'), n=4.34, Ea=(150.791,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CdCd
""",
@@ -23831,7 +23831,7 @@
kinetics = Arrhenius(A=(0.00225,'cm^3/(mol*s)'), n=4.34, Ea=(123.01,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CdCdCs
""",
@@ -23844,7 +23844,7 @@
kinetics = Arrhenius(A=(0.0104,'cm^3/(mol*s)'), n=4.34, Ea=(119.453,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/Ct
""",
@@ -23857,7 +23857,7 @@
kinetics = Arrhenius(A=(0.0034,'cm^3/(mol*s)'), n=4.34, Ea=(106.608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CtCs
""",
@@ -23870,7 +23870,7 @@
kinetics = Arrhenius(A=(0.00128,'cm^3/(mol*s)'), n=4.34, Ea=(104.474,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CtCs2
""",
@@ -23883,7 +23883,7 @@
kinetics = Arrhenius(A=(0.0153,'cm^3/(mol*s)'), n=4.34, Ea=(97.4872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CtCt
""",
@@ -23896,7 +23896,7 @@
kinetics = Arrhenius(A=(0.000613,'cm^3/(mol*s)'), n=4.34, Ea=(101.253,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CtCtCs
""",
@@ -23909,7 +23909,7 @@
kinetics = Arrhenius(A=(0.0189,'cm^3/(mol*s)'), n=4.34, Ea=(113.646,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/Cb
""",
@@ -23922,7 +23922,7 @@
kinetics = Arrhenius(A=(0.00792,'cm^3/(mol*s)'), n=4.34, Ea=(102.7,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CbCs
""",
@@ -23935,7 +23935,7 @@
kinetics = Arrhenius(A=(0.000387,'cm^3/(mol*s)'), n=4.34, Ea=(104.307,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CbCs2
""",
@@ -23948,7 +23948,7 @@
kinetics = Arrhenius(A=(0.00455,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cd_rad/Cd
""",
@@ -23961,7 +23961,7 @@
kinetics = Arrhenius(A=(0.0126,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cb_rad
""",
@@ -23974,7 +23974,7 @@
kinetics = Arrhenius(A=(0.00107,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cd_rad/Ct
""",
@@ -23987,7 +23987,7 @@
kinetics = Arrhenius(A=(0.00353,'cm^3/(mol*s)'), n=4.34, Ea=(94.8094,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/S
""",
@@ -24000,7 +24000,7 @@
kinetics = Arrhenius(A=(0.00985,'cm^3/(mol*s)'), n=4.34, Ea=(82.9269,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CsS
""",
@@ -24013,7 +24013,7 @@
kinetics = Arrhenius(A=(0.00569,'cm^3/(mol*s)'), n=4.34, Ea=(72.8434,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/Cs2S
""",
@@ -24026,7 +24026,7 @@
kinetics = Arrhenius(A=(0.0205,'cm^3/(mol*s)'), n=4.34, Ea=(96.6504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H2/CS
""",
@@ -24039,7 +24039,7 @@
kinetics = Arrhenius(A=(0.0317,'cm^3/(mol*s)'), n=4.34, Ea=(107.947,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CSCs
""",
@@ -24052,7 +24052,7 @@
kinetics = Arrhenius(A=(0.0146,'cm^3/(mol*s)'), n=4.34, Ea=(117.57,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CSCs2
""",
@@ -24065,7 +24065,7 @@
kinetics = Arrhenius(A=(0.0161,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cd_rad/NonDeS
""",
@@ -24078,7 +24078,7 @@
kinetics = Arrhenius(A=(0.0394,'cm^3/(mol*s)'), n=4.34, Ea=(80.3328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cd_rad/CS
""",
@@ -24091,7 +24091,7 @@
kinetics = Arrhenius(A=(0.0468,'cm^3/(mol*s)'), n=4.34, Ea=(129.286,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CdS
""",
@@ -24104,7 +24104,7 @@
kinetics = Arrhenius(A=(0.00599,'cm^3/(mol*s)'), n=4.34, Ea=(124.809,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CdCsS
""",
@@ -24117,7 +24117,7 @@
kinetics = Arrhenius(A=(0.307,'cm^3/(mol*s)'), n=4.34, Ea=(177.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CSS
""",
@@ -24130,7 +24130,7 @@
kinetics = Arrhenius(A=(0.0811,'cm^3/(mol*s)'), n=4.34, Ea=(176.021,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CSCsS
""",
@@ -24143,7 +24143,7 @@
kinetics = Arrhenius(A=(0.0238,'cm^3/(mol*s)'), n=4.34, Ea=(112.801,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CtS
""",
@@ -24156,7 +24156,7 @@
kinetics = Arrhenius(A=(0.00931,'cm^3/(mol*s)'), n=4.34, Ea=(108.198,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CtCsS
""",
@@ -24169,7 +24169,7 @@
kinetics = Arrhenius(A=(0.0112,'cm^3/(mol*s)'), n=4.34, Ea=(116.775,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/H/CbS
""",
@@ -24182,7 +24182,7 @@
kinetics = Arrhenius(A=(0.00403,'cm^3/(mol*s)'), n=4.34, Ea=(105.897,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;C_rad/CbCsS
""",
@@ -24195,7 +24195,7 @@
kinetics = Arrhenius(A=(0.034,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;CS_pri_rad
""",
@@ -24208,7 +24208,7 @@
kinetics = Arrhenius(A=(0.0216,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;CS_rad/Cs
""",
@@ -24221,7 +24221,7 @@
kinetics = Arrhenius(A=(0.023,'cm^3/(mol*s)'), n=4.34, Ea=(93.4287,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;Cd_Cdd_rad/H
""",
@@ -24234,7 +24234,7 @@
kinetics = Arrhenius(A=(0.0391,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;CS_rad/S
""",
@@ -24247,7 +24247,7 @@
kinetics = Arrhenius(A=(0.0142,'cm^3/(mol*s)'), n=4.34, Ea=(75.312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;CS_rad/Cd
""",
@@ -24260,7 +24260,7 @@
kinetics = Arrhenius(A=(0.0398,'cm^3/(mol*s)'), n=4.34, Ea=(90.3744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeC;CS_rad/Ct
""",
@@ -24273,7 +24273,7 @@
kinetics = Arrhenius(A=(0.73,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;H_rad
""",
@@ -24286,7 +24286,7 @@
kinetics = Arrhenius(A=(0.01728,'cm^3/(mol*s)'), n=4.34, Ea=(41.1287,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_methyl
""",
@@ -24299,7 +24299,7 @@
kinetics = Arrhenius(A=(0.00296,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/Cs
""",
@@ -24312,7 +24312,7 @@
kinetics = Arrhenius(A=(0.00418,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/NonDeC
""",
@@ -24325,7 +24325,7 @@
kinetics = Arrhenius(A=(0.00514,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/Cs3
""",
@@ -24338,7 +24338,7 @@
kinetics = Arrhenius(A=(0.0936,'cm^3/(mol*s)'), n=4.34, Ea=(87.864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/Cd
""",
@@ -24351,7 +24351,7 @@
kinetics = Arrhenius(A=(0.0354,'cm^3/(mol*s)'), n=4.34, Ea=(95.3952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CdCs
""",
@@ -24364,7 +24364,7 @@
kinetics = Arrhenius(A=(0.00672,'cm^3/(mol*s)'), n=4.34, Ea=(97.4872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CdCs2
""",
@@ -24377,7 +24377,7 @@
kinetics = Arrhenius(A=(0.1412,'cm^3/(mol*s)'), n=4.34, Ea=(130.122,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CdCd
""",
@@ -24390,7 +24390,7 @@
kinetics = Arrhenius(A=(0.00772,'cm^3/(mol*s)'), n=4.34, Ea=(131.796,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CdCdCs
""",
@@ -24403,7 +24403,7 @@
kinetics = Arrhenius(A=(0.0238,'cm^3/(mol*s)'), n=4.34, Ea=(73.3874,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/Ct
""",
@@ -24416,7 +24416,7 @@
kinetics = Arrhenius(A=(0.0096,'cm^3/(mol*s)'), n=4.34, Ea=(78.6592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CtCs
""",
@@ -24429,7 +24429,7 @@
kinetics = Arrhenius(A=(0.0044,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CtCs2
""",
@@ -24442,7 +24442,7 @@
kinetics = Arrhenius(A=(0.0428,'cm^3/(mol*s)'), n=4.34, Ea=(105.855,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CtCt
""",
@@ -24455,7 +24455,7 @@
kinetics = Arrhenius(A=(0.0021,'cm^3/(mol*s)'), n=4.34, Ea=(110.458,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CtCtCs
""",
@@ -24468,7 +24468,7 @@
kinetics = Arrhenius(A=(0.0434,'cm^3/(mol*s)'), n=4.34, Ea=(79.0776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/Cb
""",
@@ -24481,7 +24481,7 @@
kinetics = Arrhenius(A=(0.0224,'cm^3/(mol*s)'), n=4.34, Ea=(82.8432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CbCs
""",
@@ -24494,7 +24494,7 @@
kinetics = Arrhenius(A=(0.001336,'cm^3/(mol*s)'), n=4.34, Ea=(81.1696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CbCs2
""",
@@ -24507,7 +24507,7 @@
kinetics = Arrhenius(A=(0.01864,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_pri_rad
""",
@@ -24520,7 +24520,7 @@
kinetics = Arrhenius(A=(0.01284,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_rad/NonDeC
""",
@@ -24533,7 +24533,7 @@
kinetics = Arrhenius(A=(0.0238,'cm^3/(mol*s)'), n=4.34, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cb_rad
""",
@@ -24546,7 +24546,7 @@
kinetics = Arrhenius(A=(0.00202,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_rad/Ct
""",
@@ -24559,7 +24559,7 @@
kinetics = Arrhenius(A=(0.00692,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/S
""",
@@ -24572,7 +24572,7 @@
kinetics = Arrhenius(A=(0.0236,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CsS
""",
@@ -24585,7 +24585,7 @@
kinetics = Arrhenius(A=(0.01672,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/Cs2S
""",
@@ -24598,7 +24598,7 @@
kinetics = Arrhenius(A=(0.0566,'cm^3/(mol*s)'), n=4.34, Ea=(102.508,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H2/CS
""",
@@ -24611,7 +24611,7 @@
kinetics = Arrhenius(A=(0.1072,'cm^3/(mol*s)'), n=4.34, Ea=(115.06,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CSCs
""",
@@ -24624,7 +24624,7 @@
kinetics = Arrhenius(A=(0.0602,'cm^3/(mol*s)'), n=4.34, Ea=(125.102,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CSCs2
""",
@@ -24637,7 +24637,7 @@
kinetics = Arrhenius(A=(0.0444,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_rad/NonDeS
""",
@@ -24650,7 +24650,7 @@
kinetics = Arrhenius(A=(0.0744,'cm^3/(mol*s)'), n=4.34, Ea=(79.496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_rad/CS
""",
@@ -24663,7 +24663,7 @@
kinetics = Arrhenius(A=(0.1118,'cm^3/(mol*s)'), n=4.34, Ea=(103.345,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CdS
""",
@@ -24676,7 +24676,7 @@
kinetics = Arrhenius(A=(0.01752,'cm^3/(mol*s)'), n=4.34, Ea=(102.926,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CdCsS
""",
@@ -24689,7 +24689,7 @@
kinetics = Arrhenius(A=(0.88,'cm^3/(mol*s)'), n=4.34, Ea=(143.093,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CSS
""",
@@ -24702,7 +24702,7 @@
kinetics = Arrhenius(A=(0.284,'cm^3/(mol*s)'), n=4.34, Ea=(148.532,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CSCsS
""",
@@ -24715,7 +24715,7 @@
kinetics = Arrhenius(A=(0.0568,'cm^3/(mol*s)'), n=4.34, Ea=(94.9768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CtS
""",
@@ -24728,7 +24728,7 @@
kinetics = Arrhenius(A=(0.0272,'cm^3/(mol*s)'), n=4.34, Ea=(98.324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CtCsS
""",
@@ -24741,7 +24741,7 @@
kinetics = Arrhenius(A=(0.0268,'cm^3/(mol*s)'), n=4.34, Ea=(93.7216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/H/CbS
""",
@@ -24754,7 +24754,7 @@
kinetics = Arrhenius(A=(0.01178,'cm^3/(mol*s)'), n=4.34, Ea=(89.956,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;C_rad/CbCsS
""",
@@ -24767,7 +24767,7 @@
kinetics = Arrhenius(A=(0.0642,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;CS_pri_rad
""",
@@ -24780,7 +24780,7 @@
kinetics = Arrhenius(A=(0.05,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;CS_rad/Cs
""",
@@ -24793,7 +24793,7 @@
kinetics = Arrhenius(A=(0.0766,'cm^3/(mol*s)'), n=4.34, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;CS_rad/S
""",
@@ -24806,7 +24806,7 @@
kinetics = Arrhenius(A=(0.053,'cm^3/(mol*s)'), n=4.34, Ea=(76.9856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;Cd_Cdd_rad/H
""",
@@ -24819,7 +24819,7 @@
kinetics = Arrhenius(A=(0.027,'cm^3/(mol*s)'), n=4.34, Ea=(74.4752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;CS_rad/Cd
""",
@@ -24832,7 +24832,7 @@
kinetics = Arrhenius(A=(0.0752,'cm^3/(mol*s)'), n=4.34, Ea=(89.5376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Cd;CS_rad/Ct
""",
@@ -24845,7 +24845,7 @@
kinetics = Arrhenius(A=(0.063,'cm^3/(mol*s)'), n=4.34, Ea=(102.006,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_methyl
""",
@@ -24858,7 +24858,7 @@
kinetics = Arrhenius(A=(0.01524,'cm^3/(mol*s)'), n=4.34, Ea=(74.3497,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/NonDeC
""",
@@ -24871,7 +24871,7 @@
kinetics = Arrhenius(A=(0.01866,'cm^3/(mol*s)'), n=4.34, Ea=(69.831,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/Cs3
""",
@@ -24884,7 +24884,7 @@
kinetics = Arrhenius(A=(0.3408,'cm^3/(mol*s)'), n=4.34, Ea=(139.285,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H2/Cd
""",
@@ -24897,7 +24897,7 @@
kinetics = Arrhenius(A=(0.129,'cm^3/(mol*s)'), n=4.34, Ea=(127.403,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CdCs
""",
@@ -24910,7 +24910,7 @@
kinetics = Arrhenius(A=(0.02442,'cm^3/(mol*s)'), n=4.34, Ea=(122.884,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CdCs2
""",
@@ -24923,7 +24923,7 @@
kinetics = Arrhenius(A=(0.5142,'cm^3/(mol*s)'), n=4.34, Ea=(165.603,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CdCd
""",
@@ -24936,7 +24936,7 @@
kinetics = Arrhenius(A=(0.02808,'cm^3/(mol*s)'), n=4.34, Ea=(150.206,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CdCdCs
""",
@@ -24949,7 +24949,7 @@
kinetics = Arrhenius(A=(0.087,'cm^3/(mol*s)'), n=4.34, Ea=(134.265,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H2/Ct
""",
@@ -24962,7 +24962,7 @@
kinetics = Arrhenius(A=(0.03492,'cm^3/(mol*s)'), n=4.34, Ea=(121.42,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CtCs
""",
@@ -24975,7 +24975,7 @@
kinetics = Arrhenius(A=(0.01602,'cm^3/(mol*s)'), n=4.34, Ea=(119.286,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CtCs2
""",
@@ -24988,7 +24988,7 @@
kinetics = Arrhenius(A=(0.156,'cm^3/(mol*s)'), n=4.34, Ea=(124.265,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CtCt
""",
@@ -25001,7 +25001,7 @@
kinetics = Arrhenius(A=(0.00768,'cm^3/(mol*s)'), n=4.34, Ea=(128.867,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CtCtCs
""",
@@ -25014,7 +25014,7 @@
kinetics = Arrhenius(A=(0.1578,'cm^3/(mol*s)'), n=4.34, Ea=(128.457,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H2/Cb
""",
@@ -25027,7 +25027,7 @@
kinetics = Arrhenius(A=(0.081,'cm^3/(mol*s)'), n=4.34, Ea=(117.512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CbCs
""",
@@ -25040,7 +25040,7 @@
kinetics = Arrhenius(A=(0.004866,'cm^3/(mol*s)'), n=4.34, Ea=(119.118,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CbCs2
""",
@@ -25053,7 +25053,7 @@
kinetics = Arrhenius(A=(0.0678,'cm^3/(mol*s)'), n=4.34, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_pri_rad
""",
@@ -25066,7 +25066,7 @@
kinetics = Arrhenius(A=(0.0468,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_rad/NonDeC
""",
@@ -25079,7 +25079,7 @@
kinetics = Arrhenius(A=(0.03132,'cm^3/(mol*s)'), n=4.34, Ea=(65.6888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_rad/Cd
""",
@@ -25092,7 +25092,7 @@
kinetics = Arrhenius(A=(0.1926,'cm^3/(mol*s)'), n=4.34, Ea=(108.24,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_Cdd_rad/H
""",
@@ -25105,7 +25105,7 @@
kinetics = Arrhenius(A=(0.02514,'cm^3/(mol*s)'), n=4.34, Ea=(109.621,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H2/S
""",
@@ -25118,7 +25118,7 @@
kinetics = Arrhenius(A=(0.0858,'cm^3/(mol*s)'), n=4.34, Ea=(97.7382,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CsS
""",
@@ -25131,7 +25131,7 @@
kinetics = Arrhenius(A=(0.0606,'cm^3/(mol*s)'), n=4.34, Ea=(87.6548,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/Cs2S
""",
@@ -25144,7 +25144,7 @@
kinetics = Arrhenius(A=(0.2058,'cm^3/(mol*s)'), n=4.34, Ea=(120.918,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H2/CS
""",
@@ -25157,7 +25157,7 @@
kinetics = Arrhenius(A=(0.3906,'cm^3/(mol*s)'), n=4.34, Ea=(133.051,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CSCs
""",
@@ -25170,7 +25170,7 @@
kinetics = Arrhenius(A=(0.2196,'cm^3/(mol*s)'), n=4.34, Ea=(143.093,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CSCs2
""",
@@ -25183,7 +25183,7 @@
kinetics = Arrhenius(A=(0.162,'cm^3/(mol*s)'), n=4.34, Ea=(42.2584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_rad/NonDeS
""",
@@ -25196,7 +25196,7 @@
kinetics = Arrhenius(A=(0.2712,'cm^3/(mol*s)'), n=4.34, Ea=(97.9056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_rad/CS
""",
@@ -25209,7 +25209,7 @@
kinetics = Arrhenius(A=(0.4068,'cm^3/(mol*s)'), n=4.34, Ea=(144.097,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CdS
""",
@@ -25222,7 +25222,7 @@
kinetics = Arrhenius(A=(0.0636,'cm^3/(mol*s)'), n=4.34, Ea=(139.62,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CdCsS
""",
@@ -25235,7 +25235,7 @@
kinetics = Arrhenius(A=(3.204,'cm^3/(mol*s)'), n=4.34, Ea=(192.087,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CSS
""",
@@ -25248,7 +25248,7 @@
kinetics = Arrhenius(A=(1.038,'cm^3/(mol*s)'), n=4.34, Ea=(190.832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CSCsS
""",
@@ -25261,7 +25261,7 @@
kinetics = Arrhenius(A=(0.2064,'cm^3/(mol*s)'), n=4.34, Ea=(127.612,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CtS
""",
@@ -25274,7 +25274,7 @@
kinetics = Arrhenius(A=(0.099,'cm^3/(mol*s)'), n=4.34, Ea=(123.01,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CtCsS
""",
@@ -25287,7 +25287,7 @@
kinetics = Arrhenius(A=(0.0978,'cm^3/(mol*s)'), n=4.34, Ea=(131.587,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/H/CbS
""",
@@ -25300,7 +25300,7 @@
kinetics = Arrhenius(A=(0.0429,'cm^3/(mol*s)'), n=4.34, Ea=(120.708,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;C_rad/CbCsS
""",
@@ -25313,7 +25313,7 @@
kinetics = Arrhenius(A=(0.234,'cm^3/(mol*s)'), n=4.34, Ea=(82.0064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;CS_pri_rad
""",
@@ -25326,7 +25326,7 @@
kinetics = Arrhenius(A=(0.1818,'cm^3/(mol*s)'), n=4.34, Ea=(80.7512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;CS_rad/Cs
""",
@@ -25339,7 +25339,7 @@
kinetics = Arrhenius(A=(0.2784,'cm^3/(mol*s)'), n=4.34, Ea=(91.6296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;CS_rad/S
""",
@@ -25352,7 +25352,7 @@
kinetics = Arrhenius(A=(0.0978,'cm^3/(mol*s)'), n=4.34, Ea=(92.8848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;CS_rad/Cd
""",
@@ -25365,7 +25365,7 @@
kinetics = Arrhenius(A=(0.2742,'cm^3/(mol*s)'), n=4.34, Ea=(107.947,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;CS_rad/Ct
""",
@@ -25378,7 +25378,7 @@
kinetics = Arrhenius(A=(0.00738,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cd_rad/Ct
""",
@@ -25391,7 +25391,7 @@
kinetics = Arrhenius(A=(6.52,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;H_rad
""",
@@ -25404,7 +25404,7 @@
kinetics = Arrhenius(A=(0.00698,'cm^3/(mol*s)'), n=4.34, Ea=(79.6215,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_methyl
""",
@@ -25417,7 +25417,7 @@
kinetics = Arrhenius(A=(0.0012,'cm^3/(mol*s)'), n=4.34, Ea=(62.9274,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/Cs
""",
@@ -25430,7 +25430,7 @@
kinetics = Arrhenius(A=(0.00169,'cm^3/(mol*s)'), n=4.34, Ea=(51.9653,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/NonDeC
""",
@@ -25443,7 +25443,7 @@
kinetics = Arrhenius(A=(0.00207,'cm^3/(mol*s)'), n=4.34, Ea=(47.4466,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/Cs3
""",
@@ -25456,7 +25456,7 @@
kinetics = Arrhenius(A=(0.0378,'cm^3/(mol*s)'), n=4.34, Ea=(116.901,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/Cd
""",
@@ -25469,7 +25469,7 @@
kinetics = Arrhenius(A=(0.0143,'cm^3/(mol*s)'), n=4.34, Ea=(105.018,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CdCs
""",
@@ -25482,7 +25482,7 @@
kinetics = Arrhenius(A=(0.00271,'cm^3/(mol*s)'), n=4.34, Ea=(100.5,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CdCs2
""",
@@ -25495,7 +25495,7 @@
kinetics = Arrhenius(A=(0.057,'cm^3/(mol*s)'), n=4.34, Ea=(143.218,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CdCd
""",
@@ -25508,7 +25508,7 @@
kinetics = Arrhenius(A=(0.00312,'cm^3/(mol*s)'), n=4.34, Ea=(122.173,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CdCdCs
""",
@@ -25521,7 +25521,7 @@
kinetics = Arrhenius(A=(0.00965,'cm^3/(mol*s)'), n=4.34, Ea=(111.88,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/Ct
""",
@@ -25534,7 +25534,7 @@
kinetics = Arrhenius(A=(0.00388,'cm^3/(mol*s)'), n=4.34, Ea=(99.0353,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CtCs
""",
@@ -25547,7 +25547,7 @@
kinetics = Arrhenius(A=(0.00178,'cm^3/(mol*s)'), n=4.34, Ea=(96.9014,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CtCs2
""",
@@ -25560,7 +25560,7 @@
kinetics = Arrhenius(A=(0.0173,'cm^3/(mol*s)'), n=4.34, Ea=(96.232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CtCt
""",
@@ -25573,7 +25573,7 @@
kinetics = Arrhenius(A=(0.000851,'cm^3/(mol*s)'), n=4.34, Ea=(100.834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CtCtCs
""",
@@ -25586,7 +25586,7 @@
kinetics = Arrhenius(A=(0.0175,'cm^3/(mol*s)'), n=4.34, Ea=(106.073,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/Cb
""",
@@ -25599,7 +25599,7 @@
kinetics = Arrhenius(A=(0.00901,'cm^3/(mol*s)'), n=4.34, Ea=(95.1274,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CbCs
""",
@@ -25612,7 +25612,7 @@
kinetics = Arrhenius(A=(0.00054,'cm^3/(mol*s)'), n=4.34, Ea=(96.7341,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CbCs2
""",
@@ -25625,7 +25625,7 @@
kinetics = Arrhenius(A=(0.00753,'cm^3/(mol*s)'), n=4.34, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_pri_rad
""",
@@ -25638,7 +25638,7 @@
kinetics = Arrhenius(A=(0.00519,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_rad/NonDeC
""",
@@ -25651,7 +25651,7 @@
kinetics = Arrhenius(A=(0.00347,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_rad/Cd
""",
@@ -25664,7 +25664,7 @@
kinetics = Arrhenius(A=(0.00958,'cm^3/(mol*s)'), n=4.34, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cb_rad
""",
@@ -25677,7 +25677,7 @@
kinetics = Arrhenius(A=(0.0214,'cm^3/(mol*s)'), n=4.34, Ea=(85.8557,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_Cdd_rad/H
""",
@@ -25690,7 +25690,7 @@
kinetics = Arrhenius(A=(0.1548,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_methyl
""",
@@ -25703,7 +25703,7 @@
kinetics = Arrhenius(A=(0.00279,'cm^3/(mol*s)'), n=4.34, Ea=(87.2364,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/S
""",
@@ -25716,7 +25716,7 @@
kinetics = Arrhenius(A=(0.0218,'cm^3/(mol*s)'), n=4.34, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/Cs
""",
@@ -25729,7 +25729,7 @@
kinetics = Arrhenius(A=(0.00955,'cm^3/(mol*s)'), n=4.34, Ea=(75.3538,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CsS
""",
@@ -25742,7 +25742,7 @@
kinetics = Arrhenius(A=(0.02524,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/NonDeC
""",
@@ -25755,7 +25755,7 @@
kinetics = Arrhenius(A=(0.00675,'cm^3/(mol*s)'), n=4.34, Ea=(65.2704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/Cs2S
""",
@@ -25768,7 +25768,7 @@
kinetics = Arrhenius(A=(0.0254,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/Cs3
""",
@@ -25781,7 +25781,7 @@
kinetics = Arrhenius(A=(0.0228,'cm^3/(mol*s)'), n=4.34, Ea=(92.8848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H2/CS
""",
@@ -25794,7 +25794,7 @@
kinetics = Arrhenius(A=(0.2176,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/Cd
""",
@@ -25807,7 +25807,7 @@
kinetics = Arrhenius(A=(0.0433,'cm^3/(mol*s)'), n=4.34, Ea=(105.018,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CSCs
""",
@@ -25820,7 +25820,7 @@
kinetics = Arrhenius(A=(0.0676,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CdCs
""",
@@ -25833,7 +25833,7 @@
kinetics = Arrhenius(A=(0.0243,'cm^3/(mol*s)'), n=4.34, Ea=(115.478,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CSCs2
""",
@@ -25846,7 +25846,7 @@
kinetics = Arrhenius(A=(0.01052,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CdCs2
""",
@@ -25859,7 +25859,7 @@
kinetics = Arrhenius(A=(0.0179,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_rad/NonDeS
""",
@@ -25872,7 +25872,7 @@
kinetics = Arrhenius(A=(0.0852,'cm^3/(mol*s)'), n=4.34, Ea=(86.1904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CdCd
""",
@@ -25885,7 +25885,7 @@
kinetics = Arrhenius(A=(0.0301,'cm^3/(mol*s)'), n=4.34, Ea=(69.8728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;Cd_rad/CS
""",
@@ -25898,7 +25898,7 @@
kinetics = Arrhenius(A=(0.003812,'cm^3/(mol*s)'), n=4.34, Ea=(83.68,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CdCdCs
""",
@@ -25911,7 +25911,7 @@
kinetics = Arrhenius(A=(0.0452,'cm^3/(mol*s)'), n=4.34, Ea=(121.713,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CdS
""",
@@ -25924,7 +25924,7 @@
kinetics = Arrhenius(A=(0.0556,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/Ct
""",
@@ -25937,7 +25937,7 @@
kinetics = Arrhenius(A=(0.00708,'cm^3/(mol*s)'), n=4.34, Ea=(117.236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CdCsS
""",
@@ -25950,7 +25950,7 @@
kinetics = Arrhenius(A=(0.01828,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CtCs
""",
@@ -25963,7 +25963,7 @@
kinetics = Arrhenius(A=(0.355,'cm^3/(mol*s)'), n=4.34, Ea=(169.703,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CSS
""",
@@ -25976,7 +25976,7 @@
kinetics = Arrhenius(A=(0.00688,'cm^3/(mol*s)'), n=4.34, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CtCs2
""",
@@ -25989,7 +25989,7 @@
kinetics = Arrhenius(A=(0.115,'cm^3/(mol*s)'), n=4.34, Ea=(168.448,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CSCsS
""",
@@ -26002,7 +26002,7 @@
kinetics = Arrhenius(A=(0.02584,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CtCt
""",
@@ -26015,7 +26015,7 @@
kinetics = Arrhenius(A=(0.0229,'cm^3/(mol*s)'), n=4.34, Ea=(105.228,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CtS
""",
@@ -26028,7 +26028,7 @@
kinetics = Arrhenius(A=(0.00104,'cm^3/(mol*s)'), n=4.34, Ea=(61.9232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CtCtCs
""",
@@ -26041,7 +26041,7 @@
kinetics = Arrhenius(A=(0.011,'cm^3/(mol*s)'), n=4.34, Ea=(100.625,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CtCsS
""",
@@ -26054,7 +26054,7 @@
kinetics = Arrhenius(A=(0.1008,'cm^3/(mol*s)'), n=4.34, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/Cb
""",
@@ -26067,7 +26067,7 @@
kinetics = Arrhenius(A=(0.0108,'cm^3/(mol*s)'), n=4.34, Ea=(109.202,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/H/CbS
""",
@@ -26080,7 +26080,7 @@
kinetics = Arrhenius(A=(0.0424,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CbCs
""",
@@ -26093,7 +26093,7 @@
kinetics = Arrhenius(A=(0.00476,'cm^3/(mol*s)'), n=4.34, Ea=(98.324,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;C_rad/CbCsS
""",
@@ -26106,7 +26106,7 @@
kinetics = Arrhenius(A=(0.002088,'cm^3/(mol*s)'), n=4.34, Ea=(44.3504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CbCs2
""",
@@ -26119,7 +26119,7 @@
kinetics = Arrhenius(A=(0.0259,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;CS_pri_rad
""",
@@ -26132,7 +26132,7 @@
kinetics = Arrhenius(A=(0.1668,'cm^3/(mol*s)'), n=4.34, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_pri_rad
""",
@@ -26145,7 +26145,7 @@
kinetics = Arrhenius(A=(0.0202,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;CS_rad/Cs
""",
@@ -26158,7 +26158,7 @@
kinetics = Arrhenius(A=(0.0944,'cm^3/(mol*s)'), n=4.34, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_rad/NonDeC
""",
@@ -26171,7 +26171,7 @@
kinetics = Arrhenius(A=(0.0309,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;CS_rad/S
""",
@@ -26184,7 +26184,7 @@
kinetics = Arrhenius(A=(0.0772,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_rad/Cd
""",
@@ -26197,7 +26197,7 @@
kinetics = Arrhenius(A=(0.0109,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;CS_rad/Cd
""",
@@ -26210,7 +26210,7 @@
kinetics = Arrhenius(A=(0.2124,'cm^3/(mol*s)'), n=4.34, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cb_rad
""",
@@ -26223,7 +26223,7 @@
kinetics = Arrhenius(A=(0.0304,'cm^3/(mol*s)'), n=4.34, Ea=(79.9144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;CS_rad/Ct
""",
@@ -26236,7 +26236,7 @@
kinetics = Arrhenius(A=(0.1668,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;H_rad
""",
@@ -26249,7 +26249,7 @@
kinetics = Arrhenius(A=(0.01808,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_rad/Ct
""",
@@ -26262,7 +26262,7 @@
kinetics = Arrhenius(A=(0.00396,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_methyl
""",
@@ -26275,7 +26275,7 @@
kinetics = Arrhenius(A=(0.0488,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/S
""",
@@ -26288,7 +26288,7 @@
kinetics = Arrhenius(A=(0.000654,'cm^3/(mol*s)'), n=4.34, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H2/Cs
""",
@@ -26301,7 +26301,7 @@
kinetics = Arrhenius(A=(0.1372,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CsS
""",
@@ -26314,7 +26314,7 @@
kinetics = Arrhenius(A=(0.000888,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/NonDeC
""",
@@ -26327,7 +26327,7 @@
kinetics = Arrhenius(A=(0.0796,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/Cs2S
""",
@@ -26340,7 +26340,7 @@
kinetics = Arrhenius(A=(0.00105,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/Cs3
""",
@@ -26353,7 +26353,7 @@
kinetics = Arrhenius(A=(0.078,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H2/CS
""",
@@ -26366,7 +26366,7 @@
kinetics = Arrhenius(A=(0.01692,'cm^3/(mol*s)'), n=4.34, Ea=(65.6888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H2/Cd
""",
@@ -26379,7 +26379,7 @@
kinetics = Arrhenius(A=(0.1216,'cm^3/(mol*s)'), n=4.34, Ea=(72.3832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CSCs
""",
@@ -26392,7 +26392,7 @@
kinetics = Arrhenius(A=(0.00618,'cm^3/(mol*s)'), n=4.34, Ea=(69.8728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CdCs
""",
@@ -26405,7 +26405,7 @@
kinetics = Arrhenius(A=(0.056,'cm^3/(mol*s)'), n=4.34, Ea=(77.8224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CSCs2
""",
@@ -26418,7 +26418,7 @@
kinetics = Arrhenius(A=(0.001128,'cm^3/(mol*s)'), n=4.34, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CdCs2
""",
@@ -26431,7 +26431,7 @@
kinetics = Arrhenius(A=(0.0616,'cm^3/(mol*s)'), n=4.34, Ea=(-13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_rad/NonDeS
""",
@@ -26444,7 +26444,7 @@
kinetics = Arrhenius(A=(0.02019,'cm^3/(mol*s)'), n=4.34, Ea=(95.8136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CdCd
""",
@@ -26457,7 +26457,7 @@
kinetics = Arrhenius(A=(0.668,'cm^3/(mol*s)'), n=4.34, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;Cd_rad/CS
""",
@@ -26470,7 +26470,7 @@
kinetics = Arrhenius(A=(0.001065,'cm^3/(mol*s)'), n=4.34, Ea=(94.9768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CdCdCs
""",
@@ -26483,7 +26483,7 @@
kinetics = Arrhenius(A=(0.2056,'cm^3/(mol*s)'), n=4.34, Ea=(64.0152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CdS
""",
@@ -26496,7 +26496,7 @@
kinetics = Arrhenius(A=(0.00432,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H2/Ct
""",
@@ -26509,7 +26509,7 @@
kinetics = Arrhenius(A=(0.0264,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CdCsS
""",
@@ -26522,7 +26522,7 @@
kinetics = Arrhenius(A=(0.001674,'cm^3/(mol*s)'), n=4.34, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CtCs
""",
@@ -26535,7 +26535,7 @@
kinetics = Arrhenius(A=(0.964,'cm^3/(mol*s)'), n=4.34, Ea=(93.3032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CSS
""",
@@ -26548,7 +26548,7 @@
kinetics = Arrhenius(A=(0.000741,'cm^3/(mol*s)'), n=4.34, Ea=(53.5552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CtCs2
""",
@@ -26561,7 +26561,7 @@
kinetics = Arrhenius(A=(0.2556,'cm^3/(mol*s)'), n=4.34, Ea=(94.5584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CSCsS
""",
@@ -26574,7 +26574,7 @@
kinetics = Arrhenius(A=(0.00612,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CtCt
""",
@@ -26587,7 +26587,7 @@
kinetics = Arrhenius(A=(0.1044,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CtS
""",
@@ -26600,7 +26600,7 @@
kinetics = Arrhenius(A=(0.0002907,'cm^3/(mol*s)'), n=4.34, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CtCtCs
""",
@@ -26613,7 +26613,7 @@
kinetics = Arrhenius(A=(0.0412,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CtCsS
""",
@@ -26626,7 +26626,7 @@
kinetics = Arrhenius(A=(0.00786,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H2/Cb
""",
@@ -26639,7 +26639,7 @@
kinetics = Arrhenius(A=(0.0492,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/H/CbS
""",
@@ -26652,7 +26652,7 @@
kinetics = Arrhenius(A=(0.0039,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CbCs
""",
@@ -26665,7 +26665,7 @@
kinetics = Arrhenius(A=(0.01776,'cm^3/(mol*s)'), n=4.34, Ea=(46.4424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;C_rad/CbCsS
""",
@@ -26678,7 +26678,7 @@
kinetics = Arrhenius(A=(0.0002244,'cm^3/(mol*s)'), n=4.34, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CbCs2
""",
@@ -26691,7 +26691,7 @@
kinetics = Arrhenius(A=(0.576,'cm^3/(mol*s)'), n=4.34, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;CS_pri_rad
""",
@@ -26704,7 +26704,7 @@
kinetics = Arrhenius(A=(0.00426,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_pri_rad
""",
@@ -26717,7 +26717,7 @@
kinetics = Arrhenius(A=(0.3672,'cm^3/(mol*s)'), n=4.34, Ea=(46.8608,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;CS_rad/Cs
""",
@@ -26730,7 +26730,7 @@
kinetics = Arrhenius(A=(0.002832,'cm^3/(mol*s)'), n=4.34, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_rad/NonDeC
""",
@@ -26743,7 +26743,7 @@
kinetics = Arrhenius(A=(0.544,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;CS_rad/S
""",
@@ -26756,7 +26756,7 @@
kinetics = Arrhenius(A=(0.001968,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_rad/Cd
""",
@@ -26769,7 +26769,7 @@
kinetics = Arrhenius(A=(0.2412,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;CS_rad/Cd
""",
@@ -26782,7 +26782,7 @@
kinetics = Arrhenius(A=(0.00543,'cm^3/(mol*s)'), n=4.34, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cb_rad
""",
@@ -26795,7 +26795,7 @@
kinetics = Arrhenius(A=(0.676,'cm^3/(mol*s)'), n=4.34, Ea=(78.6592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd_Cdd/H2;CS_rad/Ct
""",
@@ -26808,7 +26808,7 @@
kinetics = Arrhenius(A=(0.00957,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_Cdd_rad/H
""",
@@ -26821,7 +26821,7 @@
kinetics = Arrhenius(A=(0.295,'cm^3/(mol*s)'), n=4.34, Ea=(18.1586,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/Ct;H_rad
""",
@@ -26834,7 +26834,7 @@
kinetics = Arrhenius(A=(0.001371,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CsS
""",
@@ -26847,7 +26847,7 @@
kinetics = Arrhenius(A=(0.000933,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/Cs2S
""",
@@ -26860,7 +26860,7 @@
kinetics = Arrhenius(A=(0.00309,'cm^3/(mol*s)'), n=4.34, Ea=(75.7304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H2/CS
""",
@@ -26873,7 +26873,7 @@
kinetics = Arrhenius(A=(0.00564,'cm^3/(mol*s)'), n=4.34, Ea=(84.9352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CSCs
""",
@@ -26886,7 +26886,7 @@
kinetics = Arrhenius(A=(0.00306,'cm^3/(mol*s)'), n=4.34, Ea=(92.048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CSCs2
""",
@@ -26899,7 +26899,7 @@
kinetics = Arrhenius(A=(0.002421,'cm^3/(mol*s)'), n=4.34, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_rad/NonDeS
""",
@@ -26912,7 +26912,7 @@
kinetics = Arrhenius(A=(0.01704,'cm^3/(mol*s)'), n=4.34, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_rad/CS
""",
@@ -26925,7 +26925,7 @@
kinetics = Arrhenius(A=(0.00531,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CdS
""",
@@ -26938,7 +26938,7 @@
kinetics = Arrhenius(A=(0.000804,'cm^3/(mol*s)'), n=4.34, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CdCsS
""",
@@ -26951,7 +26951,7 @@
kinetics = Arrhenius(A=(0.0126,'cm^3/(mol*s)'), n=4.34, Ea=(107.11,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CSS
""",
@@ -26964,7 +26964,7 @@
kinetics = Arrhenius(A=(0.00393,'cm^3/(mol*s)'), n=4.34, Ea=(110.039,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CSCsS
""",
@@ -26977,7 +26977,7 @@
kinetics = Arrhenius(A=(0.002697,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CtS
""",
@@ -26990,7 +26990,7 @@
kinetics = Arrhenius(A=(0.001248,'cm^3/(mol*s)'), n=4.34, Ea=(64.0152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CtCsS
""",
@@ -27003,7 +27003,7 @@
kinetics = Arrhenius(A=(0.001275,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/H/CbS
""",
@@ -27016,7 +27016,7 @@
kinetics = Arrhenius(A=(0.00054,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;C_rad/CbCsS
""",
@@ -27029,7 +27029,7 @@
kinetics = Arrhenius(A=(0.01467,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;CS_pri_rad
""",
@@ -27042,7 +27042,7 @@
kinetics = Arrhenius(A=(0.01101,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;CS_rad/Cs
""",
@@ -27055,7 +27055,7 @@
kinetics = Arrhenius(A=(0.00459,'cm^3/(mol*s)'), n=4.34, Ea=(53.5552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;CS_rad/S
""",
@@ -27068,7 +27068,7 @@
kinetics = Arrhenius(A=(0.00615,'cm^3/(mol*s)'), n=4.34, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;CS_rad/Cd
""",
@@ -27081,7 +27081,7 @@
kinetics = Arrhenius(A=(0.01722,'cm^3/(mol*s)'), n=4.34, Ea=(79.0776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;CS_rad/Ct
""",
@@ -27094,7 +27094,7 @@
kinetics = Arrhenius(A=(0.262,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;H_rad
""",
@@ -27107,7 +27107,7 @@
kinetics = Arrhenius(A=(0.00618,'cm^3/(mol*s)'), n=4.34, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_methyl
""",
@@ -27120,7 +27120,7 @@
kinetics = Arrhenius(A=(0.000836,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/Cs
""",
@@ -27133,7 +27133,7 @@
kinetics = Arrhenius(A=(0.000928,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/NonDeC
""",
@@ -27146,7 +27146,7 @@
kinetics = Arrhenius(A=(0.000896,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/Cs3
""",
@@ -27159,7 +27159,7 @@
kinetics = Arrhenius(A=(0.02176,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/Cd
""",
@@ -27172,7 +27172,7 @@
kinetics = Arrhenius(A=(0.00646,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CdCs
""",
@@ -27185,7 +27185,7 @@
kinetics = Arrhenius(A=(0.000966,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CdCs2
""",
@@ -27198,7 +27198,7 @@
kinetics = Arrhenius(A=(0.0212,'cm^3/(mol*s)'), n=4.34, Ea=(80.7512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CdCd
""",
@@ -27211,7 +27211,7 @@
kinetics = Arrhenius(A=(0.000916,'cm^3/(mol*s)'), n=4.34, Ea=(78.6592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CdCdCs
""",
@@ -27224,7 +27224,7 @@
kinetics = Arrhenius(A=(0.00554,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/Ct
""",
@@ -27237,7 +27237,7 @@
kinetics = Arrhenius(A=(0.001754,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CtCs
""",
@@ -27250,7 +27250,7 @@
kinetics = Arrhenius(A=(0.000634,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CtCs2
""",
@@ -27263,7 +27263,7 @@
kinetics = Arrhenius(A=(0.00646,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CtCt
""",
@@ -27276,7 +27276,7 @@
kinetics = Arrhenius(A=(0.00025,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CtCtCs
""",
@@ -27289,7 +27289,7 @@
kinetics = Arrhenius(A=(0.01008,'cm^3/(mol*s)'), n=4.34, Ea=(46.024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/Cb
""",
@@ -27302,7 +27302,7 @@
kinetics = Arrhenius(A=(0.00408,'cm^3/(mol*s)'), n=4.34, Ea=(46.024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CbCs
""",
@@ -27315,7 +27315,7 @@
kinetics = Arrhenius(A=(0.0001922,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CbCs2
""",
@@ -27328,7 +27328,7 @@
kinetics = Arrhenius(A=(0.00666,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_pri_rad
""",
@@ -27341,7 +27341,7 @@
kinetics = Arrhenius(A=(0.00362,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_rad/NonDeC
""",
@@ -27354,7 +27354,7 @@
kinetics = Arrhenius(A=(0.00308,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_rad/Cd
""",
@@ -27367,7 +27367,7 @@
kinetics = Arrhenius(A=(0.00848,'cm^3/(mol*s)'), n=4.34, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cb_rad
""",
@@ -27380,7 +27380,7 @@
kinetics = Arrhenius(A=(0.0123,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_Cdd_rad/H
""",
@@ -27393,7 +27393,7 @@
kinetics = Arrhenius(A=(0.000626,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/S
""",
@@ -27406,7 +27406,7 @@
kinetics = Arrhenius(A=(0.00094,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/Cs2S
""",
@@ -27419,7 +27419,7 @@
kinetics = Arrhenius(A=(0.0033,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H2/CS
""",
@@ -27432,7 +27432,7 @@
kinetics = Arrhenius(A=(0.00492,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CSCs
""",
@@ -27445,7 +27445,7 @@
kinetics = Arrhenius(A=(0.00218,'cm^3/(mol*s)'), n=4.34, Ea=(77.404,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CSCs2
""",
@@ -27458,7 +27458,7 @@
kinetics = Arrhenius(A=(0.0026,'cm^3/(mol*s)'), n=4.34, Ea=(-15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_rad/NonDeS
""",
@@ -27471,7 +27471,7 @@
kinetics = Arrhenius(A=(0.0266,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_rad/CS
""",
@@ -27484,7 +27484,7 @@
kinetics = Arrhenius(A=(0.00658,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CdS
""",
@@ -27497,7 +27497,7 @@
kinetics = Arrhenius(A=(0.000812,'cm^3/(mol*s)'), n=4.34, Ea=(54.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CdCsS
""",
@@ -27510,7 +27510,7 @@
kinetics = Arrhenius(A=(0.013,'cm^3/(mol*s)'), n=4.34, Ea=(94.3492,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CSS
""",
@@ -27523,7 +27523,7 @@
kinetics = Arrhenius(A=(0.00332,'cm^3/(mol*s)'), n=4.34, Ea=(93.3032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CSCsS
""",
@@ -27536,7 +27536,7 @@
kinetics = Arrhenius(A=(0.00334,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CtS
""",
@@ -27549,7 +27549,7 @@
kinetics = Arrhenius(A=(0.00126,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CtCsS
""",
@@ -27562,7 +27562,7 @@
kinetics = Arrhenius(A=(0.001576,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/H/CbS
""",
@@ -27575,7 +27575,7 @@
kinetics = Arrhenius(A=(0.000546,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;C_rad/CbCsS
""",
@@ -27588,7 +27588,7 @@
kinetics = Arrhenius(A=(0.023,'cm^3/(mol*s)'), n=4.34, Ea=(46.4424,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;CS_pri_rad
""",
@@ -27601,7 +27601,7 @@
kinetics = Arrhenius(A=(0.01406,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;CS_rad/Cs
""",
@@ -27614,7 +27614,7 @@
kinetics = Arrhenius(A=(0.00694,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;CS_rad/S
""",
@@ -27627,7 +27627,7 @@
kinetics = Arrhenius(A=(0.00962,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;CS_rad/Cd
""",
@@ -27640,7 +27640,7 @@
kinetics = Arrhenius(A=(0.027,'cm^3/(mol*s)'), n=4.34, Ea=(72.8016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;CS_rad/Ct
""",
@@ -27653,7 +27653,7 @@
kinetics = Arrhenius(A=(0.0699,'cm^3/(mol*s)'), n=4.34, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;H_rad
""",
@@ -27666,7 +27666,7 @@
kinetics = Arrhenius(A=(0.00166,'cm^3/(mol*s)'), n=4.34, Ea=(14.3511,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_methyl
""",
@@ -27679,7 +27679,7 @@
kinetics = Arrhenius(A=(0.000183,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/Cs
""",
@@ -27692,7 +27692,7 @@
kinetics = Arrhenius(A=(0.000462,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/S;Cd_rad/Ct
""",
@@ -27705,7 +27705,7 @@
kinetics = Arrhenius(A=(0.000166,'cm^3/(mol*s)'), n=4.34, Ea=(11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/NonDeC
""",
@@ -27718,7 +27718,7 @@
kinetics = Arrhenius(A=(0.000131,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/Cs3
""",
@@ -27731,7 +27731,7 @@
kinetics = Arrhenius(A=(0.00478,'cm^3/(mol*s)'), n=4.34, Ea=(51.6306,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/Cd
""",
@@ -27744,7 +27744,7 @@
kinetics = Arrhenius(A=(0.00116,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CdCs
""",
@@ -27757,7 +27757,7 @@
kinetics = Arrhenius(A=(0.000142,'cm^3/(mol*s)'), n=4.34, Ea=(44.3504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CdCs2
""",
@@ -27770,7 +27770,7 @@
kinetics = Arrhenius(A=(0.00383,'cm^3/(mol*s)'), n=4.34, Ea=(77.9479,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CdCd
""",
@@ -27783,7 +27783,7 @@
kinetics = Arrhenius(A=(0.000135,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CdCdCs
""",
@@ -27796,7 +27796,7 @@
kinetics = Arrhenius(A=(0.00122,'cm^3/(mol*s)'), n=4.34, Ea=(46.6098,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/Ct
""",
@@ -27809,7 +27809,7 @@
kinetics = Arrhenius(A=(0.000315,'cm^3/(mol*s)'), n=4.34, Ea=(33.7649,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CtCs
""",
@@ -27822,7 +27822,7 @@
kinetics = Arrhenius(A=(9.28e-05,'cm^3/(mol*s)'), n=4.34, Ea=(31.631,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CtCs2
""",
@@ -27835,7 +27835,7 @@
kinetics = Arrhenius(A=(0.00116,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CtCt
""",
@@ -27848,7 +27848,7 @@
kinetics = Arrhenius(A=(3.68e-05,'cm^3/(mol*s)'), n=4.34, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CtCtCs
""",
@@ -27861,7 +27861,7 @@
kinetics = Arrhenius(A=(0.00221,'cm^3/(mol*s)'), n=4.34, Ea=(40.8024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/Cb
""",
@@ -27874,7 +27874,7 @@
kinetics = Arrhenius(A=(0.000732,'cm^3/(mol*s)'), n=4.34, Ea=(34.3088,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CbCs
""",
@@ -27887,7 +27887,7 @@
kinetics = Arrhenius(A=(2.82e-05,'cm^3/(mol*s)'), n=4.34, Ea=(31.4637,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CbCs2
""",
@@ -27900,7 +27900,7 @@
kinetics = Arrhenius(A=(0.00179,'cm^3/(mol*s)'), n=4.34, Ea=(-7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_pri_rad
""",
@@ -27913,7 +27913,7 @@
kinetics = Arrhenius(A=(0.000791,'cm^3/(mol*s)'), n=4.34, Ea=(-8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_rad/NonDeC
""",
@@ -27926,7 +27926,7 @@
kinetics = Arrhenius(A=(0.000824,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_rad/Cd
""",
@@ -27939,7 +27939,7 @@
kinetics = Arrhenius(A=(0.00227,'cm^3/(mol*s)'), n=4.34, Ea=(-19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cb_rad
""",
@@ -27952,7 +27952,7 @@
kinetics = Arrhenius(A=(0.0027,'cm^3/(mol*s)'), n=4.34, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_Cdd_rad/H
""",
@@ -27965,7 +27965,7 @@
kinetics = Arrhenius(A=(0.000162,'cm^3/(mol*s)'), n=4.34, Ea=(21.966,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/S
""",
@@ -27978,7 +27978,7 @@
kinetics = Arrhenius(A=(0.000356,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CsS
""",
@@ -27991,7 +27991,7 @@
kinetics = Arrhenius(A=(0.000603,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H2/CS
""",
@@ -28004,7 +28004,7 @@
kinetics = Arrhenius(A=(0.000736,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CSCs
""",
@@ -28017,7 +28017,7 @@
kinetics = Arrhenius(A=(0.000266,'cm^3/(mol*s)'), n=4.34, Ea=(63.1784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CSCs2
""",
@@ -28030,7 +28030,7 @@
kinetics = Arrhenius(A=(0.000474,'cm^3/(mol*s)'), n=4.34, Ea=(-28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_rad/NonDeS
""",
@@ -28043,7 +28043,7 @@
kinetics = Arrhenius(A=(0.00713,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_rad/CS
""",
@@ -28056,7 +28056,7 @@
kinetics = Arrhenius(A=(0.00139,'cm^3/(mol*s)'), n=4.34, Ea=(56.4422,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CdS
""",
@@ -28069,7 +28069,7 @@
kinetics = Arrhenius(A=(0.00014,'cm^3/(mol*s)'), n=4.34, Ea=(51.9653,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CdCsS
""",
@@ -28082,7 +28082,7 @@
kinetics = Arrhenius(A=(0.00229,'cm^3/(mol*s)'), n=4.34, Ea=(104.433,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CSS
""",
@@ -28095,7 +28095,7 @@
kinetics = Arrhenius(A=(0.000477,'cm^3/(mol*s)'), n=4.34, Ea=(103.177,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CSCsS
""",
@@ -28108,7 +28108,7 @@
kinetics = Arrhenius(A=(0.000707,'cm^3/(mol*s)'), n=4.34, Ea=(39.9572,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CtS
""",
@@ -28121,7 +28121,7 @@
kinetics = Arrhenius(A=(0.000218,'cm^3/(mol*s)'), n=4.34, Ea=(35.3548,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CtCsS
""",
@@ -28134,7 +28134,7 @@
kinetics = Arrhenius(A=(0.000334,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/H/CbS
""",
@@ -28147,7 +28147,7 @@
kinetics = Arrhenius(A=(9.44e-05,'cm^3/(mol*s)'), n=4.34, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;C_rad/CbCsS
""",
@@ -28160,7 +28160,7 @@
kinetics = Arrhenius(A=(0.00615,'cm^3/(mol*s)'), n=4.34, Ea=(40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;CS_pri_rad
""",
@@ -28173,7 +28173,7 @@
kinetics = Arrhenius(A=(0.00308,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;CS_rad/Cs
""",
@@ -28186,7 +28186,7 @@
kinetics = Arrhenius(A=(0.00179,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;CS_rad/S
""",
@@ -28199,7 +28199,7 @@
kinetics = Arrhenius(A=(0.00258,'cm^3/(mol*s)'), n=4.34, Ea=(51.4632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;CS_rad/Cd
""",
@@ -28212,7 +28212,7 @@
kinetics = Arrhenius(A=(0.00721,'cm^3/(mol*s)'), n=4.34, Ea=(66.5256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;CS_rad/Ct
""",
@@ -28225,7 +28225,7 @@
kinetics = Arrhenius(A=(0.417,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;H_rad
""",
@@ -28238,7 +28238,7 @@
kinetics = Arrhenius(A=(0.0099,'cm^3/(mol*s)'), n=4.34, Ea=(16.485,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_methyl
""",
@@ -28251,7 +28251,7 @@
kinetics = Arrhenius(A=(0.001161,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H2/Cs
""",
@@ -28264,7 +28264,7 @@
kinetics = Arrhenius(A=(0.001122,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/NonDeC
""",
@@ -28277,7 +28277,7 @@
kinetics = Arrhenius(A=(0.000722,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CsS;Cd_rad/Ct
""",
@@ -28290,7 +28290,7 @@
kinetics = Arrhenius(A=(0.000939,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/Cs3
""",
@@ -28303,7 +28303,7 @@
kinetics = Arrhenius(A=(0.00828,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H2/Cd
""",
@@ -28316,7 +28316,7 @@
kinetics = Arrhenius(A=(0.002139,'cm^3/(mol*s)'), n=4.34, Ea=(73.6384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CdCs
""",
@@ -28329,7 +28329,7 @@
kinetics = Arrhenius(A=(0.0002778,'cm^3/(mol*s)'), n=4.34, Ea=(75.7304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CdCs2
""",
@@ -28342,7 +28342,7 @@
kinetics = Arrhenius(A=(0.001929,'cm^3/(mol*s)'), n=4.34, Ea=(108.366,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CdCd
""",
@@ -28355,7 +28355,7 @@
kinetics = Arrhenius(A=(7.2e-05,'cm^3/(mol*s)'), n=4.34, Ea=(110.039,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CdCdCs
""",
@@ -28368,7 +28368,7 @@
kinetics = Arrhenius(A=(0.002904,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H2/Ct
""",
@@ -28381,7 +28381,7 @@
kinetics = Arrhenius(A=(0.000798,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CtCs
""",
@@ -28394,7 +28394,7 @@
kinetics = Arrhenius(A=(0.0002502,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CtCs2
""",
@@ -28407,7 +28407,7 @@
kinetics = Arrhenius(A=(0.001104,'cm^3/(mol*s)'), n=4.34, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CtCt
""",
@@ -28420,7 +28420,7 @@
kinetics = Arrhenius(A=(3.72e-05,'cm^3/(mol*s)'), n=4.34, Ea=(88.7008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CtCtCs
""",
@@ -28433,7 +28433,7 @@
kinetics = Arrhenius(A=(0.00384,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H2/Cb
""",
@@ -28446,7 +28446,7 @@
kinetics = Arrhenius(A=(0.00135,'cm^3/(mol*s)'), n=4.34, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CbCs
""",
@@ -28459,7 +28459,7 @@
kinetics = Arrhenius(A=(5.52e-05,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CbCs2
""",
@@ -28472,7 +28472,7 @@
kinetics = Arrhenius(A=(0.01068,'cm^3/(mol*s)'), n=4.34, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_pri_rad
""",
@@ -28485,7 +28485,7 @@
kinetics = Arrhenius(A=(0.00504,'cm^3/(mol*s)'), n=4.34, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_rad/NonDeC
""",
@@ -28498,7 +28498,7 @@
kinetics = Arrhenius(A=(0.00492,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_rad/Cd
""",
@@ -28511,7 +28511,7 @@
kinetics = Arrhenius(A=(0.01359,'cm^3/(mol*s)'), n=4.34, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cb_rad
""",
@@ -28524,7 +28524,7 @@
kinetics = Arrhenius(A=(0.00468,'cm^3/(mol*s)'), n=4.34, Ea=(55.2288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_Cdd_rad/H
""",
@@ -28537,7 +28537,7 @@
kinetics = Arrhenius(A=(0.000945,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H2/S
""",
@@ -28550,7 +28550,7 @@
kinetics = Arrhenius(A=(0.002208,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CsS
""",
@@ -28563,7 +28563,7 @@
kinetics = Arrhenius(A=(0.001068,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/Cs2S
""",
@@ -28576,7 +28576,7 @@
kinetics = Arrhenius(A=(0.01095,'cm^3/(mol*s)'), n=4.34, Ea=(93.3032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CSCs
""",
@@ -28589,7 +28589,7 @@
kinetics = Arrhenius(A=(0.0042,'cm^3/(mol*s)'), n=4.34, Ea=(103.345,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CSCs2
""",
@@ -28602,7 +28602,7 @@
kinetics = Arrhenius(A=(0.00663,'cm^3/(mol*s)'), n=4.34, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_rad/NonDeS
""",
@@ -28615,7 +28615,7 @@
kinetics = Arrhenius(A=(0.0426,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_rad/CS
""",
@@ -28628,7 +28628,7 @@
kinetics = Arrhenius(A=(0.002358,'cm^3/(mol*s)'), n=4.34, Ea=(81.588,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CdS
""",
@@ -28641,7 +28641,7 @@
kinetics = Arrhenius(A=(0.0002526,'cm^3/(mol*s)'), n=4.34, Ea=(81.588,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CdCsS
""",
@@ -28654,7 +28654,7 @@
kinetics = Arrhenius(A=(0.0312,'cm^3/(mol*s)'), n=4.34, Ea=(121.336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CSS
""",
@@ -28667,7 +28667,7 @@
kinetics = Arrhenius(A=(0.00693,'cm^3/(mol*s)'), n=4.34, Ea=(126.775,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CSCsS
""",
@@ -28680,7 +28680,7 @@
kinetics = Arrhenius(A=(0.001644,'cm^3/(mol*s)'), n=4.34, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CtS
""",
@@ -28693,7 +28693,7 @@
kinetics = Arrhenius(A=(0.00054,'cm^3/(mol*s)'), n=4.34, Ea=(76.5672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CtCsS
""",
@@ -28706,7 +28706,7 @@
kinetics = Arrhenius(A=(0.000564,'cm^3/(mol*s)'), n=4.34, Ea=(71.9648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/H/CbS
""",
@@ -28719,7 +28719,7 @@
kinetics = Arrhenius(A=(0.0001701,'cm^3/(mol*s)'), n=4.34, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;C_rad/CbCsS
""",
@@ -28732,7 +28732,7 @@
kinetics = Arrhenius(A=(0.0369,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;CS_pri_rad
""",
@@ -28745,7 +28745,7 @@
kinetics = Arrhenius(A=(0.01956,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;CS_rad/Cs
""",
@@ -28758,7 +28758,7 @@
kinetics = Arrhenius(A=(0.01044,'cm^3/(mol*s)'), n=4.34, Ea=(51.4632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;CS_rad/S
""",
@@ -28771,7 +28771,7 @@
kinetics = Arrhenius(A=(0.01542,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;CS_rad/Cd
""",
@@ -28784,7 +28784,7 @@
kinetics = Arrhenius(A=(0.0432,'cm^3/(mol*s)'), n=4.34, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;CS_rad/Ct
""",
@@ -28797,7 +28797,7 @@
kinetics = Arrhenius(A=(0.396,'cm^3/(mol*s)'), n=4.34, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;H_rad
""",
@@ -28810,7 +28810,7 @@
kinetics = Arrhenius(A=(0.00938,'cm^3/(mol*s)'), n=4.34, Ea=(27.8236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_methyl
""",
@@ -28823,7 +28823,7 @@
kinetics = Arrhenius(A=(0.0009,'cm^3/(mol*s)'), n=4.34, Ea=(11.1294,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/Cs
""",
@@ -28836,7 +28836,7 @@
kinetics = Arrhenius(A=(0.000708,'cm^3/(mol*s)'), n=4.34, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/NonDeC
""",
@@ -28849,7 +28849,7 @@
kinetics = Arrhenius(A=(0.000484,'cm^3/(mol*s)'), n=4.34, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/Cs3
""",
@@ -28862,7 +28862,7 @@
kinetics = Arrhenius(A=(0.000193,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2S;Cd_rad/Ct
""",
@@ -28875,7 +28875,7 @@
kinetics = Arrhenius(A=(0.00644,'cm^3/(mol*s)'), n=4.34, Ea=(65.103,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/Cd
""",
@@ -28888,7 +28888,7 @@
kinetics = Arrhenius(A=(0.001358,'cm^3/(mol*s)'), n=4.34, Ea=(53.2205,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CdCs
""",
@@ -28901,7 +28901,7 @@
kinetics = Arrhenius(A=(0.000144,'cm^3/(mol*s)'), n=4.34, Ea=(48.7018,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CdCs2
""",
@@ -28914,7 +28914,7 @@
kinetics = Arrhenius(A=(0.00123,'cm^3/(mol*s)'), n=4.34, Ea=(91.4204,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CdCd
""",
@@ -28927,7 +28927,7 @@
kinetics = Arrhenius(A=(3.76e-05,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CdCdCs
""",
@@ -28940,7 +28940,7 @@
kinetics = Arrhenius(A=(0.00226,'cm^3/(mol*s)'), n=4.34, Ea=(60.0822,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/Ct
""",
@@ -28953,7 +28953,7 @@
kinetics = Arrhenius(A=(0.000506,'cm^3/(mol*s)'), n=4.34, Ea=(47.2374,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CtCs
""",
@@ -28966,7 +28966,7 @@
kinetics = Arrhenius(A=(0.0001296,'cm^3/(mol*s)'), n=4.34, Ea=(45.1035,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CtCs2
""",
@@ -28979,7 +28979,7 @@
kinetics = Arrhenius(A=(0.000704,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CtCt
""",
@@ -28992,7 +28992,7 @@
kinetics = Arrhenius(A=(1.934e-05,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CtCtCs
""",
@@ -29005,7 +29005,7 @@
kinetics = Arrhenius(A=(0.00298,'cm^3/(mol*s)'), n=4.34, Ea=(54.2748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/Cb
""",
@@ -29018,7 +29018,7 @@
kinetics = Arrhenius(A=(0.000858,'cm^3/(mol*s)'), n=4.34, Ea=(43.3295,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CbCs
""",
@@ -29031,7 +29031,7 @@
kinetics = Arrhenius(A=(2.86e-05,'cm^3/(mol*s)'), n=4.34, Ea=(44.9362,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CbCs2
""",
@@ -29044,7 +29044,7 @@
kinetics = Arrhenius(A=(0.01012,'cm^3/(mol*s)'), n=4.34, Ea=(-11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_pri_rad
""",
@@ -29057,7 +29057,7 @@
kinetics = Arrhenius(A=(0.0039,'cm^3/(mol*s)'), n=4.34, Ea=(-15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_rad/NonDeC
""",
@@ -29070,7 +29070,7 @@
kinetics = Arrhenius(A=(0.00466,'cm^3/(mol*s)'), n=4.34, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_rad/Cd
""",
@@ -29083,7 +29083,7 @@
kinetics = Arrhenius(A=(0.01288,'cm^3/(mol*s)'), n=4.34, Ea=(-23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cb_rad
""",
@@ -29096,7 +29096,7 @@
kinetics = Arrhenius(A=(0.00364,'cm^3/(mol*s)'), n=4.34, Ea=(34.0578,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_Cdd_rad/H
""",
@@ -29109,7 +29109,7 @@
kinetics = Arrhenius(A=(0.000862,'cm^3/(mol*s)'), n=4.34, Ea=(35.4385,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/S
""",
@@ -29122,7 +29122,7 @@
kinetics = Arrhenius(A=(0.001646,'cm^3/(mol*s)'), n=4.34, Ea=(23.5559,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CsS
""",
@@ -29135,7 +29135,7 @@
kinetics = Arrhenius(A=(0.00065,'cm^3/(mol*s)'), n=4.34, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/Cs2S
""",
@@ -29148,7 +29148,7 @@
kinetics = Arrhenius(A=(0.00546,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H2/CS
""",
@@ -29161,7 +29161,7 @@
kinetics = Arrhenius(A=(0.001816,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CSCs2
""",
@@ -29174,7 +29174,7 @@
kinetics = Arrhenius(A=(0.0043,'cm^3/(mol*s)'), n=4.34, Ea=(-42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_rad/NonDeS
""",
@@ -29187,7 +29187,7 @@
kinetics = Arrhenius(A=(0.0404,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_rad/CS
""",
@@ -29200,7 +29200,7 @@
kinetics = Arrhenius(A=(0.001766,'cm^3/(mol*s)'), n=4.34, Ea=(69.9146,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CdS
""",
@@ -29213,7 +29213,7 @@
kinetics = Arrhenius(A=(0.0001546,'cm^3/(mol*s)'), n=4.34, Ea=(65.4378,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CdCsS
""",
@@ -29226,7 +29226,7 @@
kinetics = Arrhenius(A=(0.01954,'cm^3/(mol*s)'), n=4.34, Ea=(117.905,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CSS
""",
@@ -29239,7 +29239,7 @@
kinetics = Arrhenius(A=(0.00354,'cm^3/(mol*s)'), n=4.34, Ea=(116.65,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CSCsS
""",
@@ -29252,7 +29252,7 @@
kinetics = Arrhenius(A=(0.001232,'cm^3/(mol*s)'), n=4.34, Ea=(53.4297,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CtS
""",
@@ -29265,7 +29265,7 @@
kinetics = Arrhenius(A=(0.00033,'cm^3/(mol*s)'), n=4.34, Ea=(48.8273,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CtCsS
""",
@@ -29278,7 +29278,7 @@
kinetics = Arrhenius(A=(0.000424,'cm^3/(mol*s)'), n=4.34, Ea=(57.4045,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/H/CbS
""",
@@ -29291,7 +29291,7 @@
kinetics = Arrhenius(A=(0.000104,'cm^3/(mol*s)'), n=4.34, Ea=(46.5261,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;C_rad/CbCsS
""",
@@ -29304,7 +29304,7 @@
kinetics = Arrhenius(A=(0.0348,'cm^3/(mol*s)'), n=4.34, Ea=(36.4008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;CS_pri_rad
""",
@@ -29317,7 +29317,7 @@
kinetics = Arrhenius(A=(0.01514,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;CS_rad/Cs
""",
@@ -29330,7 +29330,7 @@
kinetics = Arrhenius(A=(0.00954,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;CS_rad/S
""",
@@ -29343,7 +29343,7 @@
kinetics = Arrhenius(A=(0.0146,'cm^3/(mol*s)'), n=4.34, Ea=(47.6976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;CS_rad/Cd
""",
@@ -29356,7 +29356,7 @@
kinetics = Arrhenius(A=(0.0408,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;CS_rad/Ct
""",
@@ -29369,7 +29369,7 @@
kinetics = Arrhenius(A=(0.131,'cm^3/(mol*s)'), n=4.34, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;H_rad
""",
@@ -29382,7 +29382,7 @@
kinetics = Arrhenius(A=(0.0031,'cm^3/(mol*s)'), n=4.34, Ea=(36.861,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_methyl
""",
@@ -29395,7 +29395,7 @@
kinetics = Arrhenius(A=(0.000242,'cm^3/(mol*s)'), n=4.34, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/Cs
""",
@@ -29408,7 +29408,7 @@
kinetics = Arrhenius(A=(0.000156,'cm^3/(mol*s)'), n=4.34, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/NonDeC
""",
@@ -29421,7 +29421,7 @@
kinetics = Arrhenius(A=(8.72e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/Cs3
""",
@@ -29434,7 +29434,7 @@
kinetics = Arrhenius(A=(0.001744,'cm^3/(mol*s)'), n=4.34, Ea=(74.1405,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/Cd
""",
@@ -29447,7 +29447,7 @@
kinetics = Arrhenius(A=(0.001158,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/CS;Cd_rad/Ct
""",
@@ -29460,7 +29460,7 @@
kinetics = Arrhenius(A=(0.0003,'cm^3/(mol*s)'), n=4.34, Ea=(62.2579,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CdCs
""",
@@ -29473,7 +29473,7 @@
kinetics = Arrhenius(A=(2.6e-05,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CdCs2
""",
@@ -29486,7 +29486,7 @@
kinetics = Arrhenius(A=(0.000273,'cm^3/(mol*s)'), n=4.34, Ea=(100.458,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CdCd
""",
@@ -29499,7 +29499,7 @@
kinetics = Arrhenius(A=(6.81e-06,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CdCdCs
""",
@@ -29512,7 +29512,7 @@
kinetics = Arrhenius(A=(0.000611,'cm^3/(mol*s)'), n=4.34, Ea=(69.1197,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/Ct
""",
@@ -29525,7 +29525,7 @@
kinetics = Arrhenius(A=(0.000112,'cm^3/(mol*s)'), n=4.34, Ea=(56.2748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CtCs
""",
@@ -29538,7 +29538,7 @@
kinetics = Arrhenius(A=(2.34e-05,'cm^3/(mol*s)'), n=4.34, Ea=(54.141,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CtCs2
""",
@@ -29551,7 +29551,7 @@
kinetics = Arrhenius(A=(0.000156,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CtCt
""",
@@ -29564,7 +29564,7 @@
kinetics = Arrhenius(A=(3.51e-06,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CtCtCs
""",
@@ -29577,7 +29577,7 @@
kinetics = Arrhenius(A=(0.000808,'cm^3/(mol*s)'), n=4.34, Ea=(63.3123,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/Cb
""",
@@ -29590,7 +29590,7 @@
kinetics = Arrhenius(A=(0.00019,'cm^3/(mol*s)'), n=4.34, Ea=(52.3669,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CbCs
""",
@@ -29603,7 +29603,7 @@
kinetics = Arrhenius(A=(5.17e-06,'cm^3/(mol*s)'), n=4.34, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CbCs2
""",
@@ -29616,7 +29616,7 @@
kinetics = Arrhenius(A=(0.00334,'cm^3/(mol*s)'), n=4.34, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_pri_rad
""",
@@ -29629,7 +29629,7 @@
kinetics = Arrhenius(A=(0.00105,'cm^3/(mol*s)'), n=4.34, Ea=(-21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_rad/NonDeC
""",
@@ -29642,7 +29642,7 @@
kinetics = Arrhenius(A=(0.00154,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_rad/Cd
""",
@@ -29655,7 +29655,7 @@
kinetics = Arrhenius(A=(0.00425,'cm^3/(mol*s)'), n=4.34, Ea=(-28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cb_rad
""",
@@ -29668,7 +29668,7 @@
kinetics = Arrhenius(A=(0.000986,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_Cdd_rad/H
""",
@@ -29681,7 +29681,7 @@
kinetics = Arrhenius(A=(0.000274,'cm^3/(mol*s)'), n=4.34, Ea=(44.4759,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/S
""",
@@ -29694,7 +29694,7 @@
kinetics = Arrhenius(A=(0.000428,'cm^3/(mol*s)'), n=4.34, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CsS
""",
@@ -29707,7 +29707,7 @@
kinetics = Arrhenius(A=(0.000138,'cm^3/(mol*s)'), n=4.34, Ea=(-15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/Cs2S
""",
@@ -29720,7 +29720,7 @@
kinetics = Arrhenius(A=(0.00123,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H2/CS
""",
@@ -29733,7 +29733,7 @@
kinetics = Arrhenius(A=(0.00107,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CSCs
""",
@@ -29746,7 +29746,7 @@
kinetics = Arrhenius(A=(0.000969,'cm^3/(mol*s)'), n=4.34, Ea=(-54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_rad/NonDeS
""",
@@ -29759,7 +29759,7 @@
kinetics = Arrhenius(A=(0.0133,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_rad/CS
""",
@@ -29772,7 +29772,7 @@
kinetics = Arrhenius(A=(0.000461,'cm^3/(mol*s)'), n=4.34, Ea=(78.9521,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CdS
""",
@@ -29785,7 +29785,7 @@
kinetics = Arrhenius(A=(3.3e-05,'cm^3/(mol*s)'), n=4.34, Ea=(74.4752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CdCsS
""",
@@ -29798,7 +29798,7 @@
kinetics = Arrhenius(A=(0.00425,'cm^3/(mol*s)'), n=4.34, Ea=(126.943,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CSS
""",
@@ -29811,7 +29811,7 @@
kinetics = Arrhenius(A=(0.000627,'cm^3/(mol*s)'), n=4.34, Ea=(125.687,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CSCsS
""",
@@ -29824,7 +29824,7 @@
kinetics = Arrhenius(A=(0.000321,'cm^3/(mol*s)'), n=4.34, Ea=(62.4671,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CtS
""",
@@ -29837,7 +29837,7 @@
kinetics = Arrhenius(A=(7.03e-05,'cm^3/(mol*s)'), n=4.34, Ea=(57.8647,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CtCsS
""",
@@ -29850,7 +29850,7 @@
kinetics = Arrhenius(A=(0.00011,'cm^3/(mol*s)'), n=4.34, Ea=(66.4419,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/H/CbS
""",
@@ -29863,7 +29863,7 @@
kinetics = Arrhenius(A=(2.22e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;C_rad/CbCsS
""",
@@ -29876,7 +29876,7 @@
kinetics = Arrhenius(A=(0.0115,'cm^3/(mol*s)'), n=4.34, Ea=(31.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;CS_pri_rad
""",
@@ -29889,7 +29889,7 @@
kinetics = Arrhenius(A=(0.00408,'cm^3/(mol*s)'), n=4.34, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;CS_rad/Cs
""",
@@ -29902,7 +29902,7 @@
kinetics = Arrhenius(A=(0.00304,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;CS_rad/S
""",
@@ -29915,7 +29915,7 @@
kinetics = Arrhenius(A=(0.00482,'cm^3/(mol*s)'), n=4.34, Ea=(42.2584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;CS_rad/Cd
""",
@@ -29928,7 +29928,7 @@
kinetics = Arrhenius(A=(0.0135,'cm^3/(mol*s)'), n=4.34, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;CS_rad/Ct
""",
@@ -29941,7 +29941,7 @@
kinetics = Arrhenius(A=(0.187,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;H_rad
""",
@@ -29954,7 +29954,7 @@
kinetics = Arrhenius(A=(0.00444,'cm^3/(mol*s)'), n=4.34, Ea=(70.5004,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_methyl
""",
@@ -29967,7 +29967,7 @@
kinetics = Arrhenius(A=(0.000521,'cm^3/(mol*s)'), n=4.34, Ea=(53.8062,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/Cs
""",
@@ -29980,7 +29980,7 @@
kinetics = Arrhenius(A=(0.000502,'cm^3/(mol*s)'), n=4.34, Ea=(42.8442,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/NonDeC
""",
@@ -29993,7 +29993,7 @@
kinetics = Arrhenius(A=(0.000421,'cm^3/(mol*s)'), n=4.34, Ea=(38.3254,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/Cs3
""",
@@ -30006,7 +30006,7 @@
kinetics = Arrhenius(A=(0.00372,'cm^3/(mol*s)'), n=4.34, Ea=(107.78,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/Cd
""",
@@ -30019,7 +30019,7 @@
kinetics = Arrhenius(A=(0.000959,'cm^3/(mol*s)'), n=4.34, Ea=(95.8973,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CdCs
""",
@@ -30032,7 +30032,7 @@
kinetics = Arrhenius(A=(0.001096,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSCs;Cd_rad/Ct
""",
@@ -30045,7 +30045,7 @@
kinetics = Arrhenius(A=(0.000124,'cm^3/(mol*s)'), n=4.34, Ea=(91.3786,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CdCs2
""",
@@ -30058,7 +30058,7 @@
kinetics = Arrhenius(A=(0.000864,'cm^3/(mol*s)'), n=4.34, Ea=(134.097,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CdCd
""",
@@ -30071,7 +30071,7 @@
kinetics = Arrhenius(A=(3.23e-05,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CdCdCs
""",
@@ -30084,7 +30084,7 @@
kinetics = Arrhenius(A=(0.0013,'cm^3/(mol*s)'), n=4.34, Ea=(102.759,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/Ct
""",
@@ -30097,7 +30097,7 @@
kinetics = Arrhenius(A=(0.000357,'cm^3/(mol*s)'), n=4.34, Ea=(89.9142,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CtCs
""",
@@ -30110,7 +30110,7 @@
kinetics = Arrhenius(A=(0.000112,'cm^3/(mol*s)'), n=4.34, Ea=(87.7803,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CtCs2
""",
@@ -30123,7 +30123,7 @@
kinetics = Arrhenius(A=(0.000495,'cm^3/(mol*s)'), n=4.34, Ea=(61.5048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CtCt
""",
@@ -30136,7 +30136,7 @@
kinetics = Arrhenius(A=(1.66e-05,'cm^3/(mol*s)'), n=4.34, Ea=(59.4128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CtCtCs
""",
@@ -30149,7 +30149,7 @@
kinetics = Arrhenius(A=(0.00172,'cm^3/(mol*s)'), n=4.34, Ea=(96.9516,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/Cb
""",
@@ -30162,7 +30162,7 @@
kinetics = Arrhenius(A=(0.000605,'cm^3/(mol*s)'), n=4.34, Ea=(86.0063,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CbCs
""",
@@ -30175,7 +30175,7 @@
kinetics = Arrhenius(A=(2.47e-05,'cm^3/(mol*s)'), n=4.34, Ea=(87.613,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CbCs2
""",
@@ -30188,7 +30188,7 @@
kinetics = Arrhenius(A=(0.00478,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_pri_rad
""",
@@ -30201,7 +30201,7 @@
kinetics = Arrhenius(A=(0.00225,'cm^3/(mol*s)'), n=4.34, Ea=(5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_rad/NonDeC
""",
@@ -30214,7 +30214,7 @@
kinetics = Arrhenius(A=(0.00221,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_rad/Cd
""",
@@ -30227,7 +30227,7 @@
kinetics = Arrhenius(A=(0.00609,'cm^3/(mol*s)'), n=4.34, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cb_rad
""",
@@ -30240,7 +30240,7 @@
kinetics = Arrhenius(A=(0.0021,'cm^3/(mol*s)'), n=4.34, Ea=(76.7346,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_Cdd_rad/H
""",
@@ -30253,7 +30253,7 @@
kinetics = Arrhenius(A=(0.000423,'cm^3/(mol*s)'), n=4.34, Ea=(78.1153,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/S
""",
@@ -30266,7 +30266,7 @@
kinetics = Arrhenius(A=(0.000989,'cm^3/(mol*s)'), n=4.34, Ea=(66.2327,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CsS
""",
@@ -30279,7 +30279,7 @@
kinetics = Arrhenius(A=(0.000478,'cm^3/(mol*s)'), n=4.34, Ea=(56.1493,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/Cs2S
""",
@@ -30292,7 +30292,7 @@
kinetics = Arrhenius(A=(0.00378,'cm^3/(mol*s)'), n=4.34, Ea=(62.76,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H2/CS
""",
@@ -30305,7 +30305,7 @@
kinetics = Arrhenius(A=(0.0049,'cm^3/(mol*s)'), n=4.34, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CSCs
""",
@@ -30318,7 +30318,7 @@
kinetics = Arrhenius(A=(0.00188,'cm^3/(mol*s)'), n=4.34, Ea=(71.5464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CSCs2
""",
@@ -30331,7 +30331,7 @@
kinetics = Arrhenius(A=(0.0191,'cm^3/(mol*s)'), n=4.34, Ea=(72.8016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_rad/CS
""",
@@ -30344,7 +30344,7 @@
kinetics = Arrhenius(A=(0.00106,'cm^3/(mol*s)'), n=4.34, Ea=(112.591,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CdS
""",
@@ -30357,7 +30357,7 @@
kinetics = Arrhenius(A=(0.000113,'cm^3/(mol*s)'), n=4.34, Ea=(108.115,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CdCsS
""",
@@ -30370,7 +30370,7 @@
kinetics = Arrhenius(A=(0.014,'cm^3/(mol*s)'), n=4.34, Ea=(160.582,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CSS
""",
@@ -30383,7 +30383,7 @@
kinetics = Arrhenius(A=(0.0031,'cm^3/(mol*s)'), n=4.34, Ea=(159.327,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CSCsS
""",
@@ -30396,7 +30396,7 @@
kinetics = Arrhenius(A=(0.000736,'cm^3/(mol*s)'), n=4.34, Ea=(96.1065,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CtS
""",
@@ -30409,7 +30409,7 @@
kinetics = Arrhenius(A=(0.000241,'cm^3/(mol*s)'), n=4.34, Ea=(91.5041,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CtCsS
""",
@@ -30422,7 +30422,7 @@
kinetics = Arrhenius(A=(0.000253,'cm^3/(mol*s)'), n=4.34, Ea=(100.081,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/H/CbS
""",
@@ -30435,7 +30435,7 @@
kinetics = Arrhenius(A=(7.61e-05,'cm^3/(mol*s)'), n=4.34, Ea=(89.2029,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;C_rad/CbCsS
""",
@@ -30448,7 +30448,7 @@
kinetics = Arrhenius(A=(0.0165,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;CS_pri_rad
""",
@@ -30461,7 +30461,7 @@
kinetics = Arrhenius(A=(0.00876,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;CS_rad/Cs
""",
@@ -30474,7 +30474,7 @@
kinetics = Arrhenius(A=(0.00468,'cm^3/(mol*s)'), n=4.34, Ea=(50.208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;CS_rad/S
""",
@@ -30487,7 +30487,7 @@
kinetics = Arrhenius(A=(0.00691,'cm^3/(mol*s)'), n=4.34, Ea=(67.7808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;CS_rad/Cd
""",
@@ -30500,7 +30500,7 @@
kinetics = Arrhenius(A=(0.0193,'cm^3/(mol*s)'), n=4.34, Ea=(82.8432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;CS_rad/Ct
""",
@@ -30513,7 +30513,7 @@
kinetics = Arrhenius(A=(0.5,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;H_rad
""",
@@ -30526,7 +30526,7 @@
kinetics = Arrhenius(A=(0.0118,'cm^3/(mol*s)'), n=4.34, Ea=(88.3661,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_methyl
""",
@@ -30539,7 +30539,7 @@
kinetics = Arrhenius(A=(0.00203,'cm^3/(mol*s)'), n=4.34, Ea=(71.6719,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/Cs
""",
@@ -30552,7 +30552,7 @@
kinetics = Arrhenius(A=(0.00287,'cm^3/(mol*s)'), n=4.34, Ea=(60.7098,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/NonDeC
""",
@@ -30565,7 +30565,7 @@
kinetics = Arrhenius(A=(0.00351,'cm^3/(mol*s)'), n=4.34, Ea=(56.1911,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/Cs3
""",
@@ -30578,7 +30578,7 @@
kinetics = Arrhenius(A=(0.0642,'cm^3/(mol*s)'), n=4.34, Ea=(125.646,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/Cd
""",
@@ -30591,7 +30591,7 @@
kinetics = Arrhenius(A=(0.0242,'cm^3/(mol*s)'), n=4.34, Ea=(113.763,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CdCs
""",
@@ -30604,7 +30604,7 @@
kinetics = Arrhenius(A=(0.0046,'cm^3/(mol*s)'), n=4.34, Ea=(109.244,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CdCs2
""",
@@ -30617,7 +30617,7 @@
kinetics = Arrhenius(A=(0.000362,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2CS;Cd_rad/Ct
""",
@@ -30630,7 +30630,7 @@
kinetics = Arrhenius(A=(0.0966,'cm^3/(mol*s)'), n=4.34, Ea=(151.963,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CdCd
""",
@@ -30643,7 +30643,7 @@
kinetics = Arrhenius(A=(0.00528,'cm^3/(mol*s)'), n=4.34, Ea=(136.398,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CdCdCs
""",
@@ -30656,7 +30656,7 @@
kinetics = Arrhenius(A=(0.0164,'cm^3/(mol*s)'), n=4.34, Ea=(120.625,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/Ct
""",
@@ -30669,7 +30669,7 @@
kinetics = Arrhenius(A=(0.00657,'cm^3/(mol*s)'), n=4.34, Ea=(107.78,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CtCs
""",
@@ -30682,7 +30682,7 @@
kinetics = Arrhenius(A=(0.00301,'cm^3/(mol*s)'), n=4.34, Ea=(105.646,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CtCs2
""",
@@ -30695,7 +30695,7 @@
kinetics = Arrhenius(A=(0.0293,'cm^3/(mol*s)'), n=4.34, Ea=(110.458,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CtCt
""",
@@ -30708,7 +30708,7 @@
kinetics = Arrhenius(A=(0.00144,'cm^3/(mol*s)'), n=4.34, Ea=(115.06,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CtCtCs
""",
@@ -30721,7 +30721,7 @@
kinetics = Arrhenius(A=(0.0297,'cm^3/(mol*s)'), n=4.34, Ea=(114.817,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/Cb
""",
@@ -30734,7 +30734,7 @@
kinetics = Arrhenius(A=(0.0153,'cm^3/(mol*s)'), n=4.34, Ea=(103.872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CbCs
""",
@@ -30747,7 +30747,7 @@
kinetics = Arrhenius(A=(0.000915,'cm^3/(mol*s)'), n=4.34, Ea=(105.479,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CbCs2
""",
@@ -30760,7 +30760,7 @@
kinetics = Arrhenius(A=(0.0128,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_pri_rad
""",
@@ -30773,7 +30773,7 @@
kinetics = Arrhenius(A=(0.0088,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_rad/NonDeC
""",
@@ -30786,7 +30786,7 @@
kinetics = Arrhenius(A=(0.00589,'cm^3/(mol*s)'), n=4.34, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_rad/Cd
""",
@@ -30799,7 +30799,7 @@
kinetics = Arrhenius(A=(0.0162,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cb_rad
""",
@@ -30812,7 +30812,7 @@
kinetics = Arrhenius(A=(0.0363,'cm^3/(mol*s)'), n=4.34, Ea=(94.6002,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_Cdd_rad/H
""",
@@ -30825,7 +30825,7 @@
kinetics = Arrhenius(A=(0.00473,'cm^3/(mol*s)'), n=4.34, Ea=(95.981,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/S
""",
@@ -30838,7 +30838,7 @@
kinetics = Arrhenius(A=(0.0162,'cm^3/(mol*s)'), n=4.34, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CsS
""",
@@ -30851,7 +30851,7 @@
kinetics = Arrhenius(A=(0.0114,'cm^3/(mol*s)'), n=4.34, Ea=(74.015,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/Cs2S
""",
@@ -30864,7 +30864,7 @@
kinetics = Arrhenius(A=(0.0387,'cm^3/(mol*s)'), n=4.34, Ea=(107.11,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H2/CS
""",
@@ -30877,7 +30877,7 @@
kinetics = Arrhenius(A=(0.0734,'cm^3/(mol*s)'), n=4.34, Ea=(119.244,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CSCs
""",
@@ -30890,7 +30890,7 @@
kinetics = Arrhenius(A=(0.0413,'cm^3/(mol*s)'), n=4.34, Ea=(129.286,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CSCs2
""",
@@ -30903,7 +30903,7 @@
kinetics = Arrhenius(A=(0.0304,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_rad/NonDeS
""",
@@ -30916,7 +30916,7 @@
kinetics = Arrhenius(A=(0.0765,'cm^3/(mol*s)'), n=4.34, Ea=(130.457,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CdS
""",
@@ -30929,7 +30929,7 @@
kinetics = Arrhenius(A=(0.012,'cm^3/(mol*s)'), n=4.34, Ea=(125.98,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CdCsS
""",
@@ -30942,7 +30942,7 @@
kinetics = Arrhenius(A=(0.602,'cm^3/(mol*s)'), n=4.34, Ea=(178.448,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CSS
""",
@@ -30955,7 +30955,7 @@
kinetics = Arrhenius(A=(0.195,'cm^3/(mol*s)'), n=4.34, Ea=(177.192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CSCsS
""",
@@ -30968,7 +30968,7 @@
kinetics = Arrhenius(A=(0.0388,'cm^3/(mol*s)'), n=4.34, Ea=(113.972,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CtS
""",
@@ -30981,7 +30981,7 @@
kinetics = Arrhenius(A=(0.0186,'cm^3/(mol*s)'), n=4.34, Ea=(109.37,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CtCsS
""",
@@ -30994,7 +30994,7 @@
kinetics = Arrhenius(A=(0.0183,'cm^3/(mol*s)'), n=4.34, Ea=(117.947,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/H/CbS
""",
@@ -31007,7 +31007,7 @@
kinetics = Arrhenius(A=(0.00807,'cm^3/(mol*s)'), n=4.34, Ea=(107.069,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;C_rad/CbCsS
""",
@@ -31020,7 +31020,7 @@
kinetics = Arrhenius(A=(0.044,'cm^3/(mol*s)'), n=4.34, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;CS_pri_rad
""",
@@ -31033,7 +31033,7 @@
kinetics = Arrhenius(A=(0.0342,'cm^3/(mol*s)'), n=4.34, Ea=(66.944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;CS_rad/Cs
""",
@@ -31046,7 +31046,7 @@
kinetics = Arrhenius(A=(0.0524,'cm^3/(mol*s)'), n=4.34, Ea=(77.8224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;CS_rad/S
""",
@@ -31059,7 +31059,7 @@
kinetics = Arrhenius(A=(0.0184,'cm^3/(mol*s)'), n=4.34, Ea=(79.0776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;CS_rad/Cd
""",
@@ -31072,7 +31072,7 @@
kinetics = Arrhenius(A=(0.0515,'cm^3/(mol*s)'), n=4.34, Ea=(94.14,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;CS_rad/Ct
""",
@@ -31085,7 +31085,7 @@
kinetics = Arrhenius(A=(0.41,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;H_rad
""",
@@ -31098,7 +31098,7 @@
kinetics = Arrhenius(A=(0.0097,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_methyl
""",
@@ -31111,7 +31111,7 @@
kinetics = Arrhenius(A=(0.001318,'cm^3/(mol*s)'), n=4.34, Ea=(11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/Cs
""",
@@ -31124,7 +31124,7 @@
kinetics = Arrhenius(A=(0.00147,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/NonDeC
""",
@@ -31137,7 +31137,7 @@
kinetics = Arrhenius(A=(0.001424,'cm^3/(mol*s)'), n=4.34, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/Cs3
""",
@@ -31150,7 +31150,7 @@
kinetics = Arrhenius(A=(0.0108,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/Cd
""",
@@ -31163,7 +31163,7 @@
kinetics = Arrhenius(A=(0.00322,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CdCs
""",
@@ -31176,7 +31176,7 @@
kinetics = Arrhenius(A=(0.000484,'cm^3/(mol*s)'), n=4.34, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CdCs2
""",
@@ -31189,7 +31189,7 @@
kinetics = Arrhenius(A=(0.00334,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CdCd
""",
@@ -31202,7 +31202,7 @@
kinetics = Arrhenius(A=(0.000518,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/NonDeS;Cd_rad/Ct
""",
@@ -31215,7 +31215,7 @@
kinetics = Arrhenius(A=(0.0001442,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CdCdCs
""",
@@ -31228,7 +31228,7 @@
kinetics = Arrhenius(A=(0.00276,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/Ct
""",
@@ -31241,7 +31241,7 @@
kinetics = Arrhenius(A=(0.000874,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CtCs
""",
@@ -31254,7 +31254,7 @@
kinetics = Arrhenius(A=(0.000318,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CtCs2
""",
@@ -31267,7 +31267,7 @@
kinetics = Arrhenius(A=(0.001012,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CtCt
""",
@@ -31280,7 +31280,7 @@
kinetics = Arrhenius(A=(3.94e-05,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CtCtCs
""",
@@ -31293,7 +31293,7 @@
kinetics = Arrhenius(A=(0.005,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/Cb
""",
@@ -31306,7 +31306,7 @@
kinetics = Arrhenius(A=(0.00204,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CbCs
""",
@@ -31319,7 +31319,7 @@
kinetics = Arrhenius(A=(9.62e-05,'cm^3/(mol*s)'), n=4.34, Ea=(16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CbCs2
""",
@@ -31332,7 +31332,7 @@
kinetics = Arrhenius(A=(0.01046,'cm^3/(mol*s)'), n=4.34, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_pri_rad
""",
@@ -31345,7 +31345,7 @@
kinetics = Arrhenius(A=(0.0057,'cm^3/(mol*s)'), n=4.34, Ea=(-9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_rad/NonDeC
""",
@@ -31358,7 +31358,7 @@
kinetics = Arrhenius(A=(0.00482,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_rad/Cd
""",
@@ -31371,7 +31371,7 @@
kinetics = Arrhenius(A=(0.01332,'cm^3/(mol*s)'), n=4.34, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cb_rad
""",
@@ -31384,7 +31384,7 @@
kinetics = Arrhenius(A=(0.0061,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_Cdd_rad/H
""",
@@ -31397,7 +31397,7 @@
kinetics = Arrhenius(A=(0.000808,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/S
""",
@@ -31410,7 +31410,7 @@
kinetics = Arrhenius(A=(0.00218,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CsS
""",
@@ -31423,7 +31423,7 @@
kinetics = Arrhenius(A=(0.00122,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/Cs2S
""",
@@ -31436,7 +31436,7 @@
kinetics = Arrhenius(A=(0.001168,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H2/CS
""",
@@ -31449,7 +31449,7 @@
kinetics = Arrhenius(A=(0.001752,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CSCs
""",
@@ -31462,7 +31462,7 @@
kinetics = Arrhenius(A=(0.000778,'cm^3/(mol*s)'), n=4.34, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CSCs2
""",
@@ -31475,7 +31475,7 @@
kinetics = Arrhenius(A=(0.000918,'cm^3/(mol*s)'), n=4.34, Ea=(-40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_rad/NonDeS
""",
@@ -31488,7 +31488,7 @@
kinetics = Arrhenius(A=(0.0418,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_rad/CS
""",
@@ -31501,7 +31501,7 @@
kinetics = Arrhenius(A=(0.000332,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CdCsS
""",
@@ -31514,7 +31514,7 @@
kinetics = Arrhenius(A=(0.00378,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CSS
""",
@@ -31527,7 +31527,7 @@
kinetics = Arrhenius(A=(0.000968,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CSCsS
""",
@@ -31540,7 +31540,7 @@
kinetics = Arrhenius(A=(0.00136,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CtS
""",
@@ -31553,7 +31553,7 @@
kinetics = Arrhenius(A=(0.000516,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CtCsS
""",
@@ -31566,7 +31566,7 @@
kinetics = Arrhenius(A=(0.000642,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/H/CbS
""",
@@ -31579,7 +31579,7 @@
kinetics = Arrhenius(A=(0.000224,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;C_rad/CbCsS
""",
@@ -31592,7 +31592,7 @@
kinetics = Arrhenius(A=(0.036,'cm^3/(mol*s)'), n=4.34, Ea=(42.2584,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;CS_pri_rad
""",
@@ -31605,7 +31605,7 @@
kinetics = Arrhenius(A=(0.0222,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;CS_rad/Cs
""",
@@ -31618,7 +31618,7 @@
kinetics = Arrhenius(A=(0.00894,'cm^3/(mol*s)'), n=4.34, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;CS_rad/S
""",
@@ -31631,7 +31631,7 @@
kinetics = Arrhenius(A=(0.0151,'cm^3/(mol*s)'), n=4.34, Ea=(53.5552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;CS_rad/Cd
""",
@@ -31644,7 +31644,7 @@
kinetics = Arrhenius(A=(0.0422,'cm^3/(mol*s)'), n=4.34, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;CS_rad/Ct
""",
@@ -31657,7 +31657,7 @@
kinetics = Arrhenius(A=(0.137,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;H_rad
""",
@@ -31670,7 +31670,7 @@
kinetics = Arrhenius(A=(0.00324,'cm^3/(mol*s)'), n=4.34, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_methyl
""",
@@ -31683,7 +31683,7 @@
kinetics = Arrhenius(A=(0.00036,'cm^3/(mol*s)'), n=4.34, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/Cs
""",
@@ -31696,7 +31696,7 @@
kinetics = Arrhenius(A=(0.000328,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/NonDeC
""",
@@ -31709,7 +31709,7 @@
kinetics = Arrhenius(A=(0.000259,'cm^3/(mol*s)'), n=4.34, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/Cs3
""",
@@ -31722,7 +31722,7 @@
kinetics = Arrhenius(A=(0.00296,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/Cd
""",
@@ -31735,7 +31735,7 @@
kinetics = Arrhenius(A=(0.000721,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CdCs
""",
@@ -31748,7 +31748,7 @@
kinetics = Arrhenius(A=(8.84e-05,'cm^3/(mol*s)'), n=4.34, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CdCs2
""",
@@ -31761,7 +31761,7 @@
kinetics = Arrhenius(A=(0.00075,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CdCd
""",
@@ -31774,7 +31774,7 @@
kinetics = Arrhenius(A=(2.65e-05,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CdCdCs
""",
@@ -31787,7 +31787,7 @@
kinetics = Arrhenius(A=(0.00138,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cd/H/CS;Cd_rad/Ct
""",
@@ -31800,7 +31800,7 @@
kinetics = Arrhenius(A=(0.000754,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/Ct
""",
@@ -31813,7 +31813,7 @@
kinetics = Arrhenius(A=(0.000196,'cm^3/(mol*s)'), n=4.34, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CtCs
""",
@@ -31826,7 +31826,7 @@
kinetics = Arrhenius(A=(5.8e-05,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CtCs2
""",
@@ -31839,7 +31839,7 @@
kinetics = Arrhenius(A=(0.000228,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CtCt
""",
@@ -31852,7 +31852,7 @@
kinetics = Arrhenius(A=(7.23e-06,'cm^3/(mol*s)'), n=4.34, Ea=(10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CtCtCs
""",
@@ -31865,7 +31865,7 @@
kinetics = Arrhenius(A=(0.00137,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/Cb
""",
@@ -31878,7 +31878,7 @@
kinetics = Arrhenius(A=(0.000455,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CbCs
""",
@@ -31891,7 +31891,7 @@
kinetics = Arrhenius(A=(1.76e-05,'cm^3/(mol*s)'), n=4.34, Ea=(5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CbCs2
""",
@@ -31904,7 +31904,7 @@
kinetics = Arrhenius(A=(0.0035,'cm^3/(mol*s)'), n=4.34, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_pri_rad
""",
@@ -31917,7 +31917,7 @@
kinetics = Arrhenius(A=(0.00156,'cm^3/(mol*s)'), n=4.34, Ea=(-15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_rad/NonDeC
""",
@@ -31930,7 +31930,7 @@
kinetics = Arrhenius(A=(0.00161,'cm^3/(mol*s)'), n=4.34, Ea=(20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_rad/Cd
""",
@@ -31943,7 +31943,7 @@
kinetics = Arrhenius(A=(0.00445,'cm^3/(mol*s)'), n=4.34, Ea=(-22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cb_rad
""",
@@ -31956,7 +31956,7 @@
kinetics = Arrhenius(A=(0.00167,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_Cdd_rad/H
""",
@@ -31969,7 +31969,7 @@
kinetics = Arrhenius(A=(0.00026,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/S
""",
@@ -31982,7 +31982,7 @@
kinetics = Arrhenius(A=(0.000574,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CsS
""",
@@ -31995,7 +31995,7 @@
kinetics = Arrhenius(A=(0.000262,'cm^3/(mol*s)'), n=4.34, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/Cs2S
""",
@@ -32008,7 +32008,7 @@
kinetics = Arrhenius(A=(0.000267,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H2/CS
""",
@@ -32021,7 +32021,7 @@
kinetics = Arrhenius(A=(0.000327,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CSCs
""",
@@ -32034,7 +32034,7 @@
kinetics = Arrhenius(A=(0.000119,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CSCs2
""",
@@ -32047,7 +32047,7 @@
kinetics = Arrhenius(A=(0.00021,'cm^3/(mol*s)'), n=4.34, Ea=(-52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_rad/NonDeS
""",
@@ -32060,7 +32060,7 @@
kinetics = Arrhenius(A=(0.014,'cm^3/(mol*s)'), n=4.34, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_rad/CS
""",
@@ -32073,7 +32073,7 @@
kinetics = Arrhenius(A=(0.000708,'cm^3/(mol*s)'), n=4.34, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CdS
""",
@@ -32086,7 +32086,7 @@
kinetics = Arrhenius(A=(7.16e-05,'cm^3/(mol*s)'), n=4.34, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CdCsS
""",
@@ -32099,7 +32099,7 @@
kinetics = Arrhenius(A=(0.000832,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CSS
""",
@@ -32112,7 +32112,7 @@
kinetics = Arrhenius(A=(0.000359,'cm^3/(mol*s)'), n=4.34, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CtS
""",
@@ -32125,7 +32125,7 @@
kinetics = Arrhenius(A=(0.000111,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CtCsS
""",
@@ -32138,7 +32138,7 @@
kinetics = Arrhenius(A=(0.00017,'cm^3/(mol*s)'), n=4.34, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/H/CbS
""",
@@ -32151,7 +32151,7 @@
kinetics = Arrhenius(A=(4.82e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;C_rad/CbCsS
""",
@@ -32164,7 +32164,7 @@
kinetics = Arrhenius(A=(0.012,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;CS_pri_rad
""",
@@ -32177,7 +32177,7 @@
kinetics = Arrhenius(A=(0.00605,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;CS_rad/Cs
""",
@@ -32190,7 +32190,7 @@
kinetics = Arrhenius(A=(0.00288,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;CS_rad/S
""",
@@ -32203,7 +32203,7 @@
kinetics = Arrhenius(A=(0.00505,'cm^3/(mol*s)'), n=4.34, Ea=(48.116,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;CS_rad/Cd
""",
@@ -32216,7 +32216,7 @@
kinetics = Arrhenius(A=(0.0141,'cm^3/(mol*s)'), n=4.34, Ea=(63.1784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;CS_rad/Ct
""",
@@ -32229,7 +32229,7 @@
kinetics = Arrhenius(A=(0.618,'cm^3/(mol*s)'), n=4.34, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;H_rad
""",
@@ -32242,7 +32242,7 @@
kinetics = Arrhenius(A=(0.01466,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_methyl
""",
@@ -32255,7 +32255,7 @@
kinetics = Arrhenius(A=(0.001658,'cm^3/(mol*s)'), n=4.34, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/Cs
""",
@@ -32268,7 +32268,7 @@
kinetics = Arrhenius(A=(0.00154,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/NonDeC
""",
@@ -32281,7 +32281,7 @@
kinetics = Arrhenius(A=(0.001244,'cm^3/(mol*s)'), n=4.34, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/Cs3
""",
@@ -32294,7 +32294,7 @@
kinetics = Arrhenius(A=(0.00968,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/Cd
""",
@@ -32307,7 +32307,7 @@
kinetics = Arrhenius(A=(0.00242,'cm^3/(mol*s)'), n=4.34, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CdCs
""",
@@ -32320,7 +32320,7 @@
kinetics = Arrhenius(A=(0.000302,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CdCs2
""",
@@ -32333,7 +32333,7 @@
kinetics = Arrhenius(A=(0.001784,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CdCd
""",
@@ -32346,7 +32346,7 @@
kinetics = Arrhenius(A=(6.42e-05,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CdCdCs
""",
@@ -32359,7 +32359,7 @@
kinetics = Arrhenius(A=(0.0034,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/Ct
""",
@@ -32372,7 +32372,7 @@
kinetics = Arrhenius(A=(0.001134,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CdS;Cd_rad/Ct
""",
@@ -32385,7 +32385,7 @@
kinetics = Arrhenius(A=(0.000898,'cm^3/(mol*s)'), n=4.34, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CtCs
""",
@@ -32398,7 +32398,7 @@
kinetics = Arrhenius(A=(0.000272,'cm^3/(mol*s)'), n=4.34, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CtCs2
""",
@@ -32411,7 +32411,7 @@
kinetics = Arrhenius(A=(0.001022,'cm^3/(mol*s)'), n=4.34, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CtCt
""",
@@ -32424,7 +32424,7 @@
kinetics = Arrhenius(A=(3.32e-05,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CtCtCs
""",
@@ -32437,7 +32437,7 @@
kinetics = Arrhenius(A=(0.0045,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/Cb
""",
@@ -32450,7 +32450,7 @@
kinetics = Arrhenius(A=(0.001522,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CbCs
""",
@@ -32463,7 +32463,7 @@
kinetics = Arrhenius(A=(6e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CbCs2
""",
@@ -32476,7 +32476,7 @@
kinetics = Arrhenius(A=(0.0158,'cm^3/(mol*s)'), n=4.34, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_pri_rad
""",
@@ -32489,7 +32489,7 @@
kinetics = Arrhenius(A=(0.00718,'cm^3/(mol*s)'), n=4.34, Ea=(-16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_rad/NonDeC
""",
@@ -32502,7 +32502,7 @@
kinetics = Arrhenius(A=(0.0073,'cm^3/(mol*s)'), n=4.34, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_rad/Cd
""",
@@ -32515,7 +32515,7 @@
kinetics = Arrhenius(A=(0.02,'cm^3/(mol*s)'), n=4.34, Ea=(-21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cb_rad
""",
@@ -32528,7 +32528,7 @@
kinetics = Arrhenius(A=(0.00548,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_Cdd_rad/H
""",
@@ -32541,7 +32541,7 @@
kinetics = Arrhenius(A=(0.000368,'cm^3/(mol*s)'), n=4.34, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/S
""",
@@ -32554,7 +32554,7 @@
kinetics = Arrhenius(A=(0.000828,'cm^3/(mol*s)'), n=4.34, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CsS
""",
@@ -32567,7 +32567,7 @@
kinetics = Arrhenius(A=(0.000386,'cm^3/(mol*s)'), n=4.34, Ea=(-14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/Cs2S
""",
@@ -32580,7 +32580,7 @@
kinetics = Arrhenius(A=(0.00298,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H2/CS
""",
@@ -32593,7 +32593,7 @@
kinetics = Arrhenius(A=(0.00372,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CSCs
""",
@@ -32606,7 +32606,7 @@
kinetics = Arrhenius(A=(0.001378,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CSCs2
""",
@@ -32619,7 +32619,7 @@
kinetics = Arrhenius(A=(0.00234,'cm^3/(mol*s)'), n=4.34, Ea=(-50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_rad/NonDeS
""",
@@ -32632,7 +32632,7 @@
kinetics = Arrhenius(A=(0.0632,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_rad/CS
""",
@@ -32645,7 +32645,7 @@
kinetics = Arrhenius(A=(0.000726,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CdS
""",
@@ -32658,7 +32658,7 @@
kinetics = Arrhenius(A=(7.5e-05,'cm^3/(mol*s)'), n=4.34, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CdCsS
""",
@@ -32671,7 +32671,7 @@
kinetics = Arrhenius(A=(0.00062,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CSCsS
""",
@@ -32684,7 +32684,7 @@
kinetics = Arrhenius(A=(0.000506,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CtS
""",
@@ -32697,7 +32697,7 @@
kinetics = Arrhenius(A=(0.0001598,'cm^3/(mol*s)'), n=4.34, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CtCsS
""",
@@ -32710,7 +32710,7 @@
kinetics = Arrhenius(A=(0.0001738,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/H/CbS
""",
@@ -32723,7 +32723,7 @@
kinetics = Arrhenius(A=(5.04e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;C_rad/CbCsS
""",
@@ -32736,7 +32736,7 @@
kinetics = Arrhenius(A=(0.0544,'cm^3/(mol*s)'), n=4.34, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;CS_pri_rad
""",
@@ -32749,7 +32749,7 @@
kinetics = Arrhenius(A=(0.0278,'cm^3/(mol*s)'), n=4.34, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;CS_rad/Cs
""",
@@ -32762,7 +32762,7 @@
kinetics = Arrhenius(A=(0.00406,'cm^3/(mol*s)'), n=4.34, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;CS_rad/S
""",
@@ -32775,7 +32775,7 @@
kinetics = Arrhenius(A=(0.0228,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;CS_rad/Cd
""",
@@ -32788,7 +32788,7 @@
kinetics = Arrhenius(A=(0.0638,'cm^3/(mol*s)'), n=4.34, Ea=(64.0152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;CS_rad/Ct
""",
@@ -32801,7 +32801,7 @@
kinetics = Arrhenius(A=(0.000379,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CSCsS;Cd_rad/Ct
""",
@@ -32814,7 +32814,7 @@
kinetics = Arrhenius(A=(0.286,'cm^3/(mol*s)'), n=4.34, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;H_rad
""",
@@ -32827,7 +32827,7 @@
kinetics = Arrhenius(A=(0.00678,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_methyl
""",
@@ -32840,7 +32840,7 @@
kinetics = Arrhenius(A=(0.000922,'cm^3/(mol*s)'), n=4.34, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/Cs
""",
@@ -32853,7 +32853,7 @@
kinetics = Arrhenius(A=(0.001028,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/NonDeC
""",
@@ -32866,7 +32866,7 @@
kinetics = Arrhenius(A=(0.000996,'cm^3/(mol*s)'), n=4.34, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/Cs3
""",
@@ -32879,7 +32879,7 @@
kinetics = Arrhenius(A=(0.00756,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/Cd
""",
@@ -32892,7 +32892,7 @@
kinetics = Arrhenius(A=(0.00226,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CdCs
""",
@@ -32905,7 +32905,7 @@
kinetics = Arrhenius(A=(0.000338,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CdCs2
""",
@@ -32918,7 +32918,7 @@
kinetics = Arrhenius(A=(0.00234,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CdCd
""",
@@ -32931,7 +32931,7 @@
kinetics = Arrhenius(A=(0.0001008,'cm^3/(mol*s)'), n=4.34, Ea=(43.5136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CdCdCs
""",
@@ -32944,7 +32944,7 @@
kinetics = Arrhenius(A=(0.00478,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/Ct
""",
@@ -32957,7 +32957,7 @@
kinetics = Arrhenius(A=(0.001518,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CtCs
""",
@@ -32970,7 +32970,7 @@
kinetics = Arrhenius(A=(0.00055,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CtCs2
""",
@@ -32983,7 +32983,7 @@
kinetics = Arrhenius(A=(0.001712,'cm^3/(mol*s)'), n=4.34, Ea=(10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CSS;Cd_rad/Ct
""",
@@ -32996,7 +32996,7 @@
kinetics = Arrhenius(A=(0.00436,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CtCt
""",
@@ -33009,7 +33009,7 @@
kinetics = Arrhenius(A=(0.0001698,'cm^3/(mol*s)'), n=4.34, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CtCtCs
""",
@@ -33022,7 +33022,7 @@
kinetics = Arrhenius(A=(0.0035,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/Cb
""",
@@ -33035,7 +33035,7 @@
kinetics = Arrhenius(A=(0.001422,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CbCs
""",
@@ -33048,7 +33048,7 @@
kinetics = Arrhenius(A=(6.72e-05,'cm^3/(mol*s)'), n=4.34, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CbCs2
""",
@@ -33061,7 +33061,7 @@
kinetics = Arrhenius(A=(0.00732,'cm^3/(mol*s)'), n=4.34, Ea=(-9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_pri_rad
""",
@@ -33074,7 +33074,7 @@
kinetics = Arrhenius(A=(0.00398,'cm^3/(mol*s)'), n=4.34, Ea=(-13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_rad/NonDeC
""",
@@ -33087,7 +33087,7 @@
kinetics = Arrhenius(A=(0.00338,'cm^3/(mol*s)'), n=4.34, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_rad/Cd
""",
@@ -33100,7 +33100,7 @@
kinetics = Arrhenius(A=(0.00932,'cm^3/(mol*s)'), n=4.34, Ea=(-20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cb_rad
""",
@@ -33113,7 +33113,7 @@
kinetics = Arrhenius(A=(0.00426,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_Cdd_rad/H
""",
@@ -33126,7 +33126,7 @@
kinetics = Arrhenius(A=(0.000564,'cm^3/(mol*s)'), n=4.34, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/S
""",
@@ -33139,7 +33139,7 @@
kinetics = Arrhenius(A=(0.001526,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CsS
""",
@@ -33152,7 +33152,7 @@
kinetics = Arrhenius(A=(0.000854,'cm^3/(mol*s)'), n=4.34, Ea=(-4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/Cs2S
""",
@@ -33165,7 +33165,7 @@
kinetics = Arrhenius(A=(0.001122,'cm^3/(mol*s)'), n=4.34, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H2/CS
""",
@@ -33178,7 +33178,7 @@
kinetics = Arrhenius(A=(0.001684,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CSCs
""",
@@ -33191,7 +33191,7 @@
kinetics = Arrhenius(A=(0.000748,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CSCs2
""",
@@ -33204,7 +33204,7 @@
kinetics = Arrhenius(A=(0.000882,'cm^3/(mol*s)'), n=4.34, Ea=(-35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_rad/NonDeS
""",
@@ -33217,7 +33217,7 @@
kinetics = Arrhenius(A=(0.0292,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_rad/CS
""",
@@ -33230,7 +33230,7 @@
kinetics = Arrhenius(A=(0.001872,'cm^3/(mol*s)'), n=4.34, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CdS
""",
@@ -33243,7 +33243,7 @@
kinetics = Arrhenius(A=(0.000232,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CdCsS
""",
@@ -33256,7 +33256,7 @@
kinetics = Arrhenius(A=(0.00364,'cm^3/(mol*s)'), n=4.34, Ea=(64.4754,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CSS
""",
@@ -33269,7 +33269,7 @@
kinetics = Arrhenius(A=(0.00093,'cm^3/(mol*s)'), n=4.34, Ea=(63.2202,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CSCsS
""",
@@ -33282,7 +33282,7 @@
kinetics = Arrhenius(A=(0.000896,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CtCsS
""",
@@ -33295,7 +33295,7 @@
kinetics = Arrhenius(A=(0.000448,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/H/CbS
""",
@@ -33308,7 +33308,7 @@
kinetics = Arrhenius(A=(0.0001562,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;C_rad/CbCsS
""",
@@ -33321,7 +33321,7 @@
kinetics = Arrhenius(A=(0.0252,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;CS_pri_rad
""",
@@ -33334,7 +33334,7 @@
kinetics = Arrhenius(A=(0.0155,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;CS_rad/Cs
""",
@@ -33347,7 +33347,7 @@
kinetics = Arrhenius(A=(0.00624,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;CS_rad/S
""",
@@ -33360,7 +33360,7 @@
kinetics = Arrhenius(A=(0.01056,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;CS_rad/Cd
""",
@@ -33373,7 +33373,7 @@
kinetics = Arrhenius(A=(0.0296,'cm^3/(mol*s)'), n=4.34, Ea=(64.852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;CS_rad/Ct
""",
@@ -33386,7 +33386,7 @@
kinetics = Arrhenius(A=(0.175,'cm^3/(mol*s)'), n=4.34, Ea=(-4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;H_rad
""",
@@ -33399,7 +33399,7 @@
kinetics = Arrhenius(A=(0.00416,'cm^3/(mol*s)'), n=4.34, Ea=(4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_methyl
""",
@@ -33412,7 +33412,7 @@
kinetics = Arrhenius(A=(0.000461,'cm^3/(mol*s)'), n=4.34, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/Cs
""",
@@ -33425,7 +33425,7 @@
kinetics = Arrhenius(A=(0.00042,'cm^3/(mol*s)'), n=4.34, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/NonDeC
""",
@@ -33438,7 +33438,7 @@
kinetics = Arrhenius(A=(0.000332,'cm^3/(mol*s)'), n=4.34, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/Cs3
""",
@@ -33451,7 +33451,7 @@
kinetics = Arrhenius(A=(0.00378,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/Cd
""",
@@ -33464,7 +33464,7 @@
kinetics = Arrhenius(A=(0.000924,'cm^3/(mol*s)'), n=4.34, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CdCs
""",
@@ -33477,7 +33477,7 @@
kinetics = Arrhenius(A=(0.000113,'cm^3/(mol*s)'), n=4.34, Ea=(18.4096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CdCs2
""",
@@ -33490,7 +33490,7 @@
kinetics = Arrhenius(A=(0.000961,'cm^3/(mol*s)'), n=4.34, Ea=(42.5931,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CdCd
""",
@@ -33503,7 +33503,7 @@
kinetics = Arrhenius(A=(3.39e-05,'cm^3/(mol*s)'), n=4.34, Ea=(28.8696,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CdCdCs
""",
@@ -33516,7 +33516,7 @@
kinetics = Arrhenius(A=(0.0024,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/Ct
""",
@@ -33529,7 +33529,7 @@
kinetics = Arrhenius(A=(0.000622,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CtCs
""",
@@ -33542,7 +33542,7 @@
kinetics = Arrhenius(A=(0.000184,'cm^3/(mol*s)'), n=4.34, Ea=(9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CtCs2
""",
@@ -33555,7 +33555,7 @@
kinetics = Arrhenius(A=(0.0018,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CtCt
""",
@@ -33568,7 +33568,7 @@
kinetics = Arrhenius(A=(5.71e-05,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CtCtCs
""",
@@ -33581,7 +33581,7 @@
kinetics = Arrhenius(A=(0.00176,'cm^3/(mol*s)'), n=4.34, Ea=(16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/Cb
""",
@@ -33594,7 +33594,7 @@
kinetics = Arrhenius(A=(0.000583,'cm^3/(mol*s)'), n=4.34, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CbCs
""",
@@ -33607,7 +33607,7 @@
kinetics = Arrhenius(A=(2.25e-05,'cm^3/(mol*s)'), n=4.34, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CbCs2
""",
@@ -33620,7 +33620,7 @@
kinetics = Arrhenius(A=(0.00448,'cm^3/(mol*s)'), n=4.34, Ea=(-14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_pri_rad
""",
@@ -33633,7 +33633,7 @@
kinetics = Arrhenius(A=(0.00199,'cm^3/(mol*s)'), n=4.34, Ea=(-19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_rad/NonDeC
""",
@@ -33646,7 +33646,7 @@
kinetics = Arrhenius(A=(0.00207,'cm^3/(mol*s)'), n=4.34, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_rad/Cd
""",
@@ -33659,7 +33659,7 @@
kinetics = Arrhenius(A=(0.0057,'cm^3/(mol*s)'), n=4.34, Ea=(-25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cb_rad
""",
@@ -33672,7 +33672,7 @@
kinetics = Arrhenius(A=(0.00214,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_Cdd_rad/H
""",
@@ -33685,7 +33685,7 @@
kinetics = Arrhenius(A=(0.000333,'cm^3/(mol*s)'), n=4.34, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/S
""",
@@ -33698,7 +33698,7 @@
kinetics = Arrhenius(A=(0.000736,'cm^3/(mol*s)'), n=4.34, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CsS
""",
@@ -33711,7 +33711,7 @@
kinetics = Arrhenius(A=(0.000336,'cm^3/(mol*s)'), n=4.34, Ea=(-14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/Cs2S
""",
@@ -33724,7 +33724,7 @@
kinetics = Arrhenius(A=(0.00047,'cm^3/(mol*s)'), n=4.34, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H2/CS
""",
@@ -33737,7 +33737,7 @@
kinetics = Arrhenius(A=(0.000575,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CSCs
""",
@@ -33750,7 +33750,7 @@
kinetics = Arrhenius(A=(0.000209,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CSCs2
""",
@@ -33763,7 +33763,7 @@
kinetics = Arrhenius(A=(0.000369,'cm^3/(mol*s)'), n=4.34, Ea=(-47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_rad/NonDeS
""",
@@ -33776,7 +33776,7 @@
kinetics = Arrhenius(A=(0.0179,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_rad/CS
""",
@@ -33789,7 +33789,7 @@
kinetics = Arrhenius(A=(0.000907,'cm^3/(mol*s)'), n=4.34, Ea=(21.0874,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CdS
""",
@@ -33802,7 +33802,7 @@
kinetics = Arrhenius(A=(9.18e-05,'cm^3/(mol*s)'), n=4.34, Ea=(16.6105,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CdCsS
""",
@@ -33815,7 +33815,7 @@
kinetics = Arrhenius(A=(0.00146,'cm^3/(mol*s)'), n=4.34, Ea=(69.0778,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CSS
""",
@@ -33828,7 +33828,7 @@
kinetics = Arrhenius(A=(0.000306,'cm^3/(mol*s)'), n=4.34, Ea=(67.8226,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CSCsS
""",
@@ -33841,7 +33841,7 @@
kinetics = Arrhenius(A=(0.00114,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CtS
""",
@@ -33854,7 +33854,7 @@
kinetics = Arrhenius(A=(0.000217,'cm^3/(mol*s)'), n=4.34, Ea=(8.5772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/H/CbS
""",
@@ -33867,7 +33867,7 @@
kinetics = Arrhenius(A=(6.18e-05,'cm^3/(mol*s)'), n=4.34, Ea=(-4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;C_rad/CbCsS
""",
@@ -33880,7 +33880,7 @@
kinetics = Arrhenius(A=(0.0154,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;CS_pri_rad
""",
@@ -33893,7 +33893,7 @@
kinetics = Arrhenius(A=(0.00775,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;CS_rad/Cs
""",
@@ -33906,7 +33906,7 @@
kinetics = Arrhenius(A=(0.00369,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;CS_rad/S
""",
@@ -33919,7 +33919,7 @@
kinetics = Arrhenius(A=(0.00647,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;CS_rad/Cd
""",
@@ -33932,7 +33932,7 @@
kinetics = Arrhenius(A=(0.0181,'cm^3/(mol*s)'), n=4.34, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;CS_rad/Ct
""",
@@ -33945,7 +33945,7 @@
kinetics = Arrhenius(A=(0.27,'cm^3/(mol*s)'), n=4.34, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;H_rad
""",
@@ -33958,7 +33958,7 @@
kinetics = Arrhenius(A=(0.00642,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_methyl
""",
@@ -33971,7 +33971,7 @@
kinetics = Arrhenius(A=(0.000872,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/Cs
""",
@@ -33984,7 +33984,7 @@
kinetics = Arrhenius(A=(0.000972,'cm^3/(mol*s)'), n=4.34, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/NonDeC
""",
@@ -33997,7 +33997,7 @@
kinetics = Arrhenius(A=(0.000942,'cm^3/(mol*s)'), n=4.34, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/Cs3
""",
@@ -34010,7 +34010,7 @@
kinetics = Arrhenius(A=(0.00712,'cm^3/(mol*s)'), n=4.34, Ea=(41.0032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/Cd
""",
@@ -34023,7 +34023,7 @@
kinetics = Arrhenius(A=(0.00214,'cm^3/(mol*s)'), n=4.34, Ea=(41.0032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CdCs
""",
@@ -34036,7 +34036,7 @@
kinetics = Arrhenius(A=(0.00032,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CdCs2
""",
@@ -34049,7 +34049,7 @@
kinetics = Arrhenius(A=(0.0022,'cm^3/(mol*s)'), n=4.34, Ea=(55.2288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CdCd
""",
@@ -34062,7 +34062,7 @@
kinetics = Arrhenius(A=(9.54e-05,'cm^3/(mol*s)'), n=4.34, Ea=(49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CdCdCs
""",
@@ -34075,7 +34075,7 @@
kinetics = Arrhenius(A=(0.00182,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/Ct
""",
@@ -34088,7 +34088,7 @@
kinetics = Arrhenius(A=(0.000578,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CtCs
""",
@@ -34101,7 +34101,7 @@
kinetics = Arrhenius(A=(0.00021,'cm^3/(mol*s)'), n=4.34, Ea=(20.0832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CtCs2
""",
@@ -34114,7 +34114,7 @@
kinetics = Arrhenius(A=(0.00067,'cm^3/(mol*s)'), n=4.34, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CtCt
""",
@@ -34127,7 +34127,7 @@
kinetics = Arrhenius(A=(2.6e-05,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CtCtCs
""",
@@ -34140,7 +34140,7 @@
kinetics = Arrhenius(A=(0.000794,'cm^3/(mol*s)'), n=4.34, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CtS;Cd_rad/Ct
""",
@@ -34153,7 +34153,7 @@
kinetics = Arrhenius(A=(0.0033,'cm^3/(mol*s)'), n=4.34, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/Cb
""",
@@ -34166,7 +34166,7 @@
kinetics = Arrhenius(A=(0.001344,'cm^3/(mol*s)'), n=4.34, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CbCs
""",
@@ -34179,7 +34179,7 @@
kinetics = Arrhenius(A=(6.36e-05,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CbCs2
""",
@@ -34192,7 +34192,7 @@
kinetics = Arrhenius(A=(0.00692,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_pri_rad
""",
@@ -34205,7 +34205,7 @@
kinetics = Arrhenius(A=(0.00378,'cm^3/(mol*s)'), n=4.34, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_rad/NonDeC
""",
@@ -34218,7 +34218,7 @@
kinetics = Arrhenius(A=(0.0032,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_rad/Cd
""",
@@ -34231,7 +34231,7 @@
kinetics = Arrhenius(A=(0.0088,'cm^3/(mol*s)'), n=4.34, Ea=(-14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cb_rad
""",
@@ -34244,7 +34244,7 @@
kinetics = Arrhenius(A=(0.00404,'cm^3/(mol*s)'), n=4.34, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_Cdd_rad/H
""",
@@ -34257,7 +34257,7 @@
kinetics = Arrhenius(A=(0.000534,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/S
""",
@@ -34270,7 +34270,7 @@
kinetics = Arrhenius(A=(0.001444,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CsS
""",
@@ -34283,7 +34283,7 @@
kinetics = Arrhenius(A=(0.000808,'cm^3/(mol*s)'), n=4.34, Ea=(1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/Cs2S
""",
@@ -34296,7 +34296,7 @@
kinetics = Arrhenius(A=(0.000772,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H2/CS
""",
@@ -34309,7 +34309,7 @@
kinetics = Arrhenius(A=(0.001158,'cm^3/(mol*s)'), n=4.34, Ea=(45.1872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CSCs
""",
@@ -34322,7 +34322,7 @@
kinetics = Arrhenius(A=(0.000516,'cm^3/(mol*s)'), n=4.34, Ea=(47.6976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CSCs2
""",
@@ -34335,7 +34335,7 @@
kinetics = Arrhenius(A=(0.000608,'cm^3/(mol*s)'), n=4.34, Ea=(-37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_rad/NonDeS
""",
@@ -34348,7 +34348,7 @@
kinetics = Arrhenius(A=(0.0276,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_rad/CS
""",
@@ -34361,7 +34361,7 @@
kinetics = Arrhenius(A=(0.001772,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CdS
""",
@@ -34374,7 +34374,7 @@
kinetics = Arrhenius(A=(0.00022,'cm^3/(mol*s)'), n=4.34, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CdCsS
""",
@@ -34387,7 +34387,7 @@
kinetics = Arrhenius(A=(0.0025,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CSS
""",
@@ -34400,7 +34400,7 @@
kinetics = Arrhenius(A=(0.00064,'cm^3/(mol*s)'), n=4.34, Ea=(59.2454,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CSCsS
""",
@@ -34413,7 +34413,7 @@
kinetics = Arrhenius(A=(0.000898,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CtS
""",
@@ -34426,7 +34426,7 @@
kinetics = Arrhenius(A=(0.00034,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CtCsS
""",
@@ -34439,7 +34439,7 @@
kinetics = Arrhenius(A=(0.0001476,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/CbCsS
""",
@@ -34452,7 +34452,7 @@
kinetics = Arrhenius(A=(0.0238,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;CS_pri_rad
""",
@@ -34465,7 +34465,7 @@
kinetics = Arrhenius(A=(0.01466,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;CS_rad/Cs
""",
@@ -34478,7 +34478,7 @@
kinetics = Arrhenius(A=(0.00592,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;CS_rad/S
""",
@@ -34491,7 +34491,7 @@
kinetics = Arrhenius(A=(0.00998,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;CS_rad/Cd
""",
@@ -34504,7 +34504,7 @@
kinetics = Arrhenius(A=(0.028,'cm^3/(mol*s)'), n=4.34, Ea=(70.7096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;CS_rad/Ct
""",
@@ -34517,7 +34517,7 @@
kinetics = Arrhenius(A=(0.0766,'cm^3/(mol*s)'), n=4.34, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;H_rad
""",
@@ -34530,7 +34530,7 @@
kinetics = Arrhenius(A=(0.00182,'cm^3/(mol*s)'), n=4.34, Ea=(10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_methyl
""",
@@ -34543,7 +34543,7 @@
kinetics = Arrhenius(A=(0.000201,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/Cs
""",
@@ -34556,7 +34556,7 @@
kinetics = Arrhenius(A=(0.000183,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/NonDeC
""",
@@ -34569,7 +34569,7 @@
kinetics = Arrhenius(A=(0.000145,'cm^3/(mol*s)'), n=4.34, Ea=(-4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/Cs3
""",
@@ -34582,7 +34582,7 @@
kinetics = Arrhenius(A=(0.001656,'cm^3/(mol*s)'), n=4.34, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/Cd
""",
@@ -34595,7 +34595,7 @@
kinetics = Arrhenius(A=(0.000404,'cm^3/(mol*s)'), n=4.34, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CdCs
""",
@@ -34608,7 +34608,7 @@
kinetics = Arrhenius(A=(4.95e-05,'cm^3/(mol*s)'), n=4.34, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CdCs2
""",
@@ -34621,7 +34621,7 @@
kinetics = Arrhenius(A=(0.00042,'cm^3/(mol*s)'), n=4.34, Ea=(44.8943,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CdCd
""",
@@ -34634,7 +34634,7 @@
kinetics = Arrhenius(A=(1.48e-05,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CdCdCs
""",
@@ -34647,7 +34647,7 @@
kinetics = Arrhenius(A=(0.000423,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/Ct
""",
@@ -34660,7 +34660,7 @@
kinetics = Arrhenius(A=(0.00011,'cm^3/(mol*s)'), n=4.34, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CtCs
""",
@@ -34673,7 +34673,7 @@
kinetics = Arrhenius(A=(3.25e-05,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CtCs2
""",
@@ -34686,7 +34686,7 @@
kinetics = Arrhenius(A=(0.000128,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CtCt
""",
@@ -34699,7 +34699,7 @@
kinetics = Arrhenius(A=(4.05e-06,'cm^3/(mol*s)'), n=4.34, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CtCtCs
""",
@@ -34712,7 +34712,7 @@
kinetics = Arrhenius(A=(0.000768,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/Cb
""",
@@ -34725,7 +34725,7 @@
kinetics = Arrhenius(A=(0.000486,'cm^3/(mol*s)'), n=4.34, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CtCsS;Cd_rad/Ct
""",
@@ -34738,7 +34738,7 @@
kinetics = Arrhenius(A=(0.000255,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CbCs
""",
@@ -34751,7 +34751,7 @@
kinetics = Arrhenius(A=(9.86e-06,'cm^3/(mol*s)'), n=4.34, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CbCs2
""",
@@ -34764,7 +34764,7 @@
kinetics = Arrhenius(A=(0.00196,'cm^3/(mol*s)'), n=4.34, Ea=(-8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_pri_rad
""",
@@ -34777,7 +34777,7 @@
kinetics = Arrhenius(A=(0.000872,'cm^3/(mol*s)'), n=4.34, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_rad/NonDeC
""",
@@ -34790,7 +34790,7 @@
kinetics = Arrhenius(A=(0.000904,'cm^3/(mol*s)'), n=4.34, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_rad/Cd
""",
@@ -34803,7 +34803,7 @@
kinetics = Arrhenius(A=(0.00249,'cm^3/(mol*s)'), n=4.34, Ea=(-19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cb_rad
""",
@@ -34816,7 +34816,7 @@
kinetics = Arrhenius(A=(0.000937,'cm^3/(mol*s)'), n=4.34, Ea=(20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_Cdd_rad/H
""",
@@ -34829,7 +34829,7 @@
kinetics = Arrhenius(A=(0.000146,'cm^3/(mol*s)'), n=4.34, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/S
""",
@@ -34842,7 +34842,7 @@
kinetics = Arrhenius(A=(0.000322,'cm^3/(mol*s)'), n=4.34, Ea=(1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CsS
""",
@@ -34855,7 +34855,7 @@
kinetics = Arrhenius(A=(0.000147,'cm^3/(mol*s)'), n=4.34, Ea=(-7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/Cs2S
""",
@@ -34868,7 +34868,7 @@
kinetics = Arrhenius(A=(0.00015,'cm^3/(mol*s)'), n=4.34, Ea=(29.288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H2/CS
""",
@@ -34881,7 +34881,7 @@
kinetics = Arrhenius(A=(0.000183,'cm^3/(mol*s)'), n=4.34, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CSCs
""",
@@ -34894,7 +34894,7 @@
kinetics = Arrhenius(A=(6.65e-05,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CSCs2
""",
@@ -34907,7 +34907,7 @@
kinetics = Arrhenius(A=(0.000118,'cm^3/(mol*s)'), n=4.34, Ea=(-49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_rad/NonDeS
""",
@@ -34920,7 +34920,7 @@
kinetics = Arrhenius(A=(0.00783,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_rad/CS
""",
@@ -34933,7 +34933,7 @@
kinetics = Arrhenius(A=(0.000396,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CdS
""",
@@ -34946,7 +34946,7 @@
kinetics = Arrhenius(A=(4.01e-05,'cm^3/(mol*s)'), n=4.34, Ea=(18.9117,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CdCsS
""",
@@ -34959,7 +34959,7 @@
kinetics = Arrhenius(A=(0.000466,'cm^3/(mol*s)'), n=4.34, Ea=(71.379,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CSS
""",
@@ -34972,7 +34972,7 @@
kinetics = Arrhenius(A=(9.75e-05,'cm^3/(mol*s)'), n=4.34, Ea=(70.1238,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CSCsS
""",
@@ -34985,7 +34985,7 @@
kinetics = Arrhenius(A=(0.000201,'cm^3/(mol*s)'), n=4.34, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CtS
""",
@@ -34998,7 +34998,7 @@
kinetics = Arrhenius(A=(6.23e-05,'cm^3/(mol*s)'), n=4.34, Ea=(10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CtCsS
""",
@@ -35011,7 +35011,7 @@
kinetics = Arrhenius(A=(9.5e-05,'cm^3/(mol*s)'), n=4.34, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/H/CbS
""",
@@ -35024,7 +35024,7 @@
kinetics = Arrhenius(A=(0.00675,'cm^3/(mol*s)'), n=4.34, Ea=(39.748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;CS_pri_rad
""",
@@ -35037,7 +35037,7 @@
kinetics = Arrhenius(A=(0.00339,'cm^3/(mol*s)'), n=4.34, Ea=(30.5432,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;CS_rad/Cs
""",
@@ -35050,7 +35050,7 @@
kinetics = Arrhenius(A=(0.00161,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;CS_rad/S
""",
@@ -35063,7 +35063,7 @@
kinetics = Arrhenius(A=(0.00283,'cm^3/(mol*s)'), n=4.34, Ea=(50.6264,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;CS_rad/Cd
""",
@@ -35076,7 +35076,7 @@
kinetics = Arrhenius(A=(0.00791,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;CS_rad/Ct
""",
@@ -35089,7 +35089,7 @@
kinetics = Arrhenius(A=(1.246,'cm^3/(mol*s)'), n=4.34, Ea=(36.2334,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;H_rad
""",
@@ -35102,7 +35102,7 @@
kinetics = Arrhenius(A=(0.00506,'cm^3/(mol*s)'), n=4.34, Ea=(81.0022,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/Cs
""",
@@ -35115,7 +35115,7 @@
kinetics = Arrhenius(A=(0.00714,'cm^3/(mol*s)'), n=4.34, Ea=(70.0402,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/NonDeC
""",
@@ -35128,7 +35128,7 @@
kinetics = Arrhenius(A=(0.00876,'cm^3/(mol*s)'), n=4.34, Ea=(65.5214,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/Cs3
""",
@@ -35141,7 +35141,7 @@
kinetics = Arrhenius(A=(0.16,'cm^3/(mol*s)'), n=4.34, Ea=(134.976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/Cd
""",
@@ -35154,7 +35154,7 @@
kinetics = Arrhenius(A=(0.0604,'cm^3/(mol*s)'), n=4.34, Ea=(123.093,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CdCs
""",
@@ -35167,7 +35167,7 @@
kinetics = Arrhenius(A=(0.01146,'cm^3/(mol*s)'), n=4.34, Ea=(118.575,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CdCs2
""",
@@ -35180,7 +35180,7 @@
kinetics = Arrhenius(A=(0.242,'cm^3/(mol*s)'), n=4.34, Ea=(161.293,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CdCd
""",
@@ -35193,7 +35193,7 @@
kinetics = Arrhenius(A=(0.01318,'cm^3/(mol*s)'), n=4.34, Ea=(113.386,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CdCdCs
""",
@@ -35206,7 +35206,7 @@
kinetics = Arrhenius(A=(0.0408,'cm^3/(mol*s)'), n=4.34, Ea=(129.955,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/Ct
""",
@@ -35219,7 +35219,7 @@
kinetics = Arrhenius(A=(0.01638,'cm^3/(mol*s)'), n=4.34, Ea=(117.11,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CtCs
""",
@@ -35232,7 +35232,7 @@
kinetics = Arrhenius(A=(0.00752,'cm^3/(mol*s)'), n=4.34, Ea=(114.976,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CtCs2
""",
@@ -35245,7 +35245,7 @@
kinetics = Arrhenius(A=(0.0732,'cm^3/(mol*s)'), n=4.34, Ea=(87.4456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CtCt
""",
@@ -35258,7 +35258,7 @@
kinetics = Arrhenius(A=(0.0036,'cm^3/(mol*s)'), n=4.34, Ea=(92.048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CtCtCs
""",
@@ -35271,7 +35271,7 @@
kinetics = Arrhenius(A=(0.0742,'cm^3/(mol*s)'), n=4.34, Ea=(124.148,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/Cb
""",
@@ -35284,7 +35284,7 @@
kinetics = Arrhenius(A=(0.0382,'cm^3/(mol*s)'), n=4.34, Ea=(113.202,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CbCs
""",
@@ -35297,7 +35297,7 @@
kinetics = Arrhenius(A=(0.00075,'cm^3/(mol*s)'), n=4.34, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;Cd_rad/Ct
""",
@@ -35310,7 +35310,7 @@
kinetics = Arrhenius(A=(0.00228,'cm^3/(mol*s)'), n=4.34, Ea=(114.809,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CbCs2
""",
@@ -35323,7 +35323,7 @@
kinetics = Arrhenius(A=(0.0318,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_pri_rad
""",
@@ -35336,7 +35336,7 @@
kinetics = Arrhenius(A=(0.022,'cm^3/(mol*s)'), n=4.34, Ea=(10.5018,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_rad/NonDeC
""",
@@ -35349,7 +35349,7 @@
kinetics = Arrhenius(A=(0.01468,'cm^3/(mol*s)'), n=4.34, Ea=(56.5677,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_rad/Cd
""",
@@ -35362,7 +35362,7 @@
kinetics = Arrhenius(A=(0.0406,'cm^3/(mol*s)'), n=4.34, Ea=(-14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cb_rad
""",
@@ -35375,7 +35375,7 @@
kinetics = Arrhenius(A=(0.0904,'cm^3/(mol*s)'), n=4.34, Ea=(103.931,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_Cdd_rad/H
""",
@@ -35388,7 +35388,7 @@
kinetics = Arrhenius(A=(0.0118,'cm^3/(mol*s)'), n=4.34, Ea=(105.311,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/S
""",
@@ -35401,7 +35401,7 @@
kinetics = Arrhenius(A=(0.0404,'cm^3/(mol*s)'), n=4.34, Ea=(93.4287,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CsS
""",
@@ -35414,7 +35414,7 @@
kinetics = Arrhenius(A=(0.0286,'cm^3/(mol*s)'), n=4.34, Ea=(83.3453,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/Cs2S
""",
@@ -35427,7 +35427,7 @@
kinetics = Arrhenius(A=(0.0966,'cm^3/(mol*s)'), n=4.34, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H2/CS
""",
@@ -35440,7 +35440,7 @@
kinetics = Arrhenius(A=(0.183,'cm^3/(mol*s)'), n=4.34, Ea=(96.232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CSCs
""",
@@ -35453,7 +35453,7 @@
kinetics = Arrhenius(A=(0.1028,'cm^3/(mol*s)'), n=4.34, Ea=(106.274,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CSCs2
""",
@@ -35466,7 +35466,7 @@
kinetics = Arrhenius(A=(0.0758,'cm^3/(mol*s)'), n=4.34, Ea=(27.196,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_rad/NonDeS
""",
@@ -35479,7 +35479,7 @@
kinetics = Arrhenius(A=(0.1272,'cm^3/(mol*s)'), n=4.34, Ea=(61.0864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_rad/CS
""",
@@ -35492,7 +35492,7 @@
kinetics = Arrhenius(A=(0.1908,'cm^3/(mol*s)'), n=4.34, Ea=(139.787,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CdS
""",
@@ -35505,7 +35505,7 @@
kinetics = Arrhenius(A=(0.03,'cm^3/(mol*s)'), n=4.34, Ea=(135.311,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CdCsS
""",
@@ -35518,7 +35518,7 @@
kinetics = Arrhenius(A=(1.502,'cm^3/(mol*s)'), n=4.34, Ea=(187.778,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CSS
""",
@@ -35531,7 +35531,7 @@
kinetics = Arrhenius(A=(0.486,'cm^3/(mol*s)'), n=4.34, Ea=(186.523,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CSCsS
""",
@@ -35544,7 +35544,7 @@
kinetics = Arrhenius(A=(0.0968,'cm^3/(mol*s)'), n=4.34, Ea=(123.302,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CtS
""",
@@ -35557,7 +35557,7 @@
kinetics = Arrhenius(A=(0.0464,'cm^3/(mol*s)'), n=4.34, Ea=(118.7,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CtCsS
""",
@@ -35570,7 +35570,7 @@
kinetics = Arrhenius(A=(0.0458,'cm^3/(mol*s)'), n=4.34, Ea=(127.277,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/H/CbS
""",
@@ -35583,7 +35583,7 @@
kinetics = Arrhenius(A=(0.0202,'cm^3/(mol*s)'), n=4.34, Ea=(116.399,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;C_rad/CbCsS
""",
@@ -35596,7 +35596,7 @@
kinetics = Arrhenius(A=(0.0852,'cm^3/(mol*s)'), n=4.34, Ea=(43.932,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;CS_rad/Cs
""",
@@ -35609,7 +35609,7 @@
kinetics = Arrhenius(A=(0.1306,'cm^3/(mol*s)'), n=4.34, Ea=(54.8104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;CS_rad/S
""",
@@ -35622,7 +35622,7 @@
kinetics = Arrhenius(A=(0.046,'cm^3/(mol*s)'), n=4.34, Ea=(76.0651,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;CS_rad/Cd
""",
@@ -35635,7 +35635,7 @@
kinetics = Arrhenius(A=(0.1286,'cm^3/(mol*s)'), n=4.34, Ea=(71.128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;CS_rad/Ct
""",
@@ -35648,7 +35648,7 @@
kinetics = Arrhenius(A=(0.252,'cm^3/(mol*s)'), n=4.34, Ea=(32.7189,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;H_rad
""",
@@ -35661,7 +35661,7 @@
kinetics = Arrhenius(A=(0.00598,'cm^3/(mol*s)'), n=4.34, Ea=(94.1818,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_methyl
""",
@@ -35674,7 +35674,7 @@
kinetics = Arrhenius(A=(0.000966,'cm^3/(mol*s)'), n=4.34, Ea=(66.5256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/NonDeC
""",
@@ -35687,7 +35687,7 @@
kinetics = Arrhenius(A=(0.000967,'cm^3/(mol*s)'), n=4.34, Ea=(62.0069,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/Cs3
""",
@@ -35700,7 +35700,7 @@
kinetics = Arrhenius(A=(0.0266,'cm^3/(mol*s)'), n=4.34, Ea=(131.461,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/Cd
""",
@@ -35713,7 +35713,7 @@
kinetics = Arrhenius(A=(0.0082,'cm^3/(mol*s)'), n=4.34, Ea=(119.579,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CdCs
""",
@@ -35726,7 +35726,7 @@
kinetics = Arrhenius(A=(0.00127,'cm^3/(mol*s)'), n=4.34, Ea=(115.06,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CdCs2
""",
@@ -35739,7 +35739,7 @@
kinetics = Arrhenius(A=(0.0329,'cm^3/(mol*s)'), n=4.34, Ea=(157.779,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CdCd
""",
@@ -35752,7 +35752,7 @@
kinetics = Arrhenius(A=(0.00147,'cm^3/(mol*s)'), n=4.34, Ea=(100.416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CdCdCs
""",
@@ -35765,7 +35765,7 @@
kinetics = Arrhenius(A=(0.00678,'cm^3/(mol*s)'), n=4.34, Ea=(126.44,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/Ct
""",
@@ -35778,7 +35778,7 @@
kinetics = Arrhenius(A=(0.00222,'cm^3/(mol*s)'), n=4.34, Ea=(113.596,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CtCs
""",
@@ -35791,7 +35791,7 @@
kinetics = Arrhenius(A=(0.000833,'cm^3/(mol*s)'), n=4.34, Ea=(111.462,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CtCs2
""",
@@ -35804,7 +35804,7 @@
kinetics = Arrhenius(A=(0.00998,'cm^3/(mol*s)'), n=4.34, Ea=(75.312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CtCt
""",
@@ -35817,7 +35817,7 @@
kinetics = Arrhenius(A=(0.000401,'cm^3/(mol*s)'), n=4.34, Ea=(79.0776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CtCtCs
""",
@@ -35830,7 +35830,7 @@
kinetics = Arrhenius(A=(0.0123,'cm^3/(mol*s)'), n=4.34, Ea=(120.633,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/Cb
""",
@@ -35843,7 +35843,7 @@
kinetics = Arrhenius(A=(0.00517,'cm^3/(mol*s)'), n=4.34, Ea=(109.688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CbCs
""",
@@ -35856,7 +35856,7 @@
kinetics = Arrhenius(A=(0.000253,'cm^3/(mol*s)'), n=4.34, Ea=(111.294,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CbCs2
""",
@@ -35869,7 +35869,7 @@
kinetics = Arrhenius(A=(0.000212,'cm^3/(mol*s)'), n=4.34, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;Cd_rad/Ct
""",
@@ -35882,7 +35882,7 @@
kinetics = Arrhenius(A=(0.00645,'cm^3/(mol*s)'), n=4.34, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_pri_rad
""",
@@ -35895,7 +35895,7 @@
kinetics = Arrhenius(A=(0.00363,'cm^3/(mol*s)'), n=4.34, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_rad/NonDeC
""",
@@ -35908,7 +35908,7 @@
kinetics = Arrhenius(A=(0.00298,'cm^3/(mol*s)'), n=4.34, Ea=(53.0531,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_rad/Cd
""",
@@ -35921,7 +35921,7 @@
kinetics = Arrhenius(A=(0.0082,'cm^3/(mol*s)'), n=4.34, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cb_rad
""",
@@ -35934,7 +35934,7 @@
kinetics = Arrhenius(A=(0.015,'cm^3/(mol*s)'), n=4.34, Ea=(100.416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_Cdd_rad/H
""",
@@ -35947,7 +35947,7 @@
kinetics = Arrhenius(A=(0.0023,'cm^3/(mol*s)'), n=4.34, Ea=(101.797,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/S
""",
@@ -35960,7 +35960,7 @@
kinetics = Arrhenius(A=(0.00372,'cm^3/(mol*s)'), n=4.34, Ea=(79.8307,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/Cs2S
""",
@@ -35973,7 +35973,7 @@
kinetics = Arrhenius(A=(0.0134,'cm^3/(mol*s)'), n=4.34, Ea=(77.6969,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H2/CS
""",
@@ -35986,7 +35986,7 @@
kinetics = Arrhenius(A=(0.0207,'cm^3/(mol*s)'), n=4.34, Ea=(85.772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CSCs
""",
@@ -35999,7 +35999,7 @@
kinetics = Arrhenius(A=(0.00951,'cm^3/(mol*s)'), n=4.34, Ea=(95.3952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CSCs2
""",
@@ -36012,7 +36012,7 @@
kinetics = Arrhenius(A=(0.0105,'cm^3/(mol*s)'), n=4.34, Ea=(-4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_rad/NonDeS
""",
@@ -36025,7 +36025,7 @@
kinetics = Arrhenius(A=(0.0258,'cm^3/(mol*s)'), n=4.34, Ea=(57.7392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_rad/CS
""",
@@ -36038,7 +36038,7 @@
kinetics = Arrhenius(A=(0.0306,'cm^3/(mol*s)'), n=4.34, Ea=(136.273,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CdS
""",
@@ -36051,7 +36051,7 @@
kinetics = Arrhenius(A=(0.00391,'cm^3/(mol*s)'), n=4.34, Ea=(131.796,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CdCsS
""",
@@ -36064,7 +36064,7 @@
kinetics = Arrhenius(A=(0.2,'cm^3/(mol*s)'), n=4.34, Ea=(184.263,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CSS
""",
@@ -36077,7 +36077,7 @@
kinetics = Arrhenius(A=(0.053,'cm^3/(mol*s)'), n=4.34, Ea=(183.008,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CSCsS
""",
@@ -36090,7 +36090,7 @@
kinetics = Arrhenius(A=(0.0155,'cm^3/(mol*s)'), n=4.34, Ea=(119.788,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CtS
""",
@@ -36103,7 +36103,7 @@
kinetics = Arrhenius(A=(0.00608,'cm^3/(mol*s)'), n=4.34, Ea=(115.186,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CtCsS
""",
@@ -36116,7 +36116,7 @@
kinetics = Arrhenius(A=(0.00733,'cm^3/(mol*s)'), n=4.34, Ea=(123.763,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/H/CbS
""",
@@ -36129,7 +36129,7 @@
kinetics = Arrhenius(A=(0.00263,'cm^3/(mol*s)'), n=4.34, Ea=(112.884,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;C_rad/CbCsS
""",
@@ -36142,7 +36142,7 @@
kinetics = Arrhenius(A=(0.0222,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;CS_pri_rad
""",
@@ -36155,7 +36155,7 @@
kinetics = Arrhenius(A=(0.0255,'cm^3/(mol*s)'), n=4.34, Ea=(48.5344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;CS_rad/S
""",
@@ -36168,7 +36168,7 @@
kinetics = Arrhenius(A=(0.00931,'cm^3/(mol*s)'), n=4.34, Ea=(72.5506,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;CS_rad/Cd
""",
@@ -36181,7 +36181,7 @@
kinetics = Arrhenius(A=(0.026,'cm^3/(mol*s)'), n=4.34, Ea=(68.1992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;CS_rad/Ct
""",
@@ -36194,7 +36194,7 @@
kinetics = Arrhenius(A=(0.246,'cm^3/(mol*s)'), n=4.34, Ea=(46.9026,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;H_rad
""",
@@ -36207,7 +36207,7 @@
kinetics = Arrhenius(A=(0.00582,'cm^3/(mol*s)'), n=4.34, Ea=(108.366,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_methyl
""",
@@ -36220,7 +36220,7 @@
kinetics = Arrhenius(A=(0.000963,'cm^3/(mol*s)'), n=4.34, Ea=(91.6714,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/Cs
""",
@@ -36233,7 +36233,7 @@
kinetics = Arrhenius(A=(0.00131,'cm^3/(mol*s)'), n=4.34, Ea=(80.7094,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/NonDeC
""",
@@ -36246,7 +36246,7 @@
kinetics = Arrhenius(A=(0.00155,'cm^3/(mol*s)'), n=4.34, Ea=(76.1906,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/Cs3
""",
@@ -36259,7 +36259,7 @@
kinetics = Arrhenius(A=(0.025,'cm^3/(mol*s)'), n=4.34, Ea=(145.645,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/Cd
""",
@@ -36272,7 +36272,7 @@
kinetics = Arrhenius(A=(0.00908,'cm^3/(mol*s)'), n=4.34, Ea=(133.762,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CdCs
""",
@@ -36285,7 +36285,7 @@
kinetics = Arrhenius(A=(0.00166,'cm^3/(mol*s)'), n=4.34, Ea=(129.244,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CdCs2
""",
@@ -36298,7 +36298,7 @@
kinetics = Arrhenius(A=(0.0297,'cm^3/(mol*s)'), n=4.34, Ea=(171.962,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CdCd
""",
@@ -36311,7 +36311,7 @@
kinetics = Arrhenius(A=(0.00157,'cm^3/(mol*s)'), n=4.34, Ea=(80.3328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CdCdCs
""",
@@ -36324,7 +36324,7 @@
kinetics = Arrhenius(A=(0.00636,'cm^3/(mol*s)'), n=4.34, Ea=(140.624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/Ct
""",
@@ -36337,7 +36337,7 @@
kinetics = Arrhenius(A=(0.00246,'cm^3/(mol*s)'), n=4.34, Ea=(127.779,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CtCs
""",
@@ -36350,7 +36350,7 @@
kinetics = Arrhenius(A=(0.00109,'cm^3/(mol*s)'), n=4.34, Ea=(125.646,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CtCs2
""",
@@ -36363,7 +36363,7 @@
kinetics = Arrhenius(A=(0.00902,'cm^3/(mol*s)'), n=4.34, Ea=(63.5131,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CtCt
""",
@@ -36376,7 +36376,7 @@
kinetics = Arrhenius(A=(0.000428,'cm^3/(mol*s)'), n=4.34, Ea=(61.0446,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CtCtCs
""",
@@ -36389,7 +36389,7 @@
kinetics = Arrhenius(A=(0.0116,'cm^3/(mol*s)'), n=4.34, Ea=(134.817,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/Cb
""",
@@ -36402,7 +36402,7 @@
kinetics = Arrhenius(A=(0.00573,'cm^3/(mol*s)'), n=4.34, Ea=(123.872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CbCs
""",
@@ -36415,7 +36415,7 @@
kinetics = Arrhenius(A=(0.00033,'cm^3/(mol*s)'), n=4.34, Ea=(125.478,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CbCs2
""",
@@ -36428,7 +36428,7 @@
kinetics = Arrhenius(A=(0.00627,'cm^3/(mol*s)'), n=4.34, Ea=(-10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_pri_rad
""",
@@ -36441,7 +36441,7 @@
kinetics = Arrhenius(A=(0.00344,'cm^3/(mol*s)'), n=4.34, Ea=(18.0749,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS_pri;Cd_rad/Ct
""",
@@ -36454,7 +36454,7 @@
kinetics = Arrhenius(A=(0.00417,'cm^3/(mol*s)'), n=4.34, Ea=(-9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_rad/NonDeC
""",
@@ -36467,7 +36467,7 @@
kinetics = Arrhenius(A=(0.0029,'cm^3/(mol*s)'), n=4.34, Ea=(67.2369,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_rad/Cd
""",
@@ -36480,7 +36480,7 @@
kinetics = Arrhenius(A=(0.00798,'cm^3/(mol*s)'), n=4.34, Ea=(-21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cb_rad
""",
@@ -36493,7 +36493,7 @@
kinetics = Arrhenius(A=(0.0141,'cm^3/(mol*s)'), n=4.34, Ea=(114.6,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_Cdd_rad/H
""",
@@ -36506,7 +36506,7 @@
kinetics = Arrhenius(A=(0.000612,'cm^3/(mol*s)'), n=4.34, Ea=(115.98,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/S
""",
@@ -36519,7 +36519,7 @@
kinetics = Arrhenius(A=(0.00202,'cm^3/(mol*s)'), n=4.34, Ea=(104.098,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CsS
""",
@@ -36532,7 +36532,7 @@
kinetics = Arrhenius(A=(0.00137,'cm^3/(mol*s)'), n=4.34, Ea=(94.0145,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/Cs2S
""",
@@ -36545,7 +36545,7 @@
kinetics = Arrhenius(A=(0.00454,'cm^3/(mol*s)'), n=4.34, Ea=(91.8806,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H2/CS
""",
@@ -36558,7 +36558,7 @@
kinetics = Arrhenius(A=(0.00829,'cm^3/(mol*s)'), n=4.34, Ea=(80.542,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CSCs
""",
@@ -36571,7 +36571,7 @@
kinetics = Arrhenius(A=(0.00449,'cm^3/(mol*s)'), n=4.34, Ea=(77.404,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CSCs2
""",
@@ -36584,7 +36584,7 @@
kinetics = Arrhenius(A=(0.00357,'cm^3/(mol*s)'), n=4.34, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_rad/NonDeS
""",
@@ -36597,7 +36597,7 @@
kinetics = Arrhenius(A=(0.0251,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_rad/CS
""",
@@ -36610,7 +36610,7 @@
kinetics = Arrhenius(A=(0.00783,'cm^3/(mol*s)'), n=4.34, Ea=(150.457,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CdS
""",
@@ -36623,7 +36623,7 @@
kinetics = Arrhenius(A=(0.00118,'cm^3/(mol*s)'), n=4.34, Ea=(145.98,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CdCsS
""",
@@ -36636,7 +36636,7 @@
kinetics = Arrhenius(A=(0.0186,'cm^3/(mol*s)'), n=4.34, Ea=(198.447,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CSS
""",
@@ -36649,7 +36649,7 @@
kinetics = Arrhenius(A=(0.00579,'cm^3/(mol*s)'), n=4.34, Ea=(197.192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CSCsS
""",
@@ -36662,7 +36662,7 @@
kinetics = Arrhenius(A=(0.00397,'cm^3/(mol*s)'), n=4.34, Ea=(133.972,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CtS
""",
@@ -36675,7 +36675,7 @@
kinetics = Arrhenius(A=(0.00184,'cm^3/(mol*s)'), n=4.34, Ea=(129.369,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CtCsS
""",
@@ -36688,7 +36688,7 @@
kinetics = Arrhenius(A=(0.00188,'cm^3/(mol*s)'), n=4.34, Ea=(137.946,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/H/CbS
""",
@@ -36701,7 +36701,7 @@
kinetics = Arrhenius(A=(0.000795,'cm^3/(mol*s)'), n=4.34, Ea=(127.068,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;C_rad/CbCsS
""",
@@ -36714,7 +36714,7 @@
kinetics = Arrhenius(A=(0.0216,'cm^3/(mol*s)'), n=4.34, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;CS_pri_rad
""",
@@ -36727,7 +36727,7 @@
kinetics = Arrhenius(A=(0.0162,'cm^3/(mol*s)'), n=4.34, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;CS_rad/Cs
""",
@@ -36740,7 +36740,7 @@
kinetics = Arrhenius(A=(0.00906,'cm^3/(mol*s)'), n=4.34, Ea=(86.7343,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;CS_rad/Cd
""",
@@ -36753,7 +36753,7 @@
kinetics = Arrhenius(A=(0.0253,'cm^3/(mol*s)'), n=4.34, Ea=(64.4336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;CS_rad/Ct
""",
@@ -36766,7 +36766,7 @@
kinetics = Arrhenius(A=(0.216,'cm^3/(mol*s)'), n=4.34, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;H_rad
""",
@@ -36779,7 +36779,7 @@
kinetics = Arrhenius(A=(0.00512,'cm^3/(mol*s)'), n=4.34, Ea=(21.6313,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_methyl
""",
@@ -36792,7 +36792,7 @@
kinetics = Arrhenius(A=(0.000879,'cm^3/(mol*s)'), n=4.34, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/Cs
""",
@@ -36805,7 +36805,7 @@
kinetics = Arrhenius(A=(0.00124,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/NonDeC
""",
@@ -36818,7 +36818,7 @@
kinetics = Arrhenius(A=(0.00152,'cm^3/(mol*s)'), n=4.34, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/Cs3
""",
@@ -36831,7 +36831,7 @@
kinetics = Arrhenius(A=(0.0278,'cm^3/(mol*s)'), n=4.34, Ea=(67.3624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/Cd
""",
@@ -36844,7 +36844,7 @@
kinetics = Arrhenius(A=(0.0105,'cm^3/(mol*s)'), n=4.34, Ea=(74.8936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CdCs
""",
@@ -36857,7 +36857,7 @@
kinetics = Arrhenius(A=(0.00199,'cm^3/(mol*s)'), n=4.34, Ea=(76.9856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CdCs2
""",
@@ -36870,7 +36870,7 @@
kinetics = Arrhenius(A=(0.0418,'cm^3/(mol*s)'), n=4.34, Ea=(109.621,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CdCd
""",
@@ -36883,7 +36883,7 @@
kinetics = Arrhenius(A=(0.00228,'cm^3/(mol*s)'), n=4.34, Ea=(111.294,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CdCdCs
""",
@@ -36896,7 +36896,7 @@
kinetics = Arrhenius(A=(0.00707,'cm^3/(mol*s)'), n=4.34, Ea=(53.8899,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/Ct
""",
@@ -36909,7 +36909,7 @@
kinetics = Arrhenius(A=(0.00284,'cm^3/(mol*s)'), n=4.34, Ea=(58.1576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CtCs
""",
@@ -36922,7 +36922,7 @@
kinetics = Arrhenius(A=(0.0013,'cm^3/(mol*s)'), n=4.34, Ea=(61.9232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CtCs2
""",
@@ -36935,7 +36935,7 @@
kinetics = Arrhenius(A=(0.0127,'cm^3/(mol*s)'), n=4.34, Ea=(85.3536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CtCt
""",
@@ -36948,7 +36948,7 @@
kinetics = Arrhenius(A=(0.000624,'cm^3/(mol*s)'), n=4.34, Ea=(89.956,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CtCtCs
""",
@@ -36961,7 +36961,7 @@
kinetics = Arrhenius(A=(0.0129,'cm^3/(mol*s)'), n=4.34, Ea=(58.576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/Cb
""",
@@ -36974,7 +36974,7 @@
kinetics = Arrhenius(A=(0.00661,'cm^3/(mol*s)'), n=4.34, Ea=(62.3416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CbCs
""",
@@ -36987,7 +36987,7 @@
kinetics = Arrhenius(A=(0.000395,'cm^3/(mol*s)'), n=4.34, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CbCs2
""",
@@ -37000,7 +37000,7 @@
kinetics = Arrhenius(A=(0.00552,'cm^3/(mol*s)'), n=4.34, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_pri_rad
""",
@@ -37013,7 +37013,7 @@
kinetics = Arrhenius(A=(0.0038,'cm^3/(mol*s)'), n=4.34, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_rad/NonDeC
""",
@@ -37026,7 +37026,7 @@
kinetics = Arrhenius(A=(0.000699,'cm^3/(mol*s)'), n=4.34, Ea=(14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeC;Cd_rad/Ct
""",
@@ -37039,7 +37039,7 @@
kinetics = Arrhenius(A=(0.00255,'cm^3/(mol*s)'), n=4.34, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_rad/Cd
""",
@@ -37052,7 +37052,7 @@
kinetics = Arrhenius(A=(0.00702,'cm^3/(mol*s)'), n=4.34, Ea=(-16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cb_rad
""",
@@ -37065,7 +37065,7 @@
kinetics = Arrhenius(A=(0.0157,'cm^3/(mol*s)'), n=4.34, Ea=(56.484,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_Cdd_rad/H
""",
@@ -37078,7 +37078,7 @@
kinetics = Arrhenius(A=(0.00205,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/S
""",
@@ -37091,7 +37091,7 @@
kinetics = Arrhenius(A=(0.007,'cm^3/(mol*s)'), n=4.34, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CsS
""",
@@ -37104,7 +37104,7 @@
kinetics = Arrhenius(A=(0.00495,'cm^3/(mol*s)'), n=4.34, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/Cs2S
""",
@@ -37117,7 +37117,7 @@
kinetics = Arrhenius(A=(0.0167,'cm^3/(mol*s)'), n=4.34, Ea=(82.0064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H2/CS
""",
@@ -37130,7 +37130,7 @@
kinetics = Arrhenius(A=(0.0317,'cm^3/(mol*s)'), n=4.34, Ea=(94.14,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CSCs
""",
@@ -37143,7 +37143,7 @@
kinetics = Arrhenius(A=(0.0178,'cm^3/(mol*s)'), n=4.34, Ea=(104.6,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CSCs2
""",
@@ -37156,7 +37156,7 @@
kinetics = Arrhenius(A=(0.0132,'cm^3/(mol*s)'), n=4.34, Ea=(3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_rad/NonDeS
""",
@@ -37169,7 +37169,7 @@
kinetics = Arrhenius(A=(0.0221,'cm^3/(mol*s)'), n=4.34, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_rad/CS
""",
@@ -37182,7 +37182,7 @@
kinetics = Arrhenius(A=(0.0331,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CdS
""",
@@ -37195,7 +37195,7 @@
kinetics = Arrhenius(A=(0.00519,'cm^3/(mol*s)'), n=4.34, Ea=(82.4248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CdCsS
""",
@@ -37208,7 +37208,7 @@
kinetics = Arrhenius(A=(0.26,'cm^3/(mol*s)'), n=4.34, Ea=(122.591,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CSS
""",
@@ -37221,7 +37221,7 @@
kinetics = Arrhenius(A=(0.0843,'cm^3/(mol*s)'), n=4.34, Ea=(128.03,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CSCsS
""",
@@ -37234,7 +37234,7 @@
kinetics = Arrhenius(A=(0.0168,'cm^3/(mol*s)'), n=4.34, Ea=(74.4752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CtS
""",
@@ -37247,7 +37247,7 @@
kinetics = Arrhenius(A=(0.00806,'cm^3/(mol*s)'), n=4.34, Ea=(77.8224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CtCsS
""",
@@ -37260,7 +37260,7 @@
kinetics = Arrhenius(A=(0.00793,'cm^3/(mol*s)'), n=4.34, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/H/CbS
""",
@@ -37273,7 +37273,7 @@
kinetics = Arrhenius(A=(0.00349,'cm^3/(mol*s)'), n=4.34, Ea=(69.4544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;C_rad/CbCsS
""",
@@ -37286,7 +37286,7 @@
kinetics = Arrhenius(A=(0.019,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;CS_pri_rad
""",
@@ -37299,7 +37299,7 @@
kinetics = Arrhenius(A=(0.0148,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;CS_rad/Cs
""",
@@ -37312,7 +37312,7 @@
kinetics = Arrhenius(A=(0.0227,'cm^3/(mol*s)'), n=4.34, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;CS_rad/S
""",
@@ -37325,7 +37325,7 @@
kinetics = Arrhenius(A=(0.0223,'cm^3/(mol*s)'), n=4.34, Ea=(69.036,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;CS_rad/Ct
""",
@@ -37338,7 +37338,7 @@
kinetics = Arrhenius(A=(0.26,'cm^3/(mol*s)'), n=4.34, Ea=(85.7302,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;H_rad
""",
@@ -37351,7 +37351,7 @@
kinetics = Arrhenius(A=(0.00615,'cm^3/(mol*s)'), n=4.34, Ea=(147.193,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_methyl
""",
@@ -37364,7 +37364,7 @@
kinetics = Arrhenius(A=(0.00106,'cm^3/(mol*s)'), n=4.34, Ea=(130.499,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/Cs
""",
@@ -37377,7 +37377,7 @@
kinetics = Arrhenius(A=(0.00149,'cm^3/(mol*s)'), n=4.34, Ea=(119.537,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/NonDeC
""",
@@ -37390,7 +37390,7 @@
kinetics = Arrhenius(A=(0.00183,'cm^3/(mol*s)'), n=4.34, Ea=(115.018,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/Cs3
""",
@@ -37403,7 +37403,7 @@
kinetics = Arrhenius(A=(0.0334,'cm^3/(mol*s)'), n=4.34, Ea=(184.473,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/Cd
""",
@@ -37416,7 +37416,7 @@
kinetics = Arrhenius(A=(0.0126,'cm^3/(mol*s)'), n=4.34, Ea=(172.59,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CdCs
""",
@@ -37429,7 +37429,7 @@
kinetics = Arrhenius(A=(0.00239,'cm^3/(mol*s)'), n=4.34, Ea=(168.071,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CdCs2
""",
@@ -37442,7 +37442,7 @@
kinetics = Arrhenius(A=(0.0502,'cm^3/(mol*s)'), n=4.34, Ea=(210.79,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CdCd
""",
@@ -37455,7 +37455,7 @@
kinetics = Arrhenius(A=(0.00275,'cm^3/(mol*s)'), n=4.34, Ea=(111.671,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CdCdCs
""",
@@ -37468,7 +37468,7 @@
kinetics = Arrhenius(A=(0.0085,'cm^3/(mol*s)'), n=4.34, Ea=(179.452,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/Ct
""",
@@ -37481,7 +37481,7 @@
kinetics = Arrhenius(A=(0.00341,'cm^3/(mol*s)'), n=4.34, Ea=(166.607,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CtCs
""",
@@ -37494,7 +37494,7 @@
kinetics = Arrhenius(A=(0.00157,'cm^3/(mol*s)'), n=4.34, Ea=(164.473,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CtCs2
""",
@@ -37507,7 +37507,7 @@
kinetics = Arrhenius(A=(0.0153,'cm^3/(mol*s)'), n=4.34, Ea=(102.341,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CtCt
""",
@@ -37520,7 +37520,7 @@
kinetics = Arrhenius(A=(0.00075,'cm^3/(mol*s)'), n=4.34, Ea=(99.8721,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CtCtCs
""",
@@ -37533,7 +37533,7 @@
kinetics = Arrhenius(A=(0.0155,'cm^3/(mol*s)'), n=4.34, Ea=(173.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/Cb
""",
@@ -37546,7 +37546,7 @@
kinetics = Arrhenius(A=(0.00794,'cm^3/(mol*s)'), n=4.34, Ea=(162.699,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CbCs
""",
@@ -37559,7 +37559,7 @@
kinetics = Arrhenius(A=(0.000475,'cm^3/(mol*s)'), n=4.34, Ea=(164.306,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CbCs2
""",
@@ -37572,7 +37572,7 @@
kinetics = Arrhenius(A=(0.00663,'cm^3/(mol*s)'), n=4.34, Ea=(-8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_pri_rad
""",
@@ -37585,7 +37585,7 @@
kinetics = Arrhenius(A=(0.00457,'cm^3/(mol*s)'), n=4.34, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_rad/NonDeC
""",
@@ -37598,7 +37598,7 @@
kinetics = Arrhenius(A=(0.00306,'cm^3/(mol*s)'), n=4.34, Ea=(106.064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_rad/Cd
""",
@@ -37611,7 +37611,7 @@
kinetics = Arrhenius(A=(0.00068,'cm^3/(mol*s)'), n=4.34, Ea=(28.7441,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/NonDeS;Cd_rad/Ct
""",
@@ -37624,7 +37624,7 @@
kinetics = Arrhenius(A=(0.00844,'cm^3/(mol*s)'), n=4.34, Ea=(-19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cb_rad
""",
@@ -37637,7 +37637,7 @@
kinetics = Arrhenius(A=(0.0189,'cm^3/(mol*s)'), n=4.34, Ea=(153.427,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_Cdd_rad/H
""",
@@ -37650,7 +37650,7 @@
kinetics = Arrhenius(A=(0.00246,'cm^3/(mol*s)'), n=4.34, Ea=(154.808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/S
""",
@@ -37663,7 +37663,7 @@
kinetics = Arrhenius(A=(0.00841,'cm^3/(mol*s)'), n=4.34, Ea=(142.925,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CsS
""",
@@ -37676,7 +37676,7 @@
kinetics = Arrhenius(A=(0.00595,'cm^3/(mol*s)'), n=4.34, Ea=(132.842,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/Cs2S
""",
@@ -37689,7 +37689,7 @@
kinetics = Arrhenius(A=(0.0201,'cm^3/(mol*s)'), n=4.34, Ea=(130.708,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H2/CS
""",
@@ -37702,7 +37702,7 @@
kinetics = Arrhenius(A=(0.0381,'cm^3/(mol*s)'), n=4.34, Ea=(119.37,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CSCs
""",
@@ -37715,7 +37715,7 @@
kinetics = Arrhenius(A=(0.0214,'cm^3/(mol*s)'), n=4.34, Ea=(110.332,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CSCs2
""",
@@ -37728,7 +37728,7 @@
kinetics = Arrhenius(A=(0.0158,'cm^3/(mol*s)'), n=4.34, Ea=(76.6927,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_rad/NonDeS
""",
@@ -37741,7 +37741,7 @@
kinetics = Arrhenius(A=(0.0265,'cm^3/(mol*s)'), n=4.34, Ea=(58.827,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_rad/CS
""",
@@ -37754,7 +37754,7 @@
kinetics = Arrhenius(A=(0.0398,'cm^3/(mol*s)'), n=4.34, Ea=(189.284,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CdS
""",
@@ -37767,7 +37767,7 @@
kinetics = Arrhenius(A=(0.00623,'cm^3/(mol*s)'), n=4.34, Ea=(184.807,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CdCsS
""",
@@ -37780,7 +37780,7 @@
kinetics = Arrhenius(A=(0.313,'cm^3/(mol*s)'), n=4.34, Ea=(237.275,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CSS
""",
@@ -37793,7 +37793,7 @@
kinetics = Arrhenius(A=(0.101,'cm^3/(mol*s)'), n=4.34, Ea=(236.019,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CSCsS
""",
@@ -37806,7 +37806,7 @@
kinetics = Arrhenius(A=(0.0202,'cm^3/(mol*s)'), n=4.34, Ea=(172.799,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CtS
""",
@@ -37819,7 +37819,7 @@
kinetics = Arrhenius(A=(0.00968,'cm^3/(mol*s)'), n=4.34, Ea=(168.197,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CtCsS
""",
@@ -37832,7 +37832,7 @@
kinetics = Arrhenius(A=(0.00953,'cm^3/(mol*s)'), n=4.34, Ea=(176.774,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/H/CbS
""",
@@ -37845,7 +37845,7 @@
kinetics = Arrhenius(A=(0.00419,'cm^3/(mol*s)'), n=4.34, Ea=(165.896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;C_rad/CbCsS
""",
@@ -37858,7 +37858,7 @@
kinetics = Arrhenius(A=(0.0229,'cm^3/(mol*s)'), n=4.34, Ea=(49.4967,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;CS_pri_rad
""",
@@ -37871,7 +37871,7 @@
kinetics = Arrhenius(A=(0.0178,'cm^3/(mol*s)'), n=4.34, Ea=(53.0113,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;CS_rad/Cs
""",
@@ -37884,7 +37884,7 @@
kinetics = Arrhenius(A=(0.0272,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;CS_rad/S
""",
@@ -37897,7 +37897,7 @@
kinetics = Arrhenius(A=(0.00958,'cm^3/(mol*s)'), n=4.34, Ea=(125.562,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;CS_rad/Cd
""",
@@ -37910,7 +37910,7 @@
kinetics = Arrhenius(A=(0.000598,'cm^3/(mol*s)'), n=4.34, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Cd;Cd_rad/Ct
""",
@@ -37923,7 +37923,7 @@
kinetics = Arrhenius(A=(26000,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;H_rad
""",
@@ -37936,7 +37936,7 @@
kinetics = Arrhenius(A=(470,'cm^3/(mol*s)'), n=3.06, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_methyl
""",
@@ -37949,7 +37949,7 @@
kinetics = Arrhenius(A=(33.4,'cm^3/(mol*s)'), n=3.06, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/Cs
""",
@@ -37962,7 +37962,7 @@
kinetics = Arrhenius(A=(0.000719,'cm^3/(mol*s)'), n=4.34, Ea=(67.5716,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: CS/H/Ct;Cd_rad/Ct
""",
@@ -37975,7 +37975,7 @@
kinetics = Arrhenius(A=(67.6,'cm^3/(mol*s)'), n=3.06, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/NonDeC
""",
@@ -37988,7 +37988,7 @@
kinetics = Arrhenius(A=(258,'cm^3/(mol*s)'), n=3.06, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/Cs3
""",
@@ -38001,7 +38001,7 @@
kinetics = Arrhenius(A=(620,'cm^3/(mol*s)'), n=3.06, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_pri_rad
""",
@@ -38014,7 +38014,7 @@
kinetics = Arrhenius(A=(258,'cm^3/(mol*s)'), n=3.06, Ea=(-12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_rad/NonDeC
""",
@@ -38027,7 +38027,7 @@
kinetics = Arrhenius(A=(220,'cm^3/(mol*s)'), n=3.06, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_rad/Cd
""",
@@ -38040,7 +38040,7 @@
kinetics = Arrhenius(A=(38.6,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_rad/Ct
""",
@@ -38053,7 +38053,7 @@
kinetics = Arrhenius(A=(484,'cm^3/(mol*s)'), n=3.06, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/Cd
""",
@@ -38066,7 +38066,7 @@
kinetics = Arrhenius(A=(232,'cm^3/(mol*s)'), n=3.06, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CdCs
""",
@@ -38079,7 +38079,7 @@
kinetics = Arrhenius(A=(40.2,'cm^3/(mol*s)'), n=3.06, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CdCs2
""",
@@ -38092,7 +38092,7 @@
kinetics = Arrhenius(A=(318,'cm^3/(mol*s)'), n=3.06, Ea=(66.5256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CdCd
""",
@@ -38105,7 +38105,7 @@
kinetics = Arrhenius(A=(17.04,'cm^3/(mol*s)'), n=3.06, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CdCdCs
""",
@@ -38118,7 +38118,7 @@
kinetics = Arrhenius(A=(226,'cm^3/(mol*s)'), n=3.06, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/Ct
""",
@@ -38131,7 +38131,7 @@
kinetics = Arrhenius(A=(79.4,'cm^3/(mol*s)'), n=3.06, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CtCs
""",
@@ -38144,7 +38144,7 @@
kinetics = Arrhenius(A=(25.6,'cm^3/(mol*s)'), n=3.06, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CtCs2
""",
@@ -38157,7 +38157,7 @@
kinetics = Arrhenius(A=(79.8,'cm^3/(mol*s)'), n=3.06, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CtCt
""",
@@ -38170,7 +38170,7 @@
kinetics = Arrhenius(A=(6.28,'cm^3/(mol*s)'), n=3.06, Ea=(51.8816,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CtCtCs
""",
@@ -38183,7 +38183,7 @@
kinetics = Arrhenius(A=(866,'cm^3/(mol*s)'), n=3.06, Ea=(-13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cb_rad
""",
@@ -38196,7 +38196,7 @@
kinetics = Arrhenius(A=(167.6,'cm^3/(mol*s)'), n=3.06, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/Cb
""",
@@ -38209,7 +38209,7 @@
kinetics = Arrhenius(A=(25.8,'cm^3/(mol*s)'), n=3.06, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CbCs
""",
@@ -38222,7 +38222,7 @@
kinetics = Arrhenius(A=(10.78,'cm^3/(mol*s)'), n=3.06, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CbCs2
""",
@@ -38235,7 +38235,7 @@
kinetics = Arrhenius(A=(59,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/S
""",
@@ -38248,7 +38248,7 @@
kinetics = Arrhenius(A=(127,'cm^3/(mol*s)'), n=3.06, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CsS
""",
@@ -38261,7 +38261,7 @@
kinetics = Arrhenius(A=(39.6,'cm^3/(mol*s)'), n=3.06, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/Cs2S
""",
@@ -38274,7 +38274,7 @@
kinetics = Arrhenius(A=(118.8,'cm^3/(mol*s)'), n=3.06, Ea=(49.3712,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H2/CS
""",
@@ -38287,7 +38287,7 @@
kinetics = Arrhenius(A=(95.2,'cm^3/(mol*s)'), n=3.06, Ea=(55.2288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CSCs
""",
@@ -38300,7 +38300,7 @@
kinetics = Arrhenius(A=(62.6,'cm^3/(mol*s)'), n=3.06, Ea=(63.1784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CSCs2
""",
@@ -38313,7 +38313,7 @@
kinetics = Arrhenius(A=(362,'cm^3/(mol*s)'), n=3.06, Ea=(-9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_rad/NonDeS
""",
@@ -38326,7 +38326,7 @@
kinetics = Arrhenius(A=(230,'cm^3/(mol*s)'), n=3.06, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;Cd_rad/CS
""",
@@ -38339,7 +38339,7 @@
kinetics = Arrhenius(A=(121.6,'cm^3/(mol*s)'), n=3.06, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CdS
""",
@@ -38352,7 +38352,7 @@
kinetics = Arrhenius(A=(28.6,'cm^3/(mol*s)'), n=3.06, Ea=(35.564,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CdCsS
""",
@@ -38365,7 +38365,7 @@
kinetics = Arrhenius(A=(260,'cm^3/(mol*s)'), n=3.06, Ea=(81.588,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CSS
""",
@@ -38378,7 +38378,7 @@
kinetics = Arrhenius(A=(102.6,'cm^3/(mol*s)'), n=3.06, Ea=(85.772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CSCsS
""",
@@ -38391,7 +38391,7 @@
kinetics = Arrhenius(A=(182.8,'cm^3/(mol*s)'), n=3.06, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CtS
""",
@@ -38404,7 +38404,7 @@
kinetics = Arrhenius(A=(59.8,'cm^3/(mol*s)'), n=3.06, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CtCsS
""",
@@ -38417,7 +38417,7 @@
kinetics = Arrhenius(A=(82.2,'cm^3/(mol*s)'), n=3.06, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/H/CbS
""",
@@ -38430,7 +38430,7 @@
kinetics = Arrhenius(A=(21.8,'cm^3/(mol*s)'), n=3.06, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;C_rad/CbCsS
""",
@@ -38443,7 +38443,7 @@
kinetics = Arrhenius(A=(1288,'cm^3/(mol*s)'), n=3.06, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;CS_pri_rad
""",
@@ -38456,7 +38456,7 @@
kinetics = Arrhenius(A=(796,'cm^3/(mol*s)'), n=3.06, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;CS_rad/Cs
""",
@@ -38469,7 +38469,7 @@
kinetics = Arrhenius(A=(480,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;CS_rad/S
""",
@@ -38482,7 +38482,7 @@
kinetics = Arrhenius(A=(17500,'cm^3/(mol*s)'), n=3.06, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;H_rad
""",
@@ -38495,7 +38495,7 @@
kinetics = Arrhenius(A=(316,'cm^3/(mol*s)'), n=3.06, Ea=(1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_methyl
""",
@@ -38508,7 +38508,7 @@
kinetics = Arrhenius(A=(20.8,'cm^3/(mol*s)'), n=3.06, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/Cs
""",
@@ -38521,7 +38521,7 @@
kinetics = Arrhenius(A=(39.1,'cm^3/(mol*s)'), n=3.06, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/NonDeC
""",
@@ -38534,7 +38534,7 @@
kinetics = Arrhenius(A=(138,'cm^3/(mol*s)'), n=3.06, Ea=(-13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/Cs3
""",
@@ -38547,7 +38547,7 @@
kinetics = Arrhenius(A=(417,'cm^3/(mol*s)'), n=3.06, Ea=(-8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_pri_rad
""",
@@ -38560,7 +38560,7 @@
kinetics = Arrhenius(A=(161,'cm^3/(mol*s)'), n=3.06, Ea=(-12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_rad/NonDeC
""",
@@ -38573,7 +38573,7 @@
kinetics = Arrhenius(A=(148,'cm^3/(mol*s)'), n=3.06, Ea=(8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_rad/Cd
""",
@@ -38586,7 +38586,7 @@
kinetics = Arrhenius(A=(26,'cm^3/(mol*s)'), n=3.06, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_rad/Ct
""",
@@ -38599,7 +38599,7 @@
kinetics = Arrhenius(A=(434,'cm^3/(mol*s)'), n=3.06, Ea=(23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/Cd
""",
@@ -38612,7 +38612,7 @@
kinetics = Arrhenius(A=(193,'cm^3/(mol*s)'), n=3.06, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CdCs
""",
@@ -38625,7 +38625,7 @@
kinetics = Arrhenius(A=(31,'cm^3/(mol*s)'), n=3.06, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CdCs2
""",
@@ -38638,7 +38638,7 @@
kinetics = Arrhenius(A=(381,'cm^3/(mol*s)'), n=3.06, Ea=(52.7184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CdCd
""",
@@ -38651,7 +38651,7 @@
kinetics = Arrhenius(A=(18.9,'cm^3/(mol*s)'), n=3.06, Ea=(53.1368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CdCdCs
""",
@@ -38664,7 +38664,7 @@
kinetics = Arrhenius(A=(189,'cm^3/(mol*s)'), n=3.06, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/Ct
""",
@@ -38677,7 +38677,7 @@
kinetics = Arrhenius(A=(61.4,'cm^3/(mol*s)'), n=3.06, Ea=(15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CtCs
""",
@@ -38690,7 +38690,7 @@
kinetics = Arrhenius(A=(18.4,'cm^3/(mol*s)'), n=3.06, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CtCs2
""",
@@ -38703,7 +38703,7 @@
kinetics = Arrhenius(A=(82.4,'cm^3/(mol*s)'), n=3.06, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CtCt
""",
@@ -38716,7 +38716,7 @@
kinetics = Arrhenius(A=(6.02,'cm^3/(mol*s)'), n=3.06, Ea=(39.748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CtCtCs
""",
@@ -38729,7 +38729,7 @@
kinetics = Arrhenius(A=(583,'cm^3/(mol*s)'), n=3.06, Ea=(-15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cb_rad
""",
@@ -38742,7 +38742,7 @@
kinetics = Arrhenius(A=(150,'cm^3/(mol*s)'), n=3.06, Ea=(11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/Cb
""",
@@ -38755,7 +38755,7 @@
kinetics = Arrhenius(A=(21.5,'cm^3/(mol*s)'), n=3.06, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CbCs
""",
@@ -38768,7 +38768,7 @@
kinetics = Arrhenius(A=(8.33,'cm^3/(mol*s)'), n=3.06, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CbCs2
""",
@@ -38781,7 +38781,7 @@
kinetics = Arrhenius(A=(42.9,'cm^3/(mol*s)'), n=3.06, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/S
""",
@@ -38794,7 +38794,7 @@
kinetics = Arrhenius(A=(85.5,'cm^3/(mol*s)'), n=3.06, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CsS
""",
@@ -38807,7 +38807,7 @@
kinetics = Arrhenius(A=(24.8,'cm^3/(mol*s)'), n=3.06, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/Cs2S
""",
@@ -38820,7 +38820,7 @@
kinetics = Arrhenius(A=(232,'cm^3/(mol*s)'), n=3.06, Ea=(37.656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H2/CS
""",
@@ -38833,7 +38833,7 @@
kinetics = Arrhenius(A=(172,'cm^3/(mol*s)'), n=3.06, Ea=(43.5136,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CSCs
""",
@@ -38846,7 +38846,7 @@
kinetics = Arrhenius(A=(105,'cm^3/(mol*s)'), n=3.06, Ea=(52.3,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CSCs2
""",
@@ -38859,7 +38859,7 @@
kinetics = Arrhenius(A=(263,'cm^3/(mol*s)'), n=3.06, Ea=(-12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_rad/NonDeS
""",
@@ -38872,7 +38872,7 @@
kinetics = Arrhenius(A=(155,'cm^3/(mol*s)'), n=3.06, Ea=(33.8904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;Cd_rad/CS
""",
@@ -38885,7 +38885,7 @@
kinetics = Arrhenius(A=(118,'cm^3/(mol*s)'), n=3.06, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CdS
""",
@@ -38898,7 +38898,7 @@
kinetics = Arrhenius(A=(25.8,'cm^3/(mol*s)'), n=3.06, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CdCsS
""",
@@ -38911,7 +38911,7 @@
kinetics = Arrhenius(A=(549,'cm^3/(mol*s)'), n=3.06, Ea=(68.6176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CSS
""",
@@ -38924,7 +38924,7 @@
kinetics = Arrhenius(A=(200,'cm^3/(mol*s)'), n=3.06, Ea=(73.22,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CSCsS
""",
@@ -38937,7 +38937,7 @@
kinetics = Arrhenius(A=(164,'cm^3/(mol*s)'), n=3.06, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CtS
""",
@@ -38950,7 +38950,7 @@
kinetics = Arrhenius(A=(49.8,'cm^3/(mol*s)'), n=3.06, Ea=(26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CtCsS
""",
@@ -38963,7 +38963,7 @@
kinetics = Arrhenius(A=(79.6,'cm^3/(mol*s)'), n=3.06, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/H/CbS
""",
@@ -38976,7 +38976,7 @@
kinetics = Arrhenius(A=(19.6,'cm^3/(mol*s)'), n=3.06, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;C_rad/CbCsS
""",
@@ -38989,7 +38989,7 @@
kinetics = Arrhenius(A=(497,'cm^3/(mol*s)'), n=3.06, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;CS_rad/Cs
""",
@@ -39002,7 +39002,7 @@
kinetics = Arrhenius(A=(348,'cm^3/(mol*s)'), n=3.06, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;CS_rad/S
""",
@@ -39015,7 +39015,7 @@
kinetics = Arrhenius(A=(24000,'cm^3/(mol*s)'), n=3.06, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;H_rad
""",
@@ -39028,7 +39028,7 @@
kinetics = Arrhenius(A=(433,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_methyl
""",
@@ -39041,7 +39041,7 @@
kinetics = Arrhenius(A=(28.9,'cm^3/(mol*s)'), n=3.06, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/Cs
""",
@@ -39054,7 +39054,7 @@
kinetics = Arrhenius(A=(54.9,'cm^3/(mol*s)'), n=3.06, Ea=(-12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/NonDeC
""",
@@ -39067,7 +39067,7 @@
kinetics = Arrhenius(A=(197,'cm^3/(mol*s)'), n=3.06, Ea=(-20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/Cs3
""",
@@ -39080,7 +39080,7 @@
kinetics = Arrhenius(A=(571,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_pri_rad
""",
@@ -39093,7 +39093,7 @@
kinetics = Arrhenius(A=(224,'cm^3/(mol*s)'), n=3.06, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_rad/NonDeC
""",
@@ -39106,7 +39106,7 @@
kinetics = Arrhenius(A=(203,'cm^3/(mol*s)'), n=3.06, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_rad/Cd
""",
@@ -39119,7 +39119,7 @@
kinetics = Arrhenius(A=(35.7,'cm^3/(mol*s)'), n=3.06, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_rad/Ct
""",
@@ -39132,7 +39132,7 @@
kinetics = Arrhenius(A=(340,'cm^3/(mol*s)'), n=3.06, Ea=(16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/Cd
""",
@@ -39145,7 +39145,7 @@
kinetics = Arrhenius(A=(152,'cm^3/(mol*s)'), n=3.06, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CdCs
""",
@@ -39158,7 +39158,7 @@
kinetics = Arrhenius(A=(24.8,'cm^3/(mol*s)'), n=3.06, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CdCs2
""",
@@ -39171,7 +39171,7 @@
kinetics = Arrhenius(A=(170,'cm^3/(mol*s)'), n=3.06, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CdCd
""",
@@ -39184,7 +39184,7 @@
kinetics = Arrhenius(A=(8.52,'cm^3/(mol*s)'), n=3.06, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CdCdCs
""",
@@ -39197,7 +39197,7 @@
kinetics = Arrhenius(A=(227,'cm^3/(mol*s)'), n=3.06, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/Ct
""",
@@ -39210,7 +39210,7 @@
kinetics = Arrhenius(A=(74.6,'cm^3/(mol*s)'), n=3.06, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CtCs
""",
@@ -39223,7 +39223,7 @@
kinetics = Arrhenius(A=(22.6,'cm^3/(mol*s)'), n=3.06, Ea=(5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CtCs2
""",
@@ -39236,7 +39236,7 @@
kinetics = Arrhenius(A=(86.7,'cm^3/(mol*s)'), n=3.06, Ea=(32.6352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CtCt
""",
@@ -39249,7 +39249,7 @@
kinetics = Arrhenius(A=(6.41,'cm^3/(mol*s)'), n=3.06, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CtCtCs
""",
@@ -39262,7 +39262,7 @@
kinetics = Arrhenius(A=(799,'cm^3/(mol*s)'), n=3.06, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cb_rad
""",
@@ -39275,7 +39275,7 @@
kinetics = Arrhenius(A=(118,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/Cb
""",
@@ -39288,7 +39288,7 @@
kinetics = Arrhenius(A=(17,'cm^3/(mol*s)'), n=3.06, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CbCs
""",
@@ -39301,7 +39301,7 @@
kinetics = Arrhenius(A=(6.66,'cm^3/(mol*s)'), n=3.06, Ea=(-2.9288,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CbCs2
""",
@@ -39314,7 +39314,7 @@
kinetics = Arrhenius(A=(64.9,'cm^3/(mol*s)'), n=3.06, Ea=(-2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/S
""",
@@ -39327,7 +39327,7 @@
kinetics = Arrhenius(A=(131,'cm^3/(mol*s)'), n=3.06, Ea=(-8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CsS
""",
@@ -39340,7 +39340,7 @@
kinetics = Arrhenius(A=(38.3,'cm^3/(mol*s)'), n=3.06, Ea=(-14.644,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/Cs2S
""",
@@ -39353,7 +39353,7 @@
kinetics = Arrhenius(A=(109,'cm^3/(mol*s)'), n=3.06, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H2/CS
""",
@@ -39366,7 +39366,7 @@
kinetics = Arrhenius(A=(82,'cm^3/(mol*s)'), n=3.06, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CSCs
""",
@@ -39379,7 +39379,7 @@
kinetics = Arrhenius(A=(50.6,'cm^3/(mol*s)'), n=3.06, Ea=(39.3296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CSCs2
""",
@@ -39392,7 +39392,7 @@
kinetics = Arrhenius(A=(398,'cm^3/(mol*s)'), n=3.06, Ea=(-16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_rad/NonDeS
""",
@@ -39405,7 +39405,7 @@
kinetics = Arrhenius(A=(212,'cm^3/(mol*s)'), n=3.06, Ea=(30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;Cd_rad/CS
""",
@@ -39418,7 +39418,7 @@
kinetics = Arrhenius(A=(102,'cm^3/(mol*s)'), n=3.06, Ea=(21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CdS
""",
@@ -39431,7 +39431,7 @@
kinetics = Arrhenius(A=(22.5,'cm^3/(mol*s)'), n=3.06, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CdCsS
""",
@@ -39444,7 +39444,7 @@
kinetics = Arrhenius(A=(285,'cm^3/(mol*s)'), n=3.06, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CSS
""",
@@ -39457,7 +39457,7 @@
kinetics = Arrhenius(A=(105,'cm^3/(mol*s)'), n=3.06, Ea=(59.8312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CSCsS
""",
@@ -39470,7 +39470,7 @@
kinetics = Arrhenius(A=(218,'cm^3/(mol*s)'), n=3.06, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CtS
""",
@@ -39483,7 +39483,7 @@
kinetics = Arrhenius(A=(66.8,'cm^3/(mol*s)'), n=3.06, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CtCsS
""",
@@ -39496,7 +39496,7 @@
kinetics = Arrhenius(A=(68.6,'cm^3/(mol*s)'), n=3.06, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/H/CbS
""",
@@ -39509,7 +39509,7 @@
kinetics = Arrhenius(A=(17.1,'cm^3/(mol*s)'), n=3.06, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;C_rad/CbCsS
""",
@@ -39522,7 +39522,7 @@
kinetics = Arrhenius(A=(1190,'cm^3/(mol*s)'), n=3.06, Ea=(0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;CS_pri_rad
""",
@@ -39535,7 +39535,7 @@
kinetics = Arrhenius(A=(689,'cm^3/(mol*s)'), n=3.06, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;CS_rad/Cs
""",
@@ -39548,7 +39548,7 @@
kinetics = Arrhenius(A=(527,'cm^3/(mol*s)'), n=3.06, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;CS_rad/S
""",
@@ -39561,7 +39561,7 @@
kinetics = Arrhenius(A=(10800,'cm^3/(mol*s)'), n=3.06, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;H_rad
""",
@@ -39574,7 +39574,7 @@
kinetics = Arrhenius(A=(195,'cm^3/(mol*s)'), n=3.06, Ea=(-6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_methyl
""",
@@ -39587,7 +39587,7 @@
kinetics = Arrhenius(A=(8.64,'cm^3/(mol*s)'), n=3.06, Ea=(-11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/Cs
""",
@@ -39600,7 +39600,7 @@
kinetics = Arrhenius(A=(10.9,'cm^3/(mol*s)'), n=3.06, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/NonDeC
""",
@@ -39613,7 +39613,7 @@
kinetics = Arrhenius(A=(25.9,'cm^3/(mol*s)'), n=3.06, Ea=(-25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/Cs3
""",
@@ -39626,7 +39626,7 @@
kinetics = Arrhenius(A=(258,'cm^3/(mol*s)'), n=3.06, Ea=(-16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_pri_rad
""",
@@ -39639,7 +39639,7 @@
kinetics = Arrhenius(A=(67,'cm^3/(mol*s)'), n=3.06, Ea=(-22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_rad/NonDeC
""",
@@ -39652,7 +39652,7 @@
kinetics = Arrhenius(A=(91.6,'cm^3/(mol*s)'), n=3.06, Ea=(0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_rad/Cd
""",
@@ -39665,7 +39665,7 @@
kinetics = Arrhenius(A=(16.1,'cm^3/(mol*s)'), n=3.06, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_rad/Ct
""",
@@ -39678,7 +39678,7 @@
kinetics = Arrhenius(A=(18.72,'cm^3/(mol*s)'), n=3.06, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/Cd
""",
@@ -39691,7 +39691,7 @@
kinetics = Arrhenius(A=(5.57,'cm^3/(mol*s)'), n=3.06, Ea=(15.0624,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CdCs
""",
@@ -39704,7 +39704,7 @@
kinetics = Arrhenius(A=(0.602,'cm^3/(mol*s)'), n=3.06, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CdCs2
""",
@@ -39717,7 +39717,7 @@
kinetics = Arrhenius(A=(1.14,'cm^3/(mol*s)'), n=3.06, Ea=(45.6056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CdCd
""",
@@ -39730,7 +39730,7 @@
kinetics = Arrhenius(A=(0.0381,'cm^3/(mol*s)'), n=3.06, Ea=(44.3504,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CdCdCs
""",
@@ -39743,7 +39743,7 @@
kinetics = Arrhenius(A=(10.8,'cm^3/(mol*s)'), n=3.06, Ea=(11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/Ct
""",
@@ -39756,7 +39756,7 @@
kinetics = Arrhenius(A=(2.36,'cm^3/(mol*s)'), n=3.06, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CtCs
""",
@@ -39769,7 +39769,7 @@
kinetics = Arrhenius(A=(0.475,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CtCs2
""",
@@ -39782,7 +39782,7 @@
kinetics = Arrhenius(A=(0.436,'cm^3/(mol*s)'), n=3.06, Ea=(35.9824,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CtCt
""",
@@ -39795,7 +39795,7 @@
kinetics = Arrhenius(A=(0.0214,'cm^3/(mol*s)'), n=3.06, Ea=(35.1456,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CtCtCs
""",
@@ -39808,7 +39808,7 @@
kinetics = Arrhenius(A=(360,'cm^3/(mol*s)'), n=3.06, Ea=(-23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cb_rad
""",
@@ -39821,7 +39821,7 @@
kinetics = Arrhenius(A=(6.48,'cm^3/(mol*s)'), n=3.06, Ea=(4.184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/Cb
""",
@@ -39834,7 +39834,7 @@
kinetics = Arrhenius(A=(0.621,'cm^3/(mol*s)'), n=3.06, Ea=(1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CbCs
""",
@@ -39847,7 +39847,7 @@
kinetics = Arrhenius(A=(0.162,'cm^3/(mol*s)'), n=3.06, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CbCs2
""",
@@ -39860,7 +39860,7 @@
kinetics = Arrhenius(A=(4.42,'cm^3/(mol*s)'), n=3.06, Ea=(-9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/S
""",
@@ -39873,7 +39873,7 @@
kinetics = Arrhenius(A=(5.91,'cm^3/(mol*s)'), n=3.06, Ea=(-15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CsS
""",
@@ -39886,7 +39886,7 @@
kinetics = Arrhenius(A=(1.15,'cm^3/(mol*s)'), n=3.06, Ea=(-21.7568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/Cs2S
""",
@@ -39899,7 +39899,7 @@
kinetics = Arrhenius(A=(5.38,'cm^3/(mol*s)'), n=3.06, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H2/CS
""",
@@ -39912,7 +39912,7 @@
kinetics = Arrhenius(A=(2.69,'cm^3/(mol*s)'), n=3.06, Ea=(38.0744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CSCs
""",
@@ -39925,7 +39925,7 @@
kinetics = Arrhenius(A=(1.1,'cm^3/(mol*s)'), n=3.06, Ea=(45.1872,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CSCs2
""",
@@ -39938,7 +39938,7 @@
kinetics = Arrhenius(A=(27.1,'cm^3/(mol*s)'), n=3.06, Ea=(-23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_rad/NonDeS
""",
@@ -39951,7 +39951,7 @@
kinetics = Arrhenius(A=(95.5,'cm^3/(mol*s)'), n=3.06, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;Cd_rad/CS
""",
@@ -39964,7 +39964,7 @@
kinetics = Arrhenius(A=(0.845,'cm^3/(mol*s)'), n=3.06, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CdS
""",
@@ -39977,7 +39977,7 @@
kinetics = Arrhenius(A=(0.124,'cm^3/(mol*s)'), n=3.06, Ea=(14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CdCsS
""",
@@ -39990,7 +39990,7 @@
kinetics = Arrhenius(A=(2.12,'cm^3/(mol*s)'), n=3.06, Ea=(60.2496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CSS
""",
@@ -40003,7 +40003,7 @@
kinetics = Arrhenius(A=(0.52,'cm^3/(mol*s)'), n=3.06, Ea=(63.5968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CSCsS
""",
@@ -40016,7 +40016,7 @@
kinetics = Arrhenius(A=(1.57,'cm^3/(mol*s)'), n=3.06, Ea=(19.2464,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CtS
""",
@@ -40029,7 +40029,7 @@
kinetics = Arrhenius(A=(0.319,'cm^3/(mol*s)'), n=3.06, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CtCsS
""",
@@ -40042,7 +40042,7 @@
kinetics = Arrhenius(A=(0.571,'cm^3/(mol*s)'), n=3.06, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/H/CbS
""",
@@ -40055,7 +40055,7 @@
kinetics = Arrhenius(A=(0.0945,'cm^3/(mol*s)'), n=3.06, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;C_rad/CbCsS
""",
@@ -40068,7 +40068,7 @@
kinetics = Arrhenius(A=(535,'cm^3/(mol*s)'), n=3.06, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;CS_pri_rad
""",
@@ -40081,7 +40081,7 @@
kinetics = Arrhenius(A=(206,'cm^3/(mol*s)'), n=3.06, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;CS_rad/Cs
""",
@@ -40094,7 +40094,7 @@
kinetics = Arrhenius(A=(35.8,'cm^3/(mol*s)'), n=3.06, Ea=(-9.2048,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/CS;CS_rad/S
""",
@@ -40107,7 +40107,7 @@
kinetics = Arrhenius(A=(24300,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;H_rad
""",
@@ -40120,7 +40120,7 @@
kinetics = Arrhenius(A=(438,'cm^3/(mol*s)'), n=3.06, Ea=(-7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_methyl
""",
@@ -40133,7 +40133,7 @@
kinetics = Arrhenius(A=(21,'cm^3/(mol*s)'), n=3.06, Ea=(-14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/Cs
""",
@@ -40146,7 +40146,7 @@
kinetics = Arrhenius(A=(28.7,'cm^3/(mol*s)'), n=3.06, Ea=(-20.92,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/NonDeC
""",
@@ -40159,7 +40159,7 @@
kinetics = Arrhenius(A=(74,'cm^3/(mol*s)'), n=3.06, Ea=(-30.9616,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/Cs3
""",
@@ -40172,7 +40172,7 @@
kinetics = Arrhenius(A=(577,'cm^3/(mol*s)'), n=3.06, Ea=(-17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_pri_rad
""",
@@ -40185,7 +40185,7 @@
kinetics = Arrhenius(A=(163,'cm^3/(mol*s)'), n=3.06, Ea=(-24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_rad/NonDeC
""",
@@ -40198,7 +40198,7 @@
kinetics = Arrhenius(A=(205,'cm^3/(mol*s)'), n=3.06, Ea=(-0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_rad/Cd
""",
@@ -40211,7 +40211,7 @@
kinetics = Arrhenius(A=(36.1,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_rad/Ct
""",
@@ -40224,7 +40224,7 @@
kinetics = Arrhenius(A=(306,'cm^3/(mol*s)'), n=3.06, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/Cd
""",
@@ -40237,7 +40237,7 @@
kinetics = Arrhenius(A=(98.3,'cm^3/(mol*s)'), n=3.06, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CdCs
""",
@@ -40250,7 +40250,7 @@
kinetics = Arrhenius(A=(11.5,'cm^3/(mol*s)'), n=3.06, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CdCs2
""",
@@ -40263,7 +40263,7 @@
kinetics = Arrhenius(A=(135,'cm^3/(mol*s)'), n=3.06, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CdCd
""",
@@ -40276,7 +40276,7 @@
kinetics = Arrhenius(A=(4.89,'cm^3/(mol*s)'), n=3.06, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CdCdCs
""",
@@ -40289,7 +40289,7 @@
kinetics = Arrhenius(A=(82.4,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/Ct
""",
@@ -40302,7 +40302,7 @@
kinetics = Arrhenius(A=(19.5,'cm^3/(mol*s)'), n=3.06, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CtCs
""",
@@ -40315,7 +40315,7 @@
kinetics = Arrhenius(A=(4.26,'cm^3/(mol*s)'), n=3.06, Ea=(-5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CtCs2
""",
@@ -40328,7 +40328,7 @@
kinetics = Arrhenius(A=(11.3,'cm^3/(mol*s)'), n=3.06, Ea=(23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CtCt
""",
@@ -40341,7 +40341,7 @@
kinetics = Arrhenius(A=(0.603,'cm^3/(mol*s)'), n=3.06, Ea=(21.3384,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CtCtCs
""",
@@ -40354,7 +40354,7 @@
kinetics = Arrhenius(A=(807,'cm^3/(mol*s)'), n=3.06, Ea=(-23.8488,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cb_rad
""",
@@ -40367,7 +40367,7 @@
kinetics = Arrhenius(A=(106,'cm^3/(mol*s)'), n=3.06, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/Cb
""",
@@ -40380,7 +40380,7 @@
kinetics = Arrhenius(A=(11,'cm^3/(mol*s)'), n=3.06, Ea=(-10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CbCs
""",
@@ -40393,7 +40393,7 @@
kinetics = Arrhenius(A=(3.1,'cm^3/(mol*s)'), n=3.06, Ea=(-16.736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CbCs2
""",
@@ -40406,7 +40406,7 @@
kinetics = Arrhenius(A=(68.5,'cm^3/(mol*s)'), n=3.06, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/S
""",
@@ -40419,7 +40419,7 @@
kinetics = Arrhenius(A=(99.4,'cm^3/(mol*s)'), n=3.06, Ea=(-18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CsS
""",
@@ -40432,7 +40432,7 @@
kinetics = Arrhenius(A=(20.9,'cm^3/(mol*s)'), n=3.06, Ea=(-26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/Cs2S
""",
@@ -40445,7 +40445,7 @@
kinetics = Arrhenius(A=(31,'cm^3/(mol*s)'), n=3.06, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H2/CS
""",
@@ -40458,7 +40458,7 @@
kinetics = Arrhenius(A=(16.8,'cm^3/(mol*s)'), n=3.06, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/H/CSCs
""",
@@ -40471,7 +40471,7 @@
kinetics = Arrhenius(A=(7.45,'cm^3/(mol*s)'), n=3.06, Ea=(28.4512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;C_rad/CSCs2
""",
@@ -40484,7 +40484,7 @@
kinetics = Arrhenius(A=(421,'cm^3/(mol*s)'), n=3.06, Ea=(-25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_rad/NonDeS
""",
@@ -40497,7 +40497,7 @@
kinetics = Arrhenius(A=(214,'cm^3/(mol*s)'), n=3.06, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;Cd_rad/CS
""",
@@ -40510,7 +40510,7 @@
kinetics = Arrhenius(A=(19300,'cm^3/(mol*s)'), n=3.06, Ea=(-4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;H_rad
""",
@@ -40523,7 +40523,7 @@
kinetics = Arrhenius(A=(348,'cm^3/(mol*s)'), n=3.06, Ea=(-0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_methyl
""",
@@ -40536,7 +40536,7 @@
kinetics = Arrhenius(A=(23.2,'cm^3/(mol*s)'), n=3.06, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/Cs
""",
@@ -40549,7 +40549,7 @@
kinetics = Arrhenius(A=(44.1,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/NonDeC
""",
@@ -40562,7 +40562,7 @@
kinetics = Arrhenius(A=(158,'cm^3/(mol*s)'), n=3.06, Ea=(-19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/Cs3
""",
@@ -40575,7 +40575,7 @@
kinetics = Arrhenius(A=(458,'cm^3/(mol*s)'), n=3.06, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_pri_rad
""",
@@ -40588,7 +40588,7 @@
kinetics = Arrhenius(A=(180,'cm^3/(mol*s)'), n=3.06, Ea=(-16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_rad/NonDeC
""",
@@ -40601,7 +40601,7 @@
kinetics = Arrhenius(A=(163,'cm^3/(mol*s)'), n=3.06, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_rad/Cd
""",
@@ -40614,7 +40614,7 @@
kinetics = Arrhenius(A=(28.6,'cm^3/(mol*s)'), n=3.06, Ea=(-4.6024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_rad/Ct
""",
@@ -40627,7 +40627,7 @@
kinetics = Arrhenius(A=(272,'cm^3/(mol*s)'), n=3.06, Ea=(17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/Cd
""",
@@ -40640,7 +40640,7 @@
kinetics = Arrhenius(A=(122,'cm^3/(mol*s)'), n=3.06, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CdCs
""",
@@ -40653,7 +40653,7 @@
kinetics = Arrhenius(A=(19.9,'cm^3/(mol*s)'), n=3.06, Ea=(12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CdCs2
""",
@@ -40666,7 +40666,7 @@
kinetics = Arrhenius(A=(136,'cm^3/(mol*s)'), n=3.06, Ea=(42.6768,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CdCd
""",
@@ -40679,7 +40679,7 @@
kinetics = Arrhenius(A=(6.83,'cm^3/(mol*s)'), n=3.06, Ea=(41.4216,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CdCdCs
""",
@@ -40692,7 +40692,7 @@
kinetics = Arrhenius(A=(182,'cm^3/(mol*s)'), n=3.06, Ea=(12.9704,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/Ct
""",
@@ -40705,7 +40705,7 @@
kinetics = Arrhenius(A=(59.9,'cm^3/(mol*s)'), n=3.06, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CtCs
""",
@@ -40718,7 +40718,7 @@
kinetics = Arrhenius(A=(18.2,'cm^3/(mol*s)'), n=3.06, Ea=(6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CtCs2
""",
@@ -40731,7 +40731,7 @@
kinetics = Arrhenius(A=(69.6,'cm^3/(mol*s)'), n=3.06, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CtCt
""",
@@ -40744,7 +40744,7 @@
kinetics = Arrhenius(A=(5.14,'cm^3/(mol*s)'), n=3.06, Ea=(32.2168,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CtCtCs
""",
@@ -40757,7 +40757,7 @@
kinetics = Arrhenius(A=(641,'cm^3/(mol*s)'), n=3.06, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cb_rad
""",
@@ -40770,7 +40770,7 @@
kinetics = Arrhenius(A=(94.3,'cm^3/(mol*s)'), n=3.06, Ea=(5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/Cb
""",
@@ -40783,7 +40783,7 @@
kinetics = Arrhenius(A=(13.6,'cm^3/(mol*s)'), n=3.06, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CbCs
""",
@@ -40796,7 +40796,7 @@
kinetics = Arrhenius(A=(5.34,'cm^3/(mol*s)'), n=3.06, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CbCs2
""",
@@ -40809,7 +40809,7 @@
kinetics = Arrhenius(A=(52.1,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/S
""",
@@ -40822,7 +40822,7 @@
kinetics = Arrhenius(A=(105,'cm^3/(mol*s)'), n=3.06, Ea=(-7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CsS
""",
@@ -40835,7 +40835,7 @@
kinetics = Arrhenius(A=(30.7,'cm^3/(mol*s)'), n=3.06, Ea=(-14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/Cs2S
""",
@@ -40848,7 +40848,7 @@
kinetics = Arrhenius(A=(87.5,'cm^3/(mol*s)'), n=3.06, Ea=(28.0328,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H2/CS
""",
@@ -40861,7 +40861,7 @@
kinetics = Arrhenius(A=(65.8,'cm^3/(mol*s)'), n=3.06, Ea=(33.0536,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CSCs
""",
@@ -40874,7 +40874,7 @@
kinetics = Arrhenius(A=(40.6,'cm^3/(mol*s)'), n=3.06, Ea=(39.748,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CSCs2
""",
@@ -40887,7 +40887,7 @@
kinetics = Arrhenius(A=(320,'cm^3/(mol*s)'), n=3.06, Ea=(-15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_rad/NonDeS
""",
@@ -40900,7 +40900,7 @@
kinetics = Arrhenius(A=(170,'cm^3/(mol*s)'), n=3.06, Ea=(31.7984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;Cd_rad/CS
""",
@@ -40913,7 +40913,7 @@
kinetics = Arrhenius(A=(81.5,'cm^3/(mol*s)'), n=3.06, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CdS
""",
@@ -40926,7 +40926,7 @@
kinetics = Arrhenius(A=(18,'cm^3/(mol*s)'), n=3.06, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CdCsS
""",
@@ -40939,7 +40939,7 @@
kinetics = Arrhenius(A=(229,'cm^3/(mol*s)'), n=3.06, Ea=(57.3208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CSS
""",
@@ -40952,7 +40952,7 @@
kinetics = Arrhenius(A=(84.4,'cm^3/(mol*s)'), n=3.06, Ea=(60.668,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CSCsS
""",
@@ -40965,7 +40965,7 @@
kinetics = Arrhenius(A=(175,'cm^3/(mol*s)'), n=3.06, Ea=(22.5936,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CtS
""",
@@ -40978,7 +40978,7 @@
kinetics = Arrhenius(A=(53.6,'cm^3/(mol*s)'), n=3.06, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CtCsS
""",
@@ -40991,7 +40991,7 @@
kinetics = Arrhenius(A=(55,'cm^3/(mol*s)'), n=3.06, Ea=(13.8072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/H/CbS
""",
@@ -41004,7 +41004,7 @@
kinetics = Arrhenius(A=(13.7,'cm^3/(mol*s)'), n=3.06, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;C_rad/CbCsS
""",
@@ -41017,7 +41017,7 @@
kinetics = Arrhenius(A=(953,'cm^3/(mol*s)'), n=3.06, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;CS_pri_rad
""",
@@ -41030,7 +41030,7 @@
kinetics = Arrhenius(A=(553,'cm^3/(mol*s)'), n=3.06, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;CS_rad/Cs
""",
@@ -41043,7 +41043,7 @@
kinetics = Arrhenius(A=(423,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;CS_rad/S
""",
@@ -41056,7 +41056,7 @@
kinetics = Arrhenius(A=(44400,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;H_rad
""",
@@ -41069,7 +41069,7 @@
kinetics = Arrhenius(A=(800,'cm^3/(mol*s)'), n=3.06, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_methyl
""",
@@ -41082,7 +41082,7 @@
kinetics = Arrhenius(A=(72.6,'cm^3/(mol*s)'), n=3.06, Ea=(-12.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/Cs
""",
@@ -41095,7 +41095,7 @@
kinetics = Arrhenius(A=(188.4,'cm^3/(mol*s)'), n=3.06, Ea=(-17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/NonDeC
""",
@@ -41108,7 +41108,7 @@
kinetics = Arrhenius(A=(920,'cm^3/(mol*s)'), n=3.06, Ea=(-26.7776,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/Cs3
""",
@@ -41121,7 +41121,7 @@
kinetics = Arrhenius(A=(1054,'cm^3/(mol*s)'), n=3.06, Ea=(-17.1544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_pri_rad
""",
@@ -41134,7 +41134,7 @@
kinetics = Arrhenius(A=(564,'cm^3/(mol*s)'), n=3.06, Ea=(-23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_rad/NonDeC
""",
@@ -41147,7 +41147,7 @@
kinetics = Arrhenius(A=(374,'cm^3/(mol*s)'), n=3.06, Ea=(0,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_rad/Cd
""",
@@ -41160,7 +41160,7 @@
kinetics = Arrhenius(A=(65.8,'cm^3/(mol*s)'), n=3.06, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_rad/Ct
""",
@@ -41173,7 +41173,7 @@
kinetics = Arrhenius(A=(576,'cm^3/(mol*s)'), n=3.06, Ea=(5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/Cd
""",
@@ -41186,7 +41186,7 @@
kinetics = Arrhenius(A=(352,'cm^3/(mol*s)'), n=3.06, Ea=(5.0208,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CdCs
""",
@@ -41199,7 +41199,7 @@
kinetics = Arrhenius(A=(78,'cm^3/(mol*s)'), n=3.06, Ea=(0.8368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CdCs2
""",
@@ -41212,7 +41212,7 @@
kinetics = Arrhenius(A=(264,'cm^3/(mol*s)'), n=3.06, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CdCd
""",
@@ -41225,7 +41225,7 @@
kinetics = Arrhenius(A=(18.02,'cm^3/(mol*s)'), n=3.06, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CdCdCs
""",
@@ -41238,7 +41238,7 @@
kinetics = Arrhenius(A=(478,'cm^3/(mol*s)'), n=3.06, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/Ct
""",
@@ -41251,7 +41251,7 @@
kinetics = Arrhenius(A=(214,'cm^3/(mol*s)'), n=3.06, Ea=(0.4184,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CtCs
""",
@@ -41264,7 +41264,7 @@
kinetics = Arrhenius(A=(88.6,'cm^3/(mol*s)'), n=3.06, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CtCs2
""",
@@ -41277,7 +41277,7 @@
kinetics = Arrhenius(A=(208,'cm^3/(mol*s)'), n=3.06, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CtCt
""",
@@ -41290,7 +41290,7 @@
kinetics = Arrhenius(A=(21,'cm^3/(mol*s)'), n=3.06, Ea=(19.6648,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CtCtCs
""",
@@ -41303,7 +41303,7 @@
kinetics = Arrhenius(A=(1474,'cm^3/(mol*s)'), n=3.06, Ea=(-23.4304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cb_rad
""",
@@ -41316,7 +41316,7 @@
kinetics = Arrhenius(A=(198.8,'cm^3/(mol*s)'), n=3.06, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/Cb
""",
@@ -41329,7 +41329,7 @@
kinetics = Arrhenius(A=(39.2,'cm^3/(mol*s)'), n=3.06, Ea=(-8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CbCs
""",
@@ -41342,7 +41342,7 @@
kinetics = Arrhenius(A=(21,'cm^3/(mol*s)'), n=3.06, Ea=(-14.2256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CbCs2
""",
@@ -41355,7 +41355,7 @@
kinetics = Arrhenius(A=(119.2,'cm^3/(mol*s)'), n=3.06, Ea=(-11.2968,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/S
""",
@@ -41368,7 +41368,7 @@
kinetics = Arrhenius(A=(328,'cm^3/(mol*s)'), n=3.06, Ea=(-17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CsS
""",
@@ -41381,7 +41381,7 @@
kinetics = Arrhenius(A=(131,'cm^3/(mol*s)'), n=3.06, Ea=(-24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/Cs2S
""",
@@ -41394,7 +41394,7 @@
kinetics = Arrhenius(A=(179,'cm^3/(mol*s)'), n=3.06, Ea=(13.3888,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H2/CS
""",
@@ -41407,7 +41407,7 @@
kinetics = Arrhenius(A=(183.6,'cm^3/(mol*s)'), n=3.06, Ea=(17.5728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CSCs
""",
@@ -41420,7 +41420,7 @@
kinetics = Arrhenius(A=(154.4,'cm^3/(mol*s)'), n=3.06, Ea=(24.6856,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CSCs2
""",
@@ -41433,7 +41433,7 @@
kinetics = Arrhenius(A=(732,'cm^3/(mol*s)'), n=3.06, Ea=(-25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_rad/NonDeS
""",
@@ -41446,7 +41446,7 @@
kinetics = Arrhenius(A=(390,'cm^3/(mol*s)'), n=3.06, Ea=(25.104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;Cd_rad/CS
""",
@@ -41459,7 +41459,7 @@
kinetics = Arrhenius(A=(171.2,'cm^3/(mol*s)'), n=3.06, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CdS
""",
@@ -41472,7 +41472,7 @@
kinetics = Arrhenius(A=(51.6,'cm^3/(mol*s)'), n=3.06, Ea=(2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CdCsS
""",
@@ -41485,7 +41485,7 @@
kinetics = Arrhenius(A=(466,'cm^3/(mol*s)'), n=3.06, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CSS
""",
@@ -41498,7 +41498,7 @@
kinetics = Arrhenius(A=(234,'cm^3/(mol*s)'), n=3.06, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CSCsS
""",
@@ -41511,7 +41511,7 @@
kinetics = Arrhenius(A=(456,'cm^3/(mol*s)'), n=3.06, Ea=(9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CtS
""",
@@ -41524,7 +41524,7 @@
kinetics = Arrhenius(A=(190.8,'cm^3/(mol*s)'), n=3.06, Ea=(6.6944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CtCsS
""",
@@ -41537,7 +41537,7 @@
kinetics = Arrhenius(A=(115.6,'cm^3/(mol*s)'), n=3.06, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/H/CbS
""",
@@ -41550,7 +41550,7 @@
kinetics = Arrhenius(A=(39.4,'cm^3/(mol*s)'), n=3.06, Ea=(-8.368,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;C_rad/CbCsS
""",
@@ -41563,7 +41563,7 @@
kinetics = Arrhenius(A=(2200,'cm^3/(mol*s)'), n=3.06, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;CS_pri_rad
""",
@@ -41576,7 +41576,7 @@
kinetics = Arrhenius(A=(1734,'cm^3/(mol*s)'), n=3.06, Ea=(-11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;CS_rad/Cs
""",
@@ -41589,7 +41589,7 @@
kinetics = Arrhenius(A=(968,'cm^3/(mol*s)'), n=3.06, Ea=(-10.8784,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;CS_rad/S
""",
@@ -41602,7 +41602,7 @@
kinetics = Arrhenius(A=(1910,'cm^3/(mol*s)'), n=3.15, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;S_rad/NonDeC
""",
@@ -41615,7 +41615,7 @@
kinetics = Arrhenius(A=(732,'cm^3/(mol*s)'), n=3.15, Ea=(58.9944,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;S_rad/Cd
""",
@@ -41628,7 +41628,7 @@
kinetics = Arrhenius(A=(2980,'cm^3/(mol*s)'), n=3.15, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;S_rad/Ct
""",
@@ -41641,7 +41641,7 @@
kinetics = Arrhenius(A=(934,'cm^3/(mol*s)'), n=3.15, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;S_rad/Cb
""",
@@ -41654,7 +41654,7 @@
kinetics = Arrhenius(A=(2740,'cm^3/(mol*s)'), n=3.15, Ea=(43.9738,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S_pri;S_rad/NonDeS
""",
@@ -41667,7 +41667,7 @@
kinetics = Arrhenius(A=(903,'cm^3/(mol*s)'), n=3.15, Ea=(-2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;S_pri_rad
""",
@@ -41680,7 +41680,7 @@
kinetics = Arrhenius(A=(675,'cm^3/(mol*s)'), n=3.15, Ea=(35.7732,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;S_rad/Cd
""",
@@ -41693,7 +41693,7 @@
kinetics = Arrhenius(A=(716,'cm^3/(mol*s)'), n=3.15, Ea=(41.0032,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;S_rad/Ct
""",
@@ -41706,7 +41706,7 @@
kinetics = Arrhenius(A=(537,'cm^3/(mol*s)'), n=3.15, Ea=(28.2838,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;S_rad/Cb
""",
@@ -41719,7 +41719,7 @@
kinetics = Arrhenius(A=(557,'cm^3/(mol*s)'), n=3.15, Ea=(67.3206,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeC;S_rad/NonDeS
""",
@@ -41732,7 +41732,7 @@
kinetics = Arrhenius(A=(931,'cm^3/(mol*s)'), n=3.15, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;S_pri_rad
""",
@@ -41745,7 +41745,7 @@
kinetics = Arrhenius(A=(1810,'cm^3/(mol*s)'), n=3.15, Ea=(-2.5104,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;S_rad/NonDeC
""",
@@ -41758,7 +41758,7 @@
kinetics = Arrhenius(A=(2110,'cm^3/(mol*s)'), n=3.15, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;S_rad/Ct
""",
@@ -41771,7 +41771,7 @@
kinetics = Arrhenius(A=(682,'cm^3/(mol*s)'), n=3.15, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;S_rad/Cb
""",
@@ -41784,7 +41784,7 @@
kinetics = Arrhenius(A=(459,'cm^3/(mol*s)'), n=3.15, Ea=(-6.276,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cd;S_rad/NonDeS
""",
@@ -41797,7 +41797,7 @@
kinetics = Arrhenius(A=(493,'cm^3/(mol*s)'), n=3.15, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;S_pri_rad
""",
@@ -41810,7 +41810,7 @@
kinetics = Arrhenius(A=(250,'cm^3/(mol*s)'), n=3.15, Ea=(-3.7656,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;S_rad/NonDeC
""",
@@ -41823,7 +41823,7 @@
kinetics = Arrhenius(A=(275,'cm^3/(mol*s)'), n=3.15, Ea=(3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;S_rad/Cd
""",
@@ -41836,7 +41836,7 @@
kinetics = Arrhenius(A=(964,'cm^3/(mol*s)'), n=3.15, Ea=(-2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;S_rad/Cb
""",
@@ -41849,7 +41849,7 @@
kinetics = Arrhenius(A=(351,'cm^3/(mol*s)'), n=3.15, Ea=(33.0118,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Ct;S_rad/NonDeS
""",
@@ -41862,7 +41862,7 @@
kinetics = Arrhenius(A=(199,'cm^3/(mol*s)'), n=3.15, Ea=(-5.8576,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_pri_rad
""",
@@ -41875,7 +41875,7 @@
kinetics = Arrhenius(A=(241,'cm^3/(mol*s)'), n=3.15, Ea=(-3.3472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_rad/NonDeC
""",
@@ -41888,7 +41888,7 @@
kinetics = Arrhenius(A=(114,'cm^3/(mol*s)'), n=3.15, Ea=(10.46,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_rad/Cd
""",
@@ -41901,7 +41901,7 @@
kinetics = Arrhenius(A=(1240,'cm^3/(mol*s)'), n=3.15, Ea=(16.3176,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_rad/Ct
""",
@@ -41914,7 +41914,7 @@
kinetics = Arrhenius(A=(384,'cm^3/(mol*s)'), n=3.15, Ea=(39.0367,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_rad/NonDeS
""",
@@ -41927,7 +41927,7 @@
kinetics = Arrhenius(A=(2880,'cm^3/(mol*s)'), n=3.15, Ea=(-10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;S_pri_rad
""",
@@ -41940,7 +41940,7 @@
kinetics = Arrhenius(A=(1234,'cm^3/(mol*s)'), n=3.15, Ea=(-9.6232,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;S_rad/NonDeC
""",
@@ -41953,7 +41953,7 @@
kinetics = Arrhenius(A=(380,'cm^3/(mol*s)'), n=3.15, Ea=(-1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;S_rad/Cd
""",
@@ -41966,7 +41966,7 @@
kinetics = Arrhenius(A=(2220,'cm^3/(mol*s)'), n=3.15, Ea=(-1.2552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;S_rad/Ct
""",
@@ -41979,7 +41979,7 @@
kinetics = Arrhenius(A=(1896,'cm^3/(mol*s)'), n=3.15, Ea=(-7.1128,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/NonDeS;S_rad/Cb
""",
@@ -41992,7 +41992,7 @@
kinetics = Arrhenius(A=(0.0065,'cm^3/(mol*s)'), n=4.245, Ea=(30.1248,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2500,'K')),
rank = 6,
shortDesc = """CBS-QB3 (RRHO), SSM""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations for propargyl + vinylalcohol (RRHO approximation)
@@ -42007,7 +42007,7 @@
kinetics = Arrhenius(A=(0.0084,'cm^3/(mol*s)'), n=4.36, Ea=(103.257,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2500,'K')),
rank = 6,
shortDesc = """CBS-QB3 (RRHO), SSM""",
- longDesc =
+ longDesc =
"""
SSM CBS-QB3 calculations for propargyl + vinylalcohol (RRHO approximation)
@@ -42022,7 +42022,7 @@
kinetics = Arrhenius(A=(2e+06,'cm^3/(mol*s)'), n=1.8, Ea=(-5.4392,'kJ/mol'), T0=(1,'K'), Tmin=(295,'K'), Tmax=(600,'K')),
rank = 11,
shortDesc = """NIST SSM""",
- longDesc =
+ longDesc =
"""
NIST CH3CHO + OH = CH3CO + H2O rate coefficient ref: DOI: 10.1016/S0082-0784(96)80252-9
Most estimates seem to be ~ 3E+12 for 200-350 K range
@@ -42038,7 +42038,7 @@
kinetics = Arrhenius(A=(8.66e-06,'cm^3/(mol*s)'), n=5.09, Ea=(164.32,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CCSD(T)/CBS//M08-HX/maug-cc-pVTZ MSTOR""",
- longDesc =
+ longDesc =
"""
ref: Role of conformational structures and torsional anharmonicity in controlling chemical reaction rates and
relative yields: butanal + HO2 reactions
@@ -42055,7 +42055,7 @@
kinetics = Arrhenius(A=(3.24e-11,'cm^3/(mol*s)'), n=6.525, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CCSD(T)/CBS//M08-HX/maug-cc-pVTZ MSTOR""",
- longDesc =
+ longDesc =
"""
ref: Role of conformational structures and torsional anharmonicity in controlling chemical reaction rates and
relative yields: butanal + HO2 reactions
@@ -42072,7 +42072,7 @@
kinetics = Arrhenius(A=(1.66e-07,'cm^3/(mol*s)'), n=5.407, Ea=(0.16736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """CCSD(T)/CBS//M08-HX/maug-cc-pVTZ MSTOR""",
- longDesc =
+ longDesc =
"""
ref: Role of conformational structures and torsional anharmonicity in controlling chemical reaction rates and
relative yields: butanal + HO2 reactions
@@ -42089,7 +42089,7 @@
kinetics = Arrhenius(A=(1.66e-07,'cm^3/(mol*s)'), n=5.407, Ea=(0.16736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 11,
shortDesc = """Same as C_rad/H/Cs\H2\CO/Cs H2O2""",
- longDesc =
+ longDesc =
"""
CCSD(T)/CBS//M08-HX/maug-cc-pVTZ MSTOR.
ref: Role of conformational structures and torsional anharmonicity in controlling chemical reaction rates and
@@ -42107,7 +42107,7 @@
kinetics = Arrhenius(A=(67,'cm^3/(mol*s)'), n=3.475, Ea=(-11.7152,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CCSD(T)/6-311++G(d,p)""",
- longDesc =
+ longDesc =
"""
Kinetics of Hydrogen Abstraction Reactions of Butene Isomers by OH Radical
s-allylic site from 1-Butene + OH ref: DOI: 10.1021/jp1062786
@@ -42123,7 +42123,7 @@
kinetics = Arrhenius(A=(12.18,'cm^3/(mol*s)'), n=3.774, Ea=(-6.23416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CCSD(T)/6-311++G(d,p)""",
- longDesc =
+ longDesc =
"""
Kinetics of Hydrogen Abstraction Reactions of Butene Isomers by OH Radical
p-allylic site of 2-butene ref: DOI: 10.1021/jp1062786
@@ -42139,7 +42139,7 @@
kinetics = Arrhenius(A=(12,'cm^3/(mol*s)'), n=3.594, Ea=(-4.47688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 6,
shortDesc = """CCSD(T)/6-311++G(d,p)""",
- longDesc =
+ longDesc =
"""
Kinetics of Hydrogen Abstraction Reactions of Butene Isomers by OH Radical
p-allylic site of iso-butene ref: DOI: 10.1021/jp1062786
@@ -42155,7 +42155,7 @@
kinetics = Arrhenius(A=(2.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(39.3296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 11,
shortDesc = """Dean, A. M. [118]""",
- longDesc =
+ longDesc =
"""
[118] Dean, A.M. Development and application of Detailed Kinetic Mechanisms for Free Radical Systems.
@@ -42172,7 +42172,7 @@
kinetics = Arrhenius(A=(2.417e-07,'cm^3/(mol*s)'), n=5.48, Ea=(1.14642,'kJ/mol'), T0=(1,'K'), Tmin=(200,'K'), Tmax=(700,'K')),
rank = 6,
shortDesc = """Masgrau et al. [141] Transition state theory.""",
- longDesc =
+ longDesc =
"""
[141] Masgrau, L.; Gonzalez-Lafont, A.; Lluch, J.M. J. Phys. Chem. A. 1999, 103, 1044.
H2O + OH --> OH + H2O . C.D.W refitted their k(T) to get A, n, and Ea, and divided original rate expression by 2, to get rate expression per H atom.
@@ -42200,7 +42200,7 @@
kinetics = Arrhenius(A=(0.092,'cm^3/(mol*s)','*|/',3), n=3.96, Ea=(27.7399,'kJ/mol'), T0=(1,'K'), Tmin=(600,'K'), Tmax=(2000,'K')),
rank = 6,
shortDesc = """MHS CBS-QB3 w/1dHR calculations, see node 536.""",
- longDesc =
+ longDesc =
"""
Rxn family nodes: H2O2 + O_rad/NonDeO
@@ -42220,7 +42220,7 @@
kinetics = Arrhenius(A=(0.472,'cm^3/(mol*s)'), n=4.34, Ea=(23.012,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42235,7 +42235,7 @@
kinetics = Arrhenius(A=(0.00518,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42250,7 +42250,7 @@
kinetics = Arrhenius(A=(0.00092,'cm^3/(mol*s)'), n=4.34, Ea=(38.4928,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42265,7 +42265,7 @@
kinetics = Arrhenius(A=(0.000865,'cm^3/(mol*s)'), n=4.34, Ea=(31.38,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42280,7 +42280,7 @@
kinetics = Arrhenius(A=(0.000542,'cm^3/(mol*s)'), n=4.34, Ea=(20.5016,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42295,7 +42295,7 @@
kinetics = Arrhenius(A=(0.00145,'cm^3/(mol*s)'), n=4.34, Ea=(56.9024,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42310,7 +42310,7 @@
kinetics = Arrhenius(A=(0.00229,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42325,7 +42325,7 @@
kinetics = Arrhenius(A=(0.000119,'cm^3/(mol*s)'), n=4.34, Ea=(34.7272,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42340,7 +42340,7 @@
kinetics = Arrhenius(A=(0.000391,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42355,7 +42355,7 @@
kinetics = Arrhenius(A=(3.92e-06,'cm^3/(mol*s)'), n=4.34, Ea=(15.8992,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42370,7 +42370,7 @@
kinetics = Arrhenius(A=(0.00571,'cm^3/(mol*s)'), n=4.34, Ea=(48.9528,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42385,7 +42385,7 @@
kinetics = Arrhenius(A=(0.00166,'cm^3/(mol*s)'), n=4.34, Ea=(39.3296,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42400,7 +42400,7 @@
kinetics = Arrhenius(A=(0.000324,'cm^3/(mol*s)'), n=4.34, Ea=(25.9408,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42415,7 +42415,7 @@
kinetics = Arrhenius(A=(0.00403,'cm^3/(mol*s)'), n=4.34, Ea=(37.2376,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42430,7 +42430,7 @@
kinetics = Arrhenius(A=(8.1e-05,'cm^3/(mol*s)'), n=4.34, Ea=(17.9912,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42445,7 +42445,7 @@
kinetics = Arrhenius(A=(0.00342,'cm^3/(mol*s)'), n=4.34, Ea=(55.6472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H3/Cb;C_rad/H2/Cb
""",
@@ -42458,7 +42458,7 @@
kinetics = Arrhenius(A=(0.00095,'cm^3/(mol*s)'), n=4.34, Ea=(41.84,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbCs;C_rad/H/CbCs
""",
@@ -42471,7 +42471,7 @@
kinetics = Arrhenius(A=(9.08e-06,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/Cs2Cb;C_rad/CbCs2
""",
@@ -42484,7 +42484,7 @@
kinetics = Arrhenius(A=(0.00925,'cm^3/(mol*s)'), n=4.34, Ea=(25.5224,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42499,7 +42499,7 @@
kinetics = Arrhenius(A=(0.00556,'cm^3/(mol*s)'), n=4.34, Ea=(18.828,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42514,7 +42514,7 @@
kinetics = Arrhenius(A=(0.0043,'cm^3/(mol*s)'), n=4.34, Ea=(47.2792,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42529,7 +42529,7 @@
kinetics = Arrhenius(A=(0.0864,'cm^3/(mol*s)'), n=4.34, Ea=(22.1752,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: Cb_H;Cb_rad
""",
@@ -42542,7 +42542,7 @@
kinetics = Arrhenius(A=(0.0308,'cm^3/(mol*s)'), n=4.34, Ea=(49.7896,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42557,7 +42557,7 @@
kinetics = Arrhenius(A=(0.000139,'cm^3/(mol*s)'), n=4.34, Ea=(36.8192,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42572,7 +42572,7 @@
kinetics = Arrhenius(A=(0.000816,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42587,7 +42587,7 @@
kinetics = Arrhenius(A=(0.000844,'cm^3/(mol*s)'), n=4.34, Ea=(24.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42602,7 +42602,7 @@
kinetics = Arrhenius(A=(0.000162,'cm^3/(mol*s)'), n=4.34, Ea=(8.7864,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42617,7 +42617,7 @@
kinetics = Arrhenius(A=(0.00281,'cm^3/(mol*s)'), n=4.34, Ea=(80.7512,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42632,7 +42632,7 @@
kinetics = Arrhenius(A=(0.00289,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42647,7 +42647,7 @@
kinetics = Arrhenius(A=(0.000273,'cm^3/(mol*s)'), n=4.34, Ea=(29.7064,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42662,7 +42662,7 @@
kinetics = Arrhenius(A=(0.00297,'cm^3/(mol*s)'), n=4.34, Ea=(-15.4808,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42677,7 +42677,7 @@
kinetics = Arrhenius(A=(0.051,'cm^3/(mol*s)'), n=4.34, Ea=(84.0984,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42692,7 +42692,7 @@
kinetics = Arrhenius(A=(0.00134,'cm^3/(mol*s)'), n=4.34, Ea=(33.472,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42707,7 +42707,7 @@
kinetics = Arrhenius(A=(0.000174,'cm^3/(mol*s)'), n=4.34, Ea=(40.5848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42722,7 +42722,7 @@
kinetics = Arrhenius(A=(0.00145,'cm^3/(mol*s)'), n=4.34, Ea=(43.0952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42737,7 +42737,7 @@
kinetics = Arrhenius(A=(0.00118,'cm^3/(mol*s)'), n=4.34, Ea=(27.6144,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42752,7 +42752,7 @@
kinetics = Arrhenius(A=(0.000354,'cm^3/(mol*s)'), n=4.34, Ea=(10.0416,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42767,7 +42767,7 @@
kinetics = Arrhenius(A=(0.000424,'cm^3/(mol*s)'), n=4.34, Ea=(26.3592,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H2/CbS;C_rad/H/CbS
""",
@@ -42780,7 +42780,7 @@
kinetics = Arrhenius(A=(2.7e-05,'cm^3/(mol*s)'), n=4.34, Ea=(2.092,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: C/H/CbCsS;C_rad/CbCsS
""",
@@ -42793,7 +42793,7 @@
kinetics = Arrhenius(A=(0.0548,'cm^3/(mol*s)'), n=4.34, Ea=(44.7688,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42808,7 +42808,7 @@
kinetics = Arrhenius(A=(0.0141,'cm^3/(mol*s)'), n=4.34, Ea=(40.1664,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42823,7 +42823,7 @@
kinetics = Arrhenius(A=(0.00677,'cm^3/(mol*s)'), n=4.34, Ea=(38.9112,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42838,7 +42838,7 @@
kinetics = Arrhenius(A=(0.00797,'cm^3/(mol*s)'), n=4.34, Ea=(53.9736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42853,7 +42853,7 @@
kinetics = Arrhenius(A=(0.0268,'cm^3/(mol*s)'), n=4.34, Ea=(66.1072,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for C--H--C abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42868,7 +42868,7 @@
kinetics = Arrhenius(A=(301,'cm^3/(mol*s)'), n=3.15, Ea=(18.4096,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42883,7 +42883,7 @@
kinetics = Arrhenius(A=(668,'cm^3/(mol*s)'), n=3.15, Ea=(7.5312,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42898,7 +42898,7 @@
kinetics = Arrhenius(A=(789,'cm^3/(mol*s)'), n=3.15, Ea=(7.9496,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42913,7 +42913,7 @@
kinetics = Arrhenius(A=(4210,'cm^3/(mol*s)'), n=3.15, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42928,7 +42928,7 @@
kinetics = Arrhenius(A=(189,'cm^3/(mol*s)'), n=3.15, Ea=(12.1336,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Converted to training reaction from rate rule: S/H/Cb;S_rad/Cb
""",
@@ -42941,7 +42941,7 @@
kinetics = Arrhenius(A=(113,'cm^3/(mol*s)'), n=3.15, Ea=(1.6736,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Group additivity method for S--H--S abstractions, Aaron Vandeputte""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42956,7 +42956,7 @@
kinetics = Arrhenius(A=(4.86,'m^3/(mol*s)'), n=1.87, Ea=(32393.6,'J/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser from 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Degeneracy not recalculated
@@ -42971,7 +42971,7 @@
kinetics = Arrhenius(A=(2.4e+08,'cm^3/(mol*s)'), n=1.5, Ea=(4.16,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser, value for reaction: HNO2 + H = H2 + NO2 (B&D #41a) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction manually from rate rule: N5dc/H/NonDeOO;H_rad
""",
@@ -42984,7 +42984,7 @@
kinetics = Arrhenius(A=(1.7e+08,'cm^3/(mol*s)'), n=1.5, Ea=(2.36,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser, value for reaction: HNO2 + O = OH + NO2 (B&D #41b) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction manually from rate rule: N5dc/H/NonDeOO;O_atom_triplet
""",
@@ -42997,7 +42997,7 @@
kinetics = Arrhenius(A=(1.2e+06,'cm^3/(mol*s)'), n=2, Ea=(-0.79,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser, value for reaction: HNO2 + OH = H2O + NO2 (B&D #41c) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction manually from rate rule: N5dc/H/NonDeOO;O_pri_rad
""",
@@ -43010,7 +43010,7 @@
kinetics = Arrhenius(A=(810000,'cm^3/(mol*s)'), n=1.87, Ea=(4.84,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser, value for reaction: HNO2 + CH3 = NO2 + CH4 (B&D #41d) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction manually from rate rule: N5dc/H/NonDeOO;C_methyl
""",
@@ -43023,7 +43023,7 @@
kinetics = Arrhenius(A=(920000,'cm^3/(mol*s)'), n=1.94, Ea=(0.87,'kcal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 1,
shortDesc = """Added by Beat Buesser, value for reaction: HNO2 + NH2 = NO2 + NH3 (B&D #413) in 'Gas-Phase Combustion Chemistry' (ISBN: 978-1-4612-7088-1), chapter 2, 'Combustion Chemistry of Nitrogen', Anthony M. Dean, Joseph W. Bozzelli""",
- longDesc =
+ longDesc =
"""
Converted to training reaction manually from rate rule: N5dc/H/NonDeOO;NH2_rad
""",
@@ -43036,7 +43036,7 @@
kinetics = Arrhenius(A=(1.65,'cm^3/(mol*s)'), n=3.41, Ea=(-4,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.13644, dn = +|- 0.0159552, dEa = +|- 0.120945 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1453 f)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43052,7 +43052,7 @@
kinetics = Arrhenius(A=(7.14,'cm^3/(mol*s)'), n=3.59, Ea=(81.1,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.04766, dn = +|- 0.00580835, dEa = +|- 0.044029 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1453 r)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43068,7 +43068,7 @@
kinetics = Arrhenius(A=(0.231,'cm^3/(mol*s)'), n=3.93, Ea=(70.1,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.2035, dn = +|- 0.0225658, dEa = +|- 0.225133 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1330 f)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43084,7 +43084,7 @@
kinetics = Arrhenius(A=(29.8,'cm^3/(mol*s)'), n=3.61, Ea=(24.3,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.21122, dn = +|- 0.0233453, dEa = +|- 0.232911 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1330 r)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43100,7 +43100,7 @@
kinetics = Arrhenius(A=(0.422,'cm^3/(mol*s)'), n=3.93, Ea=(70.1,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.35051, dn = +|- 0.0366059, dEa = +|- 0.365208 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1485 f)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43116,7 +43116,7 @@
kinetics = Arrhenius(A=(0.353,'cm^3/(mol*s)'), n=3.81, Ea=(40,'kJ/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(3000,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.40215, dn = +|- 0.0411776, dEa = +|- 0.410819 kJ/mol"""),
rank = 3,
shortDesc = """CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ longDesc =
"""
Calculated by alongd (xq1485 r)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -43132,7 +43132,7 @@
kinetics = Arrhenius(A=(1530,'cm^3/(mol*s)'), n=2.79, Ea=(16.8,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43145,7 +43145,7 @@
kinetics = Arrhenius(A=(0.000116,'cm^3/(mol*s)'), n=4.96, Ea=(19.9,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43158,7 +43158,7 @@
kinetics = Arrhenius(A=(497,'cm^3/(mol*s)'), n=2.95, Ea=(28.4,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.46606, dn = +|- 0.0488369, dEa = +|- 0.308498 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43171,7 +43171,7 @@
kinetics = Arrhenius(A=(1.3,'cm^3/(mol*s)'), n=3.18, Ea=(-17.6,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.27444, dn = +|- 0.030956, dEa = +|- 0.195546 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43184,7 +43184,7 @@
kinetics = Arrhenius(A=(1.25e-06,'cm^3/(mol*s)'), n=5.04, Ea=(23.6,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.30379, dn = +|- 0.0338626, dEa = +|- 0.213907 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43197,7 +43197,7 @@
kinetics = Arrhenius(A=(608,'cm^3/(mol*s)'), n=2.96, Ea=(39.3,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.439, dn = +|- 0.0464588, dEa = +|- 0.293476 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43210,7 +43210,7 @@
kinetics = Arrhenius(A=(0.247,'cm^3/(mol*s)'), n=3.68, Ea=(4.5,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.18724, dn = +|- 0.0219085, dEa = +|- 0.138394 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43223,7 +43223,7 @@
kinetics = Arrhenius(A=(1.13e-06,'cm^3/(mol*s)'), n=5.14, Ea=(29.7,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K'), comment="""Fitted to 51 data points; dA = *|/ 1.28286, dn = +|- 0.0317971, dEa = +|- 0.20086 kJ/mol"""),
rank = 3,
shortDesc = """CBS-QB3""",
- longDesc =
+ longDesc =
"""
Calculated by Ryan Gillis at CBS-QB3 - Sept 2019
""",
@@ -43236,7 +43236,7 @@
kinetics = Arrhenius(A=(2.1e-17,'cm^3/(molecule*s)'), n=2.53, Ea=(135.9,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
HI + CH3 = I + CH4
Arrhenius parameters calculated at the CCSD(T)/ANO-RCC-L(I)//MP2/cc-pVTZ level of theory
@@ -43252,7 +43252,7 @@
kinetics = Arrhenius(A=(2.7e-19,'cm^3/(molecule*s)'), n=2.38, Ea=(-5.3,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
HI + CH3 = I + CH4
Arrhenius parameters calculated at the CCSD(T)/ANO-RCC-L(I)//MP2/ cc-pVTZ level of theory
@@ -43268,7 +43268,7 @@
kinetics = Arrhenius(A=(4e-16,'cm^3/(molecule*s)'), n=1.93, Ea=(128.2,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + H2 => HI + H
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43284,7 +43284,7 @@
kinetics = Arrhenius(A=(3.6e-16,'cm^3/(molecule*s)'), n=1.68, Ea=(-2.3,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
HI + H => I + H2
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43300,7 +43300,7 @@
kinetics = Arrhenius(A=(5.2e-17,'cm^3/(molecule*s)'), n=2.26, Ea=(181.2,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + H2O => HI + OH
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43316,7 +43316,7 @@
kinetics = Arrhenius(A=(1.2e-17,'cm^3/(molecule*s)'), n=2.09, Ea=(-7.9,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
HI + OH => I + H2O
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43332,7 +43332,7 @@
kinetics = Arrhenius(A=(4.7e-16,'cm^3/(molecule*s)'), n=1.7, Ea=(124.4,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + OH => HI + O
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43348,7 +43348,7 @@
kinetics = Arrhenius(A=(9.6e-16,'cm^3/(molecule*s)'), n=1.5, Ea=(4.9,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
HI + O => I + OH
Arrhenius parameters calculated at the CCSD(T)/cc-pVQZ//MP2/cc-pVTZ level of theory
@@ -43364,7 +43364,7 @@
kinetics = Arrhenius(A=(3.57e-24,'cm^3/(molecule*s)'), n=3.59, Ea=(73.83,'kJ/mol'), T0=(1,'K'), Tmin=(250,'K'), Tmax=(2500,'K')),
rank = 3,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + H2O2 <=> HI + HO2
Arrhenius parameters calculated at the CCSD(T)/CBS(T,Q)//B3LYP/aug-cc-pVTZ level of theory + CVT/SCT
@@ -43379,7 +43379,7 @@
kinetics = Arrhenius(A=(2.96e-11,'cm^3/(molecule*s)'), n=0, Ea=(75.5,'kJ/mol'), T0=(1,'K'), Tmin=(481,'K'), Tmax=(573,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + C3H6 <=> HI + C3H5
D. M. Golden, A. S. Rodgers and S. W. Benson, J. Am. Chem. Soc., 1966, 88, 3196-3198
@@ -43396,7 +43396,7 @@
kinetics = Arrhenius(A=(2.21e-10,'cm^3/(molecule*s)'), n=0, Ea=(111,'kJ/mol'), T0=(1,'K'), Tmin=(503,'K'), Tmax=(618,'K')),
rank = 1,
shortDesc = """Training reaction from kinetics library: Iodine-H_abstraction""",
- longDesc =
+ longDesc =
"""
I + C2H6 <=> HI + C2H5
Knox, J.H.; Musgrave, R.G., Trans. Faraday Soc., 63, 2201-2216, 1967
@@ -43423,7 +43423,7 @@
),
referenceType = "An estimated temperature-independent rate constant for the reaction between C6H5 and HI",
rank = 10,
- longDesc =
+ longDesc =
"""
An estimated temperature-independent rate constant for the reaction between C6H5 and HI
""",
@@ -43436,10 +43436,10 @@
kinetics = Arrhenius(A=(2.80023e+07,'cm^3/(mol*s)'), n=1.6, Ea=(1970.25,'J/mol'), T0=(1,'K'), Tmin=(235,'K'), Tmax=(1407,'K')),
rank = 7,
shortDesc = """Measured by shock tube experiments.""",
- longDesc =
+ longDesc =
"""
-Cited from Badra, Jihad, Ehson F. Nasir, and Aamir Farooq. "Site-specific rate constant
-measurements for primary and secondary h-and d-abstraction by oh radicals: Propane and n-butane." The Journal
+Cited from Badra, Jihad, Ehson F. Nasir, and Aamir Farooq. "Site-specific rate constant
+measurements for primary and secondary h-and d-abstraction by oh radicals: Propane and n-butane." The Journal
of PhysicalChemistry A 118.26 (2014): 4652-4660.
""",
)
@@ -43451,7 +43451,7 @@
kinetics = Arrhenius(A=(1.41e+10,'cm^3/(mol*s)'), n=0.94, Ea=(504.7,'cal/mol'), T0=(1,'K')),
rank = 10,
shortDesc = """From JetSurF2.0 NC5H12 + OH <=> SXC5H11 + H2O""",
- longDesc =
+ longDesc =
"""
From JetSurF2.0 NC5H12 + OH <=> SXC5H11 + H2O
""",
@@ -43464,10 +43464,10 @@
kinetics = Arrhenius(A=(2.86045e+06,'cm^3/(mol*s)'), n=1.811, Ea=(-511,'cal/mol'), T0=(1,'K')),
rank = 7,
shortDesc = """Measured by shock tube experiments.""",
- longDesc =
+ longDesc =
"""
-Cited from Sivaramakrishnan, R., and J. V. Michael. "Rate constants for OH with
-selected large alkanes: shock-tube measurements and an improved group scheme." The
+Cited from Sivaramakrishnan, R., and J. V. Michael. "Rate constants for OH with
+selected large alkanes: shock-tube measurements and an improved group scheme." The
Journal of Physical Chemistry A 113.17 (2009): 5047-5060.
""",
)
@@ -43487,7 +43487,7 @@
),
referenceType = "theory",
rank = 3,
- longDesc =
+ longDesc =
"""
CASPT2(2e,2o)/cc-pvdz (VRC-TST)
""",
@@ -43508,7 +43508,7 @@
),
referenceType = "theory",
rank = 3,
- longDesc =
+ longDesc =
"""
CASPT2(2e,2o)/cc-pvdz (VRC-TST)
""",
@@ -43535,7 +43535,7 @@
),
referenceType = "theory",
rank = 3,
- longDesc =
+ longDesc =
u"""
CCSD(T)/cc-pV(D,T)Z//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43563,7 +43563,7 @@
),
referenceType = "theory",
rank = 5,
- longDesc =
+ longDesc =
u"""
CCSD(T)/cc-pV(D,T)Z//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43591,7 +43591,7 @@
),
referenceType = "theory",
rank = 7,
- longDesc =
+ longDesc =
u"""
M06-2X/6-311g(d,p)//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43619,7 +43619,7 @@
),
referenceType = "theory",
rank = 7,
- longDesc =
+ longDesc =
u"""
M06-2X/6-311g(d,p)//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43647,7 +43647,7 @@
),
referenceType = "theory",
rank = 7,
- longDesc =
+ longDesc =
u"""
M06-2X/6-311g(d,p)//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43675,7 +43675,7 @@
),
referenceType = "theory",
rank = 7,
- longDesc =
+ longDesc =
u"""
M06-2X/6-311g(d,p)//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
@@ -43703,11 +43703,48 @@
),
referenceType = "theory",
rank = 7,
- longDesc =
+ longDesc =
u"""
M06-2X/6-311g(d,p)//B3LYP/6-311g(d,p)
Rate calculations using conventional TST, done with Multiwell 2016
1D Eckart tunneling corrections
-""",
+"""
)
+entry(
+ index = 3116,
+ label = "CH3_r3 + HLi <=> CH4b + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(79732.1,'cm^3/(mol*s)'), n=2.61156, Ea=(12.1363,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.39470212956669,B=1.6022203760198037,E=1.4946262264125265,L=10.49010693814182,A=0.4943151788298517,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [CH3] + [Li][H] <=> [Li] + C
+TS method summary for TS1 in [CH3] + [Li][H] <=> [Li] + C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 3, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.70871273 -0.01490895 0.00158396
+C -0.96949251 0.00074660 0.00030355
+H 1.04579798 -0.00431498 -0.00287904
+H -1.12331191 -0.67940335 -0.82540465
+H -1.11719084 1.05691017 -0.17519024
+H -1.11679945 -0.37438412 1.00313346
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1724.5822620152626 J/mol
+""",
+)
diff --git a/input/kinetics/families/Intra_R_Add_Endocyclic/training/dictionary.txt b/input/kinetics/families/Intra_R_Add_Endocyclic/training/dictionary.txt
index a61f387592..bd4f8cfdf3 100755
--- a/input/kinetics/families/Intra_R_Add_Endocyclic/training/dictionary.txt
+++ b/input/kinetics/families/Intra_R_Add_Endocyclic/training/dictionary.txt
@@ -38146,3 +38146,30 @@ multiplicity 2
14 H u0 p0 c0 {8,S}
15 H u0 p0 c0 {5,S}
+C3H4LiO3
+multiplicity 2
+1 *5 O u0 p2 c0 {4,S} {6,S}
+2 *3 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 *4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *1 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C3H4LiO3-2
+multiplicity 2
+1 *5 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 *3 O u0 p2 c0 {6,D}
+4 *4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *1 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
diff --git a/input/kinetics/families/Intra_R_Add_Endocyclic/training/reactions.py b/input/kinetics/families/Intra_R_Add_Endocyclic/training/reactions.py
index 5466ffe94a..534f95931e 100755
--- a/input/kinetics/families/Intra_R_Add_Endocyclic/training/reactions.py
+++ b/input/kinetics/families/Intra_R_Add_Endocyclic/training/reactions.py
@@ -12525,3 +12525,46 @@
""",
)
+entry(
+ index = 851,
+ label = "C3H4LiO3 <=> C3H4LiO3-2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.99833e+12,'s^-1'), n=0.39066, Ea=(59.4863,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.140536907525525,B=1.0466026029403899,E=-0.4141994326786929,L=4.770587031445122,A=0.9093778018261982,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[C]1OCCO1 <=> [Li]OC[=O]OC[CH2]
+TS method summary for TS1 in [Li]O[C]1OCCO1 <=> [Li]OC(=O)C[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.66599400 -1.25279300 -0.21024000
+O 1.87162600 0.40165300 0.02198600
+C 0.66099800 0.17325400 0.00564100
+O 0.17336600 -1.03959300 -0.15189100
+C -1.50340400 -0.88699900 -0.11131600
+C -1.62120800 0.59452300 0.08946800
+O -0.23758600 1.13890400 0.14639900
+H -1.77653100 -1.52152900 0.72327600
+H -1.79803100 -1.27921400 -1.07730400
+H -2.10607800 1.11033700 -0.73832600
+H -2.08512500 0.87165400 1.03518700
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1477.9928602794778 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/Li_Abstraction/groups.py b/input/kinetics/families/Li_Abstraction/groups.py
new file mode 100644
index 0000000000..564b0a85ec
--- /dev/null
+++ b/input/kinetics/families/Li_Abstraction/groups.py
@@ -0,0 +1,71 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Abstraction/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["RJ_R_Y", "R2"], ownReverse=False)
+
+reverse = "Cation_Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+recipe(actions=[
+ ['LOSE_RADICAL', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*2', 1, '*3'],
+ ['GAIN_RADICAL', '*1', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R u0 {2,S}
+2 *2 [F,Cl] u0 {1,S}
+3 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_2ClF->F",
+ group =
+"""
+1 *1 C u0 r0 {2,S}
+2 *2 F u0 r0 {1,S}
+3 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_N-2ClF->F",
+ group =
+"""
+1 *1 C u0 r0 {2,S}
+2 *2 Cl u0 r0 {1,S}
+3 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_2ClF->F
+ L2: Root_N-2ClF->F
+"""
+)
+
diff --git a/input/kinetics/families/Li_Abstraction/rules.py b/input/kinetics/families/Li_Abstraction/rules.py
new file mode 100644
index 0000000000..ab58752652
--- /dev/null
+++ b/input/kinetics/families/Li_Abstraction/rules.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Abstraction/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(3.83608e+11,'m^3/(mol*s)'), n=-0.510924, w0=(464500,'J/mol'), E0=(75534.9,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.07018974762276049, var=13.57503199120961, Tref=1000.0, N=2, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 2 training reactions at node Root
+ Total Standard Deviation in ln(k): 7.562664269461141"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root
+Total Standard Deviation in ln(k): 7.562664269461141""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root
+Total Standard Deviation in ln(k): 7.562664269461141
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_2ClF->F",
+ kinetics = ArrheniusBM(A=(67.2982,'m^3/(mol*s)'), n=2.43284, w0=(531000,'J/mol'), E0=(69102.7,'J/mol'), Tmin=(303.03,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_2ClF->F',), comment="""BM rule fitted to 1 training reactions at node Root_2ClF->F
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_2ClF->F
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_2ClF->F
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-2ClF->F",
+ kinetics = ArrheniusBM(A=(1092.65,'m^3/(mol*s)'), n=1.96179, w0=(398000,'J/mol'), E0=(28572.7,'J/mol'), Tmin=(303.03,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-2ClF->F',), comment="""BM rule fitted to 1 training reactions at node Root_N-2ClF->F
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-2ClF->F
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-2ClF->F
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Li_Abstraction/training/dictionary.txt b/input/kinetics/families/Li_Abstraction/training/dictionary.txt
new file mode 100644
index 0000000000..5c45efc662
--- /dev/null
+++ b/input/kinetics/families/Li_Abstraction/training/dictionary.txt
@@ -0,0 +1,33 @@
+FLi
+1 *2 F u0 p3 c0 {2,S}
+2 *3 Li u0 p0 c0 {1,S}
+
+CH3
+multiplicity 2
+1 *1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH3F
+1 *2 F u0 p3 c0 {2,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+ClLi
+1 *2 Cl u0 p3 c0 {2,S}
+2 *3 Li u0 p0 c0 {1,S}
+
+CH3Cl
+1 *2 Cl u0 p3 c0 {2,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
diff --git a/input/kinetics/families/Li_Abstraction/training/reactions.py b/input/kinetics/families/Li_Abstraction/training/reactions.py
new file mode 100644
index 0000000000..bd2a3e3633
--- /dev/null
+++ b/input/kinetics/families/Li_Abstraction/training/reactions.py
@@ -0,0 +1,85 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Abstraction/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 0,
+ label = "FLi + CH3 <=> CH3F + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.14134e+06,'cm^3/(mol*s)'), n=2.18948, Ea=(140.779,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8681935378213759,B=2.373498032935028,E=0.32859248603303737,L=5.004153890392606,A=0.8849787213003473,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [CH3] + [Li]F <=> [Li] + CF
+TS method summary for TS2 in [CH3] + [Li]F <=> [Li] + CF:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 4.49673700 -1.13011800 1.39763100
+C 1.75580400 0.00037500 0.06602800
+F 3.42440700 -0.39159000 0.25679400
+H 1.58109900 0.66479500 0.90113000
+H 1.28598600 -0.97216800 0.11894400
+H 1.79999200 0.45924600 -0.91097200
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2138.0682833668507 J/mol
+""",
+)
+
+entry(
+ index = 1,
+ label = "ClLi + CH3 <=> CH3Cl + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.57736e+07,'cm^3/(mol*s)'), n=1.91726, Ea=(119.96,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.40096476096442,B=0.7611537028291462,E=0.36695032193123533,L=5.182274882516309,A=0.578711830957878,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [CH3] + [Li]Cl <=> [Li] + CCl
+TS method summary for TS3 in [CH3] + [Li]Cl <=> [Li] + CCl:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.00547500 -0.87557900 -3.79036700
+C 1.88221400 0.13984100 -0.18786500
+Cl 3.00971200 0.32165900 -1.76333600
+H 2.24700300 0.89978200 0.49361100
+H 2.03861700 -0.86850900 0.17807800
+H 0.86741800 0.32211300 -0.52269700
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1761.0833142781657 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/Li_Addition_MultipleBond/groups.py b/input/kinetics/families/Li_Addition_MultipleBond/groups.py
new file mode 100644
index 0000000000..582bd5c008
--- /dev/null
+++ b/input/kinetics/families/Li_Addition_MultipleBond/groups.py
@@ -0,0 +1,137 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Addition_MultipleBond/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["RJ_R_Y"], ownReverse=False)
+
+reverse = "Li_Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 1
+
+autoGenerated = True
+
+recipe(actions=[
+ ['GAIN_RADICAL', '*2', 1],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['LOSE_RADICAL', '*3', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 R!H u0 {2,[B,D,T]}
+2 *2 R!H u0 {1,[B,D,T]}
+3 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_1R!H->C",
+ group =
+"""
+1 *1 C u0 r0 {2,D}
+2 *2 C u0 {1,D}
+3 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_N-1R!H->C",
+ group =
+"""
+1 *1 [S,F,I,O,Si,Br,Li,P,Cl,N] u0 {2,[B,D,T]}
+2 *2 C u0 {1,[B,D,T]}
+3 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 C u0 {1,D}
+3 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing",
+ group =
+"""
+1 *1 O u0 r0 {2,D}
+2 *2 C u0 r1 {1,D}
+3 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing",
+ group =
+"""
+1 *1 O u0 r0 {2,D}
+2 *2 C u0 r0 {1,D}
+3 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_N-1R!H->C_N-1BrClFILiNOPSSi->O",
+ group =
+"""
+1 *1 N u0 {2,[B,D,T]}
+2 *2 C u0 {1,[B,D,T]}
+3 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_1R!H->C
+ L2: Root_N-1R!H->C
+ L3: Root_N-1R!H->C_1BrClFILiNOPSSi->O
+ L4: Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing
+ L4: Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing
+ L3: Root_N-1R!H->C_N-1BrClFILiNOPSSi->O
+"""
+)
+
+forbidden(
+ label = "O2d",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 O u0 {1,D}
+""",
+ shortDesc = """""",
+ longDesc =
+"""
+
+""",
+)
+
diff --git a/input/kinetics/families/Li_Addition_MultipleBond/rules.py b/input/kinetics/families/Li_Addition_MultipleBond/rules.py
new file mode 100644
index 0000000000..949806fcc8
--- /dev/null
+++ b/input/kinetics/families/Li_Addition_MultipleBond/rules.py
@@ -0,0 +1,113 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Addition_MultipleBond/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(3.38862e+22,'m^3/(mol*s)'), n=-3.83488, w0=(331025,'J/mol'), E0=(69762.9,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.2739971381142295, var=18.397651058247572, Tref=1000.0, N=4, data_mean=0.0, correlation='Root',), solute=SoluteData(S=-2.526374294614294,B=0.8015972337092023,E=0.7939796321505602,L=-7.347532148984288,A=3.5839299275543293,comment=''), comment="""BM rule fitted to 4 training reactions at node Root
+ Total Standard Deviation in ln(k): 9.287241561557916"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 9.287241561557916""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 9.287241561557916
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_1R!H->C",
+ kinetics = Arrhenius(A=(105.399,'m^3/(mol*s)'), n=1.74038, Ea=(37.7145,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1R!H->C",
+ kinetics = ArrheniusBM(A=(2.88896e+17,'m^3/(mol*s)'), n=-2.28234, w0=(362933,'J/mol'), E0=(48674.7,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.3169889639215061, var=6.766509193272011, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-1R!H->C',), solute=SoluteData(S=-2.526374294614294,B=0.8015972337092023,E=0.7939796321505602,L=-7.347532148984288,A=3.5839299275543293,comment=''), comment="""BM rule fitted to 3 training reactions at node Root_N-1R!H->C
+ Total Standard Deviation in ln(k): 6.011274743737681"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_N-1R!H->C
+Total Standard Deviation in ln(k): 6.011274743737681""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_N-1R!H->C
+Total Standard Deviation in ln(k): 6.011274743737681
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O",
+ kinetics = ArrheniusBM(A=(7.22249e+18,'m^3/(mol*s)'), n=-2.68647, w0=(391300,'J/mol'), E0=(48434.3,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-2.180092557367769, var=46.07331062123734, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_1BrClFILiNOPSSi->O',), solute=SoluteData(S=-2.8589187219655385,B=2.5382122694909937,E=-5.179331723749835,L=-7.842845726943329,A=3.3935425114208373,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O
+ Total Standard Deviation in ln(k): 19.085224653395613"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O
+Total Standard Deviation in ln(k): 19.085224653395613""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O
+Total Standard Deviation in ln(k): 19.085224653395613
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_N-1R!H->C_N-1BrClFILiNOPSSi->O",
+ kinetics = Arrhenius(A=(12900,'m^3/(mol*s)'), n=1.54986, Ea=(-0.322199,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFILiNOPSSi->O',), solute=SoluteData(S=-1.8612854399118046,B=-2.67163283785438,E=12.74060234395135,L=-6.356904993066203,A=3.9647047598213128,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFILiNOPSSi->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFILiNOPSSi->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFILiNOPSSi->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing",
+ kinetics = Arrhenius(A=(286.34,'m^3/(mol*s)'), n=1.60471, Ea=(-29.5903,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing',), solute=SoluteData(S=-4.381373385806166,B=2.8115182826673752,E=-5.285110205702292,L=-10.646126189503287,A=3.0115609547759967,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing",
+ kinetics = Arrhenius(A=(792975,'m^3/(mol*s)'), n=1.43477, Ea=(-1.88935,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing',), solute=SoluteData(S=-1.3364640581249116,B=2.2649062563146116,E=-5.073553241797377,L=-5.039565264383372,A=3.7755240680656774,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFILiNOPSSi->O_N-2R!H-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Li_Addition_MultipleBond/training/dictionary.txt b/input/kinetics/families/Li_Addition_MultipleBond/training/dictionary.txt
new file mode 100644
index 0000000000..a32cf4fe8c
--- /dev/null
+++ b/input/kinetics/families/Li_Addition_MultipleBond/training/dictionary.txt
@@ -0,0 +1,78 @@
+CH3LiN
+multiplicity 2
+1 *1 N u0 p1 c0 {2,S} {3,S} {6,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CH3N
+1 *1 N u0 p1 c0 {2,D} {5,S}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+CH2LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+CH2O
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+C3H4LiO3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 *3 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C3H4O3
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+C2H4
+1 *1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C2H4Li
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
diff --git a/input/kinetics/families/Li_Addition_MultipleBond/training/reactions.py b/input/kinetics/families/Li_Addition_MultipleBond/training/reactions.py
new file mode 100644
index 0000000000..6254c5e616
--- /dev/null
+++ b/input/kinetics/families/Li_Addition_MultipleBond/training/reactions.py
@@ -0,0 +1,159 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_Addition_MultipleBond/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "CH3LiN <=> CH3N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.3493e+15,'s^-1'), n=-0.259789, Ea=(57.8699,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.65419313965326,B=1.2542197583042969,E=-0.21990942778263972,L=-9.14111680402368,A=3.645314481406821,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N[CH2] <=> [Li] + N=C
+TS method summary for TS5 in [Li]N[CH2] <=> [Li] + N=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 6.05139304 -0.13209844 0.04731853
+N -0.59090151 0.44974234 -0.13918199
+C -1.50102245 -0.40751439 0.06649375
+H -0.84130096 1.35681132 0.26234830
+H -2.43737623 -0.21216607 0.60231309
+H -1.36253440 -1.42264825 -0.30947313
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9225.750515830967 J/mol
+""",
+)
+
+entry(
+ index = 2,
+ label = "CH2LiO <=> CH2O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.12946e+16,'s^-1'), n=-0.125312, Ea=(91.4067,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.4735938637413528,B=2.67486764340657,E=-5.09678040094995,L=-4.876934525239067,A=3.9944267641274602,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[CH2] <=> [Li] + C=O
+TS method summary for TS2 in [Li]O[CH2] <=> [Li] + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 5.94953985 -0.41297703 -0.17000001
+O -1.44709358 -0.51595384 -0.58748736
+C -0.51807902 -0.11636709 0.05072105
+H -0.34294039 0.96399341 0.21662004
+H 0.21655881 -0.80519630 0.51008017
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9134.820807836515 J/mol
+""",
+)
+
+entry(
+ index = 3,
+ label = "C3H4LiO3 <=> C3H4O3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.54076e+14,'s^-1'), n=-0.182294, Ea=(23.9219,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.018725993417632,B=4.93569039446143,E=-4.315782362402726,L=-1.68464261284562,A=3.5698295734222367,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1
+TS method summary for TS2 in [Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.19853800 -1.72038300 -0.07266600
+O 1.76667000 0.85234100 0.00624500
+C 0.64157500 0.45596800 0.00446400
+O 0.35500500 -0.88546600 -0.06754100
+C -1.07057700 -1.09977700 0.11070100
+C -1.63216600 0.30832100 -0.11252500
+O -0.48175500 1.17430200 0.07309300
+H -1.23031400 -1.47803000 1.12084400
+H -1.39532400 -1.83156700 -0.62695100
+H -2.00519600 0.46029600 -1.12605700
+H -2.38753000 0.59754200 0.61515000
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 10990.041834280188 J/mol
+""",
+)
+
+entry(
+ index = 4,
+ label = "C2H4 + Li <=> C2H4Li",
+ degeneracy = 2.0,
+ kinetics = Arrhenius(A=(2.10799e+08,'cm^3/(mol*s)'), n=1.74038, Ea=(37.7145,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: C=C + [Li] <=> [Li]C[CH2]
+TS method summary for TS12 in C=C + [Li] <=> [Li]C[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.32478100 0.48677200 -2.28010300
+C 0.66699000 0.47764200 0.12534900
+C 1.96387400 0.14162800 -0.10323100
+H -0.11605000 -0.27260900 0.16841800
+H 0.36914100 1.50519600 0.30784300
+H 2.27746800 -0.89206400 -0.20216200
+H 2.76028000 0.87702100 -0.06342100
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
diff --git a/input/kinetics/families/Li_NO_Ring_Opening/groups.py b/input/kinetics/families/Li_NO_Ring_Opening/groups.py
new file mode 100644
index 0000000000..c264762415
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Ring_Opening/groups.py
@@ -0,0 +1,125 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Ring_Opening/groups"
+shortDesc = ""
+longDesc = """
+If a birad, the reacting site *3 must be a triplet instead of singlet for this reaction family.
+"""
+
+template(reactants=["Root"], products=["YJ"], ownReverse=False)
+
+reverse = "Li_NO_Ring_Opening_reverse"
+reversible = True
+
+reverseMap = {'*2': '*3', '*3': '*2'}
+
+reactantNum = 2
+
+productNum = 1
+
+autoGenerated = True
+
+recipe(actions=[
+ ['LOSE_RADICAL', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['GAIN_RADICAL', '*2', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_1NO->O",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O_Ext-2R-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,[S,D,T,B,Q]}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R",
+ group =
+"""
+1 *1 O u0 r1 {2,S} {3,S}
+2 *2 C u[0,1] r1 {1,S} {5,[S,D,T,B,Q]}
+3 C u0 r1 {1,S}
+4 *3 Li u1 p0 c0
+5 C ux r1 {2,[S,D,T,B,Q]} {6,S}
+6 R!H u0 r1 {5,S} {7,[S,D,T,B,Q]}
+7 R!H ux {6,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R",
+ group =
+"""
+1 *1 O u0 r1 {2,S} {3,S}
+2 *2 C u0 r1 {1,S} {5,S}
+3 C u0 r1 {1,S} {7,[S,D,T,B,Q]}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r1 {2,S} {6,S}
+6 R!H u0 r1 {5,S}
+7 R!H ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_N-1NO->O",
+ group =
+"""
+1 *1 N u0 r1 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_1NO->O
+ L3: Root_1NO->O_Ext-2R-R
+ L4: Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+ L4: Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R
+ L2: Root_N-1NO->O
+"""
+)
+
diff --git a/input/kinetics/families/Li_NO_Ring_Opening/rules.py b/input/kinetics/families/Li_NO_Ring_Opening/rules.py
new file mode 100644
index 0000000000..8ef126a801
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Ring_Opening/rules.py
@@ -0,0 +1,98 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Ring_Opening/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(1227.49,'m^3/(mol*s)'), n=1.78231, w0=(340580,'J/mol'), E0=(61995.8,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.03079975817713572, var=13.049803001179814, Tref=1000.0, N=5, data_mean=0.0, correlation='Root',), solute=SoluteData(S=0.33752849960684006,B=-0.08726885649250123,E=0.37833778894270276,L=1.1498227049138072,A=0.073872744373486,comment=''), comment="""BM rule fitted to 5 training reactions at node Root
+ Total Standard Deviation in ln(k): 7.319393776850598"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 5 training reactions at node Root
+Total Standard Deviation in ln(k): 7.319393776850598""",
+ longDesc =
+"""
+BM rule fitted to 5 training reactions at node Root
+Total Standard Deviation in ln(k): 7.319393776850598
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O",
+ kinetics = ArrheniusBM(A=(721.913,'m^3/(mol*s)'), n=1.85814, w0=(349800,'J/mol'), E0=(61620.4,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.4375477450633406, var=24.504133425532565, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_1NO->O',), solute=SoluteData(S=0.4590453878469358,B=-0.1677500099666882,E=0.6946943283413284,L=0.8027664740150602,A=0.3404928856360022,comment=''), comment="""BM rule fitted to 4 training reactions at node Root_1NO->O
+ Total Standard Deviation in ln(k): 11.023135587423338"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 11.023135587423338""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 11.023135587423338
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1NO->O",
+ kinetics = Arrhenius(A=(0.600821,'m^3/(mol*s)'), n=2.69163, Ea=(75.1245,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O',), solute=SoluteData(S=-0.148539053353543,B=0.2346557574042466,E=-0.8870883686517999,L=2.5380476285087967,A=-0.9926078206765788,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-2R-R",
+ kinetics = ArrheniusBM(A=(0.0811241,'m^3/(mol*s)'), n=3.0165, w0=(349800,'J/mol'), E0=(55933.5,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.5578666757241915, var=40.08131913969709, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_Ext-2R-R',), solute=SoluteData(S=0.5933552756886175,B=-0.23163482172950375,E=0.6191898079346778,L=1.126493496999618,A=0.10351697123780944,comment=''), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-2R-R
+ Total Standard Deviation in ln(k): 14.09361454656864"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 14.09361454656864""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 14.09361454656864
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R",
+ kinetics = Arrhenius(A=(1235,'m^3/(mol*s)'), n=1.47788, Ea=(57.5452,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R',), solute=SoluteData(S=0.6720034234692184,B=-0.5272433935924955,E=-0.04058233196442157,L=0.016250546098216745,A=-0.03472246433194898,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-6R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R",
+ kinetics = Arrhenius(A=(32.0115,'m^3/(mol*s)'), n=2.08453, Ea=(2.45304,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R',), solute=SoluteData(S=0.48393279894068975,B=0.3604817411402965,E=2.468332514419877,L=4.280078451074511,A=0.2780568400693335,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-2R-R_Ext-5R!H-R_Ext-3R-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Li_NO_Ring_Opening/training/dictionary.txt b/input/kinetics/families/Li_NO_Ring_Opening/training/dictionary.txt
new file mode 100644
index 0000000000..e3153cc0c7
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Ring_Opening/training/dictionary.txt
@@ -0,0 +1,160 @@
+C2H4LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *2 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+C2H4O
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+C4H9LiN
+multiplicity 2
+1 *1 N u0 p1 c0 {4,S} {6,S} {15,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 *2 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 *3 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+C4H9N
+1 *1 N u0 p1 c0 {4,S} {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+C6H12LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {6,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {6,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {7,S} {15,S} {16,S}
+6 C u0 p0 c0 {1,S} {4,S} {17,S} {18,S}
+7 *2 C u1 p0 c0 {5,S} {19,S} {20,S}
+8 *3 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {5,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {7,S}
+20 H u0 p0 c0 {7,S}
+
+C6H12O
+1 *1 O u0 p2 c0 {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+4 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {7,S} {14,S} {15,S}
+6 *2 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+7 C u0 p0 c0 {1,S} {5,S} {18,S} {19,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {7,S}
+
+C4H8LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {4,S} {6,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 *2 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 *3 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+C4H8O
+1 *1 O u0 p2 c0 {4,S} {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+C3H4O3
+1 *1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 *2 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+C3H4LiO3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *2 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 *3 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/Li_NO_Ring_Opening/training/reactions.py b/input/kinetics/families/Li_NO_Ring_Opening/training/reactions.py
new file mode 100644
index 0000000000..1da4034421
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Ring_Opening/training/reactions.py
@@ -0,0 +1,248 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Ring_Opening/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C2H4LiO <=> C2H4O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.79548e+09,'s^-1'), n=0.676137, Ea=(127.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9429002183123382,B=0.4142522035781646,E=0.9271382422782674,L=0.5080999191526422,A=1.2701035125702795,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC[CH2] <=> [Li] + O1CC1
+TS method summary for TS1 in [Li]OC[CH2] <=> [Li] + O1CC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.73301400 -1.23426700 -0.49793500
+O 0.60551200 0.06249200 -0.10018600
+C -0.50388800 0.89554800 0.19652100
+C -1.00886000 -0.45148800 -0.03734900
+H -0.69990300 1.66086200 -0.55370500
+H -0.51073300 1.28290300 1.21479300
+H -1.15946900 -1.12920200 0.79035100
+H -1.35302600 -0.74247900 -1.01915400
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2253.8360605095613 J/mol
+""",
+)
+
+entry(
+ index = 2,
+ label = "C4H9LiN <=> C4H9N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.41052e+13,'s^-1'), n=-0.0966111, Ea=(37.9728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7063184659079954,B=0.6546888841685338,E=1.4167685288377097,L=7.086460323740072,A=0.6763993010322846,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NCCC[CH2] <=> [Li] + N1CCCC1
+TS method summary for TS8 in [Li]NCCC[CH2] <=> [Li] + N1CCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.79696000 -2.05316500 -1.00229800
+N -1.02753700 -0.82446500 0.31048300
+C -1.17602900 0.62975500 0.34728300
+C -0.04031000 1.23440900 -0.48523000
+C 1.26536000 0.60012900 0.03045100
+C 1.10536400 -0.89281200 0.16065300
+H -1.14744700 -1.20628300 1.24655300
+H -2.14778300 0.93882900 -0.05818200
+H -1.11834800 1.02433100 1.37055800
+H -0.18192200 0.97424700 -1.54208700
+H -0.02609500 2.32742400 -0.41948200
+H 2.09531900 0.85423100 -0.64191300
+H 1.50425000 1.03272800 1.00804200
+H 1.36740100 -1.36403600 1.10079100
+H 1.41475700 -1.48698600 -0.70029100
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 14], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 5600.017004537509 J/mol
+""",
+)
+
+entry(
+ index = 3,
+ label = "C6H12LiO <=> C6H12O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(685907,'s^-1'), n=0.809304, Ea=(91.8794,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8745309700808286,B=0.6489379258617733,E=0.27349172242979114,L=6.280608540134562,A=0.35178208431790287,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCCCCC[CH2] <=> [Li] + O1CCCCCC1
+TS method summary for TS4 in [Li]OCCCCC[CH2] <=> [Li] + O1CCCCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.21778400 -2.51460800 1.52748300
+O 0.30780200 -0.93202600 1.17295000
+C 1.22507300 0.05015800 0.75305900
+C 1.16007100 0.34370200 -0.74604900
+C -0.18415100 0.88158700 -1.26317700
+C -1.37708100 -0.08782900 -1.14193800
+C -2.18529400 -0.00383000 0.17331100
+C -1.43642000 -0.15241200 1.46687200
+H 2.23706500 -0.28675900 1.01225300
+H 1.05582400 0.98241000 1.31722700
+H 1.94770800 1.07203000 -0.98005100
+H 1.41088600 -0.57386900 -1.29204500
+H -0.05269600 1.13539800 -2.32063300
+H -0.42385200 1.82754000 -0.75961200
+H -1.02546000 -1.11603800 -1.28152500
+H -2.08272100 0.11086500 -1.95663300
+H -2.68514000 0.97783700 0.18386800
+H -2.97901800 -0.75853500 0.12355800
+H -1.85839500 -0.83027000 2.20556000
+H -1.01299600 0.74101900 1.91000900
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [7, 8], dihedral: [6, 7, 8, 19], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 648.5792529213884 J/mol
+""",
+)
+
+entry(
+ index = 4,
+ label = "C4H8LiO <=> C4H8O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(9.68382e+12,'s^-1'), n=-0.0538311, Ea=(99.5874,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.975919765798433,B=0.5933221434562257,E=0.10249027371088437,L=4.734916369654065,A=0.4382337255257122,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCCC[CH2] <=> [Li] + O1CCCC1
+TS method summary for TS5 in [Li]OCCC[CH2] <=> [Li] + O1CCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.18875700 4.40146700 -0.15965700
+O 1.25526000 4.50560200 1.18500100
+C 1.81848000 4.05586800 2.39368600
+C 3.04718900 4.92469900 2.67844800
+C 2.59628200 6.35626200 2.34735900
+C 1.87760200 6.33368500 1.02998700
+H 2.48003000 6.25991400 0.13113900
+H 1.09474400 4.15021500 3.21790700
+H 2.09303800 2.99768000 2.31072700
+H 3.86832600 4.63175200 2.01575200
+H 3.39490700 4.82429600 3.71124200
+H 1.92993300 6.72532100 3.13318700
+H 3.45844200 7.03440200 2.30740100
+H 0.97428300 6.92366500 0.92199700
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1463.7250120069011 J/mol
+""",
+)
+
+entry(
+ index = 5,
+ label = "C3H4O3 + Li <=> C3H4LiO3",
+ degeneracy = 2.0,
+ kinetics = Arrhenius(A=(6.40229e+07,'cm^3/(mol*s)'), n=2.08453, Ea=(2.45304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.0971475333838443,B=1.0651724160645786,E=2.8149716305609487,L=7.643459730707861,A=0.5170156663408971,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: O=C1OCCO1 + [Li] <=> [Li]OC(=O)OC[CH2]
+TS method summary for TS1 in O=C1OCCO1 + [Li] <=> [Li]OC(=O)OC[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+O -1.86849600 -0.34389700 0.15565300
+C -0.66560700 -0.08480900 0.09252000
+O -0.21610600 1.13496900 -0.11650000
+C 1.46459400 1.02715100 -0.12713400
+C 1.62862000 -0.44407800 0.11303000
+O 0.26269000 -1.02218000 0.23159700
+H 1.74745400 1.69347200 0.67895300
+H 1.71712500 1.39749600 -1.11346200
+H 2.10022500 -0.97192200 -0.71484300
+H 2.13009200 -0.68039600 1.05062500
+Li -2.71413000 1.28166300 -0.09846000
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [11, 1, 2, 3], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2574.2194772490175 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/Li_NO_Substitution/groups.py b/input/kinetics/families/Li_NO_Substitution/groups.py
new file mode 100644
index 0000000000..fae4b443f8
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Substitution/groups.py
@@ -0,0 +1,447 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Substitution/groups"
+shortDesc = ""
+longDesc = """
+If a birad, the reacting site *3 must be a triplet instead of singlet for this reaction family.
+"""
+
+template(reactants=["Root"], products=["O-RR_or_RRrad", "YJ"], ownReverse=False)
+
+reverse = "Li_NO_Substitution_reverse"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+recipe(actions=[
+ ['LOSE_RADICAL', '*3', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['GAIN_RADICAL', '*2', 1],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *1 [O,N] u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_1NO->O",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O_Ext-3R-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 C u0 {1,S} {5,[S,D,T,B,Q]}
+4 *3 Li u1 p0 c0
+5 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "Root_1NO->O_Ext-3R-R_2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 C u0 {1,S} {5,[S,D,T,B,Q]}
+4 *3 Li u1 p0 c0
+5 C ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 C u0 {1,S} {5,[S,D,T,B,Q]}
+4 *3 Li u1 p0 c0
+5 C ux {3,[S,D,T,B,Q]} {6,[S,D,T,B,Q]}
+6 R!H ux {5,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "Root_1NO->O_Ext-3R-R_N-2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 H u0 r0 {1,S}
+3 C u0 r0 {1,S} {5,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "Root_1NO->O_3R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "Root_1NO->O_3R->C_Ext-2R-R",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 R u0 r0 {1,S} {5,[S,D,T,B,Q]}
+3 C u0 r0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "Root_1NO->O_3R->C_2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "Root_1NO->O_3R->C_N-2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "Root_1NO->O_N-3R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "Root_1NO->O_N-3R->C_2R->C",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 12,
+ label = "Root_1NO->O_N-3R->C_2R->C_Ext-2C-R",
+ group =
+"""
+1 *1 O u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S} {5,[S,D,T,B,Q]}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+5 R!H ux {2,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "Root_1NO->O_N-3R->C_N-2R->C",
+ group =
+"""
+1 *1 O u0 r0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "Root_N-1NO->O",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "Root_N-1NO->O_Ext-2R-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 C u0 {1,S} {5,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 16,
+ label = "Root_N-1NO->O_Ext-2R-R_Ext-1N-R",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {6,[S,D,T,B,Q]}
+2 *2 C u0 r0 {1,S} {5,S}
+3 H u0 r0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {2,S}
+6 R!H ux {1,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 17,
+ label = "Root_N-1NO->O_Ext-1N-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,[S,D,T,B,Q]}
+2 *2 R u[0,1] {1,S}
+3 R u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C ux {1,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 18,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-3R-R",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 R u0 r0 {1,S}
+3 R u0 r0 {1,S} {6,[S,D,T,B,Q]}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {1,S}
+6 R!H ux {3,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 19,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,S}
+2 *2 R u0 {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C u0 {1,S} {6,S}
+6 C u0 {5,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 20,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 C u0 r0 {1,S}
+3 H u0 r0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {1,S} {6,S}
+6 C u0 r0 {5,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 21,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 H u0 r0 {1,S}
+3 H u0 r0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {1,S} {6,S}
+6 C u0 r0 {5,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 22,
+ label = "Root_N-1NO->O_Ext-1N-R_3R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,[S,D,T,B,Q]}
+2 *2 R u[0,1] {1,S}
+3 C u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C ux {1,[S,D,T,B,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 23,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S} {5,S}
+2 *2 R u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+5 C u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 24,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 C u0 r0 {1,S}
+3 H u0 r0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 25,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C",
+ group =
+"""
+1 *1 N u0 r0 {2,S} {3,S} {5,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0 r0
+5 C u0 r0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 26,
+ label = "Root_N-1NO->O_2R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 C u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 27,
+ label = "Root_N-1NO->O_N-2R->C",
+ group =
+"""
+1 *1 N u0 {2,S} {3,S}
+2 *2 H u[0,1] {1,S}
+3 H u0 {1,S}
+4 *3 Li u1 p0 c0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_1NO->O
+ L3: Root_1NO->O_Ext-3R-R
+ L4: Root_1NO->O_Ext-3R-R_2R->C
+ L5: Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R
+ L4: Root_1NO->O_Ext-3R-R_N-2R->C
+ L3: Root_1NO->O_3R->C
+ L4: Root_1NO->O_3R->C_Ext-2R-R
+ L4: Root_1NO->O_3R->C_2R->C
+ L4: Root_1NO->O_3R->C_N-2R->C
+ L3: Root_1NO->O_N-3R->C
+ L4: Root_1NO->O_N-3R->C_2R->C
+ L5: Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+ L4: Root_1NO->O_N-3R->C_N-2R->C
+ L2: Root_N-1NO->O
+ L3: Root_N-1NO->O_Ext-2R-R
+ L4: Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+ L3: Root_N-1NO->O_Ext-1N-R
+ L4: Root_N-1NO->O_Ext-1N-R_Ext-3R-R
+ L4: Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R
+ L5: Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C
+ L5: Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C
+ L4: Root_N-1NO->O_Ext-1N-R_3R->C
+ L4: Root_N-1NO->O_Ext-1N-R_N-3R->C
+ L5: Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C
+ L5: Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C
+ L3: Root_N-1NO->O_2R->C
+ L3: Root_N-1NO->O_N-2R->C
+"""
+)
+
diff --git a/input/kinetics/families/Li_NO_Substitution/rules.py b/input/kinetics/families/Li_NO_Substitution/rules.py
new file mode 100644
index 0000000000..69f5a30ee1
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Substitution/rules.py
@@ -0,0 +1,428 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Substitution/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(7.97763e+29,'m^3/(mol*s)'), n=-6.04468, w0=(344168,'J/mol'), E0=(110839,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.5458441168724937, var=20.203373378765544, Tref=1000.0, N=19, data_mean=0.0, correlation='Root',), solute=SoluteData(S=-0.010565736153913763,B=-0.7253649083879653,E=1.386083637455815,L=6.8165930491637114,A=-1.435888442285531,comment=''), comment="""BM rule fitted to 19 training reactions at node Root
+ Total Standard Deviation in ln(k): 10.382383490573236"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 19 training reactions at node Root
+Total Standard Deviation in ln(k): 10.382383490573236""",
+ longDesc =
+"""
+BM rule fitted to 19 training reactions at node Root
+Total Standard Deviation in ln(k): 10.382383490573236
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_1NO->O",
+ kinetics = ArrheniusBM(A=(9.10449e+09,'m^3/(mol*s)'), n=-0.313758, w0=(366633,'J/mol'), E0=(72889.4,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.1611463542360044, var=21.210502202651398, Tref=1000.0, N=9, data_mean=0.0, correlation='Root_1NO->O',), solute=SoluteData(S=-0.4736115191982454,B=1.9540822112356036,E=-0.5427233500319099,L=7.130596504385032,A=-1.2432131195339278,comment=''), comment="""BM rule fitted to 9 training reactions at node Root_1NO->O
+ Total Standard Deviation in ln(k): 9.637669867210764"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 9 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 9.637669867210764""",
+ longDesc =
+"""
+BM rule fitted to 9 training reactions at node Root_1NO->O
+Total Standard Deviation in ln(k): 9.637669867210764
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-1NO->O",
+ kinetics = ArrheniusBM(A=(1.34182e+36,'m^3/(mol*s)'), n=-7.84383, w0=(323950,'J/mol'), E0=(115771,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.5940410723380585, var=21.164744873534378, Tref=1000.0, N=10, data_mean=0.0, correlation='Root_N-1NO->O',), solute=SoluteData(S=0.3135663119771183,B=-2.600977892124463,E=2.7362485286972222,L=6.596790630508785,A=-1.5707611682116538,comment=''), comment="""BM rule fitted to 10 training reactions at node Root_N-1NO->O
+ Total Standard Deviation in ln(k): 10.715380742793819"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 10 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 10.715380742793819""",
+ longDesc =
+"""
+BM rule fitted to 10 training reactions at node Root_N-1NO->O
+Total Standard Deviation in ln(k): 10.715380742793819
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_1NO->O_Ext-3R-R",
+ kinetics = ArrheniusBM(A=(3.63405e+06,'m^3/(mol*s)'), n=0.555377, w0=(366633,'J/mol'), E0=(69161,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.054212270522640466, var=102.09950648040343, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R',), solute=SoluteData(S=-4.612069846769863,B=6.379083530822041,E=-2.48216933532115,L=17.971289996005464,A=-3.5664728220181066,comment=''), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-3R-R
+ Total Standard Deviation in ln(k): 20.392917077921744"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-3R-R
+Total Standard Deviation in ln(k): 20.392917077921744""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_Ext-3R-R
+Total Standard Deviation in ln(k): 20.392917077921744
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_1NO->O_3R->C",
+ kinetics = ArrheniusBM(A=(1.68239e+12,'m^3/(mol*s)'), n=-0.883108, w0=(366633,'J/mol'), E0=(77852.1,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.09280652235482556, var=38.908608547879545, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_3R->C',), solute=SoluteData(S=0.9150724970755462,B=-0.16182584467440603,E=0.38665068600989,L=2.216284779857066,A=-0.16508208990362655,comment=''), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+ Total Standard Deviation in ln(k): 12.738071166933958"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+Total Standard Deviation in ln(k): 12.738071166933958""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_3R->C
+Total Standard Deviation in ln(k): 12.738071166933958
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_1NO->O_N-3R->C",
+ kinetics = ArrheniusBM(A=(3.17442e+12,'m^3/(mol*s)'), n=-1.01759, w0=(366633,'J/mol'), E0=(75145.4,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.18465130592910087, var=26.753910386556523, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1NO->O_N-3R->C',), solute=SoluteData(S=1.3595713550003048,B=0.41468670211798514,E=0.1306579494663836,L=3.1796753263233897,A=-0.413127337631342,comment=''), comment="""BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+ Total Standard Deviation in ln(k): 10.833276273333311"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+Total Standard Deviation in ln(k): 10.833276273333311""",
+ longDesc =
+"""
+BM rule fitted to 3 training reactions at node Root_1NO->O_N-3R->C
+Total Standard Deviation in ln(k): 10.833276273333311
+""",
+)
+
+entry(
+ index = 7,
+ label = "Root_N-1NO->O_Ext-2R-R",
+ kinetics = ArrheniusBM(A=(4914.1,'m^3/(mol*s)'), n=1.45953, w0=(303700,'J/mol'), E0=(72713.7,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.152078718816271, var=9.439366190709487, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_Ext-2R-R',), solute=SoluteData(S=0.28057551252457447,B=-0.8246663789161423,E=5.38812625674999,L=-2.0719653167156395,A=0.3282698151699931,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+ Total Standard Deviation in ln(k): 6.541365480623387"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 6.541365480623387""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-2R-R
+Total Standard Deviation in ln(k): 6.541365480623387
+""",
+)
+
+entry(
+ index = 8,
+ label = "Root_N-1NO->O_Ext-1N-R",
+ kinetics = ArrheniusBM(A=(3.97301e+35,'m^3/(mol*s)'), n=-7.72356, w0=(330700,'J/mol'), E0=(98644.8,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.4597604209592234, var=18.196341773936673, Tref=1000.0, N=6, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R',), solute=SoluteData(S=0.0913722740670098,B=-3.835487449485473,E=1.767602030374683,L=10.483564935274547,A=-2.3835122888169056,comment=''), comment="""BM rule fitted to 6 training reactions at node Root_N-1NO->O_Ext-1N-R
+ Total Standard Deviation in ln(k): 9.706809495929704"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 6 training reactions at node Root_N-1NO->O_Ext-1N-R
+Total Standard Deviation in ln(k): 9.706809495929704""",
+ longDesc =
+"""
+BM rule fitted to 6 training reactions at node Root_N-1NO->O_Ext-1N-R
+Total Standard Deviation in ln(k): 9.706809495929704
+""",
+)
+
+entry(
+ index = 9,
+ label = "Root_N-1NO->O_2R->C",
+ kinetics = Arrhenius(A=(0.0195886,'m^3/(mol*s)'), n=3.14118, Ea=(84.2094,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_2R->C',), solute=SoluteData(S=0.4647311008350492,B=-0.6358786386569057,E=2.801006161236384,L=2.7334437301409564,A=-0.9144280152126997,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 10,
+ label = "Root_N-1NO->O_N-2R->C",
+ kinetics = Arrhenius(A=(0.659898,'m^3/(mol*s)'), n=2.58171, Ea=(83.6183,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_N-2R->C',), solute=SoluteData(S=1.5615473494849261,B=-0.7116428278426055,E=3.179614429987762,L=4.4770035967308965,A=-1.14864956434239,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 11,
+ label = "Root_1NO->O_Ext-3R-R_2R->C",
+ kinetics = ArrheniusBM(A=(6.40568e-24,'m^3/(mol*s)'), n=9.08157, w0=(349800,'J/mol'), E0=(13091.6,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.015866472781220723, var=7.6818189250164, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R_2R->C',), solute=SoluteData(S=0.9924180769702984,B=-0.5626434548437547,E=1.2308543810975598,L=1.7706108336453683,A=0.15078931432523807,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+ Total Standard Deviation in ln(k): 5.5962081881296575"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+Total Standard Deviation in ln(k): 5.5962081881296575""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_1NO->O_Ext-3R-R_2R->C
+Total Standard Deviation in ln(k): 5.5962081881296575
+""",
+)
+
+entry(
+ index = 12,
+ label = "Root_1NO->O_Ext-3R-R_N-2R->C",
+ kinetics = Arrhenius(A=(28.4854,'m^3/(mol*s)'), n=2.01563, Ea=(41.6247,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R_N-2R->C',), solute=SoluteData(S=-10.216557770510024,B=13.320810516487837,E=-6.195193051739859,L=34.171969158365556,A=-7.2837349583614515,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 13,
+ label = "Root_1NO->O_3R->C_Ext-2R-R",
+ kinetics = Arrhenius(A=(6.56049e-05,'m^3/(mol*s)'), n=3.90036, Ea=(53.1427,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_3R->C_Ext-2R-R',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_Ext-2R-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_Ext-2R-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_Ext-2R-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 14,
+ label = "Root_1NO->O_3R->C_2R->C",
+ kinetics = Arrhenius(A=(0.151296,'m^3/(mol*s)'), n=2.99312, Ea=(61.1721,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_3R->C_2R->C',), solute=SoluteData(S=1.0238970984530265,B=-0.3025996307928983,E=0.2595121908447656,L=1.6966108246677805,A=-0.015281295369280024,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 15,
+ label = "Root_1NO->O_3R->C_N-2R->C",
+ kinetics = Arrhenius(A=(3.23504,'m^3/(mol*s)'), n=2.2533, Ea=(40.5055,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_3R->C_N-2R->C',), solute=SoluteData(S=0.8062478956980659,B=-0.021052058555913744,E=0.5137891811750144,L=2.735958735046352,A=-0.3148828844379731,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 16,
+ label = "Root_1NO->O_N-3R->C_2R->C",
+ kinetics = ArrheniusBM(A=(4.84858,'m^3/(mol*s)'), n=2.49415, w0=(349800,'J/mol'), E0=(68008.4,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.06199030811265697, var=0.6767733884365271, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_2R->C',), solute=SoluteData(S=1.3220046813792519,B=0.9177550104512987,E=0.04513290140655837,L=3.840149441710696,A=-0.28757508300632256,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+ Total Standard Deviation in ln(k): 1.8049746693423863"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 1.8049746693423863""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_1NO->O_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 1.8049746693423863
+""",
+)
+
+entry(
+ index = 17,
+ label = "Root_1NO->O_N-3R->C_N-2R->C",
+ kinetics = Arrhenius(A=(1667.57,'m^3/(mol*s)'), n=1.38859, Ea=(49.0582,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_N-2R->C',), solute=SoluteData(S=1.4347047022424106,B=-0.591449914548642,E=0.30170804558603403,L=1.858727095548777,A=-0.6642318468813809,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 18,
+ label = "Root_N-1NO->O_Ext-2R-R_Ext-1N-R",
+ kinetics = Arrhenius(A=(29.6864,'m^3/(mol*s)'), n=2.19262, Ea=(108.699,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-2R-R_Ext-1N-R',), solute=SoluteData(S=-0.6950335428875951,B=-1.1701886888855062,E=-2.145575219279795,L=0.5523865597784834,A=-0.8229457008818328,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-2R-R_Ext-1N-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 19,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-3R-R",
+ kinetics = Arrhenius(A=(0.000854381,'m^3/(mol*s)'), n=3.23101, Ea=(69.319,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_Ext-3R-R',), solute=SoluteData(S=0.9762326836232997,B=0.3941281870890212,E=-0.16183134320468961,L=4.026989260299446,A=-0.6740917883591753,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-3R-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-3R-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-3R-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 20,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R",
+ kinetics = ArrheniusBM(A=(1.83741e+33,'m^3/(mol*s)'), n=-7.03422, w0=(323950,'J/mol'), E0=(108551,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-4.142555979882132, var=30.62281858092808, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R',), solute=SoluteData(S=0.863017030277482,B=-0.7862428964274454,E=0.8580999216461198,L=0.5789259436028682,A=-0.29297988438229017,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R
+ Total Standard Deviation in ln(k): 21.502212646244704"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 21.502212646244704""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R
+Total Standard Deviation in ln(k): 21.502212646244704
+""",
+)
+
+entry(
+ index = 21,
+ label = "Root_N-1NO->O_Ext-1N-R_3R->C",
+ kinetics = Arrhenius(A=(0.0059447,'m^3/(mol*s)'), n=2.92332, Ea=(72.4476,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_3R->C',), solute=SoluteData(S=0.5744890931378948,B=0.2855711005089523,E=-1.291148672431544,L=2.4540989125088446,A=-0.2528218771773645,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_3R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_3R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_3R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 22,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C",
+ kinetics = ArrheniusBM(A=(1.66508e+34,'m^3/(mol*s)'), n=-7.19187, w0=(323950,'J/mol'), E0=(106743,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-4.505603852756906, var=24.399563143113603, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_N-3R->C',), solute=SoluteData(S=-1.3642610964570498,B=-11.06006909582796,E=5.1711961772960455,L=27.631224775816627,A=-6.394100149300156,comment=''), comment="""BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C
+ Total Standard Deviation in ln(k): 21.223184831612095"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C
+Total Standard Deviation in ln(k): 21.223184831612095""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C
+Total Standard Deviation in ln(k): 21.223184831612095
+""",
+)
+
+entry(
+ index = 23,
+ label = "Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R",
+ kinetics = Arrhenius(A=(0.0314082,'m^3/(mol*s)'), n=2.80799, Ea=(51.0438,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_Ext-3R-R_2R->C_Ext-5R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 24,
+ label = "Root_1NO->O_N-3R->C_2R->C_Ext-2C-R",
+ kinetics = Arrhenius(A=(0.432458,'m^3/(mol*s)'), n=2.84015, Ea=(54.2306,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1NO->O_N-3R->C_2R->C_Ext-2C-R',), solute=SoluteData(S=1.623170138973233,B=1.2667975612721842,E=-0.32752995070714125,L=3.125868783933266,A=-0.5095858567709188,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_1NO->O_N-3R->C_2R->C_Ext-2C-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 25,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C",
+ kinetics = Arrhenius(A=(0.495802,'m^3/(mol*s)'), n=2.70018, Ea=(96.2062,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C',), solute=SoluteData(S=0.7729226689305377,B=-1.2527501488111554,E=0.597866133925776,L=-1.1782169835459175,A=-0.3753151107905479,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 26,
+ label = "Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C",
+ kinetics = Arrhenius(A=(0.00611439,'m^3/(mol*s)'), n=3.01423, Ea=(78.6803,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C',), solute=SoluteData(S=0.9531113916244263,B=-0.31973564404373533,E=1.1183337093664636,L=2.336068870751654,A=-0.21064465797403237,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_Ext-5R!H-R_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 27,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C",
+ kinetics = Arrhenius(A=(1.28885,'m^3/(mol*s)'), n=2.72614, Ea=(98.7959,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C',), solute=SoluteData(S=4.188534410819756,B=-13.423890383748061,E=-1.8125464291642417,L=29.657494205929744,A=-11.982022615849043,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 28,
+ label = "Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C",
+ kinetics = Arrhenius(A=(0.0346984,'m^3/(mol*s)'), n=2.88658, Ea=(79.6336,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C',), solute=SoluteData(S=-6.9170566037338554,B=-8.69624780790786,E=12.154938783756332,L=25.604955345703505,A=-0.8061776827512686,comment=''), comment="""BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-1NO->O_Ext-1N-R_N-3R->C_N-2R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Li_NO_Substitution/training/dictionary.txt b/input/kinetics/families/Li_NO_Substitution/training/dictionary.txt
new file mode 100644
index 0000000000..e543275165
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Substitution/training/dictionary.txt
@@ -0,0 +1,335 @@
+C2H5
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+CH3LiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C3H8O
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+CH3
+multiplicity 2
+1 *2 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH4LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+C2H7N
+1 *1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 *2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+H
+multiplicity 2
+1 *2 H u1 p0 c0
+
+C2H6LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+C2H7N-2
+1 *1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 *2 H u0 p0 c0 {1,S}
+
+C3H9N
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+C2H6LiN-2
+1 *1 N u0 p1 c0 {2,S} {4,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+C3H9N-2
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+C3H8LiN
+1 *1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+5 *3 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+C3H9N-3
+1 *1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 *2 H u0 p0 c0 {1,S}
+
+HLiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *3 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+H2O
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+H2LiN
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *3 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+H3N
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH4O
+1 *1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *2 H u0 p0 c0 {1,S}
+
+CH4O-2
+1 *1 O u0 p2 c0 {2,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CH5N
+1 *1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *2 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+C2H6O
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+C2H5LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C2H6O-2
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 *2 H u0 p0 c0 {1,S}
+
+C2H7N-3
+1 *1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+C2H6O-3
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C3H8O-2
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *2 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+CH5N-2
+1 *1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+C2H7N-4
+1 *1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 *2 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+C4H10O2
+1 *1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {3,S} {9,S} {10,S}
+5 *2 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+
+C3H7LiO2
+1 O u0 p2 c0 {3,S} {5,S}
+2 *1 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {3,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 *3 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/Li_NO_Substitution/training/reactions.py b/input/kinetics/families/Li_NO_Substitution/training/reactions.py
new file mode 100644
index 0000000000..eb07384efb
--- /dev/null
+++ b/input/kinetics/families/Li_NO_Substitution/training/reactions.py
@@ -0,0 +1,814 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Li_NO_Substitution/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C2H5 + CH3LiO <=> C3H8O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.00266112,'cm^3/(mol*s)'), n=4.54216, Ea=(65.2952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + C[CH2] <=> [Li] + COCC
+TS method summary for TS2 in [Li]OC + C[CH2] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.95543900 -2.06606100 0.49168200
+C -1.75006400 0.40919300 0.35197900
+C -0.92556700 -0.39675200 -0.59963000
+O 0.88790900 -0.39946500 0.11588300
+C 1.47810800 0.86505900 -0.03509700
+H -1.29395600 1.37884800 0.56898500
+H -1.90037200 -0.11068200 1.30024000
+H -2.74501400 0.61653300 -0.07202800
+H -1.15395000 -1.45760200 -0.67306700
+H -0.66073800 0.05265400 -1.54957700
+H 1.04427800 1.60592100 0.65130900
+H 1.36341600 1.24189300 -1.06273700
+H 2.55152500 0.80698400 0.17628500
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 9], rotor symmetry: 3, max scan energy: 4.07 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 11], invalidation reason: Two consecutive points are inconsistent by more than 0.60 kJ/molTwo consecutive points are inconsistent by more than 0.75 kJ/molTwo consecutive points are inconsistent by more than 0.80 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 2,
+ label = "CH3 + CH4LiN <=> C2H7N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(514.959,'cm^3/(mol*s)'), n=2.75171, Ea=(19.1236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=5.9720845035693655,B=-11.11835148496454,E=1.2672065293713617,L=34.51723438776737,A=-10.461680798130194,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NC + [CH3] <=> [Li] + CNC
+TS method summary for TS4 in [Li]NC + [CH3] <=> [Li] + CNC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.55807100 1.25431300 2.17607900
+C 0.45911900 -0.67732400 0.78010500
+N 2.03979300 0.43783800 1.54272500
+C 2.89461700 0.71861100 0.39194100
+H 1.12159700 -1.42531300 0.36122300
+H -0.04238100 -0.07878800 0.02372200
+H -0.21042200 -1.07927100 1.53776200
+H 2.46067500 -0.31310800 2.08791500
+H 3.84954800 1.15732300 0.70479900
+H 2.40476300 1.44613800 -0.26337200
+H 3.12222700 -0.17403500 -0.20975200
+
+1D rotors:
+pivots: [3, 4], dihedral: [1, 3, 4, 9], rotor symmetry: 3, max scan energy: 8.43 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 8.029132914089132e-10 J/mol
+""",
+)
+
+entry(
+ index = 3,
+ label = "H + C2H6LiN <=> C2H7N-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.98085e+08,'cm^3/(mol*s)'), n=1.22191, Ea=(-78.8037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.996332219215656,B=1.029302623121347,E=1.007550487792502,L=7.3685642232941575,A=0.4814345945968402,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N(C)C + [H] <=> [Li] + CNC
+TS method summary for TS5 in [Li]N(C)C + [H] <=> [Li] + CNC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.01255156 -2.15540609 0.17281461
+C -1.18904595 0.48655227 -0.00173058
+N -0.00119847 -0.32330655 0.13512720
+C 1.19572522 0.47240045 -0.00552380
+H -1.29496161 1.17270913 0.84939970
+H -2.08251863 -0.14341129 -0.03173585
+H -1.18193779 1.09526007 -0.91713761
+H -0.00888523 -1.23541538 -1.24714949
+H 2.08165534 -0.16803921 -0.03714132
+H 1.31181522 1.15820060 0.84456073
+H 1.19338693 1.08020408 -0.92156070
+
+1D rotors:
+* Invalidated! pivots: [1, 3], dihedral: [6, 1, 3, 2], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [2, 3], dihedral: [9, 2, 3, 1], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1057.5062115419946 J/mol
+""",
+)
+
+entry(
+ index = 4,
+ label = "C2H5 + CH4LiN <=> C3H9N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(57.4636,'cm^3/(mol*s)'), n=2.93295, Ea=(29.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9175438008860265,B=1.1395826064596657,E=0.4944811262263229,L=5.415263196320309,A=0.6943364764189893,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NC + C[CH2] <=> [Li] + CNCC
+TS method summary for TS6 in [Li]NC + C[CH2] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.86285000 -3.43375100 2.79902300
+C 0.98777800 -2.65086100 -0.09382000
+N 0.71786100 -3.57279300 1.00412300
+C 2.58209000 -4.54615500 1.38240100
+C 2.51791600 -5.74331000 0.47224200
+H 1.57842000 -1.80331500 0.26902300
+H 0.06101000 -2.23833800 -0.51244300
+H 1.54339700 -3.11115800 -0.92583100
+H 0.23428600 -4.38822600 0.63186500
+H 2.73940400 -4.78839100 2.43474500
+H 3.21675900 -3.72761600 1.05622300
+H 2.23662900 -5.46469700 -0.54831800
+H 1.79544000 -6.48501400 0.82582800
+H 3.48948500 -6.25526200 0.40261200
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 1], rotor symmetry: 3, max scan energy: 7.27 kJ/mol
+pivots: [4, 5], dihedral: [10, 4, 5, 12], rotor symmetry: 1, max scan energy: 4.84 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1827.7398650288437 J/mol
+""",
+)
+
+entry(
+ index = 5,
+ label = "CH3 + C2H6LiN-2 <=> C3H9N-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(563.399,'cm^3/(mol*s)'), n=2.71918, Ea=(25.4344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.877486735996646,B=0.6916407047808263,E=0.748415650862252,L=5.385263016210897,A=0.5210754074032086,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NCC + [CH3] <=> [Li] + CNCC
+TS method summary for TS7 in [Li]NCC + [CH3] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.05606100 -3.45546000 2.01224800
+C 1.02585900 -2.12623900 0.34507400
+N 1.00888800 -4.16659200 0.73566500
+C 2.41249300 -4.57313800 0.74711200
+C 2.59339300 -6.09431100 0.80785700
+H 1.60805900 -1.64413200 1.12608300
+H 0.03900700 -1.69160400 0.19949800
+H 1.57322900 -2.25185000 -0.58111600
+H 0.59390100 -4.45373900 -0.15068400
+H 2.88943300 -4.12236900 1.62589400
+H 2.95316600 -4.18843300 -0.13225800
+H 2.14825000 -6.57778000 -0.06703100
+H 2.11573400 -6.50891300 1.69885700
+H 3.65797100 -6.35433100 0.83047600
+
+1D rotors:
+pivots: [3, 4], dihedral: [1, 3, 4, 5], rotor symmetry: 1, max scan energy: 23.37 kJ/mol
+pivots: [4, 5], dihedral: [3, 4, 5, 12], rotor symmetry: 3, max scan energy: 13.57 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1425.8896370647562 J/mol
+""",
+)
+
+entry(
+ index = 6,
+ label = "H + C3H8LiN <=> C3H9N-3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.33693e+09,'cm^3/(mol*s)'), n=1.12822, Ea=(-71.4349,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.1131935806214712,B=1.1556454917670655,E=1.2169728270193971,L=7.839572648134702,A=0.31656236651087616,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N(C)CC + [H] <=> [Li] + CNCC
+TS method summary for TS8 in [Li]N(C)CC + [H] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.33837900 -4.64647900 1.22723600
+C 1.24491900 -2.34667300 0.49201700
+N 1.21107200 -3.75746400 0.84374800
+C 2.49783000 -4.39820300 0.61837300
+C 2.47997100 -5.87080600 1.02075500
+H 1.87369600 -1.78539800 1.19871100
+H 0.23758500 -1.91968100 0.53084900
+H 1.64161700 -2.16740400 -0.51925300
+H 0.20877800 -4.39361800 -0.34456500
+H 3.26953700 -3.86937200 1.20156400
+H 2.80323700 -4.30928200 -0.43751400
+H 1.74538600 -6.42456000 0.42730500
+H 2.23250200 -5.98351400 2.08218500
+H 3.45557400 -6.33643600 0.85626200
+
+1D rotors:
+* Invalidated! pivots: [1, 3], dihedral: [7, 1, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molCould not read energies
+pivots: [2, 4], dihedral: [10, 2, 4, 3], rotor symmetry: 1, max scan energy: 26.26 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [1, 3, 4, 2], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molCould not read energies
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1071.2824706634553 J/mol
+""",
+)
+
+entry(
+ index = 7,
+ label = "H + HLiO <=> H2O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.03649e+11,'cm^3/(mol*s)'), n=0.812216, Ea=(-21.6525,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6576610150461983,B=2.4435784684265482,E=0.404796645816695,L=7.698368077501874,A=0.9750486732350473,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + [H] <=> [Li] + O
+TS method summary for TS9 in [Li]O + [H] <=> [Li] + O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.28826489 0.18010119 0.00207350
+O -0.36733064 0.11184220 0.00745957
+H 0.39396705 -1.32898954 -0.00633395
+H -1.27901258 -0.17912694 0.00905353
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2114.547977695349 J/mol
+""",
+)
+
+entry(
+ index = 8,
+ label = "H + H2LiN <=> H3N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.12322e+09,'cm^3/(mol*s)'), n=1.12657, Ea=(-57.4909,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9471505265788214,B=1.7274624400621788,E=0.6115119617819315,L=6.871072605917964,A=0.6704069036466952,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N + [H] <=> [Li] + N
+TS method summary for TS10 in [Li]N + [H] <=> [Li] + N:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.91584700 2.00773900 -1.02886800
+N 1.72410800 0.79367700 0.30433400
+H 3.35327200 1.38343900 -0.34462600
+H 1.91932800 0.99397300 1.28417000
+H 1.91839100 -0.20073000 0.19609500
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1435.1628987975923 J/mol
+""",
+)
+
+entry(
+ index = 9,
+ label = "H + CH3LiO <=> CH4O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.47113e+11,'cm^3/(mol*s)'), n=0.774968, Ea=(-24.6724,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.4067121409688057,B=1.4628968939845368,E=0.9656443938025181,L=7.661570379273675,A=0.443175955652443,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + [H] <=> [Li] + CO
+TS method summary for TS11 in [Li]OC + [H] <=> [Li] + CO:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 0,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.05286763 0.11494012 -0.00863872
+O 0.38320517 0.12959365 -0.00264163
+C -1.00062168 -0.00723588 -0.00489942
+H 0.96172040 -1.23025812 0.00873654
+H -1.46633645 0.98431418 -0.00871499
+H -1.35936775 -0.54162168 0.88336582
+H -1.35623697 -0.54719021 -0.89107706
+
+1D rotors:
+pivots: [2, 3], dihedral: [1, 2, 3, 5], rotor symmetry: 1, max scan energy: 0.65 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1321.823066484516 J/mol
+""",
+)
+
+entry(
+ index = 10,
+ label = "CH3 + HLiO <=> CH4O-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.07712e+06,'cm^3/(mol*s)'), n=2.28023, Ea=(85.5904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.4173362998736376,B=2.357499252462657,E=0.5167298959343533,L=7.9017680525604375,A=1.0064038665607862,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + [CH3] <=> [Li] + CO
+TS method summary for TS12 in [Li]O + [CH3] <=> [Li] + CO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.28748200 -0.18010600 1.00319500
+O 0.86993900 0.39784300 -0.11608000
+C 2.59811800 -0.51057100 -0.06290500
+H 0.96229700 1.06152900 -0.80658800
+H 3.25030100 0.31559600 0.18187100
+H 2.64875300 -0.90201200 -1.06889700
+H 2.43978600 -1.23892300 0.72228500
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2046.4105178239631 J/mol
+""",
+)
+
+entry(
+ index = 11,
+ label = "H + CH4LiN <=> CH5N + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.62458e+07,'cm^3/(mol*s)'), n=1.49444, Ea=(-71.5589,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-5.4761368991675985,B=-6.829449919467144,E=14.43663245128814,L=28.957970295010895,A=0.4259943743771139,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NC + [H] <=> [Li] + CN
+TS method summary for TS13 in [Li]NC + [H] <=> [Li] + CN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.97896700 2.55914500 -0.24504500
+N 1.69265600 1.43053300 0.36161000
+C 1.63546400 -0.02844300 0.34543400
+H 3.12243000 1.84764100 1.28691400
+H 1.03626400 1.77345000 1.06081000
+H 2.44491900 -0.42885900 -0.27310200
+H 0.69075100 -0.38108300 -0.09139200
+H 1.72952400 -0.48126300 1.34115700
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [5, 1, 2, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 4708.787281816518 J/mol
+""",
+)
+
+entry(
+ index = 12,
+ label = "C2H5 + HLiO <=> C2H6O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(26.5507,'cm^3/(mol*s)'), n=3.72095, Ea=(84.1068,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9913576154323054,B=3.1755887609180435,E=-0.2623364392566645,L=7.244831699370673,A=0.5572363451823703,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + C[CH2] <=> [Li] + CCO
+TS method summary for TS15 in [Li]O + C[CH2] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -2.57304700 0.27516400 -0.65750400
+C 1.54543100 -0.31294900 -0.20991200
+C 0.50691500 0.68250500 0.19066600
+O -1.20609000 -0.34489700 0.18644900
+H 1.31703400 -0.75838900 -1.18091300
+H 2.53974800 0.15487200 -0.28938100
+H 1.63329600 -1.12303200 0.51949300
+H 0.22894600 1.43785900 -0.53575000
+H 0.48492400 1.02184600 1.21876200
+H -1.09958300 -1.00876300 0.87538500
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 8], rotor symmetry: 3, max scan energy: 5.59 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1614.986893512281 J/mol
+""",
+)
+
+entry(
+ index = 13,
+ label = "H + C2H5LiO <=> C2H6O-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.77483e+09,'cm^3/(mol*s)'), n=1.18598, Ea=(-23.16,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-8.623486006056842,B=14.917486429580572,E=-5.719694357458241,L=40.120001635540106,A=-6.502228345652631,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCC + [H] <=> [Li] + CCO
+TS method summary for TS16 in [Li]OCC + [H] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.49143616 0.55729277 -0.12525674
+C -1.41113872 0.44040349 -0.02571704
+C -0.33003762 -0.62547457 0.03698411
+O 0.94967788 -0.09370527 -0.11768223
+H -1.37208971 0.96882848 -0.98064514
+H -2.40427692 -0.00332329 0.08351568
+H -1.26743662 1.17043881 0.77319839
+H -0.49296294 -1.36694873 -0.75554854
+H -0.39930548 -1.16567232 0.99075815
+H 1.34235779 0.48281906 1.16520496
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 4], rotor symmetry: 3, max scan energy: 13.87 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 1], rotor symmetry: 1, max scan energy: 0.52 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1.736364652060729e-05 J/mol
+""",
+)
+
+entry(
+ index = 14,
+ label = "C2H5 + H2LiN <=> C2H7N-3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.337329,'cm^3/(mol*s)'), n=3.54967, Ea=(34.4127,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6195332200790409,B=2.120893670736446,E=10.142480436000628,L=-0.8781474558081529,A=3.410407959634951,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N + C[CH2] <=> [Li] + CCN
+TS method summary for TS17 in [Li]N + C[CH2] <=> [Li] + CCN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.24111023 0.88861561 0.00000000
+C -1.53683978 -0.23464256 0.00000000
+C -0.36949484 0.70943914 0.00000000
+N 1.25313058 -0.61428298 0.00000000
+H -1.53341411 -0.88051875 -0.88086808
+H -2.49375547 0.30282603 0.00000000
+H -1.53341411 -0.88051875 0.88086808
+H -0.26776509 1.30799358 -0.90233509
+H -0.26776509 1.30799358 0.90233509
+H 1.01858967 -1.18352112 -0.80784057
+H 1.01858967 -1.18352112 0.80784057
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 8], rotor symmetry: 3, max scan energy: 4.88 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2191.6345368658176 J/mol
+""",
+)
+
+entry(
+ index = 15,
+ label = "CH3 + CH3LiO <=> C2H6O-3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3026.56,'cm^3/(mol*s)'), n=2.80221, Ea=(80.834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.223920620501668,B=0.8264175269682525,E=0.40415741933873844,L=5.605210034978575,A=0.4397271958947774,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + [CH3] <=> [Li] + COC
+TS method summary for TS1 in [Li]OC + [CH3] <=> [Li] + COC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 6.51706400 -1.13632600 -3.21539400
+C 4.02423400 -1.41606000 -2.34418400
+O 5.56418700 -0.34050500 -2.05108800
+C 5.26882800 0.60085300 -1.05050100
+H 3.90830800 -1.82877700 -1.35110600
+H 4.26586000 -2.13817000 -3.11854700
+H 3.32573800 -0.64407500 -2.63764800
+H 4.99996100 0.11042200 -0.10400400
+H 4.43692100 1.25540800 -1.34741500
+H 6.14543300 1.23014000 -0.86797000
+
+1D rotors:
+* Invalidated! pivots: [3, 4], dihedral: [1, 3, 4, 8], invalidation reason: Two consecutive points are inconsistent by more than 1.40 kJ/molTwo consecutive points are inconsistent by more than 1.52 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1526.5386694571223 J/mol
+""",
+)
+
+entry(
+ index = 16,
+ label = "CH3 + C2H5LiO <=> C3H8O-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.09569,'cm^3/(mol*s)'), n=3.2546, Ea=(82.2788,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.091886494292463,B=0.5254418313743373,E=1.2963729646265112,L=5.721969023897385,A=0.6575614317431779,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCC + [CH3] <=> [Li] + COCC
+TS method summary for TS3 in [Li]OCC + [CH3] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -2.74010800 -4.87944000 -2.74685100
+C -2.29023200 -1.71339600 -1.09005000
+C -3.11923600 -1.87939400 -2.35977600
+O -3.12657200 -3.21901700 -2.79202100
+C -4.17095700 -3.35427200 -4.36839000
+H -1.25332700 -2.01355600 -1.26099300
+H -2.69616100 -2.32265000 -0.27855700
+H -2.29596500 -0.66546600 -0.76876900
+H -4.14967400 -1.54173400 -2.17015500
+H -2.70920200 -1.23314600 -3.15098300
+H -3.61682000 -2.67724300 -5.00431900
+H -5.11687000 -2.99859300 -3.98292400
+H -4.16500100 -4.39266700 -4.68634200
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 4], rotor symmetry: 3, max scan energy: 15.23 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 1], invalidation reason: Two consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.64 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1616.2708289398845 J/mol
+""",
+)
+
+entry(
+ index = 17,
+ label = "CH3 + H2LiN <=> CH5N-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5347.09,'cm^3/(mol*s)'), n=2.59727, Ea=(34.8806,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.8306578175990244,B=1.956506108230911,E=0.011774617070094268,L=6.100850860272114,A=1.0441801517777485,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N + [CH3] <=> [Li] + CN
+TS method summary for TS14 in [Li]N + [CH3] <=> [Li] + CN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.40811800 2.01328500 -0.85438200
+N 2.11561000 1.83611700 0.90968800
+C 1.73450000 -0.09747600 0.20605700
+H 2.80524200 1.62458700 1.63010700
+H 1.24512600 2.01206100 1.41033200
+H 2.64014000 -0.51618000 -0.22479700
+H 0.88533500 -0.08035300 -0.47199800
+H 1.49690500 -0.50092000 1.18138200
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 3733.7594052313543 J/mol
+""",
+)
+
+entry(
+ index = 18,
+ label = "H + C2H6LiN-2 <=> C2H7N-4 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.89074e+07,'cm^3/(mol*s)'), n=1.63253, Ea=(-67.2986,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9852422925798727,B=1.2991389460904967,E=1.413033851489418,L=7.445245509701895,A=0.5371087291175491,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]NCC + [H] <=> [Li] + CCN
+TS method summary for TS18 in [Li]NCC + [H] <=> [Li] + CCN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 4.96386900 0.59677000 -2.24670800
+C 1.28798200 -0.93517900 -1.41482700
+C 2.04070800 0.34605900 -1.78351100
+N 3.41953300 0.41063200 -1.30736000
+H 1.79730100 -1.80886900 -1.82862700
+H 0.26120100 -0.91416400 -1.79495900
+H 1.23888400 -1.05694700 -0.32722800
+H 2.04864400 0.45971700 -2.87498700
+H 1.48295900 1.21378300 -1.39663000
+H 4.25148700 -0.92956300 -2.05992500
+H 3.45414500 0.04969200 -0.35434500
+
+1D rotors:
+pivots: [1, 2], dihedral: [6, 1, 2, 3], rotor symmetry: 3, max scan energy: 14.10 kJ/mol
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 11], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1260.011897897355 J/mol
+""",
+)
+
+entry(
+ index = 19,
+ label = "C4H10O2 + Li <=> C3H7LiO2 + CH3",
+ degeneracy = 2.0,
+ kinetics = Arrhenius(A=(62816.3,'cm^3/(mol*s)'), n=2.80799, Ea=(51.0438,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: COCCOC + [Li] <=> [Li]OCCOC + [CH3]
+TS method summary for TS8 in COCCOC + [Li] <=> [Li]OCCOC + [CH3]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.39566800 -2.31746100 -6.27790800
+C 6.61867600 1.61571200 -3.37584500
+O 6.51399400 1.21245700 -4.72654400
+C 5.55433000 0.18656100 -4.92836400
+C 5.53861300 -0.15531900 -6.41417600
+O 4.59984900 -1.17164200 -6.66983100
+C 4.61304200 -1.56339100 -8.51793500
+H 7.37522700 2.39972300 -3.32963700
+H 6.92765900 0.78165200 -2.72975800
+H 5.66584700 2.01521300 -3.00024800
+H 4.55644800 0.52370000 -4.61045200
+H 5.81471700 -0.70639700 -4.34072100
+H 6.54752300 -0.47222600 -6.71292000
+H 5.29389200 0.75333700 -6.98165600
+H 3.88299800 -2.34830900 -8.69194200
+H 5.64580400 -1.86472100 -8.62906800
+H 4.34337200 -0.59145000 -8.90826500
+
+1D rotors:
+pivots: [2, 3], dihedral: [8, 2, 3, 4], rotor symmetry: 3, max scan energy: 9.81 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 5], rotor symmetry: 1, max scan energy: 28.73 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: Another conformer for TS8 exists which is 32.05 kJ/mol lower.Two consecutive points are inconsistent by more than 13.53 kJ/molAnother conformer for TS8 exists which is 32.05 kJ/mol lower. But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 1], invalidation reason: Two consecutive points are inconsistent by more than 6.99 kJ/molTwo consecutive points are inconsistent by more than 6.99 kJ/molTwo consecutive points are inconsistent by more than 6.85 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
diff --git a/input/kinetics/families/R_Addition_MultipleBond/groups.py b/input/kinetics/families/R_Addition_MultipleBond/groups.py
index 8166655c36..e0f6cc9a6a 100644
--- a/input/kinetics/families/R_Addition_MultipleBond/groups.py
+++ b/input/kinetics/families/R_Addition_MultipleBond/groups.py
@@ -22,7 +22,7 @@
entry(
index = 0,
label = "R_R",
- group =
+ group =
"""
1 *1 R!H u0 {2,[D,T,B]}
2 *2 R!H u0 {1,[D,T,B]}
@@ -33,14 +33,14 @@
entry(
index = 1,
label = "YJ",
- group = "OR{HJ, Y_1centerquadrad, Y_1centertrirad, Y_1centerbirad, CJ, OJ, SJ, NJ}",
+ group = "OR{HJ, Y_1centerquadrad, Y_1centertrirad, Y_1centerbirad, CJ, OJ, SJ, NJ, LiJ}",
kinetics = None,
)
entry(
index = 2,
label = "Cb_Cb",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B}
2 *2 [Cb,Cbf] u0 {1,B}
@@ -51,7 +51,7 @@
entry(
index = 3,
label = "Cb-R!H_Cb",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,[S,B]} {4,B}
2 *2 [Cb,Cbf] u0 {1,B}
@@ -64,7 +64,7 @@
entry(
index = 4,
label = "Cb-R!H_Cb-R!H",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,B} {5,[S,B]}
2 *2 [Cb,Cbf] u0 {1,B} {4,B} {6,[S,B]}
@@ -79,7 +79,7 @@
entry(
index = 5,
label = "Cb-indeneDe_Cb-indeneNde",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S} {6,B}
2 *2 Cb u0 {1,B} {4,S} {7,B}
@@ -95,7 +95,7 @@
entry(
index = 6,
label = "Cb-indeneNde_Cb-indene_De",
- group =
+ group =
"""
1 *2 Cb u0 {2,B} {3,S} {6,B}
2 *1 Cb u0 {1,B} {4,S} {7,B}
@@ -111,7 +111,7 @@
entry(
index = 7,
label = "Cb-benzofuranNde_Cb-benzofuranDe",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S} {6,B}
2 *2 Cb u0 {1,B} {4,S} {7,B}
@@ -127,7 +127,7 @@
entry(
index = 8,
label = "Cb-R!H_Cb-H",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,[S,B]} {5,B}
2 *2 [Cb,Cbf] u0 {1,B} {4,S}
@@ -141,7 +141,7 @@
entry(
index = 9,
label = "Cb-C-cyclic_Cb-H",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,B} {4,[S,B]}
2 *2 Cb u0 {1,B} {8,S}
@@ -158,7 +158,7 @@
entry(
index = 10,
label = "Cbf-Cb-cyclic_Cb-H",
- group =
+ group =
"""
1 *1 Cbf u0 {2,B} {3,B} {4,B}
2 *2 Cb u0 {1,B} {8,S}
@@ -175,7 +175,7 @@
entry(
index = 11,
label = "Cb-Cd_Cb-H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S} {5,B}
2 *2 Cb u0 {1,B} {4,S}
@@ -189,7 +189,7 @@
entry(
index = 12,
label = "Cb-Cs_Cb-H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S} {5,B}
2 *2 Cb u0 {1,B} {4,S}
@@ -203,7 +203,7 @@
entry(
index = 13,
label = "Cb-H_Cb",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 [Cb,Cbf] u0 {1,B}
@@ -215,7 +215,7 @@
entry(
index = 14,
label = "Cb-H_Cb-R!H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 [Cb,Cbf] u0 {1,B} {4,[S,B]} {5,B}
@@ -229,7 +229,7 @@
entry(
index = 15,
label = "Cb-H_Cb-indeneNde",
- group =
+ group =
"""
1 Cb u0 {2,B} {4,S}
2 *2 Cb u0 {1,B} {3,B} {5,S}
@@ -245,7 +245,7 @@
entry(
index = 16,
label = "Cb-H_Cbf-Cb",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 Cbf u0 {1,B} {4,B} {5,B}
@@ -259,7 +259,7 @@
entry(
index = 17,
label = "Cb-H-Ortho_Cb-C",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 Cb u0 {1,B} {4,S} {5,B}
@@ -273,7 +273,7 @@
entry(
index = 18,
label = "Cb-H_Cb-H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 Cb u0 {1,B} {4,S}
@@ -286,7 +286,7 @@
entry(
index = 19,
label = "Cb-H-Meta_Cb-H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {6,S}
2 *2 Cb u0 {1,B} {3,B} {5,S}
@@ -301,7 +301,7 @@
entry(
index = 20,
label = "Cb-H-Para_Cb-H",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {7,S}
2 *2 Cb u0 {1,B} {4,B} {6,S}
@@ -317,7 +317,7 @@
entry(
index = 21,
label = "Cb-H_Cb-H_o_ketene",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,B} {4,S}
2 *2 Cb u0 {1,B} {5,S}
@@ -334,7 +334,7 @@
entry(
index = 22,
label = "Cd_R",
- group =
+ group =
"""
1 *1 C u0 {2,D}
2 *2 R!H u0 {1,D}
@@ -345,7 +345,7 @@
entry(
index = 23,
label = "Cdd_Od",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 O2d u0 {1,D}
@@ -357,7 +357,7 @@
entry(
index = 24,
label = "CO2",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 O2d u0 {1,D}
@@ -369,7 +369,7 @@
entry(
index = 25,
label = "Ck_O",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 O2d u0 {1,D}
@@ -381,7 +381,7 @@
entry(
index = 26,
label = "C=S_O",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 O2d u0 {1,D}
@@ -393,7 +393,7 @@
entry(
index = 27,
label = "Cdd_Od-N3d",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 O2d u0 {1,D}
@@ -405,7 +405,7 @@
entry(
index = 28,
label = "CO_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D}
2 *2 O2d u0 {1,D}
@@ -416,7 +416,7 @@
entry(
index = 29,
label = "CO-HH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -429,7 +429,7 @@
entry(
index = 30,
label = "CO-NdH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -442,7 +442,7 @@
entry(
index = 31,
label = "CO-CsH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -455,7 +455,7 @@
entry(
index = 32,
label = "CO-DeH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -468,7 +468,7 @@
entry(
index = 33,
label = "CO-CdH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -481,7 +481,7 @@
entry(
index = 34,
label = "CO-CtH_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -494,7 +494,7 @@
entry(
index = 35,
label = "CO-NdNd_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -507,7 +507,7 @@
entry(
index = 36,
label = "CO-CsCs_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -520,7 +520,7 @@
entry(
index = 37,
label = "CO-DeNd_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -533,7 +533,7 @@
entry(
index = 38,
label = "CO-CdCs_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -546,7 +546,7 @@
entry(
index = 39,
label = "CO-CtCs_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -559,7 +559,7 @@
entry(
index = 40,
label = "CO-DeDe_O",
- group =
+ group =
"""
1 *1 CO u0 {2,D} {3,S} {4,S}
2 *2 O2d u0 {1,D}
@@ -572,7 +572,7 @@
entry(
index = 41,
label = "Cdd_Sd",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 S2d u0 p2 {1,D}
@@ -584,7 +584,7 @@
entry(
index = 42,
label = "Cdd-Sd_Sd",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 S2d u0 p2 {1,D}
@@ -596,7 +596,7 @@
entry(
index = 43,
label = "Cds_Cdd",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D}
@@ -609,7 +609,7 @@
entry(
index = 44,
label = "Cds_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -623,7 +623,7 @@
entry(
index = 45,
label = "Cds-HH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -637,7 +637,7 @@
entry(
index = 46,
label = "Cds-CsH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -651,7 +651,7 @@
entry(
index = 47,
label = "Cds-CsCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -665,7 +665,7 @@
entry(
index = 48,
label = "Cds-OneDeH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -679,7 +679,7 @@
entry(
index = 49,
label = "Cds-CtH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -693,7 +693,7 @@
entry(
index = 50,
label = "Cds-CbH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -707,7 +707,7 @@
entry(
index = 51,
label = "Cds-COH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -721,7 +721,7 @@
entry(
index = 52,
label = "Cds-CdH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -736,7 +736,7 @@
entry(
index = 53,
label = "Cds-C=SH_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -750,7 +750,7 @@
entry(
index = 54,
label = "Cds-OneDeCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -764,7 +764,7 @@
entry(
index = 55,
label = "Cds-CtCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -778,7 +778,7 @@
entry(
index = 56,
label = "Cds-CbCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -792,7 +792,7 @@
entry(
index = 57,
label = "Cds-COCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -806,7 +806,7 @@
entry(
index = 58,
label = "Cds-CdCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -821,7 +821,7 @@
entry(
index = 59,
label = "Cds-C=SCs_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -835,7 +835,7 @@
entry(
index = 60,
label = "Cds-TwoDe_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -849,7 +849,7 @@
entry(
index = 61,
label = "Cds-CtCt_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -863,7 +863,7 @@
entry(
index = 62,
label = "Cds-CtCb_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -877,7 +877,7 @@
entry(
index = 63,
label = "Cds-CtCO_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -891,7 +891,7 @@
entry(
index = 64,
label = "Cds-CbCb_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -905,7 +905,7 @@
entry(
index = 65,
label = "Cds-CbCO_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -919,7 +919,7 @@
entry(
index = 66,
label = "Cds-COCO_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -933,7 +933,7 @@
entry(
index = 67,
label = "Cds-CdCt_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -948,7 +948,7 @@
entry(
index = 68,
label = "Cds-CdCb_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -963,7 +963,7 @@
entry(
index = 69,
label = "Cds-CdCO_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -978,7 +978,7 @@
entry(
index = 70,
label = "Cds-CtC=S_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -992,7 +992,7 @@
entry(
index = 71,
label = "Cds-CbC=S_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1006,7 +1006,7 @@
entry(
index = 72,
label = "Cds-COC=S_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1020,7 +1020,7 @@
entry(
index = 73,
label = "Cds-CdCd_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1036,7 +1036,7 @@
entry(
index = 74,
label = "Cds-CdC=S_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1051,7 +1051,7 @@
entry(
index = 75,
label = "Cds-C=SC=S_Ca",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1065,7 +1065,7 @@
entry(
index = 76,
label = "Cds_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1079,7 +1079,7 @@
entry(
index = 77,
label = "Cds-HH_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1093,7 +1093,7 @@
entry(
index = 78,
label = "Cds-CsH_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1107,7 +1107,7 @@
entry(
index = 79,
label = "Cds-CsCs_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1121,7 +1121,7 @@
entry(
index = 80,
label = "Cds-OneDeH_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1135,7 +1135,7 @@
entry(
index = 81,
label = "Cds-OneDeCs_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1149,7 +1149,7 @@
entry(
index = 82,
label = "Cds-TwoDe_Ck",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cdd u0 {1,D} {5,D}
@@ -1163,7 +1163,7 @@
entry(
index = 83,
label = "Cdd_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D}
@@ -1176,7 +1176,7 @@
entry(
index = 84,
label = "Ca_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1190,7 +1190,7 @@
entry(
index = 85,
label = "Ca_Cds-HH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1204,7 +1204,7 @@
entry(
index = 86,
label = "Ca-Cdd_Cds-HH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1218,7 +1218,7 @@
entry(
index = 87,
label = "Ca_Cds-CsH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1232,7 +1232,7 @@
entry(
index = 88,
label = "Ca_Cds-CsCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1246,7 +1246,7 @@
entry(
index = 89,
label = "Ca_Cds-OneDeH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1260,7 +1260,7 @@
entry(
index = 90,
label = "Ca_Cds-CtH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1274,7 +1274,7 @@
entry(
index = 91,
label = "Ca_Cds-CbH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1288,7 +1288,7 @@
entry(
index = 92,
label = "Ca_Cds-COH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1302,7 +1302,7 @@
entry(
index = 93,
label = "Ca_Cds-CdH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1317,7 +1317,7 @@
entry(
index = 94,
label = "Ca_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1331,7 +1331,7 @@
entry(
index = 95,
label = "Ca_Cds-OneDeCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1345,7 +1345,7 @@
entry(
index = 96,
label = "Ca_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1359,7 +1359,7 @@
entry(
index = 97,
label = "Ca_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1373,7 +1373,7 @@
entry(
index = 98,
label = "Ca_Cds-COCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1387,7 +1387,7 @@
entry(
index = 99,
label = "Ca_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1402,7 +1402,7 @@
entry(
index = 100,
label = "Ca_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1416,7 +1416,7 @@
entry(
index = 101,
label = "Ca_Cds-TwoDe",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cdd u0 {1,D} {5,D}
@@ -1430,7 +1430,7 @@
entry(
index = 102,
label = "Ca_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1444,7 +1444,7 @@
entry(
index = 103,
label = "Ca_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1458,7 +1458,7 @@
entry(
index = 104,
label = "Ca_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1472,7 +1472,7 @@
entry(
index = 105,
label = "Ca_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1486,7 +1486,7 @@
entry(
index = 106,
label = "Ca_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1500,7 +1500,7 @@
entry(
index = 107,
label = "Ca_Cds-COCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1514,7 +1514,7 @@
entry(
index = 108,
label = "Ca_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1529,7 +1529,7 @@
entry(
index = 109,
label = "Ca_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1544,7 +1544,7 @@
entry(
index = 110,
label = "Ca_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1559,7 +1559,7 @@
entry(
index = 111,
label = "Ca_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1573,7 +1573,7 @@
entry(
index = 112,
label = "Ca_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1587,7 +1587,7 @@
entry(
index = 113,
label = "Ca_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1601,7 +1601,7 @@
entry(
index = 114,
label = "Ca_Cds-CdCd",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1617,7 +1617,7 @@
entry(
index = 115,
label = "Ca_Cds-CdCdCdCdCd_cycle",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1635,7 +1635,7 @@
entry(
index = 116,
label = "Ca_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1650,7 +1650,7 @@
entry(
index = 117,
label = "Ca_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1664,7 +1664,7 @@
entry(
index = 118,
label = "Ck_Cds",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1678,7 +1678,7 @@
entry(
index = 119,
label = "Ck_Cds-HH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1692,7 +1692,7 @@
entry(
index = 120,
label = "Ck_Cds-CsH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1706,7 +1706,7 @@
entry(
index = 121,
label = "Ck_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1720,7 +1720,7 @@
entry(
index = 122,
label = "Ck_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1734,7 +1734,7 @@
entry(
index = 123,
label = "Ck_Cds-CtH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1748,7 +1748,7 @@
entry(
index = 124,
label = "Ck_Cds-CbH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1762,7 +1762,7 @@
entry(
index = 125,
label = "Ck_Cds-COH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1776,7 +1776,7 @@
entry(
index = 126,
label = "Ck_Cds-CdH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1791,7 +1791,7 @@
entry(
index = 127,
label = "Ck_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1805,7 +1805,7 @@
entry(
index = 128,
label = "Ck_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1819,7 +1819,7 @@
entry(
index = 129,
label = "Ck_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1833,7 +1833,7 @@
entry(
index = 130,
label = "Ck_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1847,7 +1847,7 @@
entry(
index = 131,
label = "Ck_Cds-COCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1861,7 +1861,7 @@
entry(
index = 132,
label = "Ck_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1876,7 +1876,7 @@
entry(
index = 133,
label = "Ck_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1890,7 +1890,7 @@
entry(
index = 134,
label = "Ck_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1904,7 +1904,7 @@
entry(
index = 135,
label = "Ck_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1918,7 +1918,7 @@
entry(
index = 136,
label = "Ck_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1932,7 +1932,7 @@
entry(
index = 137,
label = "Ck_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1946,7 +1946,7 @@
entry(
index = 138,
label = "Ck_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1960,7 +1960,7 @@
entry(
index = 139,
label = "Ck_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1974,7 +1974,7 @@
entry(
index = 140,
label = "Ck_Cds-COCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -1988,7 +1988,7 @@
entry(
index = 141,
label = "Ck_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2003,7 +2003,7 @@
entry(
index = 142,
label = "Ck_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2018,7 +2018,7 @@
entry(
index = 143,
label = "Ck_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2033,7 +2033,7 @@
entry(
index = 144,
label = "Ck_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2047,7 +2047,7 @@
entry(
index = 145,
label = "Ck_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2061,7 +2061,7 @@
entry(
index = 146,
label = "Ck_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2075,7 +2075,7 @@
entry(
index = 147,
label = "Ck_Cds-CdCd",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2091,7 +2091,7 @@
entry(
index = 148,
label = "Ck_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2106,7 +2106,7 @@
entry(
index = 149,
label = "Ck_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cd u0 {1,D} {4,S} {5,S}
@@ -2120,7 +2120,7 @@
entry(
index = 150,
label = "Cdd_Cdd",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2133,7 +2133,7 @@
entry(
index = 151,
label = "Ca_Ca",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2146,7 +2146,7 @@
entry(
index = 152,
label = "Ca-Cb_Ca-Cb_cyc6",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2161,7 +2161,7 @@
entry(
index = 153,
label = "Ck_Ck",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2174,7 +2174,7 @@
entry(
index = 154,
label = "Ca_Ck",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2187,7 +2187,7 @@
entry(
index = 155,
label = "Ck_Ca",
- group =
+ group =
"""
1 *1 Cdd u0 {2,D} {3,D}
2 *2 Cdd u0 {1,D} {4,D}
@@ -2200,7 +2200,7 @@
entry(
index = 156,
label = "Cds_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2213,7 +2213,7 @@
entry(
index = 157,
label = "Cds-HH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2226,7 +2226,7 @@
entry(
index = 158,
label = "Cds-CsH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2239,7 +2239,7 @@
entry(
index = 159,
label = "Cds-CsCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2252,7 +2252,7 @@
entry(
index = 160,
label = "Cds-OsH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2265,7 +2265,7 @@
entry(
index = 161,
label = "Cds-OsCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2278,7 +2278,7 @@
entry(
index = 162,
label = "Cds-SsH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2291,7 +2291,7 @@
entry(
index = 163,
label = "Cds-SsCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2304,7 +2304,7 @@
entry(
index = 164,
label = "Cds-OneDeH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2317,7 +2317,7 @@
entry(
index = 165,
label = "Cds-CtH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2330,7 +2330,7 @@
entry(
index = 166,
label = "Cds-CbH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2343,7 +2343,7 @@
entry(
index = 167,
label = "Cds-COH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2356,7 +2356,7 @@
entry(
index = 168,
label = "Cds-CdH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2370,7 +2370,7 @@
entry(
index = 169,
label = "Cds-C=SH_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2383,7 +2383,7 @@
entry(
index = 170,
label = "Cds-OneDeCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2396,7 +2396,7 @@
entry(
index = 171,
label = "Cds-CtCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2409,7 +2409,7 @@
entry(
index = 172,
label = "Cds-CbCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2422,7 +2422,7 @@
entry(
index = 173,
label = "Cds-COCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2435,7 +2435,7 @@
entry(
index = 174,
label = "Cds-CdCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2449,7 +2449,7 @@
entry(
index = 175,
label = "Cds-C=SCs_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2462,7 +2462,7 @@
entry(
index = 176,
label = "Cds-TwoDe_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2475,7 +2475,7 @@
entry(
index = 177,
label = "Cds-CtCt_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2488,7 +2488,7 @@
entry(
index = 178,
label = "Cds-CtCb_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2501,7 +2501,7 @@
entry(
index = 179,
label = "Cds-CtCO_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2514,7 +2514,7 @@
entry(
index = 180,
label = "Cds-CbCb_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2527,7 +2527,7 @@
entry(
index = 181,
label = "Cds-CbCO_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2540,7 +2540,7 @@
entry(
index = 182,
label = "Cds-COCO_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2553,7 +2553,7 @@
entry(
index = 183,
label = "Cds-CdCt_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2567,7 +2567,7 @@
entry(
index = 184,
label = "Cds-CdCb_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2581,7 +2581,7 @@
entry(
index = 185,
label = "Cds-CdCO_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2595,7 +2595,7 @@
entry(
index = 186,
label = "Cds-CtC=S_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2608,7 +2608,7 @@
entry(
index = 187,
label = "Cds-CbC=S_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2621,7 +2621,7 @@
entry(
index = 188,
label = "Cds-COC=S_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2634,7 +2634,7 @@
entry(
index = 189,
label = "Cds-CdCd_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2649,7 +2649,7 @@
entry(
index = 190,
label = "Cds-CdC=S_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2663,7 +2663,7 @@
entry(
index = 191,
label = "Cds-C=SC=S_Sd",
- group =
+ group =
"""
1 *1 CS u0 {2,D} {3,S} {4,S}
2 *2 S2d u0 p2 {1,D}
@@ -2676,7 +2676,7 @@
entry(
index = 192,
label = "Cds_Nd",
- group =
+ group =
"""
1 *1 Cd u0 {2,D}
2 *2 N u0 {1,D}
@@ -2687,7 +2687,7 @@
entry(
index = 193,
label = "Cds_N3d",
- group =
+ group =
"""
1 *1 Cd u0 {2,D}
2 *2 N3d u0 {1,D}
@@ -2698,7 +2698,7 @@
entry(
index = 194,
label = "Cds-HH_N3d",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 N3d u0 {1,D}
@@ -2711,7 +2711,7 @@
entry(
index = 195,
label = "Cds-NonDeH_N3d",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 N3d u0 {1,D}
@@ -2724,7 +2724,7 @@
entry(
index = 196,
label = "Cds-NonDe2_N3d",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 N3d u0 {1,D}
@@ -2737,7 +2737,7 @@
entry(
index = 197,
label = "Cds_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2752,7 +2752,7 @@
entry(
index = 198,
label = "Cds-HH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2767,7 +2767,7 @@
entry(
index = 199,
label = "Cds-HH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2782,7 +2782,7 @@
entry(
index = 200,
label = "Cds-HH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2797,7 +2797,7 @@
entry(
index = 201,
label = "Cds-HH_Cds-Cs\O2s/H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -2813,7 +2813,7 @@
entry(
index = 202,
label = "Cds-HH_Cds-Cs\H3/H",
- group =
+ group =
"""
1 Cs u0 {2,S} {4,S} {5,S} {6,S}
2 *2 Cd u0 {1,S} {3,D} {7,S}
@@ -2831,7 +2831,7 @@
entry(
index = 203,
label = "Cds-HH_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2846,7 +2846,7 @@
entry(
index = 204,
label = "Cds-HH_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2861,7 +2861,7 @@
entry(
index = 205,
label = "Cds-HH_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2876,7 +2876,7 @@
entry(
index = 206,
label = "Cds-HH_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2891,7 +2891,7 @@
entry(
index = 207,
label = "Cds-HH_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2906,7 +2906,7 @@
entry(
index = 208,
label = "Cds-HH_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2921,7 +2921,7 @@
entry(
index = 209,
label = "Cds-HH_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2936,7 +2936,7 @@
entry(
index = 210,
label = "Cds-HH_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2951,7 +2951,7 @@
entry(
index = 211,
label = "Cds-HH_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2966,7 +2966,7 @@
entry(
index = 212,
label = "Cds-HH_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2981,7 +2981,7 @@
entry(
index = 213,
label = "Cds-HH_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -2996,7 +2996,7 @@
entry(
index = 214,
label = "Cds-HH_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3011,7 +3011,7 @@
entry(
index = 215,
label = "Cds-HH_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3026,7 +3026,7 @@
entry(
index = 216,
label = "Cds-HH_Cds-(Cd-Cd-Cb)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {5,S}
2 *1 Cd u0 {1,D} {6,S} {7,S}
@@ -3043,7 +3043,7 @@
entry(
index = 217,
label = "Cds-HH_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3059,7 +3059,7 @@
entry(
index = 218,
label = "Cds-HH_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3074,7 +3074,7 @@
entry(
index = 219,
label = "Cds-HH_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3089,7 +3089,7 @@
entry(
index = 220,
label = "Cds-HH_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3104,7 +3104,7 @@
entry(
index = 221,
label = "Cds-HH_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3119,7 +3119,7 @@
entry(
index = 222,
label = "Cds-HH_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3134,7 +3134,7 @@
entry(
index = 223,
label = "Cds-HH_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3150,7 +3150,7 @@
entry(
index = 224,
label = "Cds-HH_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3165,7 +3165,7 @@
entry(
index = 225,
label = "Cds-HH_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3180,7 +3180,7 @@
entry(
index = 226,
label = "Cds-HH_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3195,7 +3195,7 @@
entry(
index = 227,
label = "Cds-HH_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3210,7 +3210,7 @@
entry(
index = 228,
label = "Cds-HH_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3225,7 +3225,7 @@
entry(
index = 229,
label = "Cds-HH_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3241,7 +3241,7 @@
entry(
index = 230,
label = "Cds-HH_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3256,7 +3256,7 @@
entry(
index = 231,
label = "Cds-HH_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3271,7 +3271,7 @@
entry(
index = 232,
label = "Cds-HH_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3286,7 +3286,7 @@
entry(
index = 233,
label = "Cds-HH_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3301,7 +3301,7 @@
entry(
index = 234,
label = "Cds-HH_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3316,7 +3316,7 @@
entry(
index = 235,
label = "Cds-HH_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3332,7 +3332,7 @@
entry(
index = 236,
label = "Cds-HH_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3347,7 +3347,7 @@
entry(
index = 237,
label = "Cds-HH_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3362,7 +3362,7 @@
entry(
index = 238,
label = "Cds-HH_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3377,7 +3377,7 @@
entry(
index = 239,
label = "Cds-HH_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3392,7 +3392,7 @@
entry(
index = 240,
label = "Cds-HH_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3407,7 +3407,7 @@
entry(
index = 241,
label = "Cds-HH_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3422,7 +3422,7 @@
entry(
index = 242,
label = "Cds-HH_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3437,7 +3437,7 @@
entry(
index = 243,
label = "Cds-HH_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3452,7 +3452,7 @@
entry(
index = 244,
label = "Cds-HH_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3468,7 +3468,7 @@
entry(
index = 245,
label = "Cds-HH_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3484,7 +3484,7 @@
entry(
index = 246,
label = "Cds-HH_Cds-CdCbCbCdCdCd_cycle",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3501,7 +3501,7 @@
entry(
index = 247,
label = "Cds-HH_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3517,7 +3517,7 @@
entry(
index = 248,
label = "Cds-HH_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3532,7 +3532,7 @@
entry(
index = 249,
label = "Cds-HH_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3547,7 +3547,7 @@
entry(
index = 250,
label = "Cds-HH_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3562,7 +3562,7 @@
entry(
index = 251,
label = "Cds-HH_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3579,7 +3579,7 @@
entry(
index = 252,
label = "Cds-HH_Cds-CdCd_cyc",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3600,7 +3600,7 @@
entry(
index = 253,
label = "Cds-HH_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3616,7 +3616,7 @@
entry(
index = 254,
label = "Cds-HH_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3631,7 +3631,7 @@
entry(
index = 255,
label = "Cds-CsH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3646,7 +3646,7 @@
entry(
index = 256,
label = "Cds-CsH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3661,7 +3661,7 @@
entry(
index = 257,
label = "Cds-Cs\O2s/H_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3677,7 +3677,7 @@
entry(
index = 258,
label = "Cds-CsH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3692,7 +3692,7 @@
entry(
index = 259,
label = "Cds-CsH_Cds-(CsH-Cds-Cds)_cyc6",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3709,7 +3709,7 @@
entry(
index = 260,
label = "Cds-CsH_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3724,7 +3724,7 @@
entry(
index = 261,
label = "Cds-CsH_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3739,7 +3739,7 @@
entry(
index = 262,
label = "Cds-CsH_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3754,7 +3754,7 @@
entry(
index = 263,
label = "Cds-CsH_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3769,7 +3769,7 @@
entry(
index = 264,
label = "Cds-CsH_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3784,7 +3784,7 @@
entry(
index = 265,
label = "Cds-CsH_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3799,7 +3799,7 @@
entry(
index = 266,
label = "Cds-CsH_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3814,7 +3814,7 @@
entry(
index = 267,
label = "Cds-CsH_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3829,7 +3829,7 @@
entry(
index = 268,
label = "Cds-CsH_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3844,7 +3844,7 @@
entry(
index = 269,
label = "Cds-CsH_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3859,7 +3859,7 @@
entry(
index = 270,
label = "Cds-CsH_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3874,7 +3874,7 @@
entry(
index = 271,
label = "Cds-CsH_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3889,7 +3889,7 @@
entry(
index = 272,
label = "Cds-CsH_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -3904,7 +3904,7 @@
entry(
index = 273,
label = "Cds-CsH_Cds-(Cd-Cd-Cd-Cd-Cd)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {7,S}
2 *1 Cd u0 {1,D} {8,S} {9,S}
@@ -3923,7 +3923,7 @@
entry(
index = 274,
label = "Cds-CsH_Cds-(Cd-Cd-Cd)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {5,S}
2 *1 Cd u0 {1,D} {6,S} {7,S}
@@ -3940,7 +3940,7 @@
entry(
index = 275,
label = "Cds-CsH_Cds-Cd(Cd)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3956,7 +3956,7 @@
entry(
index = 276,
label = "Cds-CsH_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -3972,7 +3972,7 @@
entry(
index = 277,
label = "Cds-CsH_Cds-(CdsH-Cds)_cyc5",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {6,S}
2 *2 Cd u0 {1,D} {4,S} {7,S}
@@ -3988,7 +3988,7 @@
entry(
index = 278,
label = "Cds-CsH_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4003,7 +4003,7 @@
entry(
index = 279,
label = "Cds-CsH_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4018,7 +4018,7 @@
entry(
index = 280,
label = "Cds-CsH_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4033,7 +4033,7 @@
entry(
index = 281,
label = "Cds-CsH_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4048,7 +4048,7 @@
entry(
index = 282,
label = "Cds-CsH_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4063,7 +4063,7 @@
entry(
index = 283,
label = "Cds-CsH_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4079,7 +4079,7 @@
entry(
index = 284,
label = "Cds-CsH_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4094,7 +4094,7 @@
entry(
index = 285,
label = "Cds-CsH_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4109,7 +4109,7 @@
entry(
index = 286,
label = "Cds-CsH_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4124,7 +4124,7 @@
entry(
index = 287,
label = "Cds-CsH_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4139,7 +4139,7 @@
entry(
index = 288,
label = "Cds-CsH_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4154,7 +4154,7 @@
entry(
index = 289,
label = "Cds-CsH_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4170,7 +4170,7 @@
entry(
index = 290,
label = "Cds-CsH_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4185,7 +4185,7 @@
entry(
index = 291,
label = "Cds-CsH_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4200,7 +4200,7 @@
entry(
index = 292,
label = "Cds-CsH_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4215,7 +4215,7 @@
entry(
index = 293,
label = "Cds-CsH_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4230,7 +4230,7 @@
entry(
index = 294,
label = "Cds-CsH_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4245,7 +4245,7 @@
entry(
index = 295,
label = "Cds-CsH_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4261,7 +4261,7 @@
entry(
index = 296,
label = "Cds-CsH_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4276,7 +4276,7 @@
entry(
index = 297,
label = "Cds-CsH_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4291,7 +4291,7 @@
entry(
index = 298,
label = "Cds-CsH_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4306,7 +4306,7 @@
entry(
index = 299,
label = "Cds-CsH_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4321,7 +4321,7 @@
entry(
index = 300,
label = "Cds-CsH_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4336,7 +4336,7 @@
entry(
index = 301,
label = "Cds-CsH_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4351,7 +4351,7 @@
entry(
index = 302,
label = "Cds-CsH_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4366,7 +4366,7 @@
entry(
index = 303,
label = "Cds-CsH_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4381,7 +4381,7 @@
entry(
index = 304,
label = "Cds-CsH_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4397,7 +4397,7 @@
entry(
index = 305,
label = "Cds-CsH_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4413,7 +4413,7 @@
entry(
index = 306,
label = "Cds-CsH_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4429,7 +4429,7 @@
entry(
index = 307,
label = "Cds-CsH_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4444,7 +4444,7 @@
entry(
index = 308,
label = "Cds-CsH_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4459,7 +4459,7 @@
entry(
index = 309,
label = "Cds-CsH_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4474,7 +4474,7 @@
entry(
index = 310,
label = "Cds-CsH_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4491,7 +4491,7 @@
entry(
index = 311,
label = "Cds-CsH_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4507,7 +4507,7 @@
entry(
index = 312,
label = "Cds-CsH_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4522,7 +4522,7 @@
entry(
index = 313,
label = "Cds-CsCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4537,7 +4537,7 @@
entry(
index = 314,
label = "Cds-CsCs_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4552,7 +4552,7 @@
entry(
index = 315,
label = "Cds-CsCs_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4567,7 +4567,7 @@
entry(
index = 316,
label = "Cds-CsCs_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4582,7 +4582,7 @@
entry(
index = 317,
label = "Cds-CsCs_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4597,7 +4597,7 @@
entry(
index = 318,
label = "Cds-CsCs_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4612,7 +4612,7 @@
entry(
index = 319,
label = "Cds-CsCs_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4627,7 +4627,7 @@
entry(
index = 320,
label = "Cds-CsCs_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4642,7 +4642,7 @@
entry(
index = 321,
label = "Cds-CsCs_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4657,7 +4657,7 @@
entry(
index = 322,
label = "Cds-CsCs_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4672,7 +4672,7 @@
entry(
index = 323,
label = "Cds-CsCs_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4687,7 +4687,7 @@
entry(
index = 324,
label = "Cds-CsCs_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4702,7 +4702,7 @@
entry(
index = 325,
label = "Cds-CsCs_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4717,7 +4717,7 @@
entry(
index = 326,
label = "Cds-CsCs_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4732,7 +4732,7 @@
entry(
index = 327,
label = "Cds-CsCs_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4747,7 +4747,7 @@
entry(
index = 328,
label = "Cds-CsCs_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4762,7 +4762,7 @@
entry(
index = 329,
label = "Cds-CsCs_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4778,7 +4778,7 @@
entry(
index = 330,
label = "Cds-CsCs_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4793,7 +4793,7 @@
entry(
index = 331,
label = "Cds-CsCs_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4808,7 +4808,7 @@
entry(
index = 332,
label = "Cds-CsCs_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4823,7 +4823,7 @@
entry(
index = 333,
label = "Cds-CsCs_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4838,7 +4838,7 @@
entry(
index = 334,
label = "Cds-CsCs_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4853,7 +4853,7 @@
entry(
index = 335,
label = "Cds-CsCs_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -4869,7 +4869,7 @@
entry(
index = 336,
label = "Cds-CsCs_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4884,7 +4884,7 @@
entry(
index = 337,
label = "Cds-CsCs_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4899,7 +4899,7 @@
entry(
index = 338,
label = "Cds-CsCs_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4914,7 +4914,7 @@
entry(
index = 339,
label = "Cds-CsCs_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4929,7 +4929,7 @@
entry(
index = 340,
label = "Cds-CsCs_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4944,7 +4944,7 @@
entry(
index = 341,
label = "Cds-CsCs_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4960,7 +4960,7 @@
entry(
index = 342,
label = "Cds-CsCs_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4975,7 +4975,7 @@
entry(
index = 343,
label = "Cds-CsCs_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -4990,7 +4990,7 @@
entry(
index = 344,
label = "Cds-CsCs_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5005,7 +5005,7 @@
entry(
index = 345,
label = "Cds-CsCs_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5020,7 +5020,7 @@
entry(
index = 346,
label = "Cds-CsCs_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5035,7 +5035,7 @@
entry(
index = 347,
label = "Cds-CsCs_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5051,7 +5051,7 @@
entry(
index = 348,
label = "Cds-CsCs_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5066,7 +5066,7 @@
entry(
index = 349,
label = "Cds-CsCs_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5081,7 +5081,7 @@
entry(
index = 350,
label = "Cds-CsCs_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5096,7 +5096,7 @@
entry(
index = 351,
label = "Cds-CsCs_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5111,7 +5111,7 @@
entry(
index = 352,
label = "Cds-CsCs_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5126,7 +5126,7 @@
entry(
index = 353,
label = "Cds-CsCs_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5141,7 +5141,7 @@
entry(
index = 354,
label = "Cds-CsCs_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5156,7 +5156,7 @@
entry(
index = 355,
label = "Cds-CsCs_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5171,7 +5171,7 @@
entry(
index = 356,
label = "Cds-CsCs_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5187,7 +5187,7 @@
entry(
index = 357,
label = "Cds-CsCs_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5203,7 +5203,7 @@
entry(
index = 358,
label = "Cds-CsCs_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5219,7 +5219,7 @@
entry(
index = 359,
label = "Cds-CsCs_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5234,7 +5234,7 @@
entry(
index = 360,
label = "Cds-CsCs_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5249,7 +5249,7 @@
entry(
index = 361,
label = "Cds-CsCs_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5264,7 +5264,7 @@
entry(
index = 362,
label = "Cds-CsCs_Cds-(Cd-Cd-Cd)Cd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {5,S}
2 *1 Cd u0 {1,D} {6,S} {7,S}
@@ -5281,7 +5281,7 @@
entry(
index = 363,
label = "Cds-CsCs_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5298,7 +5298,7 @@
entry(
index = 364,
label = "Cds-CsCs_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5314,7 +5314,7 @@
entry(
index = 365,
label = "Cds-CsCs_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5329,7 +5329,7 @@
entry(
index = 366,
label = "Cds-SsH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5344,7 +5344,7 @@
entry(
index = 367,
label = "Cds-SsCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5359,7 +5359,7 @@
entry(
index = 368,
label = "Cds-SsSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5374,7 +5374,7 @@
entry(
index = 369,
label = "Cds-N3sH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5389,7 +5389,7 @@
entry(
index = 370,
label = "Cds-OsH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5404,7 +5404,7 @@
entry(
index = 371,
label = "Cds-OsH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5419,7 +5419,7 @@
entry(
index = 372,
label = "Cds-OsCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5434,7 +5434,7 @@
entry(
index = 373,
label = "Cds-OsOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5449,7 +5449,7 @@
entry(
index = 374,
label = "Cds-OsSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5464,7 +5464,7 @@
entry(
index = 375,
label = "Cds-OneDe_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5479,7 +5479,7 @@
entry(
index = 376,
label = "Cds-OneDeH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5494,7 +5494,7 @@
entry(
index = 377,
label = "Cds-CtH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5509,7 +5509,7 @@
entry(
index = 378,
label = "Cds-CtH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5524,7 +5524,7 @@
entry(
index = 379,
label = "Cds-CtH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5539,7 +5539,7 @@
entry(
index = 380,
label = "Cds-CtH_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5554,7 +5554,7 @@
entry(
index = 381,
label = "Cds-CtH_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5569,7 +5569,7 @@
entry(
index = 382,
label = "Cds-CtH_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5584,7 +5584,7 @@
entry(
index = 383,
label = "Cds-CtH_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5599,7 +5599,7 @@
entry(
index = 384,
label = "Cds-CtH_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5614,7 +5614,7 @@
entry(
index = 385,
label = "Cds-CtH_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5629,7 +5629,7 @@
entry(
index = 386,
label = "Cds-CtH_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5644,7 +5644,7 @@
entry(
index = 387,
label = "Cds-CtH_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5659,7 +5659,7 @@
entry(
index = 388,
label = "Cds-CtH_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5674,7 +5674,7 @@
entry(
index = 389,
label = "Cds-CtH_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5689,7 +5689,7 @@
entry(
index = 390,
label = "Cds-CtH_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5704,7 +5704,7 @@
entry(
index = 391,
label = "Cds-CtH_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5719,7 +5719,7 @@
entry(
index = 392,
label = "Cds-CtH_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5734,7 +5734,7 @@
entry(
index = 393,
label = "Cds-CtH_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5750,7 +5750,7 @@
entry(
index = 394,
label = "Cds-CtH_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5765,7 +5765,7 @@
entry(
index = 395,
label = "Cds-CtH_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5780,7 +5780,7 @@
entry(
index = 396,
label = "Cds-CtH_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5795,7 +5795,7 @@
entry(
index = 397,
label = "Cds-CtH_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5810,7 +5810,7 @@
entry(
index = 398,
label = "Cds-CtH_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5825,7 +5825,7 @@
entry(
index = 399,
label = "Cds-CtH_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -5841,7 +5841,7 @@
entry(
index = 400,
label = "Cds-CtH_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5856,7 +5856,7 @@
entry(
index = 401,
label = "Cds-CtH_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5871,7 +5871,7 @@
entry(
index = 402,
label = "Cds-CtH_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5886,7 +5886,7 @@
entry(
index = 403,
label = "Cds-CtH_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5901,7 +5901,7 @@
entry(
index = 404,
label = "Cds-CtH_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5916,7 +5916,7 @@
entry(
index = 405,
label = "Cds-CtH_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5932,7 +5932,7 @@
entry(
index = 406,
label = "Cds-CtH_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5947,7 +5947,7 @@
entry(
index = 407,
label = "Cds-CtH_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5962,7 +5962,7 @@
entry(
index = 408,
label = "Cds-CtH_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5977,7 +5977,7 @@
entry(
index = 409,
label = "Cds-CtH_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -5992,7 +5992,7 @@
entry(
index = 410,
label = "Cds-CtH_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6007,7 +6007,7 @@
entry(
index = 411,
label = "Cds-CtH_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6023,7 +6023,7 @@
entry(
index = 412,
label = "Cds-CtH_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6038,7 +6038,7 @@
entry(
index = 413,
label = "Cds-CtH_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6053,7 +6053,7 @@
entry(
index = 414,
label = "Cds-CtH_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6068,7 +6068,7 @@
entry(
index = 415,
label = "Cds-CtH_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6083,7 +6083,7 @@
entry(
index = 416,
label = "Cds-CtH_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6098,7 +6098,7 @@
entry(
index = 417,
label = "Cds-CtH_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6113,7 +6113,7 @@
entry(
index = 418,
label = "Cds-CtH_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6128,7 +6128,7 @@
entry(
index = 419,
label = "Cds-CtH_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6143,7 +6143,7 @@
entry(
index = 420,
label = "Cds-CtH_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6159,7 +6159,7 @@
entry(
index = 421,
label = "Cds-CtH_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6175,7 +6175,7 @@
entry(
index = 422,
label = "Cds-CtH_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6191,7 +6191,7 @@
entry(
index = 423,
label = "Cds-CtH_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6206,7 +6206,7 @@
entry(
index = 424,
label = "Cds-CtH_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6221,7 +6221,7 @@
entry(
index = 425,
label = "Cds-CtH_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6236,7 +6236,7 @@
entry(
index = 426,
label = "Cds-CtH_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6253,7 +6253,7 @@
entry(
index = 427,
label = "Cds-CtH_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6269,7 +6269,7 @@
entry(
index = 428,
label = "Cds-CtH_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6284,7 +6284,7 @@
entry(
index = 429,
label = "Cds-CbH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6299,7 +6299,7 @@
entry(
index = 430,
label = "Cds-CbH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6314,7 +6314,7 @@
entry(
index = 431,
label = "Cds-CbH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6329,7 +6329,7 @@
entry(
index = 432,
label = "Cds-CbH_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6344,7 +6344,7 @@
entry(
index = 433,
label = "Cds-CbH_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6359,7 +6359,7 @@
entry(
index = 434,
label = "Cds-CbH_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6374,7 +6374,7 @@
entry(
index = 435,
label = "Cds-CbH_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6389,7 +6389,7 @@
entry(
index = 436,
label = "Cds-CbH_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6404,7 +6404,7 @@
entry(
index = 437,
label = "Cds-CbH_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6419,7 +6419,7 @@
entry(
index = 438,
label = "Cds-CbH_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6434,7 +6434,7 @@
entry(
index = 439,
label = "Cds-CbH_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6449,7 +6449,7 @@
entry(
index = 440,
label = "Cds-CbH_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6464,7 +6464,7 @@
entry(
index = 441,
label = "Cds-CbH_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6479,7 +6479,7 @@
entry(
index = 442,
label = "Cds-CbH_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6494,7 +6494,7 @@
entry(
index = 443,
label = "Cds-CbH_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6509,7 +6509,7 @@
entry(
index = 444,
label = "Cds-CbH_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6524,7 +6524,7 @@
entry(
index = 445,
label = "Cds-CbH_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6540,7 +6540,7 @@
entry(
index = 446,
label = "Cds-CbH_Cds-Cd(CdCb)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {5,S}
2 *1 Cd u0 {1,D} {6,S} {7,S}
@@ -6557,7 +6557,7 @@
entry(
index = 447,
label = "Cds-CbH_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6572,7 +6572,7 @@
entry(
index = 448,
label = "Cds-CbH_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6587,7 +6587,7 @@
entry(
index = 449,
label = "Cds-CbH_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6602,7 +6602,7 @@
entry(
index = 450,
label = "Cds-CbH_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6617,7 +6617,7 @@
entry(
index = 451,
label = "Cds-CbH_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6632,7 +6632,7 @@
entry(
index = 452,
label = "Cds-CbH_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6648,7 +6648,7 @@
entry(
index = 453,
label = "Cds-CbH_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6663,7 +6663,7 @@
entry(
index = 454,
label = "Cds-CbH_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6678,7 +6678,7 @@
entry(
index = 455,
label = "Cds-CbH_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6693,7 +6693,7 @@
entry(
index = 456,
label = "Cds-CbH_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6708,7 +6708,7 @@
entry(
index = 457,
label = "Cds-CbH_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6723,7 +6723,7 @@
entry(
index = 458,
label = "Cds-CbH_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6739,7 +6739,7 @@
entry(
index = 459,
label = "Cds-CbH_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6754,7 +6754,7 @@
entry(
index = 460,
label = "Cds-CbH_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6769,7 +6769,7 @@
entry(
index = 461,
label = "Cds-CbH_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6784,7 +6784,7 @@
entry(
index = 462,
label = "Cds-CbH_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6799,7 +6799,7 @@
entry(
index = 463,
label = "Cds-CbH_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6814,7 +6814,7 @@
entry(
index = 464,
label = "Cds-CbH_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6830,7 +6830,7 @@
entry(
index = 465,
label = "Cds-CbH_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6845,7 +6845,7 @@
entry(
index = 466,
label = "Cds-CbH_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6860,7 +6860,7 @@
entry(
index = 467,
label = "Cds-CbH_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6875,7 +6875,7 @@
entry(
index = 468,
label = "Cds-CbH_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6890,7 +6890,7 @@
entry(
index = 469,
label = "Cds-CbH_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6905,7 +6905,7 @@
entry(
index = 470,
label = "Cds-CbH_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6920,7 +6920,7 @@
entry(
index = 471,
label = "Cds-CbH_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6935,7 +6935,7 @@
entry(
index = 472,
label = "Cds-CbH_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -6950,7 +6950,7 @@
entry(
index = 473,
label = "Cds-CbH_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6966,7 +6966,7 @@
entry(
index = 474,
label = "Cds-CbH_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6982,7 +6982,7 @@
entry(
index = 475,
label = "Cds-CbH_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -6998,7 +6998,7 @@
entry(
index = 476,
label = "Cds-CbH_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7013,7 +7013,7 @@
entry(
index = 477,
label = "Cds-CbH_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7028,7 +7028,7 @@
entry(
index = 478,
label = "Cds-CbH_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7043,7 +7043,7 @@
entry(
index = 479,
label = "Cds-CbH_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -7060,7 +7060,7 @@
entry(
index = 480,
label = "Cds-CbH_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -7076,7 +7076,7 @@
entry(
index = 481,
label = "Cds-CbH_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7091,7 +7091,7 @@
entry(
index = 482,
label = "Cds-COH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7106,7 +7106,7 @@
entry(
index = 483,
label = "Cds-CdH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7122,7 +7122,7 @@
entry(
index = 484,
label = "Cds-CdH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7138,7 +7138,7 @@
entry(
index = 485,
label = "Cds-CdH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7154,7 +7154,7 @@
entry(
index = 486,
label = "Cds-CdH_Cds-(CsH-Cs-Cds)_cyc6",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {7,S}
2 *2 Cd u0 {1,D} {4,S} {8,S}
@@ -7171,7 +7171,7 @@
entry(
index = 487,
label = "Cds-CdH_Cds-(CsH-Cds)_cyc5",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {6,S}
2 *2 Cd u0 {1,D} {4,S} {7,S}
@@ -7187,7 +7187,7 @@
entry(
index = 488,
label = "Cds-CdH_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7203,7 +7203,7 @@
entry(
index = 489,
label = "Cds-CdH_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7219,7 +7219,7 @@
entry(
index = 490,
label = "Cds-CdH_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7235,7 +7235,7 @@
entry(
index = 491,
label = "Cds-CdH_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7251,7 +7251,7 @@
entry(
index = 492,
label = "Cds-CdH_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7267,7 +7267,7 @@
entry(
index = 493,
label = "Cds-CdH_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7283,7 +7283,7 @@
entry(
index = 494,
label = "Cds-CdH_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7299,7 +7299,7 @@
entry(
index = 495,
label = "Cds-CdH_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7315,7 +7315,7 @@
entry(
index = 496,
label = "Cds-CdH_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7331,7 +7331,7 @@
entry(
index = 497,
label = "Cds-CdH_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7347,7 +7347,7 @@
entry(
index = 498,
label = "Cds-CdH_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7363,7 +7363,7 @@
entry(
index = 499,
label = "Cds-CdH_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7379,7 +7379,7 @@
entry(
index = 500,
label = "Cds(CdCb)-CdH_Cds-CbH_cycle",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {7,S}
2 *2 Cd u0 {1,D} {4,S} {8,S}
@@ -7396,7 +7396,7 @@
entry(
index = 501,
label = "Cds-CdH_Cds-Cb(Cb)H_cycle",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {6,S}
2 *2 Cd u0 {1,D} {4,S} {7,S}
@@ -7413,7 +7413,7 @@
entry(
index = 502,
label = "Cds-CdH_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7429,7 +7429,7 @@
entry(
index = 503,
label = "Cds-CdH_Cds-CdH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -7446,7 +7446,7 @@
entry(
index = 504,
label = "Cds-CdH_Cds-CdH_cyc5_1",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {6,S}
2 *1 Cd u0 {1,D} {4,S} {7,S}
@@ -7463,7 +7463,7 @@
entry(
index = 505,
label = "Cds-CdH_Cds-CdH_cyc5_2",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {6,S}
2 *2 Cd u0 {1,D} {4,S} {7,S}
@@ -7480,7 +7480,7 @@
entry(
index = 506,
label = "Cds-CdH_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7496,7 +7496,7 @@
entry(
index = 507,
label = "Cds-CdH_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7512,7 +7512,7 @@
entry(
index = 508,
label = "Cds-CdH_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7528,7 +7528,7 @@
entry(
index = 509,
label = "Cds-CdH_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7544,7 +7544,7 @@
entry(
index = 510,
label = "Cds-CdH_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7560,7 +7560,7 @@
entry(
index = 511,
label = "Cds-CdH_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -7577,7 +7577,7 @@
entry(
index = 512,
label = "Cds-CdH_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7593,7 +7593,7 @@
entry(
index = 513,
label = "Cds-CdH_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7609,7 +7609,7 @@
entry(
index = 514,
label = "Cds-CdH_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7625,7 +7625,7 @@
entry(
index = 515,
label = "Cds-CdH_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7641,7 +7641,7 @@
entry(
index = 516,
label = "Cds-CdH_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7657,7 +7657,7 @@
entry(
index = 517,
label = "Cds-CdH_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7674,7 +7674,7 @@
entry(
index = 518,
label = "Cds-CdH_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7690,7 +7690,7 @@
entry(
index = 519,
label = "Cds-CdH_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7706,7 +7706,7 @@
entry(
index = 520,
label = "Cds-CdH_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7722,7 +7722,7 @@
entry(
index = 521,
label = "Cds-CdH_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7738,7 +7738,7 @@
entry(
index = 522,
label = "Cds-CdH_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7754,7 +7754,7 @@
entry(
index = 523,
label = "Cds-CdH_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7771,7 +7771,7 @@
entry(
index = 524,
label = "Cds-CdH_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7787,7 +7787,7 @@
entry(
index = 525,
label = "Cds-CdH_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7803,7 +7803,7 @@
entry(
index = 526,
label = "Cds-CdH_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7819,7 +7819,7 @@
entry(
index = 527,
label = "Cds-CdH_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7835,7 +7835,7 @@
entry(
index = 528,
label = "Cds-CdH_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7851,7 +7851,7 @@
entry(
index = 529,
label = "Cds-CdH_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7867,7 +7867,7 @@
entry(
index = 530,
label = "Cds-CdH_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7883,7 +7883,7 @@
entry(
index = 531,
label = "Cds-CdH_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7899,7 +7899,7 @@
entry(
index = 532,
label = "Cds-CdH_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -7916,7 +7916,7 @@
entry(
index = 533,
label = "Cds-CdH_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -7933,7 +7933,7 @@
entry(
index = 534,
label = "Cds-CdH_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -7950,7 +7950,7 @@
entry(
index = 535,
label = "Cds-CdH_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7966,7 +7966,7 @@
entry(
index = 536,
label = "Cds-CdH_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7982,7 +7982,7 @@
entry(
index = 537,
label = "Cds-CdH_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -7998,7 +7998,7 @@
entry(
index = 538,
label = "Cds-CdH_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8016,7 +8016,7 @@
entry(
index = 539,
label = "Cds-CdH_Cds-CdCd_cyc6",
- group =
+ group =
"""
1 *2 Cd u0 {2,S} {3,D} {4,S}
2 Cd u0 {1,S} {5,S} {10,D}
@@ -8036,7 +8036,7 @@
entry(
index = 540,
label = "Cds-CdH_Cds-CdCd_cyc6_cyc5",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8056,7 +8056,7 @@
entry(
index = 541,
label = "Cds-CdH_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -8073,7 +8073,7 @@
entry(
index = 542,
label = "Cds-CdH_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8089,7 +8089,7 @@
entry(
index = 543,
label = "Cds-C=SH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8104,7 +8104,7 @@
entry(
index = 544,
label = "Cds-OneDeCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8119,7 +8119,7 @@
entry(
index = 545,
label = "Cds-CtCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8134,7 +8134,7 @@
entry(
index = 546,
label = "Cds-CtCs_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8149,7 +8149,7 @@
entry(
index = 547,
label = "Cds-CtCs_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8164,7 +8164,7 @@
entry(
index = 548,
label = "Cds-CtCs_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8179,7 +8179,7 @@
entry(
index = 549,
label = "Cds-CtCs_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8194,7 +8194,7 @@
entry(
index = 550,
label = "Cds-CtCs_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8209,7 +8209,7 @@
entry(
index = 551,
label = "Cds-CtCs_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8224,7 +8224,7 @@
entry(
index = 552,
label = "Cds-CtCs_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8239,7 +8239,7 @@
entry(
index = 553,
label = "Cds-CtCs_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8254,7 +8254,7 @@
entry(
index = 554,
label = "Cds-CtCs_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8269,7 +8269,7 @@
entry(
index = 555,
label = "Cds-CtCs_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8284,7 +8284,7 @@
entry(
index = 556,
label = "Cds-CtCs_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8299,7 +8299,7 @@
entry(
index = 557,
label = "Cds-CtCs_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8314,7 +8314,7 @@
entry(
index = 558,
label = "Cds-CtCs_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8329,7 +8329,7 @@
entry(
index = 559,
label = "Cds-CtCs_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8344,7 +8344,7 @@
entry(
index = 560,
label = "Cds-CtCs_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8359,7 +8359,7 @@
entry(
index = 561,
label = "Cds-CtCs_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8375,7 +8375,7 @@
entry(
index = 562,
label = "Cds-CtCs_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8390,7 +8390,7 @@
entry(
index = 563,
label = "Cds-CtCs_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8405,7 +8405,7 @@
entry(
index = 564,
label = "Cds-CtCs_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8420,7 +8420,7 @@
entry(
index = 565,
label = "Cds-CtCs_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8435,7 +8435,7 @@
entry(
index = 566,
label = "Cds-CtCs_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8450,7 +8450,7 @@
entry(
index = 567,
label = "Cds-CtCs_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8466,7 +8466,7 @@
entry(
index = 568,
label = "Cds-CtCs_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8481,7 +8481,7 @@
entry(
index = 569,
label = "Cds-CtCs_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8496,7 +8496,7 @@
entry(
index = 570,
label = "Cds-CtCs_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8511,7 +8511,7 @@
entry(
index = 571,
label = "Cds-CtCs_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8526,7 +8526,7 @@
entry(
index = 572,
label = "Cds-CtCs_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8541,7 +8541,7 @@
entry(
index = 573,
label = "Cds-CtCs_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8557,7 +8557,7 @@
entry(
index = 574,
label = "Cds-CtCs_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8572,7 +8572,7 @@
entry(
index = 575,
label = "Cds-CtCs_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8587,7 +8587,7 @@
entry(
index = 576,
label = "Cds-CtCs_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8602,7 +8602,7 @@
entry(
index = 577,
label = "Cds-CtCs_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8617,7 +8617,7 @@
entry(
index = 578,
label = "Cds-CtCs_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8632,7 +8632,7 @@
entry(
index = 579,
label = "Cds-CtCs_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8648,7 +8648,7 @@
entry(
index = 580,
label = "Cds-CtCs_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8663,7 +8663,7 @@
entry(
index = 581,
label = "Cds-CtCs_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8678,7 +8678,7 @@
entry(
index = 582,
label = "Cds-CtCs_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8693,7 +8693,7 @@
entry(
index = 583,
label = "Cds-CtCs_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8708,7 +8708,7 @@
entry(
index = 584,
label = "Cds-CtCs_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8723,7 +8723,7 @@
entry(
index = 585,
label = "Cds-CtCs_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8738,7 +8738,7 @@
entry(
index = 586,
label = "Cds-CtCs_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8753,7 +8753,7 @@
entry(
index = 587,
label = "Cds-CtCs_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8768,7 +8768,7 @@
entry(
index = 588,
label = "Cds-CtCs_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8784,7 +8784,7 @@
entry(
index = 589,
label = "Cds-CtCs_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8800,7 +8800,7 @@
entry(
index = 590,
label = "Cds-CtCs_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8816,7 +8816,7 @@
entry(
index = 591,
label = "Cds-CtCs_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8831,7 +8831,7 @@
entry(
index = 592,
label = "Cds-CtCs_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8846,7 +8846,7 @@
entry(
index = 593,
label = "Cds-CtCs_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8861,7 +8861,7 @@
entry(
index = 594,
label = "Cds-CtCs_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8878,7 +8878,7 @@
entry(
index = 595,
label = "Cds-CtCs_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -8894,7 +8894,7 @@
entry(
index = 596,
label = "Cds-CtCs_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8909,7 +8909,7 @@
entry(
index = 597,
label = "Cds-CbCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8924,7 +8924,7 @@
entry(
index = 598,
label = "Cds-CbCs_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8939,7 +8939,7 @@
entry(
index = 599,
label = "Cds-CbCs_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8954,7 +8954,7 @@
entry(
index = 600,
label = "Cds-CbCs_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8969,7 +8969,7 @@
entry(
index = 601,
label = "Cds-CbCs_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8984,7 +8984,7 @@
entry(
index = 602,
label = "Cds-CbCs_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -8999,7 +8999,7 @@
entry(
index = 603,
label = "Cds-CbCs_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9014,7 +9014,7 @@
entry(
index = 604,
label = "Cds-CbCs_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9029,7 +9029,7 @@
entry(
index = 605,
label = "Cds-CbCs_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9044,7 +9044,7 @@
entry(
index = 606,
label = "Cds-CbCs_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9059,7 +9059,7 @@
entry(
index = 607,
label = "Cds-CbCs_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9074,7 +9074,7 @@
entry(
index = 608,
label = "Cds-CbCs_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9089,7 +9089,7 @@
entry(
index = 609,
label = "Cds-CbCs_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9104,7 +9104,7 @@
entry(
index = 610,
label = "Cds-CbCs_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9119,7 +9119,7 @@
entry(
index = 611,
label = "Cds-CbCs_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9134,7 +9134,7 @@
entry(
index = 612,
label = "Cds-CbCs_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9149,7 +9149,7 @@
entry(
index = 613,
label = "Cds-CbCs_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9165,7 +9165,7 @@
entry(
index = 614,
label = "Cds-CbCs_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9180,7 +9180,7 @@
entry(
index = 615,
label = "Cds-CbCs_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9195,7 +9195,7 @@
entry(
index = 616,
label = "Cds-CbCs_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9210,7 +9210,7 @@
entry(
index = 617,
label = "Cds-CbCs_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9225,7 +9225,7 @@
entry(
index = 618,
label = "Cds-CbCs_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9240,7 +9240,7 @@
entry(
index = 619,
label = "Cds-CbCs_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9256,7 +9256,7 @@
entry(
index = 620,
label = "Cds-CbCs_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9271,7 +9271,7 @@
entry(
index = 621,
label = "Cds-CbCs_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9286,7 +9286,7 @@
entry(
index = 622,
label = "Cds-CbCs_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9301,7 +9301,7 @@
entry(
index = 623,
label = "Cds-CbCs_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9316,7 +9316,7 @@
entry(
index = 624,
label = "Cds-CbCs_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9331,7 +9331,7 @@
entry(
index = 625,
label = "Cds-CbCs_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9347,7 +9347,7 @@
entry(
index = 626,
label = "Cds-CbCs_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9362,7 +9362,7 @@
entry(
index = 627,
label = "Cds-CbCs_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9377,7 +9377,7 @@
entry(
index = 628,
label = "Cds-CbCs_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9392,7 +9392,7 @@
entry(
index = 629,
label = "Cds-CbCs_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9407,7 +9407,7 @@
entry(
index = 630,
label = "Cds-CbCs_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9422,7 +9422,7 @@
entry(
index = 631,
label = "Cds-CbCs_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9438,7 +9438,7 @@
entry(
index = 632,
label = "Cds-CbCs_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9453,7 +9453,7 @@
entry(
index = 633,
label = "Cds-CbCs_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9468,7 +9468,7 @@
entry(
index = 634,
label = "Cds-CbCs_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9483,7 +9483,7 @@
entry(
index = 635,
label = "Cds-CbCs_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9498,7 +9498,7 @@
entry(
index = 636,
label = "Cds-CbCs_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9513,7 +9513,7 @@
entry(
index = 637,
label = "Cds-CbCs_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9528,7 +9528,7 @@
entry(
index = 638,
label = "Cds-CbCs_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9543,7 +9543,7 @@
entry(
index = 639,
label = "Cds-CbCs_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9558,7 +9558,7 @@
entry(
index = 640,
label = "Cds-CbCs_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9574,7 +9574,7 @@
entry(
index = 641,
label = "Cds-CbCs_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9590,7 +9590,7 @@
entry(
index = 642,
label = "Cds-CbCs_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9606,7 +9606,7 @@
entry(
index = 643,
label = "Cds-CbCs_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9621,7 +9621,7 @@
entry(
index = 644,
label = "Cds-CbCs_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9636,7 +9636,7 @@
entry(
index = 645,
label = "Cds-CbCs_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9651,7 +9651,7 @@
entry(
index = 646,
label = "Cds-CbCs_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9668,7 +9668,7 @@
entry(
index = 647,
label = "Cds-CbCs_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -9684,7 +9684,7 @@
entry(
index = 648,
label = "Cds-CbCs_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9699,7 +9699,7 @@
entry(
index = 649,
label = "Cds-COCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9714,7 +9714,7 @@
entry(
index = 650,
label = "Cds-CdCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9730,7 +9730,7 @@
entry(
index = 651,
label = "Cds-CdCs_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9746,7 +9746,7 @@
entry(
index = 652,
label = "Cds-CdCs_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9762,7 +9762,7 @@
entry(
index = 653,
label = "Cds-CdCs_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9778,7 +9778,7 @@
entry(
index = 654,
label = "Cds-CdCs_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9794,7 +9794,7 @@
entry(
index = 655,
label = "Cds-CdCs_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9810,7 +9810,7 @@
entry(
index = 656,
label = "Cds-CdCs_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9826,7 +9826,7 @@
entry(
index = 657,
label = "Cds-CdCs_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9842,7 +9842,7 @@
entry(
index = 658,
label = "Cds-CdCs_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9858,7 +9858,7 @@
entry(
index = 659,
label = "Cds-CdCs_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9874,7 +9874,7 @@
entry(
index = 660,
label = "Cds-CdCs_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9890,7 +9890,7 @@
entry(
index = 661,
label = "Cds-CdCs_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9906,7 +9906,7 @@
entry(
index = 662,
label = "Cds-CdCs_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9922,7 +9922,7 @@
entry(
index = 663,
label = "Cds-CdCs_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9938,7 +9938,7 @@
entry(
index = 664,
label = "Cds-CdCs_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9954,7 +9954,7 @@
entry(
index = 665,
label = "Cds-CdCs_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -9970,7 +9970,7 @@
entry(
index = 666,
label = "Cds-CdCs_Cds-(Cd-Cd-Cd)H",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {7,S}
2 *1 Cd u0 {1,D} {4,S} {6,S}
@@ -9988,7 +9988,7 @@
entry(
index = 667,
label = "Cds-CdCs_Cds-CdH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10005,7 +10005,7 @@
entry(
index = 668,
label = "Cds-CdCs_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10021,7 +10021,7 @@
entry(
index = 669,
label = "Cds-CdCs_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10037,7 +10037,7 @@
entry(
index = 670,
label = "Cds-CdCs_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10053,7 +10053,7 @@
entry(
index = 671,
label = "Cds-CdCs_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10069,7 +10069,7 @@
entry(
index = 672,
label = "Cds-CdCs_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10085,7 +10085,7 @@
entry(
index = 673,
label = "Cds-CdCs_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10102,7 +10102,7 @@
entry(
index = 674,
label = "Cds-CdCs_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10118,7 +10118,7 @@
entry(
index = 675,
label = "Cds-CdCs_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10134,7 +10134,7 @@
entry(
index = 676,
label = "Cds-CdCs_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10150,7 +10150,7 @@
entry(
index = 677,
label = "Cds-CdCs_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10166,7 +10166,7 @@
entry(
index = 678,
label = "Cds-CdCs_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10182,7 +10182,7 @@
entry(
index = 679,
label = "Cds-CdCs_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10199,7 +10199,7 @@
entry(
index = 680,
label = "Cds-CdCs_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10215,7 +10215,7 @@
entry(
index = 681,
label = "Cds-CdCs_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10231,7 +10231,7 @@
entry(
index = 682,
label = "Cds-CdCs_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10247,7 +10247,7 @@
entry(
index = 683,
label = "Cds-CdCs_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10263,7 +10263,7 @@
entry(
index = 684,
label = "Cds-CdCs_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10279,7 +10279,7 @@
entry(
index = 685,
label = "Cds-CdCs_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10296,7 +10296,7 @@
entry(
index = 686,
label = "Cds-CdCs_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10312,7 +10312,7 @@
entry(
index = 687,
label = "Cds-CdCs_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10328,7 +10328,7 @@
entry(
index = 688,
label = "Cds-CdCs_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10344,7 +10344,7 @@
entry(
index = 689,
label = "Cds-CdCs_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10360,7 +10360,7 @@
entry(
index = 690,
label = "Cds-CdCs_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10376,7 +10376,7 @@
entry(
index = 691,
label = "Cds-CdCs_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10392,7 +10392,7 @@
entry(
index = 692,
label = "Cds-CdCs_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10408,7 +10408,7 @@
entry(
index = 693,
label = "Cds-CdCs_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10424,7 +10424,7 @@
entry(
index = 694,
label = "Cds-CdCs_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10441,7 +10441,7 @@
entry(
index = 695,
label = "Cds-CdCs_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10458,7 +10458,7 @@
entry(
index = 696,
label = "Cds-CdCs_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10475,7 +10475,7 @@
entry(
index = 697,
label = "Cds-CdCs_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10491,7 +10491,7 @@
entry(
index = 698,
label = "Cds-CdCs_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10507,7 +10507,7 @@
entry(
index = 699,
label = "Cds-CdCs_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10523,7 +10523,7 @@
entry(
index = 700,
label = "Cds-CdCs_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -10541,7 +10541,7 @@
entry(
index = 701,
label = "Cds-CdCs_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -10558,7 +10558,7 @@
entry(
index = 702,
label = "Cds-CdCs_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10574,7 +10574,7 @@
entry(
index = 703,
label = "Cds-C=SCs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10589,7 +10589,7 @@
entry(
index = 704,
label = "Cds-OneDeSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10604,7 +10604,7 @@
entry(
index = 705,
label = "Cds-CtSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10619,7 +10619,7 @@
entry(
index = 706,
label = "Cds-CbSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10634,7 +10634,7 @@
entry(
index = 707,
label = "Cds-COSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10649,7 +10649,7 @@
entry(
index = 708,
label = "Cds-CdSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10665,7 +10665,7 @@
entry(
index = 709,
label = "Cds-C=SSs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10680,7 +10680,7 @@
entry(
index = 710,
label = "Cds-OneDeOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10695,7 +10695,7 @@
entry(
index = 711,
label = "Cds-CtOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10710,7 +10710,7 @@
entry(
index = 712,
label = "Cds-CbOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10725,7 +10725,7 @@
entry(
index = 713,
label = "Cds-COOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10740,7 +10740,7 @@
entry(
index = 714,
label = "Cds-CdOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10756,7 +10756,7 @@
entry(
index = 715,
label = "Cds-C=SOs_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10771,7 +10771,7 @@
entry(
index = 716,
label = "Cds-TwoDe_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10786,7 +10786,7 @@
entry(
index = 717,
label = "Cds-CtCt_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10801,7 +10801,7 @@
entry(
index = 718,
label = "Cds-CtCt_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10816,7 +10816,7 @@
entry(
index = 719,
label = "Cds-CtCt_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10831,7 +10831,7 @@
entry(
index = 720,
label = "Cds-CtCt_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10846,7 +10846,7 @@
entry(
index = 721,
label = "Cds-CtCt_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10861,7 +10861,7 @@
entry(
index = 722,
label = "Cds-CtCt_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10876,7 +10876,7 @@
entry(
index = 723,
label = "Cds-CtCt_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10891,7 +10891,7 @@
entry(
index = 724,
label = "Cds-CtCt_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10906,7 +10906,7 @@
entry(
index = 725,
label = "Cds-CtCt_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10921,7 +10921,7 @@
entry(
index = 726,
label = "Cds-CtCt_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10936,7 +10936,7 @@
entry(
index = 727,
label = "Cds-CtCt_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10951,7 +10951,7 @@
entry(
index = 728,
label = "Cds-CtCt_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10966,7 +10966,7 @@
entry(
index = 729,
label = "Cds-CtCt_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10981,7 +10981,7 @@
entry(
index = 730,
label = "Cds-CtCt_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -10996,7 +10996,7 @@
entry(
index = 731,
label = "Cds-CtCt_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11011,7 +11011,7 @@
entry(
index = 732,
label = "Cds-CtCt_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11026,7 +11026,7 @@
entry(
index = 733,
label = "Cds-CtCt_Cds-CdH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11042,7 +11042,7 @@
entry(
index = 734,
label = "Cds-CtCt_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11057,7 +11057,7 @@
entry(
index = 735,
label = "Cds-CtCt_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11072,7 +11072,7 @@
entry(
index = 736,
label = "Cds-CtCt_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11087,7 +11087,7 @@
entry(
index = 737,
label = "Cds-CtCt_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11102,7 +11102,7 @@
entry(
index = 738,
label = "Cds-CtCt_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11117,7 +11117,7 @@
entry(
index = 739,
label = "Cds-CtCt_Cds-CdCs",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11133,7 +11133,7 @@
entry(
index = 740,
label = "Cds-CtCt_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11148,7 +11148,7 @@
entry(
index = 741,
label = "Cds-CtCt_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11163,7 +11163,7 @@
entry(
index = 742,
label = "Cds-CtCt_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11178,7 +11178,7 @@
entry(
index = 743,
label = "Cds-CtCt_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11193,7 +11193,7 @@
entry(
index = 744,
label = "Cds-CtCt_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11208,7 +11208,7 @@
entry(
index = 745,
label = "Cds-CtCt_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11224,7 +11224,7 @@
entry(
index = 746,
label = "Cds-CtCt_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11239,7 +11239,7 @@
entry(
index = 747,
label = "Cds-CtCt_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11254,7 +11254,7 @@
entry(
index = 748,
label = "Cds-CtCt_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11269,7 +11269,7 @@
entry(
index = 749,
label = "Cds-CtCt_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11284,7 +11284,7 @@
entry(
index = 750,
label = "Cds-CtCt_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11299,7 +11299,7 @@
entry(
index = 751,
label = "Cds-CtCt_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11315,7 +11315,7 @@
entry(
index = 752,
label = "Cds-CtCt_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11330,7 +11330,7 @@
entry(
index = 753,
label = "Cds-CtCt_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11345,7 +11345,7 @@
entry(
index = 754,
label = "Cds-CtCt_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11360,7 +11360,7 @@
entry(
index = 755,
label = "Cds-CtCt_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11375,7 +11375,7 @@
entry(
index = 756,
label = "Cds-CtCt_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11390,7 +11390,7 @@
entry(
index = 757,
label = "Cds-CtCt_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11405,7 +11405,7 @@
entry(
index = 758,
label = "Cds-CtCt_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11420,7 +11420,7 @@
entry(
index = 759,
label = "Cds-CtCt_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11435,7 +11435,7 @@
entry(
index = 760,
label = "Cds-CtCt_Cds-CdCt",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11451,7 +11451,7 @@
entry(
index = 761,
label = "Cds-CtCt_Cds-CdCb",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11467,7 +11467,7 @@
entry(
index = 762,
label = "Cds-CtCt_Cds-CdCO",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11483,7 +11483,7 @@
entry(
index = 763,
label = "Cds-CtCt_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11498,7 +11498,7 @@
entry(
index = 764,
label = "Cds-CtCt_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11513,7 +11513,7 @@
entry(
index = 765,
label = "Cds-CtCt_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11528,7 +11528,7 @@
entry(
index = 766,
label = "Cds-CtCt_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11545,7 +11545,7 @@
entry(
index = 767,
label = "Cds-CtCt_Cds-CdC=S",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -11561,7 +11561,7 @@
entry(
index = 768,
label = "Cds-CtCt_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11576,7 +11576,7 @@
entry(
index = 769,
label = "Cds-CtCb_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11591,7 +11591,7 @@
entry(
index = 770,
label = "Cds-CtCO_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11606,7 +11606,7 @@
entry(
index = 771,
label = "Cds-CbCb_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11621,7 +11621,7 @@
entry(
index = 772,
label = "Cds-CbCO_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11636,7 +11636,7 @@
entry(
index = 773,
label = "Cds-COCO_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11651,7 +11651,7 @@
entry(
index = 774,
label = "Cds-CdCt_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11667,7 +11667,7 @@
entry(
index = 775,
label = "Cds-CdCt_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11683,7 +11683,7 @@
entry(
index = 776,
label = "Cds-CdCt_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11699,7 +11699,7 @@
entry(
index = 777,
label = "Cds-CdCt_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11715,7 +11715,7 @@
entry(
index = 778,
label = "Cds-CdCt_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11731,7 +11731,7 @@
entry(
index = 779,
label = "Cds-CdCt_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11747,7 +11747,7 @@
entry(
index = 780,
label = "Cds-CdCt_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11763,7 +11763,7 @@
entry(
index = 781,
label = "Cds-CdCt_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11779,7 +11779,7 @@
entry(
index = 782,
label = "Cds-CdCt_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11795,7 +11795,7 @@
entry(
index = 783,
label = "Cds-CdCt_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11811,7 +11811,7 @@
entry(
index = 784,
label = "Cds-CdCt_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11827,7 +11827,7 @@
entry(
index = 785,
label = "Cds-CdCt_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11843,7 +11843,7 @@
entry(
index = 786,
label = "Cds-CdCt_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11859,7 +11859,7 @@
entry(
index = 787,
label = "Cds-CdCt_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11875,7 +11875,7 @@
entry(
index = 788,
label = "Cds-CdCt_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11891,7 +11891,7 @@
entry(
index = 789,
label = "Cds-CdCt_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11907,7 +11907,7 @@
entry(
index = 790,
label = "Cds-CdCt_Cds-CdH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -11924,7 +11924,7 @@
entry(
index = 791,
label = "Cds-CdCt_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11940,7 +11940,7 @@
entry(
index = 792,
label = "Cds-CdCt_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11956,7 +11956,7 @@
entry(
index = 793,
label = "Cds-CdCt_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11972,7 +11972,7 @@
entry(
index = 794,
label = "Cds-CdCt_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -11988,7 +11988,7 @@
entry(
index = 795,
label = "Cds-CdCt_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12004,7 +12004,7 @@
entry(
index = 796,
label = "Cds-CdCt_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -12021,7 +12021,7 @@
entry(
index = 797,
label = "Cds-CdCt_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12037,7 +12037,7 @@
entry(
index = 798,
label = "Cds-CdCt_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12053,7 +12053,7 @@
entry(
index = 799,
label = "Cds-CdCt_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12069,7 +12069,7 @@
entry(
index = 800,
label = "Cds-CdCt_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12085,7 +12085,7 @@
entry(
index = 801,
label = "Cds-CdCt_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12101,7 +12101,7 @@
entry(
index = 802,
label = "Cds-CdCt_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12118,7 +12118,7 @@
entry(
index = 803,
label = "Cds-CdCt_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12134,7 +12134,7 @@
entry(
index = 804,
label = "Cds-CdCt_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12150,7 +12150,7 @@
entry(
index = 805,
label = "Cds-CdCt_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12166,7 +12166,7 @@
entry(
index = 806,
label = "Cds-CdCt_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12182,7 +12182,7 @@
entry(
index = 807,
label = "Cds-CdCt_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12198,7 +12198,7 @@
entry(
index = 808,
label = "Cds-CdCt_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12215,7 +12215,7 @@
entry(
index = 809,
label = "Cds-CdCt_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12231,7 +12231,7 @@
entry(
index = 810,
label = "Cds-CdCt_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12247,7 +12247,7 @@
entry(
index = 811,
label = "Cds-CdCt_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12263,7 +12263,7 @@
entry(
index = 812,
label = "Cds-CdCt_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12279,7 +12279,7 @@
entry(
index = 813,
label = "Cds-CdCt_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12295,7 +12295,7 @@
entry(
index = 814,
label = "Cds-CdCt_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12311,7 +12311,7 @@
entry(
index = 815,
label = "Cds-CdCt_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12327,7 +12327,7 @@
entry(
index = 816,
label = "Cds-CdCt_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12343,7 +12343,7 @@
entry(
index = 817,
label = "Cds-CdCt_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -12360,7 +12360,7 @@
entry(
index = 818,
label = "Cds-CdCt_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -12377,7 +12377,7 @@
entry(
index = 819,
label = "Cds-CdCt_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -12394,7 +12394,7 @@
entry(
index = 820,
label = "Cds-CdCt_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12410,7 +12410,7 @@
entry(
index = 821,
label = "Cds-CdCt_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12426,7 +12426,7 @@
entry(
index = 822,
label = "Cds-CdCt_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12442,7 +12442,7 @@
entry(
index = 823,
label = "Cds-CdCt_Cds-CdCd",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 Cd u0 {1,D} {5,S} {6,S}
@@ -12460,7 +12460,7 @@
entry(
index = 824,
label = "Cds-CdCt_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {5,S}
2 *2 Cd u0 {1,D} {4,S} {6,S}
@@ -12477,7 +12477,7 @@
entry(
index = 825,
label = "Cds-CdCt_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12493,7 +12493,7 @@
entry(
index = 826,
label = "Cds-CdCb_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12509,7 +12509,7 @@
entry(
index = 827,
label = "Cds-CdCO_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12525,7 +12525,7 @@
entry(
index = 828,
label = "Cds-CtC=S_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12540,7 +12540,7 @@
entry(
index = 829,
label = "Cds-CbC=S_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12555,7 +12555,7 @@
entry(
index = 830,
label = "Cds-COC=S_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12570,7 +12570,7 @@
entry(
index = 831,
label = "Cds-CdCd_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12587,7 +12587,7 @@
entry(
index = 832,
label = "Cds-CdCd_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12604,7 +12604,7 @@
entry(
index = 833,
label = "Cds-CdCd_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12621,7 +12621,7 @@
entry(
index = 834,
label = "Cds-CdCd_Cds-CsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12638,7 +12638,7 @@
entry(
index = 835,
label = "Cds-CdCd_Cds-OsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12655,7 +12655,7 @@
entry(
index = 836,
label = "Cds-CdCd_Cds-OsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12672,7 +12672,7 @@
entry(
index = 837,
label = "Cds-CdCd_Cds-OsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12689,7 +12689,7 @@
entry(
index = 838,
label = "Cds-CdCd_Cds-SsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12706,7 +12706,7 @@
entry(
index = 839,
label = "Cds-CdCd_Cds-SsCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12723,7 +12723,7 @@
entry(
index = 840,
label = "Cds-CdCd_Cds-SsOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12740,7 +12740,7 @@
entry(
index = 841,
label = "Cds-CdCd_Cds-SsSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12757,7 +12757,7 @@
entry(
index = 842,
label = "Cds-CdCd_Cds-OneDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12774,7 +12774,7 @@
entry(
index = 843,
label = "Cds-CdCd_Cds-OneDeH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12791,7 +12791,7 @@
entry(
index = 844,
label = "Cds-CdCd_Cds-CtH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12808,7 +12808,7 @@
entry(
index = 845,
label = "Cds-CdCd_Cds-CbH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12825,7 +12825,7 @@
entry(
index = 846,
label = "Cds-CdCd_Cds-COH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12842,7 +12842,7 @@
entry(
index = 847,
label = "Cds-CdCd_Cds-CdH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12860,7 +12860,7 @@
entry(
index = 848,
label = "Cds-CdCd_Cds-C=SH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12877,7 +12877,7 @@
entry(
index = 849,
label = "Cds-CdCd_Cds-OneDeCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12894,7 +12894,7 @@
entry(
index = 850,
label = "Cds-CdCd_Cds-CtCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12911,7 +12911,7 @@
entry(
index = 851,
label = "Cds-CdCd_Cds-CbCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12928,7 +12928,7 @@
entry(
index = 852,
label = "Cds-CdCd_Cds-COCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12945,7 +12945,7 @@
entry(
index = 853,
label = "Cds-CdCd_Cds-CdCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12963,7 +12963,7 @@
entry(
index = 854,
label = "Cds-CdCd_Cds-C=SCs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12980,7 +12980,7 @@
entry(
index = 855,
label = "Cds-CdCd_Cds-OneDeOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -12997,7 +12997,7 @@
entry(
index = 856,
label = "Cds-CdCd_Cds-CtOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13014,7 +13014,7 @@
entry(
index = 857,
label = "Cds-CdCd_Cds-CbOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13031,7 +13031,7 @@
entry(
index = 858,
label = "Cds-CdCd_Cds-COOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13048,7 +13048,7 @@
entry(
index = 859,
label = "Cds-CdCd_Cds-CdOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13066,7 +13066,7 @@
entry(
index = 860,
label = "Cds-CdCd_Cds-C=SOs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13083,7 +13083,7 @@
entry(
index = 861,
label = "Cds-CdCd_Cds-OneDeSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13100,7 +13100,7 @@
entry(
index = 862,
label = "Cds-CdCd_Cds-CtSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13117,7 +13117,7 @@
entry(
index = 863,
label = "Cds-CdCd_Cds-CbSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13134,7 +13134,7 @@
entry(
index = 864,
label = "Cds-CdCd_Cds-COSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13151,7 +13151,7 @@
entry(
index = 865,
label = "Cds-CdCd_Cds-CdSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13169,7 +13169,7 @@
entry(
index = 866,
label = "Cds-CdCd_Cds-C=SSs",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13186,7 +13186,7 @@
entry(
index = 867,
label = "Cds-CdCd_Cds-TwoDe",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13203,7 +13203,7 @@
entry(
index = 868,
label = "Cds-CdCd_Cds-CtCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13220,7 +13220,7 @@
entry(
index = 869,
label = "Cds-CdCd_Cds-CtCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13237,7 +13237,7 @@
entry(
index = 870,
label = "Cds-CdCd_Cds-CtCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13254,7 +13254,7 @@
entry(
index = 871,
label = "Cds-CdCd_Cds-CbCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13271,7 +13271,7 @@
entry(
index = 872,
label = "Cds-CdCd_Cds-CbCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13288,7 +13288,7 @@
entry(
index = 873,
label = "Cds-CdCd_Cds-COCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13305,7 +13305,7 @@
entry(
index = 874,
label = "Cds-CdCd_Cds-CdCt",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13323,7 +13323,7 @@
entry(
index = 875,
label = "Cds-CdCd_Cds-CdCb",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13341,7 +13341,7 @@
entry(
index = 876,
label = "Cds-CdCd_Cds-CdCO",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13359,7 +13359,7 @@
entry(
index = 877,
label = "Cds-CdCd_Cds-CtC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13376,7 +13376,7 @@
entry(
index = 878,
label = "Cds-CdCd_Cds-CbC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13393,7 +13393,7 @@
entry(
index = 879,
label = "Cds-CdCd_Cds-COC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13410,7 +13410,7 @@
entry(
index = 880,
label = "Cds-CdCd_Cds-CdCd",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13429,7 +13429,7 @@
entry(
index = 881,
label = "Cds-CdCd_Cds-CdC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13447,7 +13447,7 @@
entry(
index = 882,
label = "Cds-CdCd_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13464,7 +13464,7 @@
entry(
index = 883,
label = "Cds-CdC=S_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13480,7 +13480,7 @@
entry(
index = 884,
label = "Cds-C=SC=S_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13495,7 +13495,7 @@
entry(
index = 885,
label = "Cds-OJH_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13510,7 +13510,7 @@
entry(
index = 886,
label = "Cds-OJH_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13525,7 +13525,7 @@
entry(
index = 887,
label = "Cds-OJH_Cds-CsH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13540,7 +13540,7 @@
entry(
index = 888,
label = "Cds-OJNonDe_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13555,7 +13555,7 @@
entry(
index = 889,
label = "Cds-OJCs_Cds-HH",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13570,7 +13570,7 @@
entry(
index = 890,
label = "Cds-OJDe_Cds",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -13585,7 +13585,7 @@
entry(
index = 891,
label = "Ct_R",
- group =
+ group =
"""
1 *1 Ct u0 {2,T}
2 *2 R!H u0 {1,T}
@@ -13596,7 +13596,7 @@
entry(
index = 892,
label = "Ct_Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T}
2 *2 Ct u0 {1,T}
@@ -13607,7 +13607,7 @@
entry(
index = 893,
label = "Ct-H_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13620,7 +13620,7 @@
entry(
index = 894,
label = "Ct-H_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13633,7 +13633,7 @@
entry(
index = 895,
label = "Ct-Cs_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13646,7 +13646,7 @@
entry(
index = 896,
label = "Ct-Cs_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13659,7 +13659,7 @@
entry(
index = 897,
label = "Ct-H_Ct-De",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13672,7 +13672,7 @@
entry(
index = 898,
label = "Ct-H_Ct-Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13685,7 +13685,7 @@
entry(
index = 899,
label = "Ct-H_Ct-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13698,7 +13698,7 @@
entry(
index = 900,
label = "Ct-H_Ct-CO",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13711,7 +13711,7 @@
entry(
index = 901,
label = "Ct-H_Ct-Cd",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 Ct u0 {1,T} {4,S}
@@ -13725,7 +13725,7 @@
entry(
index = 902,
label = "Ct-H_Ct-Cd-C-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13740,7 +13740,7 @@
entry(
index = 903,
label = "Ct-H_Ct-C=S",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13753,7 +13753,7 @@
entry(
index = 904,
label = "Ct-Cs_Ct-De",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13766,7 +13766,7 @@
entry(
index = 905,
label = "Ct-Cs_Ct-Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13779,7 +13779,7 @@
entry(
index = 906,
label = "Ct-Cs_Ct-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13792,7 +13792,7 @@
entry(
index = 907,
label = "Ct-Cs_Ct-CO",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13805,7 +13805,7 @@
entry(
index = 908,
label = "Ct-Cs_Ct-Cd",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 Ct u0 {1,T} {4,S}
@@ -13819,7 +13819,7 @@
entry(
index = 909,
label = "Ct-Cs_Ct-C=S",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13832,7 +13832,7 @@
entry(
index = 910,
label = "Ct-De_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13845,7 +13845,7 @@
entry(
index = 911,
label = "Ct-Cb_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13858,7 +13858,7 @@
entry(
index = 912,
label = "Ct-CO_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13871,7 +13871,7 @@
entry(
index = 913,
label = "Ct-Cd_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13885,7 +13885,7 @@
entry(
index = 914,
label = "Ct-Ct_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13899,7 +13899,7 @@
entry(
index = 915,
label = "Ct-C=S_Ct-H",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13912,7 +13912,7 @@
entry(
index = 916,
label = "Ct-De_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13925,7 +13925,7 @@
entry(
index = 917,
label = "Ct-Cb_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13938,7 +13938,7 @@
entry(
index = 918,
label = "Ct-CO_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13951,7 +13951,7 @@
entry(
index = 919,
label = "Ct-Cd_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13964,7 +13964,7 @@
entry(
index = 920,
label = "Ct-Ct_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13978,7 +13978,7 @@
entry(
index = 921,
label = "Ct-CS_Ct-Cs",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -13991,7 +13991,7 @@
entry(
index = 922,
label = "Ct-De_Ct-De",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14004,7 +14004,7 @@
entry(
index = 923,
label = "Ct-Ct_Ct-Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14017,7 +14017,7 @@
entry(
index = 924,
label = "Ct-Cd_Ct-Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14031,7 +14031,7 @@
entry(
index = 925,
label = "Ct-Ct_Ct-Cd",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 Ct u0 {1,T} {4,S}
@@ -14045,7 +14045,7 @@
entry(
index = 926,
label = "Ct-Cd_Ct-Cd",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14060,7 +14060,7 @@
entry(
index = 927,
label = "Ct-Cd_Ct-Cd_cyc6",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14075,7 +14075,7 @@
entry(
index = 928,
label = "Ct-De_Ct-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14088,7 +14088,7 @@
entry(
index = 929,
label = "Ct-Cd_Ct-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14101,7 +14101,7 @@
entry(
index = 930,
label = "Ct-CdCdCb_Ct-Cb_cyc6",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14116,7 +14116,7 @@
entry(
index = 931,
label = "Ct-Cb_Ct-Cd",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {4,S}
2 *2 Ct u0 {1,T} {3,S}
@@ -14129,7 +14129,7 @@
entry(
index = 932,
label = "Ct-Cb_Ct-CdCdCb_cyc6",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 Ct u0 {1,T} {4,S}
@@ -14144,7 +14144,7 @@
entry(
index = 933,
label = "Ct-Cb_Ct-CdCb_cyc5",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {4,S}
2 *2 Ct u0 {1,T} {3,S}
@@ -14158,7 +14158,7 @@
entry(
index = 934,
label = "Ct-O_Ct",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T}
@@ -14170,7 +14170,7 @@
entry(
index = 935,
label = "Ct-O_Ct-Cb",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 Ct u0 {1,T} {4,S}
@@ -14183,7 +14183,7 @@
entry(
index = 936,
label = "Ct_Nt",
- group =
+ group =
"""
1 *1 Ct u0 {2,T}
2 *2 [N3t,N5tc] u0 {1,T}
@@ -14194,7 +14194,7 @@
entry(
index = 937,
label = "Ct_N3t",
- group =
+ group =
"""
1 *1 Ct u0 {2,T}
2 *2 N3t u0 {1,T}
@@ -14205,7 +14205,7 @@
entry(
index = 938,
label = "Ct-H_N3t",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 N3t u0 {1,T}
@@ -14217,7 +14217,7 @@
entry(
index = 939,
label = "Ct-NonDe_N3t",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 N3t u0 {1,T}
@@ -14229,7 +14229,7 @@
entry(
index = 940,
label = "Ct-OneDe_N3t",
- group =
+ group =
"""
1 *1 Ct u0 {2,T} {3,S}
2 *2 N3t u0 {1,T}
@@ -14241,7 +14241,7 @@
entry(
index = 941,
label = "Ct_N5t",
- group =
+ group =
"""
1 *1 Ct u0 {2,T}
2 *2 N5tc u0 {1,T}
@@ -14252,7 +14252,7 @@
entry(
index = 942,
label = "Od_R",
- group =
+ group =
"""
1 *1 O2d u0 {2,D}
2 *2 R!H u0 {1,D}
@@ -14263,7 +14263,7 @@
entry(
index = 943,
label = "Od_CO",
- group =
+ group =
"""
1 *2 C u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14276,7 +14276,7 @@
entry(
index = 944,
label = "Od_CO-HH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14289,7 +14289,7 @@
entry(
index = 945,
label = "Od_CO-NdH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14302,7 +14302,7 @@
entry(
index = 946,
label = "Od_CO-CsH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14315,7 +14315,7 @@
entry(
index = 947,
label = "Od_CO-NdNd",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14328,7 +14328,7 @@
entry(
index = 948,
label = "Od_CO-CsCs",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14341,7 +14341,7 @@
entry(
index = 949,
label = "Od_CO-DeH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14354,7 +14354,7 @@
entry(
index = 950,
label = "Od_CO-CdH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14367,7 +14367,7 @@
entry(
index = 951,
label = "Od_CO-CtH",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14380,7 +14380,7 @@
entry(
index = 952,
label = "Od_CO-DeNd",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14393,7 +14393,7 @@
entry(
index = 953,
label = "Od_CO-CdCs",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14406,7 +14406,7 @@
entry(
index = 954,
label = "Od_CO-CtCs",
- group =
+ group =
"""
1 *2 CO u0 {2,D} {3,S} {4,S}
2 *1 O2d u0 {1,D}
@@ -14419,7 +14419,7 @@
entry(
index = 955,
label = "Od_Cdd",
- group =
+ group =
"""
1 *2 C u0 {2,D} {3,D}
2 *1 O2d u0 {1,D}
@@ -14431,7 +14431,7 @@
entry(
index = 956,
label = "Od_Cdd-O2d",
- group =
+ group =
"""
1 *1 O2d u0 {2,D}
2 *2 C u0 {1,D} {3,D}
@@ -14443,7 +14443,7 @@
entry(
index = 957,
label = "Od_Nd",
- group =
+ group =
"""
1 *1 O2d u0 {2,D}
2 *2 N u0 {1,D}
@@ -14454,7 +14454,7 @@
entry(
index = 958,
label = "Od_N3d",
- group =
+ group =
"""
1 *1 O2d u0 {2,D}
2 *2 N3d u0 {1,D}
@@ -14465,7 +14465,7 @@
entry(
index = 959,
label = "Od_N5dc",
- group =
+ group =
"""
1 *1 O2d u0 {2,D}
2 *2 N5dc u0 {1,D}
@@ -14483,7 +14483,7 @@
entry(
index = 961,
label = "N1dc_R",
- group =
+ group =
"""
1 *1 N1dc u0 p2 {2,D}
2 *2 R!H u0 {1,D}
@@ -14494,7 +14494,7 @@
entry(
index = 962,
label = "N3d_R",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 R!H u0 {1,D}
@@ -14505,7 +14505,7 @@
entry(
index = 963,
label = "N3d_Cd",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 [Cd,Cdd] u0 {1,D}
@@ -14516,7 +14516,7 @@
entry(
index = 964,
label = "N3d_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D}
@@ -14529,7 +14529,7 @@
entry(
index = 965,
label = "N3d-H_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14543,7 +14543,7 @@
entry(
index = 966,
label = "N3d-H_Cds-HH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14557,7 +14557,7 @@
entry(
index = 967,
label = "N3d-H_Cds-NonDeH",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14571,7 +14571,7 @@
entry(
index = 968,
label = "N3d-H_Cds-NonDe2",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14585,7 +14585,7 @@
entry(
index = 969,
label = "N3d-NonDe_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14599,7 +14599,7 @@
entry(
index = 970,
label = "N3d-OneDe_Cds",
- group =
+ group =
"""
1 *2 Cd u0 {2,D} {3,S} {4,S}
2 *1 N3d u0 {1,D} {5,S}
@@ -14613,7 +14613,7 @@
entry(
index = 971,
label = "N3d_Cdd",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 Cdd u0 {1,D}
@@ -14624,7 +14624,7 @@
entry(
index = 972,
label = "N3d_Od",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 O2d u0 {1,D}
@@ -14635,7 +14635,7 @@
entry(
index = 973,
label = "N3d-H_Od",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 O2d u0 {1,D}
@@ -14647,7 +14647,7 @@
entry(
index = 974,
label = "N3d-NonDe_Od",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 O2d u0 {1,D}
@@ -14659,7 +14659,7 @@
entry(
index = 975,
label = "N3d-OneDe_Od",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 O2d u0 {1,D}
@@ -14671,7 +14671,7 @@
entry(
index = 976,
label = "N3d_Nd",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 N u0 {1,D}
@@ -14682,7 +14682,7 @@
entry(
index = 977,
label = "N3d_N3d",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 N3d u0 {1,D}
@@ -14693,7 +14693,7 @@
entry(
index = 978,
label = "N3d-H_N3d",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D}
@@ -14705,7 +14705,7 @@
entry(
index = 979,
label = "N3d-H_N3d-H",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D} {4,S}
@@ -14718,7 +14718,7 @@
entry(
index = 980,
label = "N3d-H_N3d-NonDe",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D} {4,S}
@@ -14731,7 +14731,7 @@
entry(
index = 981,
label = "N3d-H_N3d-OneDe",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D} {4,S}
@@ -14744,7 +14744,7 @@
entry(
index = 982,
label = "N3d-NonDe_N3d",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D}
@@ -14756,7 +14756,7 @@
entry(
index = 983,
label = "N3d-OneDe_N3d",
- group =
+ group =
"""
1 *1 N3d u0 {2,D} {3,S}
2 *2 N3d u0 {1,D}
@@ -14768,7 +14768,7 @@
entry(
index = 984,
label = "N3d_N5dc",
- group =
+ group =
"""
1 *1 N3d u0 {2,D}
2 *2 [N5dc,N5tc] u0 {1,D}
@@ -14786,7 +14786,7 @@
entry(
index = 986,
label = "N3t_R",
- group =
+ group =
"""
1 *1 N3t u0 {2,T}
2 *2 R!H u0 {1,T}
@@ -14797,7 +14797,7 @@
entry(
index = 987,
label = "N3t_Ct",
- group =
+ group =
"""
1 *1 N3t u0 {2,T}
2 *2 Ct u0 {1,T}
@@ -14808,7 +14808,7 @@
entry(
index = 988,
label = "N3t_Ct-H",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 N3t u0 {1,T}
@@ -14820,7 +14820,7 @@
entry(
index = 989,
label = "N3t_Ct-NonDe",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 N3t u0 {1,T}
@@ -14832,7 +14832,7 @@
entry(
index = 990,
label = "N3t_Ct-OneDe",
- group =
+ group =
"""
1 *2 Ct u0 {2,T} {3,S}
2 *1 N3t u0 {1,T}
@@ -14844,7 +14844,7 @@
entry(
index = 991,
label = "N3t_N3t",
- group =
+ group =
"""
1 *1 N3t u0 {2,T}
2 *2 N3t u0 {1,T}
@@ -14855,7 +14855,7 @@
entry(
index = 992,
label = "N5t_R",
- group =
+ group =
"""
1 *1 N5tc u0 {2,T}
2 *2 R!H u0 {1,T}
@@ -14866,7 +14866,7 @@
entry(
index = 993,
label = "Sd_R",
- group =
+ group =
"""
1 *1 S u0 {2,D}
2 *2 R!H u0 {1,D}
@@ -14877,7 +14877,7 @@
entry(
index = 994,
label = "Sd_Cdd",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 Cdd u0 {1,D} {3,D}
@@ -14889,7 +14889,7 @@
entry(
index = 995,
label = "Sd_Cdd-S2d",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 Cdd u0 {1,D} {3,D}
@@ -14901,7 +14901,7 @@
entry(
index = 996,
label = "Sd_Cd",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14914,7 +14914,7 @@
entry(
index = 997,
label = "Sd_Cds-HH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14927,7 +14927,7 @@
entry(
index = 998,
label = "Sd_Cds-CsH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14940,7 +14940,7 @@
entry(
index = 999,
label = "Sd_Cds-OsH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14953,7 +14953,7 @@
entry(
index = 1000,
label = "Sd_Cds-OsCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14966,7 +14966,7 @@
entry(
index = 1001,
label = "Sd_Cds-CsCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14979,7 +14979,7 @@
entry(
index = 1002,
label = "Sd_Cds-OneDeH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -14992,7 +14992,7 @@
entry(
index = 1003,
label = "Sd_Cds-CtH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15005,7 +15005,7 @@
entry(
index = 1004,
label = "Sd_Cds-CbH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15018,7 +15018,7 @@
entry(
index = 1005,
label = "Sd_Cds-COH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15031,7 +15031,7 @@
entry(
index = 1006,
label = "Sd_Cds-CdH",
- group =
+ group =
"""
1 *2 CS u0 {2,S} {3,D} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -15045,7 +15045,7 @@
entry(
index = 1007,
label = "Sd_Cds-C=SH",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15058,7 +15058,7 @@
entry(
index = 1008,
label = "Sd_Cds-OneDeCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15071,7 +15071,7 @@
entry(
index = 1009,
label = "Sd_Cds-CtCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15084,7 +15084,7 @@
entry(
index = 1010,
label = "Sd_Cds-CbCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15097,7 +15097,7 @@
entry(
index = 1011,
label = "Sd_Cds-COCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15110,7 +15110,7 @@
entry(
index = 1012,
label = "Sd_Cds-CdCs",
- group =
+ group =
"""
1 *2 CS u0 {2,S} {3,D} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -15124,7 +15124,7 @@
entry(
index = 1013,
label = "Sd_Cds-C=SCs",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15137,7 +15137,7 @@
entry(
index = 1014,
label = "Sd_Cds-TwoDe",
- group =
+ group =
"""
1 *2 CS u0 {2,D} {3,S} {4,S}
2 *1 S2d u0 p2 {1,D}
@@ -15150,7 +15150,7 @@
entry(
index = 1015,
label = "Sd_Cds-CtCt",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15163,7 +15163,7 @@
entry(
index = 1016,
label = "Sd_Cds-CtCb",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15176,7 +15176,7 @@
entry(
index = 1017,
label = "Sd_Cds-CtCO",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15189,7 +15189,7 @@
entry(
index = 1018,
label = "Sd_Cds-CbCb",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15202,7 +15202,7 @@
entry(
index = 1019,
label = "Sd_Cds-CbCO",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15215,7 +15215,7 @@
entry(
index = 1020,
label = "Sd_Cds-COCO",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15228,7 +15228,7 @@
entry(
index = 1021,
label = "Sd_Cds-CdCt",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15242,7 +15242,7 @@
entry(
index = 1022,
label = "Sd_Cds-CdCb",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15256,7 +15256,7 @@
entry(
index = 1023,
label = "Sd_Cds-CdCO",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15270,7 +15270,7 @@
entry(
index = 1024,
label = "Sd_Cds-CtC=S",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15283,7 +15283,7 @@
entry(
index = 1025,
label = "Sd_Cds-CbC=S",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15296,7 +15296,7 @@
entry(
index = 1026,
label = "Sd_Cds-COC=S",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15309,7 +15309,7 @@
entry(
index = 1027,
label = "Sd_Cds-CdCd",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15324,7 +15324,7 @@
entry(
index = 1028,
label = "Sd_Cds-CdC=S",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15338,7 +15338,7 @@
entry(
index = 1029,
label = "Sd_Cds-C=SC=S",
- group =
+ group =
"""
1 *1 S2d u0 p2 {2,D}
2 *2 CS u0 {1,D} {3,S} {4,S}
@@ -15351,7 +15351,7 @@
entry(
index = 1030,
label = "HJ",
- group =
+ group =
"""
1 *3 H u1
""",
@@ -15368,7 +15368,7 @@
entry(
index = 1032,
label = "C_quintet",
- group =
+ group =
"""
1 *3 C u4 p0
""",
@@ -15378,7 +15378,7 @@
entry(
index = 1033,
label = "C_triplet",
- group =
+ group =
"""
1 *3 C u2 p1
""",
@@ -15395,7 +15395,7 @@
entry(
index = 1035,
label = "N_atom_quartet",
- group =
+ group =
"""
1 *3 N u3 p1
""",
@@ -15405,7 +15405,7 @@
entry(
index = 1036,
label = "N_atom_doublet",
- group =
+ group =
"""
1 *3 N u1 p2
""",
@@ -15415,7 +15415,7 @@
entry(
index = 1037,
label = "CH_quartet",
- group =
+ group =
"""
1 *3 Cs u3 p0 {2,S}
2 H u0 {1,S}
@@ -15426,7 +15426,7 @@
entry(
index = 1038,
label = "CH_doublet",
- group =
+ group =
"""
1 *3 C u1 p1 {2,S}
2 H u0 {1,S}
@@ -15437,7 +15437,7 @@
entry(
index = 1039,
label = "Y_1centerbirad",
- group =
+ group =
"""
1 *3 R!H u2
""",
@@ -15447,7 +15447,7 @@
entry(
index = 1040,
label = "O_atom_triplet",
- group =
+ group =
"""
1 *3 O u2
""",
@@ -15457,7 +15457,7 @@
entry(
index = 1041,
label = "SJJ",
- group =
+ group =
"""
1 *3 S u2
""",
@@ -15467,7 +15467,7 @@
entry(
index = 1042,
label = "CH2_triplet",
- group =
+ group =
"""
1 *3 C u2 {2,S} {3,S}
2 H u0 {1,S}
@@ -15479,7 +15479,7 @@
entry(
index = 1043,
label = "CO_birad",
- group =
+ group =
"""
1 *3 C u2 {2,D}
2 O2d u0 {1,D}
@@ -15490,7 +15490,7 @@
entry(
index = 1044,
label = "NH_triplet",
- group =
+ group =
"""
1 *3 N3s u2 {2,S}
2 H u0 {1,S}
@@ -15501,7 +15501,7 @@
entry(
index = 1045,
label = "CJ",
- group =
+ group =
"""
1 *3 C u1 p0
""",
@@ -15511,7 +15511,7 @@
entry(
index = 1046,
label = "CbJ",
- group =
+ group =
"""
1 *3 Cb u1 p0
""",
@@ -15521,7 +15521,7 @@
entry(
index = 1047,
label = "CtJ",
- group =
+ group =
"""
1 *3 Ct u1 p0 {2,T}
2 R!H u0 {1,T}
@@ -15532,7 +15532,7 @@
entry(
index = 1048,
label = "CtJ_Ct",
- group =
+ group =
"""
1 *3 Ct u1 p0 {2,T}
2 Ct u0 {1,T}
@@ -15543,7 +15543,7 @@
entry(
index = 1049,
label = "CtJ_N3t",
- group =
+ group =
"""
1 *3 Ct u1 p0 {2,T}
2 N3t u0 {1,T}
@@ -15554,7 +15554,7 @@
entry(
index = 1050,
label = "C2b",
- group =
+ group =
"""
1 *3 C u1 p0 {2,T}
2 C u1 {1,T}
@@ -15565,7 +15565,7 @@
entry(
index = 1051,
label = "C=SJ",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 R u0 {1,S}
@@ -15576,7 +15576,7 @@
entry(
index = 1052,
label = "C=SJ-H",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 H u0 {1,S}
@@ -15587,7 +15587,7 @@
entry(
index = 1053,
label = "C=SJ-Cs",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 Cs u0 {1,S}
@@ -15598,7 +15598,7 @@
entry(
index = 1054,
label = "C=SJ-Ct",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 Ct u0 {1,S}
@@ -15609,7 +15609,7 @@
entry(
index = 1055,
label = "C=SJ-Cb",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 Cb u0 {1,S}
@@ -15620,7 +15620,7 @@
entry(
index = 1056,
label = "C=SJ-CO",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 CO u0 {1,S}
@@ -15631,7 +15631,7 @@
entry(
index = 1057,
label = "C=SJ-O2s",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 O2s u0 {1,S}
@@ -15642,7 +15642,7 @@
entry(
index = 1058,
label = "C=SJ-S2s",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 S2s u0 {1,S}
@@ -15653,7 +15653,7 @@
entry(
index = 1059,
label = "C=SJ-Cd",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 Cd u0 {1,S} {3,D}
@@ -15665,7 +15665,7 @@
entry(
index = 1060,
label = "C=SJ-C=S",
- group =
+ group =
"""
1 *3 CS u1 p0 {2,S}
2 CS u0 {1,S}
@@ -15676,7 +15676,7 @@
entry(
index = 1061,
label = "CO_rad",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 O u0 {1,D}
@@ -15688,7 +15688,7 @@
entry(
index = 1062,
label = "CO_pri_rad",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 O u0 {1,D}
@@ -15700,7 +15700,7 @@
entry(
index = 1063,
label = "CO_sec_rad",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 O u0 {1,D}
@@ -15712,7 +15712,7 @@
entry(
index = 1064,
label = "CO_rad/NonDe",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 O u0 {1,D}
@@ -15724,7 +15724,7 @@
entry(
index = 1065,
label = "CO_rad/OneDe",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 O u0 {1,D}
@@ -15736,7 +15736,7 @@
entry(
index = 1066,
label = "CsJ",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 R u0 {1,S}
@@ -15749,7 +15749,7 @@
entry(
index = 1067,
label = "CsJ-HHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -15762,7 +15762,7 @@
entry(
index = 1068,
label = "CsJ-CsHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cs u0 {1,S}
@@ -15775,7 +15775,7 @@
entry(
index = 1069,
label = "CsJ-CsCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cs u0 {1,S}
@@ -15788,7 +15788,7 @@
entry(
index = 1070,
label = "CsJ-CsCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cs u0 {1,S}
@@ -15801,7 +15801,7 @@
entry(
index = 1071,
label = "CsJ-OsHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15814,7 +15814,7 @@
entry(
index = 1072,
label = "CsJ-OsCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15827,7 +15827,7 @@
entry(
index = 1073,
label = "CsJ-OsCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15840,7 +15840,7 @@
entry(
index = 1074,
label = "CsJ-OsOsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15853,7 +15853,7 @@
entry(
index = 1075,
label = "CsJ-OsOsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15866,7 +15866,7 @@
entry(
index = 1076,
label = "CsJ-OsOsOs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 O2s u0 {1,S}
@@ -15879,7 +15879,7 @@
entry(
index = 1077,
label = "CsJ-SsHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15892,7 +15892,7 @@
entry(
index = 1078,
label = "CsJ-SsCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15905,7 +15905,7 @@
entry(
index = 1079,
label = "CsJ-SsCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15918,7 +15918,7 @@
entry(
index = 1080,
label = "CsJ-SsSsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15931,7 +15931,7 @@
entry(
index = 1081,
label = "CsJ-SsSsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15944,7 +15944,7 @@
entry(
index = 1082,
label = "CsJ-SsSsSs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 S2s u0 {1,S}
@@ -15957,7 +15957,7 @@
entry(
index = 1083,
label = "CsJ-NsHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -15970,7 +15970,7 @@
entry(
index = 1084,
label = "CsJ-NsCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -15983,7 +15983,7 @@
entry(
index = 1085,
label = "CsJ-OneDe",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -15996,7 +15996,7 @@
entry(
index = 1086,
label = "CsJ-OneDeHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16009,7 +16009,7 @@
entry(
index = 1087,
label = "CsJ-CtHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16022,7 +16022,7 @@
entry(
index = 1088,
label = "CsJ-CbHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16035,7 +16035,7 @@
entry(
index = 1089,
label = "CsJ-COHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16048,7 +16048,7 @@
entry(
index = 1090,
label = "CsJ-CdHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16062,7 +16062,7 @@
entry(
index = 1091,
label = "CsJ-(CdC)HH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D} {6,S}
@@ -16077,7 +16077,7 @@
entry(
index = 1092,
label = "CsJ-C=SHH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -16090,7 +16090,7 @@
entry(
index = 1093,
label = "CsJ-OneDeCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16103,7 +16103,7 @@
entry(
index = 1094,
label = "CsJ-CtCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16116,7 +16116,7 @@
entry(
index = 1095,
label = "CsJ-CbCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16129,7 +16129,7 @@
entry(
index = 1096,
label = "CsJ-COCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16142,7 +16142,7 @@
entry(
index = 1097,
label = "CsJ-CdCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16156,7 +16156,7 @@
entry(
index = 1098,
label = "CsJ-C=SCsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -16169,7 +16169,7 @@
entry(
index = 1099,
label = "CsJ-OneDeOsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16182,7 +16182,7 @@
entry(
index = 1100,
label = "CsJ-OneDeSsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16195,7 +16195,7 @@
entry(
index = 1101,
label = "CsJ-OneDeCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16208,7 +16208,7 @@
entry(
index = 1102,
label = "CsJ-CtCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16221,7 +16221,7 @@
entry(
index = 1103,
label = "CsJ-CbCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16234,7 +16234,7 @@
entry(
index = 1104,
label = "CsJ-COCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16247,7 +16247,7 @@
entry(
index = 1105,
label = "CsJ-CdCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16261,7 +16261,7 @@
entry(
index = 1106,
label = "CsJ-C=SCsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -16274,7 +16274,7 @@
entry(
index = 1107,
label = "CsJ-OneDeOsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16287,7 +16287,7 @@
entry(
index = 1108,
label = "CsJ-OneDeSsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16300,7 +16300,7 @@
entry(
index = 1109,
label = "CsJ-OneDeOsOs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16313,7 +16313,7 @@
entry(
index = 1110,
label = "CsJ-OneDeOsSs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16326,7 +16326,7 @@
entry(
index = 1111,
label = "CsJ-OneDeSsSs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16339,7 +16339,7 @@
entry(
index = 1112,
label = "CsJ-OneDeNsH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 H u0 {1,S}
@@ -16352,7 +16352,7 @@
entry(
index = 1113,
label = "CsJ-OneDeNsCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16365,7 +16365,7 @@
entry(
index = 1114,
label = "CsJ-TwoDe",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16378,7 +16378,7 @@
entry(
index = 1115,
label = "CsJ-TwoDeH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16391,7 +16391,7 @@
entry(
index = 1116,
label = "CsJ-CtCtH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16404,7 +16404,7 @@
entry(
index = 1117,
label = "CsJ-CtCbH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16417,7 +16417,7 @@
entry(
index = 1118,
label = "CsJ-CtCOH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16430,7 +16430,7 @@
entry(
index = 1119,
label = "CsJ-CbCbH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16443,7 +16443,7 @@
entry(
index = 1120,
label = "CsJ-CbCOH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16456,7 +16456,7 @@
entry(
index = 1121,
label = "CsJ-COCOH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16469,7 +16469,7 @@
entry(
index = 1122,
label = "CsJ-CdCtH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16483,7 +16483,7 @@
entry(
index = 1123,
label = "CsJ-CdCbH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16497,7 +16497,7 @@
entry(
index = 1124,
label = "CsJ-CdCOH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16511,7 +16511,7 @@
entry(
index = 1125,
label = "CsJ-CtC=SH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16524,7 +16524,7 @@
entry(
index = 1126,
label = "CsJ-CbC=SH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16537,7 +16537,7 @@
entry(
index = 1127,
label = "CsJ-COC=SH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16550,7 +16550,7 @@
entry(
index = 1128,
label = "CsJ-CdCdH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16565,7 +16565,7 @@
entry(
index = 1129,
label = "CsJ-CdC=SH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16579,7 +16579,7 @@
entry(
index = 1130,
label = "CsJ-C=SC=SH",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -16592,7 +16592,7 @@
entry(
index = 1131,
label = "CsJ-TwoDeCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16605,7 +16605,7 @@
entry(
index = 1132,
label = "CsJ-CtCtCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16618,7 +16618,7 @@
entry(
index = 1133,
label = "CsJ-CtCbCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16631,7 +16631,7 @@
entry(
index = 1134,
label = "CsJ-CtCOCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16644,7 +16644,7 @@
entry(
index = 1135,
label = "CsJ-CbCbCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16657,7 +16657,7 @@
entry(
index = 1136,
label = "CsJ-CbCOCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16670,7 +16670,7 @@
entry(
index = 1137,
label = "CsJ-COCOCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16683,7 +16683,7 @@
entry(
index = 1138,
label = "CsJ-CdCtCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16697,7 +16697,7 @@
entry(
index = 1139,
label = "CsJ-CdCbCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16711,7 +16711,7 @@
entry(
index = 1140,
label = "CsJ-CdCOCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16725,7 +16725,7 @@
entry(
index = 1141,
label = "CsJ-CtC=SCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Ct u0 {1,S}
@@ -16738,7 +16738,7 @@
entry(
index = 1142,
label = "CsJ-CbC=SCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cb u0 {1,S}
@@ -16751,7 +16751,7 @@
entry(
index = 1143,
label = "CsJ-COC=SCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CO u0 {1,S}
@@ -16764,7 +16764,7 @@
entry(
index = 1144,
label = "CsJ-CdCdCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16779,7 +16779,7 @@
entry(
index = 1145,
label = "CsJ-CdC=SCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 Cd u0 {1,S} {5,D}
@@ -16793,7 +16793,7 @@
entry(
index = 1146,
label = "CsJ-C=SC=SCs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 CS u0 {1,S}
@@ -16806,7 +16806,7 @@
entry(
index = 1147,
label = "CsJ-TwoDeOs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16819,7 +16819,7 @@
entry(
index = 1148,
label = "CsJ-TwoDeSs",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16832,7 +16832,7 @@
entry(
index = 1149,
label = "CsJ-ThreeDe",
- group =
+ group =
"""
1 *3 C u1 p0 {2,S} {3,S} {4,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -16845,7 +16845,7 @@
entry(
index = 1150,
label = "CdsJ=Cdd",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 C u0 {1,D} {4,D}
@@ -16858,7 +16858,7 @@
entry(
index = 1151,
label = "CdsJ",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16872,7 +16872,7 @@
entry(
index = 1152,
label = "CdsJ-H",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16886,7 +16886,7 @@
entry(
index = 1153,
label = "CdsJ-(CdCb)H",
- group =
+ group =
"""
1 *3 Cd u1 p0 {2,D} {3,S}
2 Cd u0 {1,D} {4,S} {5,S}
@@ -16900,7 +16900,7 @@
entry(
index = 1154,
label = "CdsJ-Cs",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16914,7 +16914,7 @@
entry(
index = 1155,
label = "CdsJ-Ct",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16928,7 +16928,7 @@
entry(
index = 1156,
label = "CdsJ-Cb",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16942,7 +16942,7 @@
entry(
index = 1157,
label = "CdsJ-CO",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -16956,7 +16956,7 @@
entry(
index = 1158,
label = "CdsJ-O2s",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 C u0 {1,D} {4,S} {5,S}
@@ -16970,7 +16970,7 @@
entry(
index = 1159,
label = "CdsJ-S2s",
- group =
+ group =
"""
1 *3 C u1 p0 {2,D} {3,S}
2 C u0 {1,D} {4,S} {5,S}
@@ -16984,7 +16984,7 @@
entry(
index = 1160,
label = "CdsJ-Cd",
- group =
+ group =
"""
1 C u0 {2,D} {4,S} {5,S}
2 *3 C u1 p0 {1,D} {3,S}
@@ -16999,7 +16999,7 @@
entry(
index = 1161,
label = "CdsJ-C=S",
- group =
+ group =
"""
1 C u0 {2,D} {3,S} {4,S}
2 *3 C u1 p0 {1,D} {5,S}
@@ -17020,7 +17020,7 @@
entry(
index = 1163,
label = "OJ_pri",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 H u0 {1,S}
@@ -17031,7 +17031,7 @@
entry(
index = 1164,
label = "OJ_sec",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 R!H u0 {1,S}
@@ -17042,7 +17042,7 @@
entry(
index = 1165,
label = "OJ-NonDe",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cs,O2s,S2s,N3s,N5sc] u0 {1,S}
@@ -17053,7 +17053,7 @@
entry(
index = 1166,
label = "O_rad/NonDe",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cs,O2s,S2s] u0 {1,S}
@@ -17064,7 +17064,7 @@
entry(
index = 1167,
label = "OJ-Cs",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 Cs u0 {1,S}
@@ -17075,7 +17075,7 @@
entry(
index = 1168,
label = "OJ-O2s",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 O2s u0 {1,S}
@@ -17086,7 +17086,7 @@
entry(
index = 1169,
label = "OJ-Ns",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [N3s,N5sc] u0 {1,S}
@@ -17097,7 +17097,7 @@
entry(
index = 1170,
label = "OJ-OneDe",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -17108,7 +17108,7 @@
entry(
index = 1171,
label = "O_rad/OneDe",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [Cd,Ct,Cb,CO,CS] u0 {1,S}
@@ -17119,7 +17119,7 @@
entry(
index = 1172,
label = "OJ-OneDeN",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [N3d,N5dc] u0 {1,S}
@@ -17130,7 +17130,7 @@
entry(
index = 1173,
label = "OJ-NO",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 [N3d,N5dc] u0 {1,S} {3,D}
@@ -17142,7 +17142,7 @@
entry(
index = 1174,
label = "O2b",
- group =
+ group =
"""
1 *3 O u1 {2,S}
2 O u1 {1,S}
@@ -17153,7 +17153,7 @@
entry(
index = 1175,
label = "SJ",
- group =
+ group =
"""
1 *3 S u1
""",
@@ -17163,7 +17163,7 @@
entry(
index = 1176,
label = "SsJ",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 R u0 {1,S}
@@ -17174,7 +17174,7 @@
entry(
index = 1177,
label = "SsJ-H",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 H u0 {1,S}
@@ -17185,7 +17185,7 @@
entry(
index = 1178,
label = "SsJ-Cs",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 Cs u0 {1,S}
@@ -17196,7 +17196,7 @@
entry(
index = 1179,
label = "SsJ-S2s",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 S2s u0 p2 {1,S}
@@ -17207,7 +17207,7 @@
entry(
index = 1180,
label = "SsJ-OneDe",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -17218,7 +17218,7 @@
entry(
index = 1181,
label = "SsJ-Ct",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 Ct u0 {1,S}
@@ -17229,7 +17229,7 @@
entry(
index = 1182,
label = "SsJ-Cb",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 Cb u0 {1,S}
@@ -17240,7 +17240,7 @@
entry(
index = 1183,
label = "SsJ-CO",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 CO u0 {1,S}
@@ -17251,7 +17251,7 @@
entry(
index = 1184,
label = "SsJ-Cd",
- group =
+ group =
"""
1 Cd u0 {2,S} {3,D}
2 *3 S2s u1 p2 {1,S}
@@ -17263,7 +17263,7 @@
entry(
index = 1185,
label = "SsJ-C=S",
- group =
+ group =
"""
1 *3 S2s u1 p2 {2,S}
2 CS u0 {1,S}
@@ -17274,7 +17274,7 @@
entry(
index = 1186,
label = "NJ",
- group =
+ group =
"""
1 *3 N u1
""",
@@ -17284,7 +17284,7 @@
entry(
index = 1187,
label = "N3J",
- group =
+ group =
"""
1 *3 [N3s,N3d] u1
""",
@@ -17294,7 +17294,7 @@
entry(
index = 1188,
label = "N3sJ",
- group =
+ group =
"""
1 *3 N3s u1
""",
@@ -17304,7 +17304,7 @@
entry(
index = 1189,
label = "NH2J",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 H u0 {1,S}
@@ -17316,7 +17316,7 @@
entry(
index = 1190,
label = "N3sJ-NonDeH",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [O2s,S2s,N3s,N5sc,Cs] u0 {1,S}
@@ -17328,7 +17328,7 @@
entry(
index = 1191,
label = "N3sJ-CsH",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 Cs u0 {1,S}
@@ -17340,7 +17340,7 @@
entry(
index = 1192,
label = "N3sJ-OsH",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 O2s u0 {1,S}
@@ -17352,7 +17352,7 @@
entry(
index = 1193,
label = "N3sJ-NsH",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [N3s,N5sc] u0 {1,S}
@@ -17364,7 +17364,7 @@
entry(
index = 1194,
label = "N3sJ-NonDe2",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [O2s,Cs,N3s,N5sc,S2s] u0 {1,S}
@@ -17376,7 +17376,7 @@
entry(
index = 1195,
label = "N3sJ-OneDeH",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -17388,7 +17388,7 @@
entry(
index = 1196,
label = "N3sJ-OneDeCs",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -17400,7 +17400,7 @@
entry(
index = 1197,
label = "N3sJ-TwoDe",
- group =
+ group =
"""
1 *3 N3s u1 {2,S} {3,S}
2 [Cd,Ct,Cb,CO,CS,N3d,N5dc] u0 {1,S}
@@ -17412,7 +17412,7 @@
entry(
index = 1198,
label = "N3dJ",
- group =
+ group =
"""
1 *3 N3d u1
""",
@@ -17422,7 +17422,7 @@
entry(
index = 1199,
label = "N3dJ_C",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 C u0 {1,D}
@@ -17433,7 +17433,7 @@
entry(
index = 1200,
label = "N3dJ_O",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 O2d u0 {1,D}
@@ -17444,7 +17444,7 @@
entry(
index = 1201,
label = "N3dJ_N",
- group =
+ group =
"""
1 *3 N3d u1 {2,D}
2 N u0 {1,D}
@@ -17455,7 +17455,7 @@
entry(
index = 1202,
label = "Cb-naphthalene_Cb-naphthalene",
- group =
+ group =
"""
1 *1 Cbf u0 {2,B} {3,B} {5,B}
2 *2 Cbf u0 {1,B} {4,B} {6,B}
@@ -17472,7 +17472,7 @@
entry(
index = 1203,
label = "Cb-indane_Cb-indane",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,B} {5,[S,B]}
2 *2 Cb u0 {1,B} {4,B} {6,[S,B]}
@@ -17488,7 +17488,7 @@
entry(
index = 1204,
label = "Cb-tetralin_Cb-tetralin",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,B} {5,[S,B]}
2 *2 [Cb,Cbf] u0 {1,B} {4,B} {6,[S,B]}
@@ -17505,7 +17505,7 @@
entry(
index = 1205,
label = "Cds-CsH_Cds-CbH-indene",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -17521,7 +17521,7 @@
entry(
index = 1206,
label = "Cds-CsH_Cds-CbH-dihydronaphthalene",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -17539,7 +17539,7 @@
entry(
index = 1207,
label = "Cds-CsH_Cds-CbCs-dihydronaphthalene",
- group =
+ group =
"""
1 *1 Cd u0 {2,D} {3,S} {4,S}
2 *2 Cd u0 {1,D} {5,S} {6,S}
@@ -17556,7 +17556,7 @@
entry(
index = 1208,
label = "Cb-H-Ortho_Cb-C-fused",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 Cb u0 {1,B} {4,S} {5,B}
@@ -17570,7 +17570,7 @@
entry(
index = 1209,
label = "Cb-H-Para_Cb-H-fused",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {7,S} {9,B}
2 *2 Cb u0 {1,B} {4,B} {6,S}
@@ -17590,7 +17590,7 @@
entry(
index = 1210,
label = "Cb-H_Cb-CbfH",
- group =
+ group =
"""
1 *1 Cb u0 {2,B} {3,S}
2 *2 Cb u0 {1,B} {4,S} {5,B}
@@ -17604,7 +17604,7 @@
entry(
index = 1211,
label = "Cb-R!H_Cbf-R!H",
- group =
+ group =
"""
1 *1 [Cb,Cbf] u0 {2,B} {3,B} {5,[S,B]}
2 *2 Cbf u0 {1,B} {4,B} {6,[S,B]}
@@ -17616,6 +17616,16 @@
kinetics = None,
)
+entry(
+ index = 1212,
+ label = "LiJ",
+ group =
+"""
+1 *3 Li u1
+""",
+ kinetics = None,
+)
+
tree(
"""
L1: R_R
@@ -18659,6 +18669,7 @@
L5: Sd_Cds-C=SC=S
L1: YJ
L2: HJ
+ L2: LiJ
L2: Y_1centerquadrad
L3: C_quintet
L3: C_triplet
@@ -18835,15 +18846,48 @@
forbidden(
label = "O2d",
- group =
+ group =
"""
1 *1 O u0 {2,D}
2 *2 O u0 {1,D}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
+u"""
+
+""",
+)
+
+forbidden(
+ label = "carbonaterad",
+ group =
+"""
+1 *3 C u1 {2,S} {3,S} {4,S}
+2 O u0 {1,S}
+3 O u0 {1,S}
+4 O u0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
u"""
""",
)
+forbidden(
+ label = "carbonatebreak",
+ group =
+"""
+1 *3 C u0 {2,S} {3,S} {4,S} {5,S}
+2 O u0 {1,S}
+3 O u0 {1,S}
+4 O u0 {1,S}
+5 *1 R!H u0 {1,S} {6,[S,D]}
+6 *2 R!H u1 {5,[S,D]}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+
+""",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/R_Addition_MultipleBond/training/dictionary.txt b/input/kinetics/families/R_Addition_MultipleBond/training/dictionary.txt
index 32129370e3..52bbc490f2 100644
--- a/input/kinetics/families/R_Addition_MultipleBond/training/dictionary.txt
+++ b/input/kinetics/families/R_Addition_MultipleBond/training/dictionary.txt
@@ -83879,870 +83879,870 @@ C12H16-2
28 H u0 p0 c0 {10,S}
C12H14-3
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 C u0 p0 c0 {2,S} {4,S} {18,S} {19,S}
-4 C u0 p0 c0 {3,S} {5,S} {12,S} {20,S}
-5 *1 C u0 p0 c0 {4,S} {6,D} {21,S}
-6 *2 C u0 p0 c0 {5,D} {7,S} {22,S}
-7 C u0 p0 c0 {6,S} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {23,S}
-9 C u0 p0 c0 {8,B} {10,B} {24,S}
-10 C u0 p0 c0 {9,B} {11,B} {25,S}
-11 C u0 p0 c0 {10,B} {12,B} {26,S}
-12 C u0 p0 c0 {4,S} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {3,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {4,S}
-21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {6,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {11,S}
-
-C12H15-74
-multiplicity 2
-1 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
-2 C u0 p0 c0 {1,S} {3,S} {17,S} {18,S}
-3 C u0 p0 c0 {2,S} {4,S} {19,S} {20,S}
-4 C u0 p0 c0 {3,S} {5,S} {13,S} {21,S}
-5 *1 C u0 p0 c0 {4,S} {6,S} {22,S} {23,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 C u0 p0 c0 {6,S} {9,B} {13,B}
-9 C u0 p0 c0 {8,B} {10,B} {24,S}
-10 C u0 p0 c0 {9,B} {11,B} {25,S}
-11 C u0 p0 c0 {10,B} {12,B} {26,S}
-12 C u0 p0 c0 {11,B} {13,B} {27,S}
-13 C u0 p0 c0 {4,S} {8,B} {12,B}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {1,S}
+1 C u0 p0 c0 {2,S} {5,S} {7,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
+3 C u0 p0 c0 {2,S} {4,S} {14,S} {15,S}
+4 C u0 p0 c0 {3,S} {18,S} {19,S} {20,S}
+5 C u0 p0 c0 {1,S} {6,B} {9,B}
+6 C u0 p0 c0 {5,B} {8,S} {10,B}
+7 *1 C u0 p0 c0 {1,S} {8,D} {21,S}
+8 *2 C u0 p0 c0 {6,S} {7,D} {22,S}
+9 C u0 p0 c0 {5,B} {12,B} {26,S}
+10 C u0 p0 c0 {6,B} {11,B} {23,S}
+11 C u0 p0 c0 {10,B} {12,B} {24,S}
+12 C u0 p0 c0 {9,B} {11,B} {25,S}
+13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {2,S}
17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {2,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {3,S}
-21 H u0 p0 c0 {4,S}
-22 *3 H u0 p0 c0 {5,S}
-23 H u0 p0 c0 {5,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {11,S}
-27 H u0 p0 c0 {12,S}
-
-C12H14-4
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 *2 C u0 p0 c0 {2,S} {4,D} {12,S}
-4 *1 C u0 p0 c0 {3,D} {5,S} {18,S}
-5 C u0 p0 c0 {4,S} {6,S} {19,S} {20,S}
-6 C u0 p0 c0 {5,S} {7,S} {21,S} {22,S}
-7 C u0 p0 c0 {6,S} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {23,S}
-9 C u0 p0 c0 {8,B} {10,B} {24,S}
-10 C u0 p0 c0 {9,B} {11,B} {25,S}
-11 C u0 p0 c0 {10,B} {12,B} {26,S}
-12 C u0 p0 c0 {3,S} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {6,S}
-22 H u0 p0 c0 {6,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {11,S}
+18 H u0 p0 c0 {4,S}
+19 H u0 p0 c0 {4,S}
+20 H u0 p0 c0 {4,S}
+21 H u0 p0 c0 {7,S}
+22 H u0 p0 c0 {8,S}
+23 H u0 p0 c0 {10,S}
+24 H u0 p0 c0 {11,S}
+25 H u0 p0 c0 {12,S}
+26 H u0 p0 c0 {9,S}
-C12H15-75
+C12H15-74
multiplicity 2
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
+1 C u0 p0 c0 {2,S} {4,S} {6,S} {13,S}
2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 *2 C u1 p0 c0 {2,S} {4,S} {12,S}
-4 *1 C u0 p0 c0 {3,S} {5,S} {18,S} {19,S}
-5 C u0 p0 c0 {4,S} {6,S} {20,S} {21,S}
-6 C u0 p0 c0 {5,S} {7,S} {22,S} {23,S}
-7 C u0 p0 c0 {6,S} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {24,S}
-9 C u0 p0 c0 {8,B} {10,B} {25,S}
-10 C u0 p0 c0 {9,B} {11,B} {26,S}
-11 C u0 p0 c0 {10,B} {12,B} {27,S}
-12 C u0 p0 c0 {3,S} {7,B} {11,B}
+3 C u0 p0 c0 {2,S} {5,S} {14,S} {15,S}
+4 *1 C u0 p0 c0 {1,S} {8,S} {18,S} {19,S}
+5 C u0 p0 c0 {3,S} {20,S} {21,S} {22,S}
+6 C u0 p0 c0 {1,S} {7,B} {9,B}
+7 C u0 p0 c0 {6,B} {8,S} {10,B}
+8 *2 C u1 p0 c0 {4,S} {7,S} {23,S}
+9 C u0 p0 c0 {6,B} {12,B} {27,S}
+10 C u0 p0 c0 {7,B} {11,B} {24,S}
+11 C u0 p0 c0 {10,B} {12,B} {25,S}
+12 C u0 p0 c0 {9,B} {11,B} {26,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
16 H u0 p0 c0 {2,S}
17 H u0 p0 c0 {2,S}
18 *3 H u0 p0 c0 {4,S}
19 H u0 p0 c0 {4,S}
20 H u0 p0 c0 {5,S}
21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {6,S}
-23 H u0 p0 c0 {6,S}
-24 H u0 p0 c0 {8,S}
-25 H u0 p0 c0 {9,S}
-26 H u0 p0 c0 {10,S}
-27 H u0 p0 c0 {11,S}
+22 H u0 p0 c0 {5,S}
+23 H u0 p0 c0 {8,S}
+24 H u0 p0 c0 {10,S}
+25 H u0 p0 c0 {11,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {9,S}
-C12H14-5
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 C u0 p0 c0 {2,S} {4,S} {12,S} {18,S}
-4 C u0 p0 c0 {3,S} {5,S} {19,S} {20,S}
-5 *1 C u0 p0 c0 {4,S} {6,D} {21,S}
-6 *2 C u0 p0 c0 {5,D} {7,S} {22,S}
-7 C u0 p0 c0 {6,S} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {23,S}
-9 C u0 p0 c0 {8,B} {10,B} {24,S}
-10 C u0 p0 c0 {9,B} {11,B} {25,S}
-11 C u0 p0 c0 {10,B} {12,B} {26,S}
-12 C u0 p0 c0 {3,S} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {3,S}
+C12H14-4
+1 C u0 p0 c0 {3,S} {6,S} {17,S} {18,S}
+2 C u0 p0 c0 {4,S} {5,S} {13,S} {14,S}
+3 C u0 p0 c0 {1,S} {8,S} {15,S} {16,S}
+4 C u0 p0 c0 {2,S} {19,S} {20,S} {21,S}
+5 *2 C u0 p0 c0 {2,S} {7,S} {8,D}
+6 C u0 p0 c0 {1,S} {7,B} {9,B}
+7 C u0 p0 c0 {5,S} {6,B} {10,B}
+8 *1 C u0 p0 c0 {3,S} {5,D} {22,S}
+9 C u0 p0 c0 {6,B} {11,B} {23,S}
+10 C u0 p0 c0 {7,B} {12,B} {26,S}
+11 C u0 p0 c0 {9,B} {12,B} {24,S}
+12 C u0 p0 c0 {10,B} {11,B} {25,S}
+13 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {2,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {1,S}
+18 H u0 p0 c0 {1,S}
19 H u0 p0 c0 {4,S}
20 H u0 p0 c0 {4,S}
-21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {6,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {11,S}
+21 H u0 p0 c0 {4,S}
+22 H u0 p0 c0 {8,S}
+23 H u0 p0 c0 {9,S}
+24 H u0 p0 c0 {11,S}
+25 H u0 p0 c0 {12,S}
+26 H u0 p0 c0 {10,S}
-C12H15-76
+C12H15-75
multiplicity 2
-1 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
-2 C u0 p0 c0 {1,S} {3,S} {17,S} {18,S}
-3 C u0 p0 c0 {2,S} {4,S} {13,S} {19,S}
-4 C u0 p0 c0 {3,S} {5,S} {20,S} {21,S}
-5 *1 C u0 p0 c0 {4,S} {6,S} {22,S} {23,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 C u0 p0 c0 {6,S} {9,B} {13,B}
-9 C u0 p0 c0 {8,B} {10,B} {24,S}
-10 C u0 p0 c0 {9,B} {11,B} {25,S}
-11 C u0 p0 c0 {10,B} {12,B} {26,S}
-12 C u0 p0 c0 {11,B} {13,B} {27,S}
-13 C u0 p0 c0 {3,S} {8,B} {12,B}
+1 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+2 *1 C u0 p0 c0 {1,S} {6,S} {17,S} {18,S}
+3 C u0 p0 c0 {1,S} {7,S} {19,S} {20,S}
+4 C u0 p0 c0 {5,S} {6,S} {15,S} {16,S}
+5 C u0 p0 c0 {4,S} {21,S} {22,S} {23,S}
+6 *2 C u1 p0 c0 {2,S} {4,S} {8,S}
+7 C u0 p0 c0 {3,S} {8,B} {9,B}
+8 C u0 p0 c0 {6,S} {7,B} {10,B}
+9 C u0 p0 c0 {7,B} {11,B} {24,S}
+10 C u0 p0 c0 {8,B} {12,B} {27,S}
+11 C u0 p0 c0 {9,B} {12,B} {25,S}
+12 C u0 p0 c0 {10,B} {11,B} {26,S}
+13 H u0 p0 c0 {1,S}
14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {2,S}
+15 H u0 p0 c0 {4,S}
+16 H u0 p0 c0 {4,S}
+17 *3 H u0 p0 c0 {2,S}
18 H u0 p0 c0 {2,S}
19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {4,S}
-21 H u0 p0 c0 {4,S}
-22 *3 H u0 p0 c0 {5,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {5,S}
+22 H u0 p0 c0 {5,S}
23 H u0 p0 c0 {5,S}
24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {11,S}
-27 H u0 p0 c0 {12,S}
+25 H u0 p0 c0 {11,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {10,S}
-C12H12-5
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 *1 C u0 p0 c0 {2,S} {4,B} {12,B}
-4 C u0 p0 c0 {3,B} {5,B} {18,S}
-5 C u0 p0 c0 {4,B} {6,B} {19,S}
-6 C u0 p0 c0 {5,B} {7,B} {20,S}
-7 C u0 p0 c0 {6,B} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {21,S}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
+C12H14-5
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {13,S}
+2 C u0 p0 c0 {1,S} {4,S} {14,S} {15,S}
+3 C u0 p0 c0 {1,S} {7,S} {16,S} {17,S}
+4 C u0 p0 c0 {2,S} {18,S} {19,S} {20,S}
+5 C u0 p0 c0 {1,S} {6,B} {9,B}
+6 C u0 p0 c0 {5,B} {8,S} {10,B}
+7 *1 C u0 p0 c0 {3,S} {8,D} {21,S}
+8 *2 C u0 p0 c0 {6,S} {7,D} {22,S}
+9 C u0 p0 c0 {5,B} {12,B} {26,S}
+10 C u0 p0 c0 {6,B} {11,B} {23,S}
11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 *2 C u0 p0 c0 {3,B} {7,B} {11,B}
+12 C u0 p0 c0 {9,B} {11,B} {25,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {2,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {3,S}
18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {8,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-
-C12H12-6
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 *2 C u0 p0 c0 {2,S} {4,B} {12,B}
-4 *1 C u0 p0 c0 {3,B} {5,B} {18,S}
-5 C u0 p0 c0 {4,B} {6,B} {19,S}
-6 C u0 p0 c0 {5,B} {7,B} {20,S}
-7 C u0 p0 c0 {6,B} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {21,S}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
-11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 C u0 p0 c0 {3,B} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {8,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-
-C12H12-7
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 C u0 p0 c0 {2,S} {4,B} {12,B}
-4 C u0 p0 c0 {3,B} {5,B} {18,S}
-5 *2 C u0 p0 c0 {4,B} {6,B} {19,S}
-6 *1 C u0 p0 c0 {5,B} {7,B} {20,S}
-7 C u0 p0 c0 {6,B} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {21,S}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
-11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 C u0 p0 c0 {3,B} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {8,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-
-C12H12-8
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 C u0 p0 c0 {2,S} {4,B} {12,B}
-4 C u0 p0 c0 {3,B} {5,B} {18,S}
-5 *1 C u0 p0 c0 {4,B} {6,B} {19,S}
-6 *2 C u0 p0 c0 {5,B} {7,B} {20,S}
-7 C u0 p0 c0 {6,B} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {21,S}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
-11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 C u0 p0 c0 {3,B} {7,B} {11,B}
-13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {8,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-
-C12H13-53
-multiplicity 2
-1 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
-2 C u0 p0 c0 {1,S} {3,S} {17,S} {18,S}
-3 *1 C u0 p0 c0 {2,S} {4,S} {13,S} {19,S}
-4 C u0 p0 c0 {3,S} {5,S} {6,D}
-5 H u0 p0 c0 {4,S}
-6 C u0 p0 c0 {4,D} {7,S} {20,S}
-7 C u0 p0 c0 {6,S} {8,D} {21,S}
-8 C u0 p0 c0 {7,D} {9,S} {13,S}
-9 C u0 p0 c0 {8,S} {10,D} {22,S}
-10 C u0 p0 c0 {9,D} {11,S} {23,S}
-11 C u0 p0 c0 {10,S} {12,D} {24,S}
-12 C u0 p0 c0 {11,D} {13,S} {25,S}
-13 *2 C u1 p0 c0 {3,S} {8,S} {12,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {2,S}
-19 *3 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {4,S}
+20 H u0 p0 c0 {4,S}
21 H u0 p0 c0 {7,S}
-22 H u0 p0 c0 {9,S}
+22 H u0 p0 c0 {8,S}
23 H u0 p0 c0 {10,S}
24 H u0 p0 c0 {11,S}
25 H u0 p0 c0 {12,S}
+26 H u0 p0 c0 {9,S}
-C12H13-54
+C12H15-76
multiplicity 2
-1 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
-2 C u0 p0 c0 {1,S} {3,S} {16,S} {17,S}
-3 *2 C u1 p0 c0 {2,S} {4,S} {12,S}
-4 *1 C u0 p0 c0 {3,S} {5,S} {18,S} {19,S}
-5 C u0 p0 c0 {4,S} {6,D} {20,S}
-6 C u0 p0 c0 {5,D} {7,S} {21,S}
-7 C u0 p0 c0 {6,S} {8,B} {12,B}
-8 C u0 p0 c0 {7,B} {9,B} {22,S}
-9 C u0 p0 c0 {8,B} {10,B} {23,S}
-10 C u0 p0 c0 {9,B} {11,B} {24,S}
+1 C u0 p0 c0 {2,S} {3,S} {6,S} {13,S}
+2 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+3 C u0 p0 c0 {1,S} {5,S} {14,S} {15,S}
+4 *1 C u0 p0 c0 {2,S} {8,S} {18,S} {19,S}
+5 C u0 p0 c0 {3,S} {20,S} {21,S} {22,S}
+6 C u0 p0 c0 {1,S} {7,B} {9,B}
+7 C u0 p0 c0 {6,B} {8,S} {10,B}
+8 *2 C u1 p0 c0 {4,S} {7,S} {23,S}
+9 C u0 p0 c0 {6,B} {12,B} {27,S}
+10 C u0 p0 c0 {7,B} {11,B} {24,S}
11 C u0 p0 c0 {10,B} {12,B} {25,S}
-12 C u0 p0 c0 {3,S} {7,B} {11,B}
+12 C u0 p0 c0 {9,B} {11,B} {26,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
16 H u0 p0 c0 {2,S}
17 H u0 p0 c0 {2,S}
18 *3 H u0 p0 c0 {4,S}
19 H u0 p0 c0 {4,S}
20 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {6,S}
-22 H u0 p0 c0 {8,S}
-23 H u0 p0 c0 {9,S}
+21 H u0 p0 c0 {5,S}
+22 H u0 p0 c0 {5,S}
+23 H u0 p0 c0 {8,S}
24 H u0 p0 c0 {10,S}
25 H u0 p0 c0 {11,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {9,S}
-C12H13-55
-multiplicity 2
-1 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
-2 C u0 p0 c0 {1,S} {3,S} {17,S} {18,S}
-3 C u0 p0 c0 {2,S} {4,D} {13,S}
-4 C u0 p0 c0 {3,D} {5,S} {19,S}
-5 *2 C u1 p0 c0 {4,S} {6,S} {7,S}
-6 H u0 p0 c0 {5,S}
-7 *1 C u0 p0 c0 {5,S} {8,S} {20,S} {21,S}
-8 C u0 p0 c0 {7,S} {9,B} {13,B}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
-11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 C u0 p0 c0 {11,B} {13,B} {25,S}
-13 C u0 p0 c0 {3,S} {8,B} {12,B}
+C12H12-5
+1 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+2 C u0 p0 c0 {1,S} {15,S} {16,S} {17,S}
+3 *1 C u0 p0 c0 {1,S} {4,B} {6,B}
+4 *2 C u0 p0 c0 {3,B} {5,B} {9,B}
+5 C u0 p0 c0 {4,B} {7,B} {8,B}
+6 C u0 p0 c0 {3,B} {10,B} {18,S}
+7 C u0 p0 c0 {5,B} {10,B} {20,S}
+8 C u0 p0 c0 {5,B} {11,B} {21,S}
+9 C u0 p0 c0 {4,B} {12,B} {24,S}
+10 C u0 p0 c0 {6,B} {7,B} {19,S}
+11 C u0 p0 c0 {8,B} {12,B} {22,S}
+12 C u0 p0 c0 {9,B} {11,B} {23,S}
+13 H u0 p0 c0 {1,S}
14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {1,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {2,S}
-19 H u0 p0 c0 {4,S}
-20 *3 H u0 p0 c0 {7,S}
-21 H u0 p0 c0 {7,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-25 H u0 p0 c0 {12,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {9,S}
-C12H13-56
-multiplicity 2
-1 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
-2 C u0 p0 c0 {1,S} {3,S} {17,S} {18,S}
-3 C u0 p0 c0 {2,S} {4,D} {13,S}
-4 C u0 p0 c0 {3,D} {5,S} {19,S}
-5 *1 C u0 p0 c0 {4,S} {6,S} {20,S} {21,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 C u0 p0 c0 {6,S} {9,B} {13,B}
-9 C u0 p0 c0 {8,B} {10,B} {22,S}
-10 C u0 p0 c0 {9,B} {11,B} {23,S}
-11 C u0 p0 c0 {10,B} {12,B} {24,S}
-12 C u0 p0 c0 {11,B} {13,B} {25,S}
-13 C u0 p0 c0 {3,S} {8,B} {12,B}
+C12H12-6
+1 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+2 C u0 p0 c0 {1,S} {15,S} {16,S} {17,S}
+3 *2 C u0 p0 c0 {1,S} {4,B} {6,B}
+4 C u0 p0 c0 {3,B} {5,B} {9,B}
+5 C u0 p0 c0 {4,B} {7,B} {8,B}
+6 *1 C u0 p0 c0 {3,B} {10,B} {18,S}
+7 C u0 p0 c0 {5,B} {10,B} {20,S}
+8 C u0 p0 c0 {5,B} {11,B} {21,S}
+9 C u0 p0 c0 {4,B} {12,B} {24,S}
+10 C u0 p0 c0 {6,B} {7,B} {19,S}
+11 C u0 p0 c0 {8,B} {12,B} {22,S}
+12 C u0 p0 c0 {9,B} {11,B} {23,S}
+13 H u0 p0 c0 {1,S}
14 H u0 p0 c0 {1,S}
-15 H u0 p0 c0 {1,S}
-16 H u0 p0 c0 {1,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
17 H u0 p0 c0 {2,S}
-18 H u0 p0 c0 {2,S}
-19 H u0 p0 c0 {4,S}
-20 *3 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {9,S}
-23 H u0 p0 c0 {10,S}
-24 H u0 p0 c0 {11,S}
-25 H u0 p0 c0 {12,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {9,S}
-C9H13-76
-multiplicity 2
-1 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {14,S} {15,S}
-3 *1 C u0 p0 c0 {2,S} {4,S} {10,S} {16,S}
-4 *2 C u1 p0 c0 {3,S} {5,S} {6,S}
-5 H u0 p0 c0 {4,S}
-6 C u0 p0 c0 {4,S} {7,S} {8,D}
-7 C u0 p0 c0 {6,S} {17,S} {18,S} {19,S}
-8 C u0 p0 c0 {6,D} {9,S} {20,S}
-9 C u0 p0 c0 {8,S} {10,D} {21,S}
-10 C u0 p0 c0 {3,S} {9,D} {22,S}
-11 H u0 p0 c0 {1,S}
-12 H u0 p0 c0 {1,S}
+C12H12-7
+1 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+2 C u0 p0 c0 {1,S} {15,S} {16,S} {17,S}
+3 C u0 p0 c0 {1,S} {4,B} {6,B}
+4 C u0 p0 c0 {3,B} {5,B} {9,B}
+5 C u0 p0 c0 {4,B} {7,B} {8,B}
+6 C u0 p0 c0 {3,B} {10,B} {18,S}
+7 *1 C u0 p0 c0 {5,B} {10,B} {20,S}
+8 C u0 p0 c0 {5,B} {11,B} {21,S}
+9 C u0 p0 c0 {4,B} {12,B} {24,S}
+10 *2 C u0 p0 c0 {6,B} {7,B} {19,S}
+11 C u0 p0 c0 {8,B} {12,B} {22,S}
+12 C u0 p0 c0 {9,B} {11,B} {23,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {1,S}
15 H u0 p0 c0 {2,S}
-16 H u0 p0 c0 {3,S}
-17 H u0 p0 c0 {7,S}
-18 H u0 p0 c0 {7,S}
-19 H u0 p0 c0 {7,S}
-20 H u0 p0 c0 {8,S}
-21 H u0 p0 c0 {9,S}
-22 H u0 p0 c0 {10,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {9,S}
-C9H13-77
-multiplicity 2
-1 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {14,S} {15,S}
-3 *1 C u0 p0 c0 {2,S} {4,S} {9,S} {16,S}
-4 *2 C u1 p0 c0 {3,S} {5,S} {6,S}
-5 H u0 p0 c0 {4,S}
-6 C u0 p0 c0 {4,S} {7,D} {17,S}
-7 C u0 p0 c0 {6,D} {8,S} {18,S}
-8 C u0 p0 c0 {7,S} {9,D} {19,S}
-9 C u0 p0 c0 {3,S} {8,D} {10,S}
-10 C u0 p0 c0 {9,S} {20,S} {21,S} {22,S}
-11 H u0 p0 c0 {1,S}
-12 H u0 p0 c0 {1,S}
+C12H12-8
+1 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+2 C u0 p0 c0 {1,S} {15,S} {16,S} {17,S}
+3 C u0 p0 c0 {1,S} {4,B} {6,B}
+4 C u0 p0 c0 {3,B} {5,B} {9,B}
+5 C u0 p0 c0 {4,B} {7,B} {8,B}
+6 C u0 p0 c0 {3,B} {10,B} {18,S}
+7 *2 C u0 p0 c0 {5,B} {10,B} {20,S}
+8 C u0 p0 c0 {5,B} {11,B} {21,S}
+9 C u0 p0 c0 {4,B} {12,B} {24,S}
+10 *1 C u0 p0 c0 {6,B} {7,B} {19,S}
+11 C u0 p0 c0 {8,B} {12,B} {22,S}
+12 C u0 p0 c0 {9,B} {11,B} {23,S}
13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {1,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {9,S}
+
+C12H13-53
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {4,S} {6,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {14,S} {15,S}
+3 C u0 p0 c0 {2,S} {16,S} {17,S} {18,S}
+4 *2 C u1 p0 c0 {1,S} {5,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,D} {9,S}
+6 C u0 p0 c0 {1,S} {10,D} {19,S}
+7 C u0 p0 c0 {4,S} {12,D} {25,S}
+8 C u0 p0 c0 {5,D} {10,S} {21,S}
+9 C u0 p0 c0 {5,S} {11,D} {22,S}
+10 C u0 p0 c0 {6,D} {8,S} {20,S}
+11 C u0 p0 c0 {9,D} {12,S} {23,S}
+12 C u0 p0 c0 {7,D} {11,S} {24,S}
+13 *3 H u0 p0 c0 {1,S}
14 H u0 p0 c0 {2,S}
15 H u0 p0 c0 {2,S}
16 H u0 p0 c0 {3,S}
-17 H u0 p0 c0 {6,S}
-18 H u0 p0 c0 {7,S}
-19 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {6,S}
20 H u0 p0 c0 {10,S}
-21 H u0 p0 c0 {10,S}
-22 H u0 p0 c0 {10,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {9,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {12,S}
+25 H u0 p0 c0 {7,S}
-C9H13-78
+C12H13-54
multiplicity 2
-1 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {14,S} {15,S}
-3 *1 C u0 p0 c0 {2,S} {4,S} {10,S} {16,S}
-4 *2 C u1 p0 c0 {3,S} {5,S} {6,S}
-5 H u0 p0 c0 {4,S}
-6 C u0 p0 c0 {4,S} {7,D} {17,S}
-7 C u0 p0 c0 {6,D} {8,S} {9,S}
-8 C u0 p0 c0 {7,S} {18,S} {19,S} {20,S}
-9 C u0 p0 c0 {7,S} {10,D} {21,S}
-10 C u0 p0 c0 {3,S} {9,D} {22,S}
-11 H u0 p0 c0 {1,S}
-12 H u0 p0 c0 {1,S}
+1 C u0 p0 c0 {3,S} {4,S} {13,S} {14,S}
+2 *1 C u0 p0 c0 {4,S} {7,S} {15,S} {16,S}
+3 C u0 p0 c0 {1,S} {17,S} {18,S} {19,S}
+4 *2 C u1 p0 c0 {1,S} {2,S} {5,S}
+5 C u0 p0 c0 {4,S} {6,B} {10,B}
+6 C u0 p0 c0 {5,B} {8,S} {9,B}
+7 C u0 p0 c0 {2,S} {8,D} {20,S}
+8 C u0 p0 c0 {6,S} {7,D} {21,S}
+9 C u0 p0 c0 {6,B} {11,B} {22,S}
+10 C u0 p0 c0 {5,B} {12,B} {25,S}
+11 C u0 p0 c0 {9,B} {12,B} {23,S}
+12 C u0 p0 c0 {10,B} {11,B} {24,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {2,S}
-15 H u0 p0 c0 {2,S}
-16 H u0 p0 c0 {3,S}
-17 H u0 p0 c0 {6,S}
-18 H u0 p0 c0 {8,S}
-19 H u0 p0 c0 {8,S}
-20 H u0 p0 c0 {8,S}
-21 H u0 p0 c0 {9,S}
-22 H u0 p0 c0 {10,S}
+14 H u0 p0 c0 {1,S}
+15 *3 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {9,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {12,S}
+25 H u0 p0 c0 {10,S}
-C9H13-79
+C12H13-55
multiplicity 2
-1 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {14,S} {15,S}
-3 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {10,S}
-4 C u0 p0 c0 {3,S} {16,S} {17,S} {18,S}
-5 *2 C u1 p0 c0 {3,S} {6,S} {7,S}
-6 H u0 p0 c0 {5,S}
-7 C u0 p0 c0 {5,S} {8,D} {19,S}
-8 C u0 p0 c0 {7,D} {9,S} {20,S}
-9 C u0 p0 c0 {8,S} {10,D} {21,S}
-10 C u0 p0 c0 {3,S} {9,D} {22,S}
-11 H u0 p0 c0 {1,S}
-12 H u0 p0 c0 {1,S}
+1 C u0 p0 c0 {3,S} {4,S} {13,S} {14,S}
+2 *1 C u0 p0 c0 {5,S} {7,S} {15,S} {16,S}
+3 C u0 p0 c0 {1,S} {17,S} {18,S} {19,S}
+4 C u0 p0 c0 {1,S} {6,S} {8,D}
+5 C u0 p0 c0 {2,S} {6,B} {9,B}
+6 C u0 p0 c0 {4,S} {5,B} {10,B}
+7 *2 C u1 p0 c0 {2,S} {8,S} {20,S}
+8 C u0 p0 c0 {4,D} {7,S} {21,S}
+9 C u0 p0 c0 {5,B} {11,B} {22,S}
+10 C u0 p0 c0 {6,B} {12,B} {25,S}
+11 C u0 p0 c0 {9,B} {12,B} {23,S}
+12 C u0 p0 c0 {10,B} {11,B} {24,S}
13 H u0 p0 c0 {1,S}
-14 H u0 p0 c0 {2,S}
-15 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {1,S}
+15 *3 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {9,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {12,S}
+25 H u0 p0 c0 {10,S}
+
+C12H13-56
+multiplicity 2
+1 C u0 p0 c0 {3,S} {4,S} {13,S} {14,S}
+2 *1 C u0 p0 c0 {7,S} {8,S} {15,S} {16,S}
+3 C u0 p0 c0 {1,S} {17,S} {18,S} {19,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,D}
+5 C u0 p0 c0 {4,S} {6,B} {10,B}
+6 C u0 p0 c0 {5,B} {8,S} {9,B}
+7 C u0 p0 c0 {2,S} {4,D} {21,S}
+8 *2 C u1 p0 c0 {2,S} {6,S} {20,S}
+9 C u0 p0 c0 {6,B} {11,B} {22,S}
+10 C u0 p0 c0 {5,B} {12,B} {25,S}
+11 C u0 p0 c0 {9,B} {12,B} {23,S}
+12 C u0 p0 c0 {10,B} {11,B} {24,S}
+13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {1,S}
+15 *3 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {8,S}
+21 H u0 p0 c0 {7,S}
+22 H u0 p0 c0 {9,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {12,S}
+25 H u0 p0 c0 {10,S}
+
+C9H13-76
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {6,S} {7,S} {10,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
+4 C u0 p0 c0 {5,S} {16,S} {17,S} {18,S}
+5 C u0 p0 c0 {4,S} {6,S} {8,D}
+6 *2 C u1 p0 c0 {1,S} {5,S} {19,S}
+7 C u0 p0 c0 {1,S} {9,D} {20,S}
+8 C u0 p0 c0 {5,D} {9,S} {21,S}
+9 C u0 p0 c0 {7,D} {8,S} {22,S}
+10 H u0 p0 c0 {1,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
16 H u0 p0 c0 {4,S}
17 H u0 p0 c0 {4,S}
18 H u0 p0 c0 {4,S}
-19 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {6,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {9,S}
+
+C9H13-77
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {5,S} {6,S} {10,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
+4 C u0 p0 c0 {5,S} {16,S} {17,S} {18,S}
+5 C u0 p0 c0 {1,S} {4,S} {7,D}
+6 *2 C u1 p0 c0 {1,S} {8,S} {19,S}
+7 C u0 p0 c0 {5,D} {9,S} {22,S}
+8 C u0 p0 c0 {6,S} {9,D} {20,S}
+9 C u0 p0 c0 {7,S} {8,D} {21,S}
+10 H u0 p0 c0 {1,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {4,S}
+17 H u0 p0 c0 {4,S}
+18 H u0 p0 c0 {4,S}
+19 H u0 p0 c0 {6,S}
20 H u0 p0 c0 {8,S}
21 H u0 p0 c0 {9,S}
-22 H u0 p0 c0 {10,S}
+22 H u0 p0 c0 {7,S}
+
+C9H13-78
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {6,S} {7,S} {10,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {13,S} {14,S} {15,S}
+4 C u0 p0 c0 {5,S} {16,S} {17,S} {18,S}
+5 C u0 p0 c0 {4,S} {8,D} {9,S}
+6 *2 C u1 p0 c0 {1,S} {8,S} {19,S}
+7 C u0 p0 c0 {1,S} {9,D} {20,S}
+8 C u0 p0 c0 {5,D} {6,S} {21,S}
+9 C u0 p0 c0 {5,S} {7,D} {22,S}
+10 H u0 p0 c0 {1,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {4,S}
+17 H u0 p0 c0 {4,S}
+18 H u0 p0 c0 {4,S}
+19 H u0 p0 c0 {6,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {8,S}
+22 H u0 p0 c0 {9,S}
+
+C9H13-79
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {1,S} {15,S} {16,S} {17,S}
+4 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+5 *2 C u1 p0 c0 {1,S} {7,S} {18,S}
+6 C u0 p0 c0 {1,S} {8,D} {19,S}
+7 C u0 p0 c0 {5,S} {9,D} {20,S}
+8 C u0 p0 c0 {6,D} {9,S} {22,S}
+9 C u0 p0 c0 {7,D} {8,S} {21,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {5,S}
+19 H u0 p0 c0 {6,S}
+20 H u0 p0 c0 {7,S}
+21 H u0 p0 c0 {9,S}
+22 H u0 p0 c0 {8,S}
C14H15-40
multiplicity 2
-1 C u0 p0 c0 {2,S} {16,S} {17,S} {18,S}
-2 C u0 p0 c0 {1,S} {3,S} {8,D}
-3 *2 C u1 p0 c0 {2,S} {4,S} {5,S}
-4 H u0 p0 c0 {3,S}
-5 *1 C u0 p0 c0 {3,S} {6,S} {9,S} {19,S}
-6 C u0 p0 c0 {5,S} {7,D} {20,S}
-7 C u0 p0 c0 {6,D} {8,S} {21,S}
-8 C u0 p0 c0 {2,D} {7,S} {22,S}
-9 *3 C u0 p0 c0 {5,S} {10,S} {23,S} {24,S}
-10 C u0 p0 c0 {9,S} {11,D} {15,S}
-11 C u0 p0 c0 {10,D} {12,S} {25,S}
-12 C u0 p0 c0 {11,S} {13,D} {26,S}
-13 C u0 p0 c0 {12,D} {14,S} {27,S}
-14 C u0 p0 c0 {13,S} {15,D} {28,S}
-15 C u0 p0 c0 {10,S} {14,D} {29,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {7,S}
-22 H u0 p0 c0 {8,S}
-23 H u0 p0 c0 {9,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {11,S}
-26 H u0 p0 c0 {12,S}
-27 H u0 p0 c0 {13,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {15,S}
+1 *1 C u0 p0 c0 {2,S} {6,S} {7,S} {15,S}
+2 *3 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+3 C u0 p0 c0 {5,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {2,S} {9,B} {10,B}
+5 C u0 p0 c0 {3,S} {6,S} {8,D}
+6 *2 C u1 p0 c0 {1,S} {5,S} {21,S}
+7 C u0 p0 c0 {1,S} {11,D} {22,S}
+8 C u0 p0 c0 {5,D} {11,S} {24,S}
+9 C u0 p0 c0 {4,B} {12,B} {25,S}
+10 C u0 p0 c0 {4,B} {14,B} {29,S}
+11 C u0 p0 c0 {7,D} {8,S} {23,S}
+12 C u0 p0 c0 {9,B} {13,B} {26,S}
+13 C u0 p0 c0 {12,B} {14,B} {27,S}
+14 C u0 p0 c0 {10,B} {13,B} {28,S}
+15 H u0 p0 c0 {1,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {7,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {8,S}
+25 H u0 p0 c0 {9,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {13,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {10,S}
C14H15-41
multiplicity 2
-1 C u0 p0 c0 {2,S} {16,S} {17,S} {18,S}
-2 C u0 p0 c0 {1,S} {3,D} {8,S}
-3 C u0 p0 c0 {2,D} {4,S} {19,S}
-4 C u0 p0 c0 {3,S} {5,D} {20,S}
-5 C u0 p0 c0 {4,D} {6,S} {21,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 *1 C u0 p0 c0 {2,S} {6,S} {9,S} {22,S}
-9 *3 C u0 p0 c0 {8,S} {10,S} {23,S} {24,S}
-10 C u0 p0 c0 {9,S} {11,D} {15,S}
-11 C u0 p0 c0 {10,D} {12,S} {25,S}
-12 C u0 p0 c0 {11,S} {13,D} {26,S}
-13 C u0 p0 c0 {12,D} {14,S} {27,S}
-14 C u0 p0 c0 {13,S} {15,D} {28,S}
-15 C u0 p0 c0 {10,S} {14,D} {29,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {4,S}
-21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {8,S}
-23 H u0 p0 c0 {9,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {11,S}
-26 H u0 p0 c0 {12,S}
-27 H u0 p0 c0 {13,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {15,S}
+1 *1 C u0 p0 c0 {2,S} {4,S} {6,S} {15,S}
+2 *3 C u0 p0 c0 {1,S} {5,S} {16,S} {17,S}
+3 C u0 p0 c0 {4,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {1,S} {3,S} {7,D}
+5 C u0 p0 c0 {2,S} {8,B} {9,B}
+6 *2 C u1 p0 c0 {1,S} {10,S} {21,S}
+7 C u0 p0 c0 {4,D} {11,S} {22,S}
+8 C u0 p0 c0 {5,B} {12,B} {25,S}
+9 C u0 p0 c0 {5,B} {14,B} {29,S}
+10 C u0 p0 c0 {6,S} {11,D} {24,S}
+11 C u0 p0 c0 {7,S} {10,D} {23,S}
+12 C u0 p0 c0 {8,B} {13,B} {26,S}
+13 C u0 p0 c0 {12,B} {14,B} {27,S}
+14 C u0 p0 c0 {9,B} {13,B} {28,S}
+15 H u0 p0 c0 {1,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {7,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {10,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {13,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {9,S}
C14H15-42
multiplicity 2
-1 C u0 p0 c0 {2,S} {16,S} {17,S} {18,S}
-2 C u0 p0 c0 {1,S} {3,S} {8,D}
-3 C u0 p0 c0 {2,S} {4,D} {19,S}
-4 C u0 p0 c0 {3,D} {5,S} {20,S}
-5 *1 C u0 p0 c0 {4,S} {6,S} {9,S} {21,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 C u0 p0 c0 {2,D} {6,S} {22,S}
-9 *3 C u0 p0 c0 {5,S} {10,S} {23,S} {24,S}
-10 C u0 p0 c0 {9,S} {11,D} {15,S}
-11 C u0 p0 c0 {10,D} {12,S} {25,S}
-12 C u0 p0 c0 {11,S} {13,D} {26,S}
-13 C u0 p0 c0 {12,D} {14,S} {27,S}
-14 C u0 p0 c0 {13,S} {15,D} {28,S}
-15 C u0 p0 c0 {10,S} {14,D} {29,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {4,S}
-21 H u0 p0 c0 {5,S}
-22 H u0 p0 c0 {8,S}
-23 H u0 p0 c0 {9,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {11,S}
-26 H u0 p0 c0 {12,S}
-27 H u0 p0 c0 {13,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {15,S}
+1 *1 C u0 p0 c0 {2,S} {6,S} {7,S} {15,S}
+2 *3 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+3 C u0 p0 c0 {5,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {2,S} {10,B} {11,B}
+5 C u0 p0 c0 {3,S} {8,S} {9,D}
+6 *2 C u1 p0 c0 {1,S} {9,S} {21,S}
+7 C u0 p0 c0 {1,S} {8,D} {22,S}
+8 C u0 p0 c0 {5,S} {7,D} {23,S}
+9 C u0 p0 c0 {5,D} {6,S} {24,S}
+10 C u0 p0 c0 {4,B} {12,B} {25,S}
+11 C u0 p0 c0 {4,B} {14,B} {29,S}
+12 C u0 p0 c0 {10,B} {13,B} {26,S}
+13 C u0 p0 c0 {12,B} {14,B} {27,S}
+14 C u0 p0 c0 {11,B} {13,B} {28,S}
+15 H u0 p0 c0 {1,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {7,S}
+23 H u0 p0 c0 {8,S}
+24 H u0 p0 c0 {9,S}
+25 H u0 p0 c0 {10,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {13,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {11,S}
C14H15-43
multiplicity 2
-1 C u0 p0 c0 {2,S} {16,S} {17,S} {18,S}
-2 *1 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
-3 *2 C u1 p0 c0 {2,S} {4,S} {5,S}
-4 H u0 p0 c0 {3,S}
-5 C u0 p0 c0 {3,S} {6,D} {19,S}
-6 C u0 p0 c0 {5,D} {7,S} {20,S}
-7 C u0 p0 c0 {6,S} {8,D} {21,S}
-8 C u0 p0 c0 {2,S} {7,D} {22,S}
-9 *3 C u0 p0 c0 {2,S} {10,S} {23,S} {24,S}
-10 C u0 p0 c0 {9,S} {11,D} {15,S}
-11 C u0 p0 c0 {10,D} {12,S} {25,S}
-12 C u0 p0 c0 {11,S} {13,D} {26,S}
-13 C u0 p0 c0 {12,D} {14,S} {27,S}
-14 C u0 p0 c0 {13,S} {15,D} {28,S}
-15 C u0 p0 c0 {10,S} {14,D} {29,S}
-16 H u0 p0 c0 {1,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {5,S}
-20 H u0 p0 c0 {6,S}
-21 H u0 p0 c0 {7,S}
-22 H u0 p0 c0 {8,S}
-23 H u0 p0 c0 {9,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {11,S}
-26 H u0 p0 c0 {12,S}
-27 H u0 p0 c0 {13,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {15,S}
+1 *1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {4,S} {15,S} {16,S}
+3 C u0 p0 c0 {1,S} {17,S} {18,S} {19,S}
+4 C u0 p0 c0 {2,S} {7,B} {8,B}
+5 *2 C u1 p0 c0 {1,S} {9,S} {20,S}
+6 C u0 p0 c0 {1,S} {10,D} {21,S}
+7 C u0 p0 c0 {4,B} {12,B} {25,S}
+8 C u0 p0 c0 {4,B} {14,B} {29,S}
+9 C u0 p0 c0 {5,S} {11,D} {22,S}
+10 C u0 p0 c0 {6,D} {11,S} {24,S}
+11 C u0 p0 c0 {9,D} {10,S} {23,S}
+12 C u0 p0 c0 {7,B} {13,B} {26,S}
+13 C u0 p0 c0 {12,B} {14,B} {27,S}
+14 C u0 p0 c0 {8,B} {13,B} {28,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {5,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {9,S}
+23 H u0 p0 c0 {11,S}
+24 H u0 p0 c0 {10,S}
+25 H u0 p0 c0 {7,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {13,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {8,S}
C15H17-45
multiplicity 2
-1 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-2 C u0 p0 c0 {1,S} {3,S} {8,D}
-3 *2 C u1 p0 c0 {2,S} {4,S} {5,S}
-4 H u0 p0 c0 {3,S}
-5 *1 C u0 p0 c0 {3,S} {6,S} {9,S} {20,S}
-6 C u0 p0 c0 {5,S} {7,D} {21,S}
-7 C u0 p0 c0 {6,D} {8,S} {22,S}
-8 C u0 p0 c0 {2,D} {7,S} {23,S}
-9 *3 C u0 p0 c0 {5,S} {10,S} {11,S} {24,S}
-10 C u0 p0 c0 {9,S} {25,S} {26,S} {27,S}
-11 C u0 p0 c0 {9,S} {12,D} {16,S}
-12 C u0 p0 c0 {11,D} {13,S} {28,S}
-13 C u0 p0 c0 {12,S} {14,D} {29,S}
-14 C u0 p0 c0 {13,D} {15,S} {30,S}
-15 C u0 p0 c0 {14,S} {16,D} {31,S}
-16 C u0 p0 c0 {11,S} {15,D} {32,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {1,S}
-20 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {6,S}
-22 H u0 p0 c0 {7,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {10,S}
-27 H u0 p0 c0 {10,S}
-28 H u0 p0 c0 {12,S}
-29 H u0 p0 c0 {13,S}
-30 H u0 p0 c0 {14,S}
-31 H u0 p0 c0 {15,S}
-32 H u0 p0 c0 {16,S}
+1 *3 C u0 p0 c0 {2,S} {3,S} {5,S} {16,S}
+2 *1 C u0 p0 c0 {1,S} {7,S} {8,S} {17,S}
+3 C u0 p0 c0 {1,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {6,S} {21,S} {22,S} {23,S}
+5 C u0 p0 c0 {1,S} {10,B} {11,B}
+6 C u0 p0 c0 {4,S} {7,S} {9,D}
+7 *2 C u1 p0 c0 {2,S} {6,S} {24,S}
+8 C u0 p0 c0 {2,S} {12,D} {25,S}
+9 C u0 p0 c0 {6,D} {12,S} {27,S}
+10 C u0 p0 c0 {5,B} {13,B} {28,S}
+11 C u0 p0 c0 {5,B} {15,B} {32,S}
+12 C u0 p0 c0 {8,D} {9,S} {26,S}
+13 C u0 p0 c0 {10,B} {14,B} {29,S}
+14 C u0 p0 c0 {13,B} {15,B} {30,S}
+15 C u0 p0 c0 {11,B} {14,B} {31,S}
+16 H u0 p0 c0 {1,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {4,S}
+22 H u0 p0 c0 {4,S}
+23 H u0 p0 c0 {4,S}
+24 H u0 p0 c0 {7,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {9,S}
+28 H u0 p0 c0 {10,S}
+29 H u0 p0 c0 {13,S}
+30 H u0 p0 c0 {14,S}
+31 H u0 p0 c0 {15,S}
+32 H u0 p0 c0 {11,S}
C15H17-46
multiplicity 2
-1 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-2 C u0 p0 c0 {1,S} {3,D} {8,S}
-3 C u0 p0 c0 {2,D} {4,S} {20,S}
-4 C u0 p0 c0 {3,S} {5,D} {21,S}
-5 C u0 p0 c0 {4,D} {6,S} {22,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 *1 C u0 p0 c0 {2,S} {6,S} {9,S} {23,S}
-9 *3 C u0 p0 c0 {8,S} {10,S} {11,S} {24,S}
-10 C u0 p0 c0 {9,S} {25,S} {26,S} {27,S}
-11 C u0 p0 c0 {9,S} {12,D} {16,S}
-12 C u0 p0 c0 {11,D} {13,S} {28,S}
-13 C u0 p0 c0 {12,S} {14,D} {29,S}
-14 C u0 p0 c0 {13,D} {15,S} {30,S}
-15 C u0 p0 c0 {14,S} {16,D} {31,S}
-16 C u0 p0 c0 {11,S} {15,D} {32,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {1,S}
-20 H u0 p0 c0 {3,S}
-21 H u0 p0 c0 {4,S}
-22 H u0 p0 c0 {5,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {10,S}
-27 H u0 p0 c0 {10,S}
-28 H u0 p0 c0 {12,S}
-29 H u0 p0 c0 {13,S}
-30 H u0 p0 c0 {14,S}
-31 H u0 p0 c0 {15,S}
-32 H u0 p0 c0 {16,S}
+1 *3 C u0 p0 c0 {2,S} {3,S} {6,S} {16,S}
+2 *1 C u0 p0 c0 {1,S} {5,S} {7,S} {17,S}
+3 C u0 p0 c0 {1,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {5,S} {21,S} {22,S} {23,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,D}
+6 C u0 p0 c0 {1,S} {9,B} {10,B}
+7 *2 C u1 p0 c0 {2,S} {11,S} {24,S}
+8 C u0 p0 c0 {5,D} {12,S} {25,S}
+9 C u0 p0 c0 {6,B} {13,B} {28,S}
+10 C u0 p0 c0 {6,B} {15,B} {32,S}
+11 C u0 p0 c0 {7,S} {12,D} {27,S}
+12 C u0 p0 c0 {8,S} {11,D} {26,S}
+13 C u0 p0 c0 {9,B} {14,B} {29,S}
+14 C u0 p0 c0 {13,B} {15,B} {30,S}
+15 C u0 p0 c0 {10,B} {14,B} {31,S}
+16 H u0 p0 c0 {1,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {4,S}
+22 H u0 p0 c0 {4,S}
+23 H u0 p0 c0 {4,S}
+24 H u0 p0 c0 {7,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {11,S}
+28 H u0 p0 c0 {9,S}
+29 H u0 p0 c0 {13,S}
+30 H u0 p0 c0 {14,S}
+31 H u0 p0 c0 {15,S}
+32 H u0 p0 c0 {10,S}
C15H17-47
multiplicity 2
-1 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-2 C u0 p0 c0 {1,S} {3,S} {8,D}
-3 C u0 p0 c0 {2,S} {4,D} {20,S}
-4 C u0 p0 c0 {3,D} {5,S} {21,S}
-5 *1 C u0 p0 c0 {4,S} {6,S} {9,S} {22,S}
-6 *2 C u1 p0 c0 {5,S} {7,S} {8,S}
-7 H u0 p0 c0 {6,S}
-8 C u0 p0 c0 {2,D} {6,S} {23,S}
-9 *3 C u0 p0 c0 {5,S} {10,S} {11,S} {24,S}
-10 C u0 p0 c0 {9,S} {25,S} {26,S} {27,S}
-11 C u0 p0 c0 {9,S} {12,D} {16,S}
-12 C u0 p0 c0 {11,D} {13,S} {28,S}
-13 C u0 p0 c0 {12,S} {14,D} {29,S}
-14 C u0 p0 c0 {13,D} {15,S} {30,S}
-15 C u0 p0 c0 {14,S} {16,D} {31,S}
-16 C u0 p0 c0 {11,S} {15,D} {32,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {1,S}
-20 H u0 p0 c0 {3,S}
-21 H u0 p0 c0 {4,S}
-22 H u0 p0 c0 {5,S}
-23 H u0 p0 c0 {8,S}
-24 H u0 p0 c0 {9,S}
-25 H u0 p0 c0 {10,S}
-26 H u0 p0 c0 {10,S}
-27 H u0 p0 c0 {10,S}
-28 H u0 p0 c0 {12,S}
-29 H u0 p0 c0 {13,S}
-30 H u0 p0 c0 {14,S}
-31 H u0 p0 c0 {15,S}
-32 H u0 p0 c0 {16,S}
-
-C15H17-48
-multiplicity 2
-1 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {9,S} {20,S}
-3 C u0 p0 c0 {2,S} {4,D} {8,S}
-4 C u0 p0 c0 {3,D} {5,S} {21,S}
-5 C u0 p0 c0 {4,S} {6,D} {22,S}
-6 C u0 p0 c0 {5,D} {7,S} {23,S}
-7 C u0 p0 c0 {6,S} {8,D} {24,S}
-8 C u0 p0 c0 {3,S} {7,D} {25,S}
-9 *1 C u0 p0 c0 {2,S} {10,S} {11,S} {16,S}
-10 C u0 p0 c0 {9,S} {26,S} {27,S} {28,S}
-11 *2 C u1 p0 c0 {9,S} {12,S} {13,S}
-12 H u0 p0 c0 {11,S}
-13 C u0 p0 c0 {11,S} {14,D} {29,S}
-14 C u0 p0 c0 {13,D} {15,S} {30,S}
-15 C u0 p0 c0 {14,S} {16,D} {31,S}
-16 C u0 p0 c0 {9,S} {15,D} {32,S}
-17 H u0 p0 c0 {1,S}
-18 H u0 p0 c0 {1,S}
-19 H u0 p0 c0 {1,S}
-20 H u0 p0 c0 {2,S}
+1 *3 C u0 p0 c0 {2,S} {3,S} {5,S} {16,S}
+2 *1 C u0 p0 c0 {1,S} {7,S} {8,S} {17,S}
+3 C u0 p0 c0 {1,S} {18,S} {19,S} {20,S}
+4 C u0 p0 c0 {6,S} {21,S} {22,S} {23,S}
+5 C u0 p0 c0 {1,S} {11,B} {12,B}
+6 C u0 p0 c0 {4,S} {9,S} {10,D}
+7 *2 C u1 p0 c0 {2,S} {10,S} {24,S}
+8 C u0 p0 c0 {2,S} {9,D} {25,S}
+9 C u0 p0 c0 {6,S} {8,D} {26,S}
+10 C u0 p0 c0 {6,D} {7,S} {27,S}
+11 C u0 p0 c0 {5,B} {13,B} {28,S}
+12 C u0 p0 c0 {5,B} {15,B} {32,S}
+13 C u0 p0 c0 {11,B} {14,B} {29,S}
+14 C u0 p0 c0 {13,B} {15,B} {30,S}
+15 C u0 p0 c0 {12,B} {14,B} {31,S}
+16 H u0 p0 c0 {1,S}
+17 H u0 p0 c0 {2,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {3,S}
21 H u0 p0 c0 {4,S}
-22 H u0 p0 c0 {5,S}
-23 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {4,S}
+23 H u0 p0 c0 {4,S}
24 H u0 p0 c0 {7,S}
25 H u0 p0 c0 {8,S}
-26 H u0 p0 c0 {10,S}
+26 H u0 p0 c0 {9,S}
27 H u0 p0 c0 {10,S}
-28 H u0 p0 c0 {10,S}
+28 H u0 p0 c0 {11,S}
29 H u0 p0 c0 {13,S}
30 H u0 p0 c0 {14,S}
31 H u0 p0 c0 {15,S}
-32 H u0 p0 c0 {16,S}
+32 H u0 p0 c0 {12,S}
+
+C15H17-48
+multiplicity 2
+1 *1 C u0 p0 c0 {2,S} {3,S} {6,S} {7,S}
+2 *3 C u0 p0 c0 {1,S} {4,S} {5,S} {16,S}
+3 C u0 p0 c0 {1,S} {20,S} {21,S} {22,S}
+4 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
+5 C u0 p0 c0 {2,S} {8,B} {9,B}
+6 *2 C u1 p0 c0 {1,S} {10,S} {23,S}
+7 C u0 p0 c0 {1,S} {11,D} {24,S}
+8 C u0 p0 c0 {5,B} {12,B} {25,S}
+9 C u0 p0 c0 {5,B} {14,B} {29,S}
+10 C u0 p0 c0 {6,S} {15,D} {30,S}
+11 C u0 p0 c0 {7,D} {15,S} {32,S}
+12 C u0 p0 c0 {8,B} {13,B} {26,S}
+13 C u0 p0 c0 {12,B} {14,B} {27,S}
+14 C u0 p0 c0 {9,B} {13,B} {28,S}
+15 C u0 p0 c0 {10,D} {11,S} {31,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {4,S}
+18 H u0 p0 c0 {4,S}
+19 H u0 p0 c0 {4,S}
+20 H u0 p0 c0 {3,S}
+21 H u0 p0 c0 {3,S}
+22 H u0 p0 c0 {3,S}
+23 H u0 p0 c0 {6,S}
+24 H u0 p0 c0 {7,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {12,S}
+27 H u0 p0 c0 {13,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {9,S}
+30 H u0 p0 c0 {10,S}
+31 H u0 p0 c0 {15,S}
+32 H u0 p0 c0 {11,S}
C8H10-7
-1 C u0 p0 c0 {2,S} {3,S} {9,S} {10,S}
-2 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
-3 *1 C u0 p0 c0 {1,S} {4,B} {5,B}
-4 *2 C u0 p0 c0 {3,B} {6,B} {14,S}
-5 C u0 p0 c0 {3,B} {8,B} {18,S}
-6 C u0 p0 c0 {4,B} {7,B} {15,S}
-7 C u0 p0 c0 {6,B} {8,B} {16,S}
-8 C u0 p0 c0 {5,B} {7,B} {17,S}
-9 H u0 p0 c0 {1,S}
-10 H u0 p0 c0 {1,S}
-11 H u0 p0 c0 {2,S}
-12 H u0 p0 c0 {2,S}
-13 H u0 p0 c0 {2,S}
-14 H u0 p0 c0 {4,S}
-15 H u0 p0 c0 {6,S}
-16 H u0 p0 c0 {7,S}
-17 H u0 p0 c0 {8,S}
-18 H u0 p0 c0 {5,S}
+1 C u0 p0 c0 {2,S} {3,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+3 *1 C u0 p0 c0 {1,S} {4,B} {5,B}
+4 *2 C u0 p0 c0 {3,B} {6,B} {14,S}
+5 C u0 p0 c0 {3,B} {8,B} {18,S}
+6 C u0 p0 c0 {4,B} {7,B} {15,S}
+7 C u0 p0 c0 {6,B} {8,B} {16,S}
+8 C u0 p0 c0 {5,B} {7,B} {17,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {8,S}
+18 H u0 p0 c0 {5,S}
C14H15-44
multiplicity 2
-1 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
-2 C u0 p0 c0 {1,S} {3,S} {15,S} {16,S}
-3 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-4 *3 C u0 p0 c0 {1,S} {7,B} {8,B}
-5 *2 C u1 p0 c0 {1,S} {10,S} {20,S}
-6 C u0 p0 c0 {1,S} {9,D} {21,S}
-7 C u0 p0 c0 {4,B} {12,B} {24,S}
-8 C u0 p0 c0 {4,B} {13,B} {25,S}
-9 C u0 p0 c0 {6,D} {14,S} {27,S}
-10 C u0 p0 c0 {5,S} {14,D} {29,S}
-11 C u0 p0 c0 {12,B} {13,B} {22,S}
-12 C u0 p0 c0 {7,B} {11,B} {23,S}
-13 C u0 p0 c0 {8,B} {11,B} {26,S}
-14 C u0 p0 c0 {9,S} {10,D} {28,S}
-15 H u0 p0 c0 {2,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {3,S}
-18 H u0 p0 c0 {3,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {6,S}
-22 H u0 p0 c0 {11,S}
-23 H u0 p0 c0 {12,S}
-24 H u0 p0 c0 {7,S}
-25 H u0 p0 c0 {8,S}
-26 H u0 p0 c0 {13,S}
-27 H u0 p0 c0 {9,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {10,S}
+1 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {15,S} {16,S}
+3 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
+4 *3 C u0 p0 c0 {1,S} {7,B} {8,B}
+5 *2 C u1 p0 c0 {1,S} {10,S} {20,S}
+6 C u0 p0 c0 {1,S} {9,D} {21,S}
+7 C u0 p0 c0 {4,B} {12,B} {24,S}
+8 C u0 p0 c0 {4,B} {13,B} {25,S}
+9 C u0 p0 c0 {6,D} {14,S} {27,S}
+10 C u0 p0 c0 {5,S} {14,D} {29,S}
+11 C u0 p0 c0 {12,B} {13,B} {22,S}
+12 C u0 p0 c0 {7,B} {11,B} {23,S}
+13 C u0 p0 c0 {8,B} {11,B} {26,S}
+14 C u0 p0 c0 {9,S} {10,D} {28,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {5,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {7,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {13,S}
+27 H u0 p0 c0 {9,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {10,S}
C12H10-3
-1 *1 C u0 p0 c0 {2,S} {3,B} {4,B}
-2 C u0 p0 c0 {1,S} {5,B} {6,B}
-3 *2 C u0 p0 c0 {1,B} {8,B} {15,S}
-4 C u0 p0 c0 {1,B} {9,B} {16,S}
-5 C u0 p0 c0 {2,B} {10,B} {18,S}
-6 C u0 p0 c0 {2,B} {12,B} {22,S}
-7 C u0 p0 c0 {8,B} {9,B} {13,S}
-8 C u0 p0 c0 {3,B} {7,B} {14,S}
-9 C u0 p0 c0 {4,B} {7,B} {17,S}
-10 C u0 p0 c0 {5,B} {11,B} {19,S}
-11 C u0 p0 c0 {10,B} {12,B} {20,S}
-12 C u0 p0 c0 {6,B} {11,B} {21,S}
-13 H u0 p0 c0 {7,S}
-14 H u0 p0 c0 {8,S}
-15 H u0 p0 c0 {3,S}
-16 H u0 p0 c0 {4,S}
-17 H u0 p0 c0 {9,S}
-18 H u0 p0 c0 {5,S}
-19 H u0 p0 c0 {10,S}
-20 H u0 p0 c0 {11,S}
-21 H u0 p0 c0 {12,S}
-22 H u0 p0 c0 {6,S}
+1 *1 C u0 p0 c0 {2,S} {3,B} {4,B}
+2 C u0 p0 c0 {1,S} {5,B} {6,B}
+3 *2 C u0 p0 c0 {1,B} {8,B} {15,S}
+4 C u0 p0 c0 {1,B} {9,B} {16,S}
+5 C u0 p0 c0 {2,B} {10,B} {18,S}
+6 C u0 p0 c0 {2,B} {12,B} {22,S}
+7 C u0 p0 c0 {8,B} {9,B} {13,S}
+8 C u0 p0 c0 {3,B} {7,B} {14,S}
+9 C u0 p0 c0 {4,B} {7,B} {17,S}
+10 C u0 p0 c0 {5,B} {11,B} {19,S}
+11 C u0 p0 c0 {10,B} {12,B} {20,S}
+12 C u0 p0 c0 {6,B} {11,B} {21,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {4,S}
+17 H u0 p0 c0 {9,S}
+18 H u0 p0 c0 {5,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {11,S}
+21 H u0 p0 c0 {12,S}
+22 H u0 p0 c0 {6,S}
C14H15-55
multiplicity 2
-1 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
-2 *3 C u0 p0 c0 {1,S} {3,S} {15,S} {16,S}
-3 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
-4 C u0 p0 c0 {1,S} {7,B} {8,B}
-5 *2 C u1 p0 c0 {1,S} {10,S} {20,S}
-6 C u0 p0 c0 {1,S} {9,D} {21,S}
-7 C u0 p0 c0 {4,B} {12,B} {24,S}
-8 C u0 p0 c0 {4,B} {13,B} {25,S}
-9 C u0 p0 c0 {6,D} {14,S} {27,S}
-10 C u0 p0 c0 {5,S} {14,D} {29,S}
-11 C u0 p0 c0 {12,B} {13,B} {22,S}
-12 C u0 p0 c0 {7,B} {11,B} {23,S}
-13 C u0 p0 c0 {8,B} {11,B} {26,S}
-14 C u0 p0 c0 {9,S} {10,D} {28,S}
-15 H u0 p0 c0 {2,S}
-16 H u0 p0 c0 {2,S}
-17 H u0 p0 c0 {3,S}
-18 H u0 p0 c0 {3,S}
-19 H u0 p0 c0 {3,S}
-20 H u0 p0 c0 {5,S}
-21 H u0 p0 c0 {6,S}
-22 H u0 p0 c0 {11,S}
-23 H u0 p0 c0 {12,S}
-24 H u0 p0 c0 {7,S}
-25 H u0 p0 c0 {8,S}
-26 H u0 p0 c0 {13,S}
-27 H u0 p0 c0 {9,S}
-28 H u0 p0 c0 {14,S}
-29 H u0 p0 c0 {10,S}
+1 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {15,S} {16,S}
+3 C u0 p0 c0 {2,S} {17,S} {18,S} {19,S}
+4 C u0 p0 c0 {1,S} {7,B} {8,B}
+5 *2 C u1 p0 c0 {1,S} {10,S} {20,S}
+6 C u0 p0 c0 {1,S} {9,D} {21,S}
+7 C u0 p0 c0 {4,B} {12,B} {24,S}
+8 C u0 p0 c0 {4,B} {13,B} {25,S}
+9 C u0 p0 c0 {6,D} {14,S} {27,S}
+10 C u0 p0 c0 {5,S} {14,D} {29,S}
+11 C u0 p0 c0 {12,B} {13,B} {22,S}
+12 C u0 p0 c0 {7,B} {11,B} {23,S}
+13 C u0 p0 c0 {8,B} {11,B} {26,S}
+14 C u0 p0 c0 {9,S} {10,D} {28,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+18 H u0 p0 c0 {3,S}
+19 H u0 p0 c0 {3,S}
+20 H u0 p0 c0 {5,S}
+21 H u0 p0 c0 {6,S}
+22 H u0 p0 c0 {11,S}
+23 H u0 p0 c0 {12,S}
+24 H u0 p0 c0 {7,S}
+25 H u0 p0 c0 {8,S}
+26 H u0 p0 c0 {13,S}
+27 H u0 p0 c0 {9,S}
+28 H u0 p0 c0 {14,S}
+29 H u0 p0 c0 {10,S}
C7H9-72
multiplicity 2
@@ -84765,25 +84765,25 @@ multiplicity 2
OCCdNj_p
multiplicity 2
-1 O u0 p2 c0 {2,S} {5,S}
-2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
-3 C u0 p0 c0 {2,S} {4,D} {8,S}
-4 N u1 p1 c0 {3,D}
-5 H u0 p0 c0 {1,S}
-6 H u0 p0 c0 {2,S}
-7 H u0 p0 c0 {2,S}
-8 H u0 p0 c0 {3,S}
+1 O u0 p2 c0 {3,S} {8,S}
+2 N u1 p1 c0 {4,D}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {2,D} {3,S} {7,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {1,S}
OCNdCj_p
multiplicity 2
-1 O u0 p2 c0 {2,S} {6,S}
-2 C u0 p0 c0 {1,S} {3,S} {7,S} {8,S}
-3 N u0 p1 c0 {2,S} {4,D}
-4 C u1 p0 c0 {3,D} {5,S}
-5 H u0 p0 c0 {4,S}
-6 H u0 p0 c0 {1,S}
-7 H u0 p0 c0 {2,S}
-8 H u0 p0 c0 {2,S}
+1 O u0 p2 c0 {3,S} {7,S}
+2 N u0 p1 c0 {3,S} {4,D}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 C u1 p0 c0 {2,D} {8,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {4,S}
C22H13
multiplicity 2
@@ -87189,3 +87189,115 @@ multiplicity 2
24 H u0 p0 c0 {8,S}
25 H u0 p0 c0 {8,S}
+C3H6LiO3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+5 *3 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+C2H3LiO3
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+CH3LiN
+multiplicity 2
+1 *1 N u0 p1 c0 {2,S} {3,S} {6,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+CH2LiO
+multiplicity 2
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 *3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+C2H4LiO
+multiplicity 2
+1 *3 O u0 p2 c0 {2,S} {4,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *2 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+LiO
+multiplicity 2
+1 *3 O u1 p2 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+C3H4LiO3
+multiplicity 2
+1 *3 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 *1 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *2 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+CLiO3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 *3 O u1 p2 c0 {4,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+
+C3H4LiO3-2
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 *2 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 *3 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C3H4O3
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 *1 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/R_Addition_MultipleBond/training/reactions.py b/input/kinetics/families/R_Addition_MultipleBond/training/reactions.py
index 5bc967a1cb..873f0bc32c 100755
--- a/input/kinetics/families/R_Addition_MultipleBond/training/reactions.py
+++ b/input/kinetics/families/R_Addition_MultipleBond/training/reactions.py
@@ -59417,3 +59417,259 @@
""",
)
+entry(
+ index = 2952,
+ label = "C3H6LiO3 <=> C2H3LiO3 + CH3",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.52475e+12,'s^-1'), n=0.485524, Ea=(74.6365,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.3491379528127108,B=1.0160698056746285,E=0.42818292849726036,L=5.830949166037544,A=0.6662179817376498,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[C](OC)OC <=> [Li]OC(=O)OC + [CH3]
+TS method summary for TS4 in [Li]O[C](OC)OC <=> [Li]OC(=O)OC + [CH3]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 10.13692100 -1.88318400 0.21618100
+O 9.95271500 -3.47597800 -0.82363000
+C 9.43494700 -4.12309200 0.09748900
+O 9.05523800 -5.39251300 -0.02478300
+C 9.27694900 -6.00741100 -1.31448600
+O 9.23224500 -3.57328800 1.26418200
+C 8.49351700 -4.51650300 2.55819400
+H 8.90589100 -7.02407800 -1.20932600
+H 10.33979200 -6.00627900 -1.55471100
+H 8.72542600 -5.47212400 -2.08690700
+H 8.49157700 -3.75633300 3.32703400
+H 9.18504600 -5.33492000 2.70390000
+H 7.52622300 -4.78602300 2.15700800
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: Another conformer for TS4 exists which is 2.60 kJ/mol lower.Another conformer for TS4 exists which is 2.60 kJ/mol lower. But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 7], invalidation reason: Two consecutive points are inconsistent by more than 17.59 kJ/molTwo consecutive points are inconsistent by more than 19.39 kJ/molTwo consecutive points are inconsistent by more than 23.48 kJ/mol
+pivots: [4, 5], dihedral: [3, 4, 5, 8], rotor symmetry: 2, max scan energy: 2.98 kJ/mol
+pivots: [6, 7], dihedral: [3, 6, 7, 11], rotor symmetry: 3, max scan energy: 2.25 kJ/mol
+Troubleshot with the following constraints and 2 degrees resolution:
+D 1 2 3 4 F
+D 2 3 4 5 F
+D 2 3 6 7 F
+D 3 4 5 8 F
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1650.2595639812773 J/mol
+""",
+)
+
+entry(
+ index = 2953,
+ label = "CH3LiN <=> CH2NH + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.3493e+15,'s^-1'), n=-0.259789, Ea=(57.8699,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.65419313965326,B=1.2542197583042969,E=-0.21990942778263972,L=-9.14111680402368,A=3.645314481406821,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]N[CH2] <=> [Li] + N=C
+TS method summary for TS5 in [Li]N[CH2] <=> [Li] + N=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 6.05139304 -0.13209844 0.04731853
+N -0.59090151 0.44974234 -0.13918199
+C -1.50102245 -0.40751439 0.06649375
+H -0.84130096 1.35681132 0.26234830
+H -2.43737623 -0.21216607 0.60231309
+H -1.36253440 -1.42264825 -0.30947313
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9225.750515830967 J/mol
+""",
+)
+
+entry(
+ index = 2954,
+ label = "CH2LiO <=> CH2O-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.12946e+16,'s^-1'), n=-0.125312, Ea=(91.4067,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.4735938637413528,B=2.67486764340657,E=-5.09678040094995,L=-4.876934525239067,A=3.9944267641274602,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[CH2] <=> [Li] + C=O
+TS method summary for TS2 in [Li]O[CH2] <=> [Li] + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 5.94953985 -0.41297703 -0.17000001
+O -1.44709358 -0.51595384 -0.58748736
+C -0.51807902 -0.11636709 0.05072105
+H -0.34294039 0.96399341 0.21662004
+H 0.21655881 -0.80519630 0.51008017
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9134.820807836515 J/mol
+""",
+)
+
+entry(
+ index = 2955,
+ label = "C2H4LiO <=> C2H4 + LiO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.73118e+09,'s^-1'), n=1.05672, Ea=(124.537,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.7587541172343483,B=4.554524422792835,E=0.35143960938889907,L=9.719910916870246,A=2.0308080570391414,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC[CH2] <=> [Li][O] + C=C
+TS method summary for TS8 in [Li]OC[CH2] <=> [Li][O] + C=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.91810413 -1.46763367 -0.00343736
+O -1.43551440 0.15847563 0.00469185
+C 0.51731043 0.76450037 0.00318628
+C 1.22192340 -0.39477660 -0.00179059
+H 1.55560118 -0.84671823 -0.93123285
+H 1.55706499 -0.85358686 0.92375565
+H 0.34516190 1.30427126 0.92254216
+H 0.34306501 1.31089605 -0.91186830
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 6207.138255494839 J/mol
+""",
+)
+
+entry(
+ index = 2956,
+ label = "C3H4LiO3 <=> C2H4 + CLiO3",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.75254e+10,'s^-1'), n=0.859471, Ea=(102.084,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.874468711820343,B=1.5429946013135403,E=3.7953459556664635,L=10.74627656346647,A=0.9238437970987374,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC(=O)OC[CH2] <=> [Li]OC(=O)[O] + C=C
+TS method summary for TS9 in [Li]OC(=O)OC[CH2] <=> [Li]OC(=O)[O] + C=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.21472100 1.08893600 0.04629800
+O 2.98950300 -0.57597100 0.31603500
+C 3.81582500 0.10932400 1.00613000
+O 3.69881400 1.37255200 1.12635500
+O 4.77758900 -0.57482400 1.58413800
+C 5.96700300 0.59057700 2.94859300
+C 6.86673100 1.08514900 2.05930900
+H 6.66188300 1.99792200 1.51328300
+H 7.77799200 0.54918900 1.81993300
+H 6.18401500 -0.29804400 3.52695800
+H 5.10136800 1.17151600 3.23479500
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [6, 7], dihedral: [10, 6, 7, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1178.0314401999576 J/mol
+""",
+)
+
+entry(
+ index = 2957,
+ label = "C3H4LiO3-2 <=> C3H4O3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.54076e+14,'s^-1'), n=-0.182294, Ea=(23.9219,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.018725993417632,B=4.93569039446143,E=-4.315782362402726,L=-1.68464261284562,A=3.5698295734222367,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1
+TS method summary for TS2 in [Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.19853800 -1.72038300 -0.07266600
+O 1.76667000 0.85234100 0.00624500
+C 0.64157500 0.45596800 0.00446400
+O 0.35500500 -0.88546600 -0.06754100
+C -1.07057700 -1.09977700 0.11070100
+C -1.63216600 0.30832100 -0.11252500
+O -0.48175500 1.17430200 0.07309300
+H -1.23031400 -1.47803000 1.12084400
+H -1.39532400 -1.83156700 -0.62695100
+H -2.00519600 0.46029600 -1.12605700
+H -2.38753000 0.59754200 0.61515000
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 10990.041834280188 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/R_Addition_MultipleBond_Disprop/groups.py b/input/kinetics/families/R_Addition_MultipleBond_Disprop/groups.py
new file mode 100644
index 0000000000..3646985756
--- /dev/null
+++ b/input/kinetics/families/R_Addition_MultipleBond_Disprop/groups.py
@@ -0,0 +1,112 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "R_Addition_MultipleBond_Disprop/groups"
+shortDesc = ""
+longDesc = """
+
+"""
+
+template(reactants=["Root"], products=["RJ_R_Y", "R2"], ownReverse=False)
+
+reverse = "Beta_Scission"
+reversible = True
+
+reactantNum = 2
+
+productNum = 2
+
+autoGenerated = True
+
+recipe(actions=[
+ ['LOSE_RADICAL', '*3', 1],
+ ['LOSE_RADICAL', '*6', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+ ['BREAK_BOND', '*4', 1, '*5'],
+ ['CHANGE_BOND', '*5', 1, '*6'],
+ ['CHANGE_BOND', '*2', 1, '*4'],
+])
+
+entry(
+ index = 0,
+ label = "Root",
+ group =
+"""
+1 *4 R!H u0 {2,[S,D]} {3,S}
+2 *2 R!H u0 {1,[S,D]} {4,[D,T,B]}
+3 *5 R!H u0 {1,S} {5,[S,D]}
+4 *1 R!H u0 {2,[D,T,B]}
+5 *6 R!H u1 {3,[S,D]}
+6 *3 R u1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "Root_6R->C",
+ group =
+"""
+1 *4 O u0 r0 {2,S} {3,S}
+2 *2 C u0 r0 {1,S} {4,D}
+3 *5 C u0 r0 {1,S} {5,S}
+4 *1 O u0 r0 {2,D}
+5 *6 C u1 r0 {3,S}
+6 *3 C u1 r0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Root_N-6R->C",
+ group =
+"""
+1 *4 O u0 r0 {2,S} {3,S}
+2 *2 C u0 r0 {1,S} {4,D}
+3 *5 C u0 r0 {1,S} {5,S}
+4 *1 O u0 r0 {2,D}
+5 *6 C u1 r0 {3,S}
+6 *3 [Li,H,P,Cl,Br,N,S,F,I,O,Si] u1 r0
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Root
+ L2: Root_6R->C
+ L2: Root_N-6R->C
+"""
+)
+
+forbidden(
+ label = "O2d",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 O u0 {1,D}
+""",
+ shortDesc = """""",
+ longDesc =
+"""
+
+""",
+)
+
+forbidden(
+ label = "carbonaterad",
+ group =
+"""
+1 *3 C u1 {2,S} {3,S} {4,S}
+2 O u0 {1,S}
+3 O u0 {1,S}
+4 O u0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+
+""",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/R_Addition_MultipleBond_Disprop/rules.py b/input/kinetics/families/R_Addition_MultipleBond_Disprop/rules.py
new file mode 100644
index 0000000000..56e9383341
--- /dev/null
+++ b/input/kinetics/families/R_Addition_MultipleBond_Disprop/rules.py
@@ -0,0 +1,53 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "R_Addition_MultipleBond_Disprop/rules"
+shortDesc = ""
+longDesc = """
+
+"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(8.78627e+16,'m^3/(mol*s)'), n=-2.90684, w0=(922900,'J/mol'), E0=(118657,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.9871930555287386, var=2.843360384978805, Tref=1000.0, N=2, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 2 training reactions at node Root
+ Total Standard Deviation in ln(k): 5.8608223168191"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root
+Total Standard Deviation in ln(k): 5.8608223168191""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root
+Total Standard Deviation in ln(k): 5.8608223168191
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_6R->C",
+ kinetics = Arrhenius(A=(1.60363e+10,'m^3/(mol*s)'), n=-1.06749, Ea=(2.37772,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_6R->C',), comment="""BM rule fitted to 1 training reactions at node Root_6R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_6R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_6R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_N-6R->C",
+ kinetics = Arrhenius(A=(7.82969e+15,'m^3/(mol*s)'), n=-2.51461, Ea=(7.6717,'kJ/mol'), T0=(1,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-6R->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-6R->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-6R->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_N-6R->C
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/dictionary.txt b/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/dictionary.txt
new file mode 100644
index 0000000000..9300742241
--- /dev/null
+++ b/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/dictionary.txt
@@ -0,0 +1,276 @@
+C3H4LiO3
+multiplicity 2
+1 *4 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 *1 O u0 p2 c0 {6,D}
+4 *5 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *6 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+Li
+multiplicity 2
+1 *3 Li u1 p0 c0
+
+CLi2O3
+1 *1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 *4 O u0 p2 c0 {4,D}
+4 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 *3 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+C2H4
+1 *5 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *6 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C4H6N
+multiplicity 2
+1 *1 N u0 p1 c0 {5,T}
+2 *5 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 *4 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 *6 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 *2 C u0 p0 c0 {1,T} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+C2H2LiN
+1 *1 N u0 p1 c0 {3,D} {4,S}
+2 *4 C u0 p0 c0 {3,D} {5,S} {6,S}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C3H5O2
+multiplicity 2
+1 *4 O u0 p2 c0 {3,S} {5,S}
+2 *1 O u0 p2 c0 {5,D}
+3 *5 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 *6 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {1,S} {2,D} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+CHLiO2
+1 *1 O u0 p2 c0 {3,S} {4,S}
+2 *4 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+
+C3H5O2-2
+multiplicity 2
+1 *6 O u1 p2 c0 {4,S}
+2 *1 O u0 p2 c0 {5,D}
+3 *4 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 *5 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 *2 C u0 p0 c0 {2,D} {3,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+C2H3LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 *4 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+CH2O
+1 *6 O u0 p2 c0 {2,D}
+2 *5 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+C3H7N2
+multiplicity 2
+1 *5 N u0 p1 c0 {3,S} {5,S} {8,S}
+2 *1 N u0 p1 c0 {4,D} {12,S}
+3 *4 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 *2 C u0 p0 c0 {2,D} {3,S} {9,S}
+5 *6 C u1 p0 c0 {1,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+C2H4LiN
+1 *1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 *4 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 *3 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+CH3N
+1 *5 N u0 p1 c0 {2,D} {5,S}
+2 *6 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+C4H9O2S
+multiplicity 2
+1 *2 S u0 p0 c0 {2,D} {3,D} {4,S} {6,S}
+2 *1 O u0 p2 c0 {1,D}
+3 O u0 p2 c0 {1,D}
+4 *4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 *5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+7 *6 C u1 p0 c0 {5,S} {15,S} {16,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+
+C2H5LiO2S
+1 *2 S u0 p0 c0 {2,S} {3,D} {4,S} {5,D}
+2 *1 O u0 p2 c0 {1,S} {6,S}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 *4 C u0 p0 c0 {1,D} {10,S} {11,S}
+6 *3 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C4H7O
+multiplicity 2
+1 *1 O u0 p2 c0 {5,D}
+2 *4 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 *5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+4 *6 C u1 p0 c0 {3,S} {11,S} {12,S}
+5 *2 C u0 p0 c0 {1,D} {2,S} {10,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+C2H5
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *3 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+C4H8O
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 *2 C u0 p0 c0 {1,S} {5,D} {11,S}
+5 *4 C u0 p0 c0 {4,D} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+C5H9O3
+multiplicity 2
+1 O u0 p2 c0 {4,S} {8,S}
+2 *4 O u0 p2 c0 {5,S} {8,S}
+3 *1 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 *5 C u0 p0 c0 {2,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 *6 C u1 p0 c0 {5,S} {16,S} {17,S}
+8 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+C3H5LiO3
+1 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {6,S} {7,S}
+3 *4 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 *3 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C5H10O3
+1 *1 O u0 p2 c0 {4,S} {8,S}
+2 O u0 p2 c0 {5,S} {8,S}
+3 *4 O u0 p2 c0 {8,D}
+4 *3 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {7,S} {11,S} {12,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 C u0 p0 c0 {5,S} {16,S} {17,S} {18,S}
+8 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+18 H u0 p0 c0 {7,S}
+
+C3H5LiO3-2
+1 *1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 *4 O u0 p2 c0 {6,D}
+4 *3 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 *2 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
diff --git a/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/reactions.py b/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/reactions.py
new file mode 100644
index 0000000000..f1d47af87f
--- /dev/null
+++ b/input/kinetics/families/R_Addition_MultipleBond_Disprop/training/reactions.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "R_Addition_MultipleBond_Disprop/training"
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+entry(
+ index = 1,
+ label = "C3H4LiO3 + Li <=> CLi2O3 + C2H4",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.82969e+15,'m^3/(mol*s)'), n=-2.51461, Ea=(7.6717,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K'), comment="""Fitted to 50 data points; dA = *|/ 3.36722, dn = +|- 0.167182, dEa = +|- 0.694638 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC(=O)OC[CH2] + [Li] <=> C=C + [Li]OC(=O)O[Li]
+TS method summary for TS1 in [Li]OC(=O)OC[CH2] + [Li] <=> C=C + [Li]OC(=O)O[Li]:
+Computed using CVTST
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 2,
+ label = "C3H4LiO3 + C2H5 <=> C3H5LiO3-2 + C2H4",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.60363e+10,'m^3/(mol*s)'), n=-1.06749, Ea=(2.37772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K'), comment="""Fitted to 50 data points; dA = *|/ 2.80611, dn = +|- 0.142081, dEa = +|- 0.590342 kJ/mol"""),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC(=O)OC[CH2] + C[CH2] <=> C=C + [Li]OC(=O)OCC
+TS method summary for TS5 in [Li]OC(=O)OC[CH2] + C[CH2] <=> C=C + [Li]OC(=O)OCC:
+Computed using CVTST
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
diff --git a/input/kinetics/families/R_Recombination/groups.py b/input/kinetics/families/R_Recombination/groups.py
index 4ba03d9175..57c9859a4c 100644
--- a/input/kinetics/families/R_Recombination/groups.py
+++ b/input/kinetics/families/R_Recombination/groups.py
@@ -26,7 +26,7 @@
entry(
index = 0,
label = "Root",
- group =
+ group =
"""
1 * R u1
2 * R u1
@@ -37,7 +37,7 @@
entry(
index = 1,
label = "Root_1R->H",
- group =
+ group =
"""
1 * H u1
2 * R u1
@@ -48,7 +48,7 @@
entry(
index = 2,
label = "Root_1R->H_2R->S",
- group =
+ group =
"""
1 * H u1
2 * S u1
@@ -59,7 +59,7 @@
entry(
index = 3,
label = "Root_1R->H_2R->S_Ext-2S-R",
- group =
+ group =
"""
1 * H u1
2 * S u1 r0 {3,[S,D,T,B]}
@@ -71,7 +71,7 @@
entry(
index = 4,
label = "Root_1R->H_N-2R->S",
- group =
+ group =
"""
1 * H u1
2 * [O,H,C,N] u1
@@ -82,7 +82,7 @@
entry(
index = 5,
label = "Root_1R->H_N-2R->S_2CHNO->H",
- group =
+ group =
"""
1 * H u1
2 * H u1
@@ -93,7 +93,7 @@
entry(
index = 6,
label = "Root_1R->H_N-2R->S_N-2CHNO->H",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1
@@ -104,7 +104,7 @@
entry(
index = 7,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1
@@ -115,7 +115,7 @@
entry(
index = 8,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]}
@@ -129,7 +129,7 @@
entry(
index = 9,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H_Ext-5R!H-R_Ext-6R!H-R_Int-6R!H-2CNO",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]} {6,[S,D,T,B]}
@@ -145,7 +145,7 @@
entry(
index = 10,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H_Ext-5R!H-R_Ext-6R!H-R_Int-6R!H-2CNO_Sp-5R!H-=4R!H",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r1 {3,S} {6,S}
@@ -161,7 +161,7 @@
entry(
index = 11,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H_Ext-5R!H-R_Ext-6R!H-R_Int-6R!H-2CNO_N-Sp-5R!H-=4R!H",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]} {6,[S,D,T,B]}
@@ -177,7 +177,7 @@
entry(
index = 12,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H_Ext-5R!H-R_Ext-6R!H-R_Int-6R!H-2CNO_N-Sp-5R!H-=4R!H_Ext-3R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]} {6,[S,D,T,B]}
@@ -194,7 +194,7 @@
entry(
index = 13,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_Sp-4R!H-3R!H_Ext-3R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,S}
@@ -209,7 +209,7 @@
entry(
index = 14,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]}
@@ -223,7 +223,7 @@
entry(
index = 15,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-5R!H-R_Ext-5R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,S}
@@ -239,7 +239,7 @@
entry(
index = 16,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-5R!H-R_Ext-5R!H-R_Ext-2CNO-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,S} {8,[S,D,T,B]}
@@ -256,7 +256,7 @@
entry(
index = 17,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-3R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]}
@@ -271,7 +271,7 @@
entry(
index = 18,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-5R!H-R_Ext-2CNO-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,[S,D,T,B]} {7,[S,D,T,B]}
@@ -287,7 +287,7 @@
entry(
index = 19,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-5R!H-R_Ext-2CNO-R_Sp-3R!H-=2CNO",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,B} {7,[S,D,T,B]}
@@ -303,7 +303,7 @@
entry(
index = 20,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_2CNO-inRing_Ext-2CNO-R_Ext-3R!H-R_Ext-4R!H-R_N-Sp-4R!H-3R!H_Ext-5R!H-R_Ext-2CNO-R_N-Sp-3R!H-=2CNO",
- group =
+ group =
"""
1 * H u1
2 * C u1 r1 {3,S} {7,[S,D,T,B]}
@@ -319,7 +319,7 @@
entry(
index = 21,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0
@@ -330,7 +330,7 @@
entry(
index = 22,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,[S,D,T,B]}
@@ -342,7 +342,7 @@
entry(
index = 23,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,D}
@@ -354,7 +354,7 @@
entry(
index = 24,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_3R!H->O",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,D}
@@ -366,7 +366,7 @@
entry(
index = 25,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,D}
@@ -378,7 +378,7 @@
entry(
index = 26,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O_Ext-2CNO-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,D} {4,S}
@@ -391,7 +391,7 @@
entry(
index = 27,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O_Ext-2CNO-R_Ext-3CS-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,D} {4,S}
@@ -405,7 +405,7 @@
entry(
index = 28,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O_Ext-3CS-R",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,D}
@@ -418,7 +418,7 @@
entry(
index = 29,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O_Ext-3CS-R_2CNO->N",
- group =
+ group =
"""
1 * H u1 r0
2 * N u1 r0 {3,D}
@@ -431,7 +431,7 @@
entry(
index = 30,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_Sp-3R!H=2CCNNOO_N-3R!H->O_Ext-3CS-R_N-2CNO->N",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,D}
@@ -444,7 +444,7 @@
entry(
index = 31,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO",
- group =
+ group =
"""
1 * H u1
2 * [O,N,C] u1 r0 {3,[B,S,T]}
@@ -456,7 +456,7 @@
entry(
index = 32,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_2CNO->O",
- group =
+ group =
"""
1 * H u1
2 * O u1 r0 {3,S}
@@ -468,7 +468,7 @@
entry(
index = 33,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_2CNO->O_3R!H->O",
- group =
+ group =
"""
1 * H u1 r0
2 * O u1 r0 {3,S}
@@ -480,7 +480,7 @@
entry(
index = 34,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_2CNO->O_N-3R!H->O",
- group =
+ group =
"""
1 * H u1 r0
2 * O u1 r0 {3,S}
@@ -492,7 +492,7 @@
entry(
index = 35,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,[B,S,T]}
@@ -504,7 +504,7 @@
entry(
index = 36,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_Ext-2CN-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S} {4,S}
@@ -517,7 +517,7 @@
entry(
index = 37,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_Ext-2CN-R_Ext-2CN-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S} {4,S} {5,[S,D,T,B]}
@@ -531,7 +531,7 @@
entry(
index = 38,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_Ext-2CN-R_Ext-2CN-R_Ext-5R!H-R_Ext-3R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S} {4,S} {5,[S,D,T,B]}
@@ -547,7 +547,7 @@
entry(
index = 39,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_Ext-2CN-R_Ext-3R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S} {4,S}
@@ -561,7 +561,7 @@
entry(
index = 40,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_Ext-2CN-R_Ext-3R!H-R_Ext-4R!H-R",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,S} {4,S}
@@ -576,7 +576,7 @@
entry(
index = 41,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,[B,S,T]}
@@ -588,7 +588,7 @@
entry(
index = 42,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -600,7 +600,7 @@
entry(
index = 43,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -613,7 +613,7 @@
entry(
index = 44,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_Sp-4R!H=3C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -626,7 +626,7 @@
entry(
index = 45,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_Sp-4R!H=3C_3C-inRing",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -639,7 +639,7 @@
entry(
index = 46,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_Sp-4R!H=3C_3C-inRing_Ext-4R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,S}
@@ -654,7 +654,7 @@
entry(
index = 47,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_Sp-4R!H=3C_3C-inRing_Ext-4R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,S}
@@ -669,7 +669,7 @@
entry(
index = 48,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_Sp-4R!H=3C_N-3C-inRing",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -682,7 +682,7 @@
entry(
index = 49,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -695,7 +695,7 @@
entry(
index = 50,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C_Sp-4R!H-3C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -708,7 +708,7 @@
entry(
index = 51,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C_N-Sp-4R!H-3C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -721,7 +721,7 @@
entry(
index = 52,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C_N-Sp-4R!H-3C_3C-inRing",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,S}
@@ -734,7 +734,7 @@
entry(
index = 53,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C_N-Sp-4R!H-3C_N-3C-inRing",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -747,7 +747,7 @@
entry(
index = 54,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_Sp-3C-2CN_Ext-3C-R_N-Sp-4R!H=3C_N-Sp-4R!H-3C_N-3C-inRing_Ext-4R!H-R",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,S}
@@ -761,7 +761,7 @@
entry(
index = 55,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_3R!H->C_N-Sp-3C-2CN",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0 {3,T}
@@ -773,7 +773,7 @@
entry(
index = 56,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_Ext-2CNO-R_N-Sp-3R!H=2CCNNOO_N-2CNO->O_N-3R!H->C",
- group =
+ group =
"""
1 * H u1
2 * C u1 r0 {3,[B,S,T]}
@@ -785,7 +785,7 @@
entry(
index = 57,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_2CNO->O",
- group =
+ group =
"""
1 * H u1
2 * O u1 r0
@@ -796,7 +796,7 @@
entry(
index = 58,
label = "Root_1R->H_N-2R->S_N-2CHNO->H_N-2CNO-inRing_N-2CNO->O",
- group =
+ group =
"""
1 * H u1 r0
2 * C u1 r0
@@ -807,7 +807,7 @@
entry(
index = 59,
label = "Root_N-1R->H",
- group =
+ group =
"""
1 * [O,S,C,N] u1
2 * R u1
@@ -818,7 +818,7 @@
entry(
index = 60,
label = "Root_N-1R->H_1CNOS->N",
- group =
+ group =
"""
1 * N u1
2 * R u1
@@ -829,7 +829,7 @@
entry(
index = 61,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R",
- group =
+ group =
"""
1 * N u1
2 * R u1 {3,[S,D,T,B]}
@@ -841,7 +841,7 @@
entry(
index = 62,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0",
- group =
+ group =
"""
1 * N u1
2 * R u1 {3,[S,D,T,B]}
@@ -853,7 +853,7 @@
entry(
index = 63,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_2R->C",
- group =
+ group =
"""
1 * N u1 r0
2 * C u1 r0 {3,[S,D,T,B]}
@@ -865,7 +865,7 @@
entry(
index = 64,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C",
- group =
+ group =
"""
1 * N u1
2 * [O,N] u1 {3,S}
@@ -877,7 +877,7 @@
entry(
index = 65,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_3R!H->C",
- group =
+ group =
"""
1 * N u1
2 * [O,N] u1 {3,S}
@@ -889,7 +889,7 @@
entry(
index = 66,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_3R!H->C_Ext-1N-R",
- group =
+ group =
"""
1 * N u1 r0 {4,[S,D,T,B]}
2 * [O,N] u1 r0 {3,S}
@@ -902,7 +902,7 @@
entry(
index = 67,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_N-3R!H->C",
- group =
+ group =
"""
1 * N u1
2 * [O,N] u1 {3,S}
@@ -914,7 +914,7 @@
entry(
index = 68,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_N-3R!H->C_Ext-1N-R",
- group =
+ group =
"""
1 * N u1 {4,[S,D]}
2 * [O,N] u1 {3,S}
@@ -927,7 +927,7 @@
entry(
index = 69,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_N-3R!H->C_Ext-1N-R_2NO->O",
- group =
+ group =
"""
1 * N u1 {4,[S,D]}
2 * O u1 {3,S}
@@ -940,7 +940,7 @@
entry(
index = 70,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_3R!H-u0_N-2R->C_N-3R!H->C_Ext-1N-R_N-2NO->O",
- group =
+ group =
"""
1 * N u1 {4,[S,D]}
2 * N u1 {3,S}
@@ -953,7 +953,7 @@
entry(
index = 71,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_N-3R!H-u0",
- group =
+ group =
"""
1 * N u1
2 * O u1 {3,S}
@@ -965,7 +965,7 @@
entry(
index = 72,
label = "Root_N-1R->H_1CNOS->N_Ext-2R-R_N-3R!H-u0_Ext-1N-R",
- group =
+ group =
"""
1 * N u1 r0 {4,[S,D,T,B]}
2 * O u1 r0 {3,S}
@@ -978,7 +978,7 @@
entry(
index = 73,
label = "Root_N-1R->H_1CNOS->N_Ext-1N-R",
- group =
+ group =
"""
1 * N u1 {3,[S,D,T,B]}
2 * R u1
@@ -990,7 +990,7 @@
entry(
index = 74,
label = "Root_N-1R->H_1CNOS->N_Ext-1N-R_Ext-1N-R",
- group =
+ group =
"""
1 * N u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
2 * R u1
@@ -1003,7 +1003,7 @@
entry(
index = 75,
label = "Root_N-1R->H_1CNOS->N_Ext-1N-R_Ext-1N-R_2R->C",
- group =
+ group =
"""
1 * N u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
2 * C u1
@@ -1016,7 +1016,7 @@
entry(
index = 76,
label = "Root_N-1R->H_1CNOS->N_Ext-1N-R_Ext-1N-R_N-2R->C",
- group =
+ group =
"""
1 * N u1 r0 {3,[S,D,T,B]} {4,[S,D,T,B]}
2 * O u1 r0
@@ -1029,7 +1029,7 @@
entry(
index = 77,
label = "Root_N-1R->H_N-1CNOS->N",
- group =
+ group =
"""
1 * [O,C,S] u1
2 * R u1
@@ -1040,7 +1040,7 @@
entry(
index = 78,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O",
- group =
+ group =
"""
1 * O u1
2 * R u1
@@ -1051,7 +1051,7 @@
entry(
index = 79,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * R u1
@@ -1063,7 +1063,7 @@
entry(
index = 80,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * R u1 {4,[S,D,T,B]}
@@ -1076,7 +1076,7 @@
entry(
index = 81,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]}
@@ -1090,7 +1090,7 @@
entry(
index = 82,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Ext-2R-R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1105,7 +1105,7 @@
entry(
index = 83,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Ext-2R-R_Ext-4R!H-R",
- group =
+ group =
"""
1 * O u1 r0 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1121,7 +1121,7 @@
entry(
index = 84,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Ext-2R-R_Ext-5R!H-R_Ext-5R!H-R",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1138,7 +1138,7 @@
entry(
index = 85,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Ext-2R-R_2R-inRing",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 r1 {4,B} {6,B}
@@ -1153,7 +1153,7 @@
entry(
index = 86,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Ext-2R-R_N-2R-inRing",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 r0 {4,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1168,7 +1168,7 @@
entry(
index = 87,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Sp-4R!H-2R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,S}
@@ -1182,7 +1182,7 @@
entry(
index = 88,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Sp-4R!H-2R_Sp-5R!H-4R!H",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,S}
@@ -1196,7 +1196,7 @@
entry(
index = 89,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Sp-4R!H-2R_N-Sp-5R!H-4R!H",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,S}
@@ -1210,7 +1210,7 @@
entry(
index = 90,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Sp-4R!H-2R_N-Sp-5R!H-4R!H_4R!H-inRing",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 r0 {4,S}
@@ -1224,7 +1224,7 @@
entry(
index = 91,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_Sp-4R!H-2R_N-Sp-5R!H-4R!H_N-4R!H-inRing",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 r0 {4,S}
@@ -1238,7 +1238,7 @@
entry(
index = 92,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-4R!H-R_N-Sp-4R!H-2R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 r0 {4,[B,D]}
@@ -1252,7 +1252,7 @@
entry(
index = 93,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1266,7 +1266,7 @@
entry(
index = 94,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_4R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[S,D,T,B]} {5,S}
@@ -1280,7 +1280,7 @@
entry(
index = 95,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1294,7 +1294,7 @@
entry(
index = 96,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O_Ext-2R-R",
- group =
+ group =
"""
1 * O u1 {3,S}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1309,7 +1309,7 @@
entry(
index = 97,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O_Ext-2R-R_3R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1324,7 +1324,7 @@
entry(
index = 98,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O_Ext-2R-R_N-3R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]} {6,[S,D,T,B]}
@@ -1339,7 +1339,7 @@
entry(
index = 99,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O_3R!H->O",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1353,7 +1353,7 @@
entry(
index = 100,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Ext-2R-R_N-4R!H->O_N-3R!H->O",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * C u1 {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1367,7 +1367,7 @@
entry(
index = 101,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Sp-4R!H-2R",
- group =
+ group =
"""
1 * O u1 {3,S}
2 * R u1 {4,S}
@@ -1380,7 +1380,7 @@
entry(
index = 102,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Sp-4R!H-2R_2R->C",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 r0 {4,S}
@@ -1393,7 +1393,7 @@
entry(
index = 103,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_Sp-4R!H-2R_N-2R->C",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * O u1 {4,S}
@@ -1406,7 +1406,7 @@
entry(
index = 104,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_N-Sp-4R!H-2R",
- group =
+ group =
"""
1 * O u1 {3,S}
2 * C u1 {4,[B,D]}
@@ -1419,7 +1419,7 @@
entry(
index = 105,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_N-Sp-4R!H-2R_4R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[B,D]}
@@ -1432,7 +1432,7 @@
entry(
index = 106,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_Ext-2R-R_N-Sp-4R!H-2R_N-4R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 {4,[B,D]}
@@ -1445,7 +1445,7 @@
entry(
index = 107,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_2R->C",
- group =
+ group =
"""
1 * O u1 {3,S}
2 * C u1
@@ -1457,7 +1457,7 @@
entry(
index = 108,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_2R->C_3R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1 r0
@@ -1469,7 +1469,7 @@
entry(
index = 109,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_2R->C_N-3R!H->O",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * C u1
@@ -1481,7 +1481,7 @@
entry(
index = 110,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_N-2R->C",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * [O,S] u1
@@ -1493,7 +1493,7 @@
entry(
index = 111,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_N-2R->C_3R!H->N",
- group =
+ group =
"""
1 * O u1 r0 {3,S}
2 * [O,S] u1
@@ -1505,7 +1505,7 @@
entry(
index = 112,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_N-2R->C_N-3R!H->N",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * [O,S] u1
@@ -1517,7 +1517,7 @@
entry(
index = 113,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_N-2R->C_N-3R!H->N_2OS->O",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * O u1 r0
@@ -1529,7 +1529,7 @@
entry(
index = 114,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_Ext-1O-R_N-2R->C_N-3R!H->N_N-2OS->O",
- group =
+ group =
"""
1 * O u1 {3,[S,D,T,B]}
2 * S u1 r0
@@ -1541,7 +1541,7 @@
entry(
index = 115,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_2R->C",
- group =
+ group =
"""
1 * O u1
2 * C u1
@@ -1552,7 +1552,7 @@
entry(
index = 116,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_2R->C_Ext-2C-R",
- group =
+ group =
"""
1 * O u1 r0
2 * C u1 {3,[S,D,T,B]}
@@ -1564,7 +1564,7 @@
entry(
index = 117,
label = "Root_N-1R->H_N-1CNOS->N_1COS->O_N-2R->C",
- group =
+ group =
"""
1 * O u1
2 * [O,S] u1 r0
@@ -1575,7 +1575,7 @@
entry(
index = 118,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O",
- group =
+ group =
"""
1 * [C,S] u1
2 * R u1
@@ -1586,7 +1586,7 @@
entry(
index = 119,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C",
- group =
+ group =
"""
1 * C u1
2 * R u1
@@ -1597,7 +1597,7 @@
entry(
index = 120,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing",
- group =
+ group =
"""
1 * C u1 r1
2 * C u1
@@ -1608,7 +1608,7 @@
entry(
index = 121,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_Sp-3R!H-1C",
- group =
+ group =
"""
1 * C u1 r1 {3,S}
2 * C u1
@@ -1620,7 +1620,7 @@
entry(
index = 122,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_Sp-3R!H-1C_2R-inRing",
- group =
+ group =
"""
1 * C u1 r1 {3,S}
2 * C u1 r1
@@ -1632,7 +1632,7 @@
entry(
index = 123,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_Sp-3R!H-1C_N-2R-inRing",
- group =
+ group =
"""
1 * C u1 r1 {3,S}
2 * C u1 r0
@@ -1644,7 +1644,7 @@
entry(
index = 124,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_Sp-3R!H-1C_N-2R-inRing_Ext-2R-R",
- group =
+ group =
"""
1 * C u1 r1 {3,S}
2 * C u1 r0 {4,[S,D,T,B]}
@@ -1657,7 +1657,7 @@
entry(
index = 125,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C",
- group =
+ group =
"""
1 * C u1 r1 {3,[B,D,T]}
2 * C u1
@@ -1669,7 +1669,7 @@
entry(
index = 126,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C_Ext-2R-R",
- group =
+ group =
"""
1 * C u1 r1 {3,[B,D,T]}
2 * C u1 {4,[S,D,T,B]}
@@ -1682,7 +1682,7 @@
entry(
index = 127,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C_Ext-2R-R_2R-inRing",
- group =
+ group =
"""
1 * C u1 r1 {3,B}
2 * C u1 r1 {4,[S,D,T,B]}
@@ -1695,7 +1695,7 @@
entry(
index = 128,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C_Ext-2R-R_N-2R-inRing",
- group =
+ group =
"""
1 * C u1 r1 {3,[B,D,T]}
2 * C u1 r0 {4,[S,D,T,B]}
@@ -1708,7 +1708,7 @@
entry(
index = 129,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C_Ext-2R-R_N-2R-inRing_Sp-4R!H-2R",
- group =
+ group =
"""
1 * C u1 r1 {3,[B,D,T]}
2 * C u1 r0 {4,S}
@@ -1721,7 +1721,7 @@
entry(
index = 130,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_1C-inRing_Ext-1C-R_N-Sp-3R!H-1C_Ext-2R-R_N-2R-inRing_N-Sp-4R!H-2R",
- group =
+ group =
"""
1 * C u1 r1 {3,[B,D,T]}
2 * C u1 r0 {4,[B,D]}
@@ -1734,7 +1734,7 @@
entry(
index = 131,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing",
- group =
+ group =
"""
1 * C u1 r0
2 * R u1
@@ -1745,7 +1745,7 @@
entry(
index = 132,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R",
- group =
+ group =
"""
1 * C u1 r0
2 * R u1 {3,[S,D,T,B]}
@@ -1757,7 +1757,7 @@
entry(
index = 133,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1770,7 +1770,7 @@
entry(
index = 134,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1784,7 +1784,7 @@
entry(
index = 135,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1799,7 +1799,7 @@
entry(
index = 136,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1814,7 +1814,7 @@
entry(
index = 137,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]} {7,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1830,7 +1830,7 @@
entry(
index = 138,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C_Ext-1C-R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]} {7,[S,D,T,B]} {8,[S,D,T,B]}
2 * C u1 r0 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1847,7 +1847,7 @@
entry(
index = 139,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C_Ext-1C-R_7R!H->O",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]} {7,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1863,7 +1863,7 @@
entry(
index = 140,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C_Ext-1C-R_N-7R!H->O",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]} {7,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1879,7 +1879,7 @@
entry(
index = 141,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_6R!H->C_Ext-6C-R",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1895,7 +1895,7 @@
entry(
index = 142,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_Ext-2R-R_Ext-1C-R_N-6R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {6,[S,D,T,B]}
2 * C u1 r0 {3,[S,D,T,B]} {4,[S,D,T,B]} {5,[S,D,T,B]}
@@ -1910,7 +1910,7 @@
entry(
index = 143,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1923,7 +1923,7 @@
entry(
index = 144,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1937,7 +1937,7 @@
entry(
index = 145,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R_5R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1951,7 +1951,7 @@
entry(
index = 146,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R_5R!H->C_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]} {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1966,7 +1966,7 @@
entry(
index = 147,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R_5R!H->C_Ext-1C-R_6R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]} {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1981,7 +1981,7 @@
entry(
index = 148,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R_5R!H->C_Ext-1C-R_N-6R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]} {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -1996,7 +1996,7 @@
entry(
index = 149,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_3R!H->O_Ext-1C-R_N-5R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -2010,7 +2010,7 @@
entry(
index = 150,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_N-3R!H->O",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -2023,7 +2023,7 @@
entry(
index = 151,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_N-3R!H->O_Ext-3C-R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 r0 {3,S} {4,S}
@@ -2037,7 +2037,7 @@
entry(
index = 152,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_N-3R!H->O_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -2051,7 +2051,7 @@
entry(
index = 153,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_N-3R!H->O_Ext-1C-R_Ext-5R!H-R",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 r0 {3,S} {4,S}
@@ -2066,7 +2066,7 @@
entry(
index = 154,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-2R-R_N-3R!H->O_Ext-1C-R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]} {6,[S,D,T,B]}
2 * C u1 {3,[S,D,T,B]} {4,[S,D,T,B]}
@@ -2081,7 +2081,7 @@
entry(
index = 155,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,D,T,B]}
@@ -2094,7 +2094,7 @@
entry(
index = 156,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,D}
@@ -2107,7 +2107,7 @@
entry(
index = 157,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,[S,D,T,B]}
2 * C u1 {3,D}
@@ -2121,7 +2121,7 @@
entry(
index = 158,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R_Ext-1C-R_Sp-5R!H-1C",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 {3,D}
@@ -2135,7 +2135,7 @@
entry(
index = 159,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R_Ext-1C-R_Sp-5R!H-1C_5R!H-inRing",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 {3,D}
@@ -2149,7 +2149,7 @@
entry(
index = 160,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R_Ext-1C-R_Sp-5R!H-1C_N-5R!H-inRing",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 {3,D}
@@ -2163,7 +2163,7 @@
entry(
index = 161,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_Sp-3R!H=2R_Ext-1C-R_N-Sp-5R!H-1C",
- group =
+ group =
"""
1 * C u1 r0 {5,[B,D,T]}
2 * C u1 r0 {3,D}
@@ -2177,7 +2177,7 @@
entry(
index = 162,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,T]}
@@ -2190,7 +2190,7 @@
entry(
index = 163,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_Sp-4R!H=3R!H",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[S,T]}
@@ -2203,7 +2203,7 @@
entry(
index = 164,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_Sp-4R!H=3R!H_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 {3,[S,T]}
@@ -2217,7 +2217,7 @@
entry(
index = 165,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_Sp-4R!H=3R!H_Ext-1C-R_Ext-5R!H-R",
- group =
+ group =
"""
1 * C u1 r0 {5,S}
2 * C u1 {3,[S,T]}
@@ -2232,7 +2232,7 @@
entry(
index = 166,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_N-Sp-4R!H=3R!H",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,S}
@@ -2245,7 +2245,7 @@
entry(
index = 167,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_N-Sp-4R!H=3R!H_3R!H-inRing",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 r0 {3,S}
@@ -2258,7 +2258,7 @@
entry(
index = 168,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Ext-3R!H-R_N-Sp-3R!H=2R_N-Sp-4R!H=3R!H_N-3R!H-inRing",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 r0 {3,S}
@@ -2271,7 +2271,7 @@
entry(
index = 169,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R",
- group =
+ group =
"""
1 * C u1 r0
2 * R u1 {3,S}
@@ -2283,7 +2283,7 @@
entry(
index = 170,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C",
- group =
+ group =
"""
1 * C u1 r0
2 * R u1 {3,S}
@@ -2295,7 +2295,7 @@
entry(
index = 171,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_2R->C",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,S}
@@ -2307,7 +2307,7 @@
entry(
index = 172,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_2R->C_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]}
2 * C u1 {3,S}
@@ -2320,7 +2320,7 @@
entry(
index = 173,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_2R->C_Ext-1C-R_4R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {4,S}
2 * C u1 r0 {3,S}
@@ -2333,7 +2333,7 @@
entry(
index = 174,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_2R->C_Ext-1C-R_N-4R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]}
2 * C u1 {3,S}
@@ -2346,7 +2346,7 @@
entry(
index = 175,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_N-2R->C",
- group =
+ group =
"""
1 * C u1 r0
2 * S u1 {3,S}
@@ -2358,7 +2358,7 @@
entry(
index = 176,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_N-2R->C_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]}
2 * S u1 {3,S}
@@ -2371,7 +2371,7 @@
entry(
index = 177,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_3R!H->C_N-2R->C_Ext-1C-R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]} {5,[S,D,T,B]}
2 * S u1 {3,S}
@@ -2385,7 +2385,7 @@
entry(
index = 178,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_N-3R!H->C",
- group =
+ group =
"""
1 * C u1 r0
2 * S u1 {3,S}
@@ -2397,7 +2397,7 @@
entry(
index = 179,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_Sp-3R!H-2R_N-3R!H->C_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]}
2 * S u1 {3,S}
@@ -2410,7 +2410,7 @@
entry(
index = 180,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[D,T]}
@@ -2422,7 +2422,7 @@
entry(
index = 181,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_3R!H->O",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[D,T]}
@@ -2434,7 +2434,7 @@
entry(
index = 182,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_3R!H->O_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,D}
2 * C u1 {3,[D,T]}
@@ -2447,7 +2447,7 @@
entry(
index = 183,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_3R!H->O_Ext-1C-R_4R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {4,D}
2 * C u1 r0 {3,[D,T]}
@@ -2460,7 +2460,7 @@
entry(
index = 184,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_3R!H->O_Ext-1C-R_N-4R!H->C",
- group =
+ group =
"""
1 * C u1 r0 {4,D}
2 * C u1 r0 {3,[D,T]}
@@ -2473,7 +2473,7 @@
entry(
index = 185,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_N-3R!H->O",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,[D,T]}
@@ -2485,7 +2485,7 @@
entry(
index = 186,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_N-3R!H->O_Sp-3CCSS#2R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,T}
@@ -2497,7 +2497,7 @@
entry(
index = 187,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_N-3R!H->O_N-Sp-3CCSS#2R",
- group =
+ group =
"""
1 * C u1 r0
2 * C u1 {3,D}
@@ -2509,7 +2509,7 @@
entry(
index = 188,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_1CS->C_N-1C-inRing_Ext-2R-R_N-Sp-3R!H-2R_N-3R!H->O_N-Sp-3CCSS#2R_Ext-1C-R",
- group =
+ group =
"""
1 * C u1 r0 {4,[S,D,T,B]}
2 * C u1 r0 {3,D}
@@ -2522,7 +2522,7 @@
entry(
index = 189,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_N-1CS->C",
- group =
+ group =
"""
1 * S u1
2 * S u1
@@ -2533,7 +2533,7 @@
entry(
index = 190,
label = "Root_N-1R->H_N-1CNOS->N_N-1COS->O_N-1CS->C_Ext-1S-R",
- group =
+ group =
"""
1 * S u1 r0 {3,[S,D,T,B]}
2 * S u1 r0
@@ -2740,12 +2740,12 @@
forbidden(
label = "Cl",
- group =
+ group =
"""
1 * Cl u1
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
@@ -2753,7 +2753,7 @@
forbidden(
label = "O4",
- group =
+ group =
"""
1 O u1 {2,S}
2 * O u0 {1,S} {3,S}
@@ -2761,9 +2761,24 @@
4 O u1 {3,S}
""",
shortDesc = u"""""",
- longDesc =
+ longDesc =
u"""
""",
)
+forbidden(
+ label = "carbonaterecomb",
+ group =
+"""
+1 * C u1 {2,S} {3,S} {4,S}
+2 O u0 {1,S}
+3 O u0 {1,S}
+4 O u0 {1,S}
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+
+""",
+)
diff --git a/input/kinetics/families/Retroene/groups.py b/input/kinetics/families/Retroene/groups.py
index 955c22489e..ae5f406d42 100644
--- a/input/kinetics/families/Retroene/groups.py
+++ b/input/kinetics/families/Retroene/groups.py
@@ -32,22 +32,22 @@
label = "Root",
group =
"""
-1 *3 R!H u0 {2,S} {3,[S,D]}
-2 *4 R!H u0 {1,S} {4,[S,D]}
-3 *2 R!H u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 R!H u0 {2,[S,D]} {6,S}
-5 *1 R!H u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 R!H u0 {2,S} {3,[S,D]}
+2 *4 R!H u0 {1,S} {4,[S,D]}
+3 *2 R!H u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 R!H u0 {2,[S,D]} {6,S}
+5 *1 R!H u0 {3,[D,T,B]}
+6 *6 [H,Li] u0 {4,S}
""",
kinetics = None,
)
entry(
index = 1,
- label = "Root_1R!H->C",
+ label = "Root_4R!H->C",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
+1 *3 R!H u0 {2,S} {3,[S,D]}
2 *4 R!H u0 {1,S} {4,[S,D]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
@@ -59,10 +59,10 @@
entry(
index = 2,
- label = "Root_1R!H->C_2R!H->C",
+ label = "Root_4R!H->C_1R!H->O",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
+1 *3 O u0 {2,S} {3,[S,D]}
2 *4 C u0 {1,S} {4,[S,D]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
@@ -74,449 +74,464 @@
entry(
index = 3,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 R!H ux {1,[S,D,T,B,Q]}
+7 R!H ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 4,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 N u0 {1,S}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,S} {5,[D,T,B]}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 R!H ux {2,[S,D,T,B,Q]}
+8 R!H ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 5,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,S} {6,S} {8,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 N u0 {1,S}
-8 R!H u0 {4,S}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,S} {5,[D,T,B]}
+4 *5 C u0 r0 {2,S} {6,S} {9,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 r0 {4,S}
+7 R!H ux {2,[S,D,T,B,Q]}
+8 R!H ux {2,[S,D,T,B,Q]}
+9 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 6,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,S} {6,S} {8,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 {4,S}
-7 N u0 r0 {1,S}
-8 C u0 r0 {4,S}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,S} {5,D} {9,S}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 R!H ux {2,[S,D,T,B,Q]}
+8 R!H ux {2,[S,D,T,B,Q]}
+9 C u0 {3,S}
""",
kinetics = None,
)
entry(
index = 7,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,S} {6,S} {8,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 {4,S}
-7 N u0 r0 {1,S}
-8 [Si,S,N,P,F,I,Br,Cl,O] u0 r0 {4,S}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+3 *2 C u0 r0 {1,S} {5,D} {9,S}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 R!H ux {2,[S,D,T,B,Q]}
+8 R!H ux {2,[S,D,T,B,Q]}
+9 C u0 r0 {3,S} {10,[S,D,T,B,Q]}
+10 R!H ux {9,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 8,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O",
group =
"""
-1 *3 C u0 {2,S} {3,S} {7,S}
-2 *4 C u0 {1,S} {4,S} {8,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 N u0 {1,S}
-8 R!H u0 {2,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 9,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,S}
-2 *4 C u0 r0 {1,S} {4,S} {8,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 N u0 r0 {1,S}
-8 C u0 r0 {2,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 10,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,S}
-2 *4 C u0 r0 {1,S} {4,S} {8,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 N u0 r0 {1,S}
-8 [Si,S,N,P,F,I,Br,Cl,O] u0 r0 {2,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 11,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,P,C,F,I,Br,Cl,O] ux {1,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S} {7,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {9,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 C u0 {2,S} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]}
+9 C u0 {4,S}
""",
kinetics = None,
)
entry(
index = 12,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,P,C,F,I,Br,Cl,O] ux {1,[S,D,T,B,Q]}
-8 R!H ux {4,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {9,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 r1 {2,S} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]}
+9 C u0 {4,S}
""",
kinetics = None,
)
entry(
index = 13,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
-8 R!H ux {4,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {9,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 r0 {2,S} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]}
+9 C u0 {4,S}
""",
kinetics = None,
)
entry(
index = 14,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 r0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 r0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
-8 N ux {4,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
+9 R!H ux {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 15,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 r0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 r0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 {2,S} {8,[S,D,T,B,Q]}
+8 C u0 {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]} {10,[S,D,T,B,Q]}
+9 R!H ux {8,[S,D,T,B,Q]}
+10 R!H ux {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 16,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H",
group =
"""
-1 *3 C u0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
-8 R!H ux {4,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]} {9,D}
+9 C ux {8,D}
""",
kinetics = None,
)
entry(
index = 17,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 r0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 r0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
-8 N ux {4,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S} {7,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 C u0 {2,S} {8,[S,D,T,B,Q]}
+8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
+9 C u0 {8,[S,B]}
""",
kinetics = None,
)
entry(
index = 18,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 C u0 r0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
6 *6 H u0 r0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]}
+7 C u0 r1 {2,S} {8,[S,D,T,B,Q]}
+8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
+9 C u0 {8,[S,B]}
""",
kinetics = None,
)
entry(
index = 19,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,P,C,F,I,Br,Cl,O] ux {1,[S,D,T,B,Q]}
-8 R!H ux {2,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 r0 {2,S} {8,[S,D,T,B,Q]}
+8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
+9 C u0 {8,[S,B]}
""",
kinetics = None,
)
entry(
index = 20,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,P,C,F,I,Br,Cl,O] ux {1,[S,D,T,B,Q]}
-8 C ux {2,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {2,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 21,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
-8 C ux {2,[S,D,T,B,Q]}
+7 C ux {2,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
+9 C u0 {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 22,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
-8 C ux {2,[S,D,T,B,Q]}
+7 C ux r0 {2,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]} {9,S}
+9 C u0 r0 {8,S}
""",
kinetics = None,
)
entry(
index = 23,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,P,C,F,I,Br,Cl,O] ux {1,[S,D,T,B,Q]}
-8 O ux {2,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux r0 {2,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]} {9,[B,D,T,Q]}
+9 C u0 r0 {8,[B,D,T,Q]}
""",
kinetics = None,
)
entry(
index = 24,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
-8 O ux {2,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]} {8,[S,D,T,B,Q]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux r0 {2,[S,D,T,B,Q]}
+8 R!H ux {3,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 25,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_3R!H-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 r1 {1,S} {5,B}
+4 *5 C u0 {2,S} {6,S}
+5 *1 C u0 {3,B}
6 *6 H u0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
-8 O ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 26,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {1,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r1 {1,S} {5,B}
+4 *5 C u0 r0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 r1 {3,B}
+6 *6 H u0 r0 {4,S}
+7 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 27,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 O ux {1,[S,D,T,B,Q]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 R!H u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 28,
- label = "Root_1R!H->C_2R!H->C_5R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 29,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C",
group =
"""
-1 *3 C u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 {3,D}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
7 C ux {4,[S,D,T,B,Q]}
""",
@@ -525,246 +540,251 @@
entry(
index = 30,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 {3,D}
-6 *6 H u0 {4,S}
-7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 R!H u0 {7,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C ux r1 {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 31,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing",
group =
"""
-1 *3 C u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 {3,D}
-6 *6 H u0 {4,S}
-7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 R!H u0 {7,[S,D,T,B,Q]} {9,S}
-9 R!H ux {8,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux r0 {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 32,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R",
group =
"""
-1 *3 C u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 {3,D}
-6 *6 H u0 {4,S}
-7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {10,D}
-8 O u0 {7,[S,D,T,B,Q]} {9,S}
-9 C ux {8,S}
-10 O u0 {7,D}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 R!H ux {7,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 33,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 r0 {3,D} {11,[S,D,T,B,Q]}
-6 *6 H u0 r0 {4,S}
-7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {10,D}
-8 O u0 r0 {7,[S,D,T,B,Q]} {9,S}
-9 C ux {8,S}
-10 O u0 r0 {7,D}
-11 R!H ux {5,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C ux r0 {4,[S,D,T,B,Q]} {8,S}
+8 C u0 r0 {7,S}
+9 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 34,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
+1 *3 O u0 {2,S} {3,[S,D]}
2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]} {7,[S,D,T,B,Q]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 R!H ux {5,[S,D,T,B,Q]}
+7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
+8 R!H ux {7,[S,D,T,B,Q]}
+9 R!H ux {7,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 35,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 C ux {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
+9 R!H ux {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 36,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,S}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 R!H u0 {2,S}
+7 C ux r0 {4,[S,D,T,B,Q]}
+8 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 37,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,S}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C u0 r0 {2,S}
+7 O u0 {4,S}
""",
kinetics = None,
)
entry(
index = 38,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,S}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 [Si,S,N,P,F,I,Br,Cl,O] u0 r0 {2,S}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {7,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O u0 {4,S} {8,S}
+8 C u0 r0 {7,S} {9,[S,D,T,B,Q]}
+9 R!H ux {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 39,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,S}
+1 *3 O u0 {2,S} {3,S}
2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {7,S}
+3 *2 C u0 r0 {1,S} {5,D} {7,S}
+4 *5 C u0 {2,S} {6,S}
5 *1 O u0 {3,D}
6 *6 H u0 {4,S}
-7 R!H u0 {4,S}
+7 R!H u0 {3,S}
""",
kinetics = None,
)
entry(
index = 40,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {7,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r0 {4,S}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D} {7,S}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 C u0 {3,S}
""",
kinetics = None,
)
entry(
index = 41,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {7,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 [Si,S,N,P,F,I,Br,Cl,O] u0 r0 {4,S}
+1 *3 O u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D} {7,S}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 C u0 {3,S} {8,S}
+8 C u0 {7,S}
""",
kinetics = None,
)
entry(
index = 42,
- label = "Root_1R!H->C_N-2R!H->C",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 [S,N,O] u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D} {7,S}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 r0 {3,S} {8,S}
+8 C u0 r0 {7,S} {9,[S,D,T,B,Q]}
+9 R!H ux {8,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 43,
- label = "Root_1R!H->C_N-2R!H->C_Ext-1C-R",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S} {7,[S,D,T,B,Q]}
-2 *4 [S,N,O] u0 r0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]}
-6 *6 H u0 r0 {4,S}
-7 R!H ux {1,[S,D,T,B,Q]}
+1 *3 O u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D} {7,S}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {3,S}
""",
kinetics = None,
)
entry(
index = 44,
- label = "Root_1R!H->C_N-2R!H->C_2NOS->S",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O",
group =
"""
-1 *3 C u0 {2,S} {3,[S,D]}
-2 *4 S u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]}
+5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
""",
kinetics = None,
@@ -772,855 +792,803 @@
entry(
index = 45,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S",
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O",
group =
"""
-1 *3 C u0 {2,S} {3,S}
-2 *4 [N,O] u0 {1,S} {4,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S}
-5 *1 C u0 {3,D}
-6 *6 H u0 {4,S}
-""",
- kinetics = None,
-)
+1 *3 O u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+""",
+ kinetics = None,
+)
entry(
index = 46,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N",
+ label = "Root_4R!H->C_N-1R!H->O",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S}
-2 *4 N u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 C u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 R!H u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 R!H u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 47,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C",
group =
"""
-1 *3 C u0 r0 {2,S} {3,S}
-2 *4 O u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 C u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 R!H u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 48,
- label = "Root_N-1R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R",
group =
"""
-1 *3 [Si,S,N,P,F,I,Br,Cl,O] u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 R!H u0 {2,[S,D]} {6,S}
-5 *1 R!H u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 R!H ux {1,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 49,
- label = "Root_N-1R!H->C_Ext-2R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N",
group =
"""
-1 *3 [Si,S,N,P,F,I,Br,Cl,O] u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 R!H u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,S} {7,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 N u0 {1,S}
""",
kinetics = None,
)
entry(
index = 50,
- label = "Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R",
group =
"""
-1 *3 N u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,[S,D,T,B,Q]}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 R!H u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 R!H u0 {2,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,S} {7,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {8,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 N u0 {1,S}
+8 R!H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 51,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S} {7,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {8,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 N u0 r0 {1,S}
+8 C u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 52,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
-8 R!H ux {2,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S} {7,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {8,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 N u0 r0 {1,S}
+8 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 53,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {9,[S,D,T,B,Q]}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
-8 R!H ux {2,[S,D,T,B,Q]}
-9 R!H ux {4,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,S} {7,S}
+2 *4 C u0 {1,S} {4,S} {8,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S}
+5 *1 O u0 {3,D}
+6 *6 H u0 {4,S}
+7 N u0 {1,S}
+8 R!H u0 {2,S}
""",
kinetics = None,
)
entry(
index = 54,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-3 *2 C u0 {1,S} {5,D} {9,S}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
-8 R!H ux {2,[S,D,T,B,Q]}
-9 C u0 {3,S}
+1 *3 C u0 r0 {2,S} {3,S} {7,S}
+2 *4 C u0 r0 {1,S} {4,S} {8,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 N u0 r0 {1,S}
+8 C u0 r0 {2,S}
""",
kinetics = None,
)
entry(
index = 55,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-3 *2 C u0 r0 {1,S} {5,D} {9,S}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 R!H ux {2,[S,D,T,B,Q]}
-8 R!H ux {2,[S,D,T,B,Q]}
-9 C u0 r0 {3,S} {10,[S,D,T,B,Q]}
-10 R!H ux {9,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S} {7,S}
+2 *4 C u0 r0 {1,S} {4,S} {8,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 N u0 r0 {1,S}
+8 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {2,S}
""",
kinetics = None,
)
entry(
index = 56,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,C,Si,S,F,Li,O] ux {1,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 57,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,C,Si,S,F,Li,O] ux {1,[S,D,T,B,Q]}
+8 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 58,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S} {7,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S} {9,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 C u0 {2,S} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]}
-9 C u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {1,[S,D,T,B,Q]}
+8 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 59,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {9,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r1 {2,S} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]}
-9 C u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {1,[S,D,T,B,Q]}
+8 N ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 60,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S} {9,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r0 {2,S} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]}
-9 C u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {1,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 61,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
-9 R!H ux {8,[S,D,T,B,Q]}
+7 C ux {1,[S,D,T,B,Q]}
+8 R!H ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 62,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 {2,S} {8,[S,D,T,B,Q]}
-8 C u0 {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]} {10,[S,D,T,B,Q]}
-9 R!H ux {8,[S,D,T,B,Q]}
-10 R!H ux {8,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 C ux {1,[S,D,T,B,Q]}
+8 N ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 63,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
+4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]} {9,D}
-9 C ux {8,D}
+7 C ux {1,[S,D,T,B,Q]}
+8 C ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 64,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S} {7,S}
-3 *2 C u0 {1,S} {5,D}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 C u0 {2,S} {8,[S,D,T,B,Q]}
-8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
-9 C u0 {8,[S,B]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,C,Si,S,F,Li,O] ux {1,[S,D,T,B,Q]}
+8 R!H ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 65,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r1 {2,S} {8,[S,D,T,B,Q]}
-8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
-9 C u0 {8,[S,B]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,C,Si,S,F,Li,O] ux {1,[S,D,T,B,Q]}
+8 C ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 66,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S} {7,S}
-3 *2 C u0 r0 {1,S} {5,D}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r0 {2,S} {8,[S,D,T,B,Q]}
-8 C u0 {7,[S,D,T,B,Q]} {9,[S,B]}
-9 C u0 {8,[S,B]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {1,[S,D,T,B,Q]}
+8 C ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 67,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+4 *5 C u0 {2,[S,D]} {6,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]}
+7 C ux {1,[S,D,T,B,Q]}
+8 C ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 68,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {2,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
-9 C u0 {8,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,C,Si,S,F,Li,O] ux {1,[S,D,T,B,Q]}
+8 O ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 69,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+4 *5 C u0 {2,[S,D]} {6,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux r0 {2,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]} {9,S}
-9 C u0 r0 {8,S}
+7 O ux {1,[S,D,T,B,Q]}
+8 O ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 70,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]} {8,[S,D,T,B,Q]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {8,[S,D,T,B,Q]}
+4 *5 C u0 {2,[S,D]} {6,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux r0 {2,[S,D,T,B,Q]}
-8 C ux {4,[S,D,T,B,Q]} {9,[B,D,T,Q]}
-9 C u0 r0 {8,[B,D,T,Q]}
+7 C ux {1,[S,D,T,B,Q]}
+8 O ux {2,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 71,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]} {8,[S,D,T,B,Q]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux r0 {2,[S,D,T,B,Q]}
-8 R!H ux {3,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 O ux {1,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 72,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]} {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 C u0 {1,S} {4,[S,D]}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 O ux {2,[S,D,T,B,Q]}
+7 C ux {1,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 73,
- label = "Root_N-1R!H->C_1BrClFINOPSSi->N",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O",
group =
"""
-1 *3 N u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
-4 *5 R!H u0 {2,[S,D]} {6,S}
-5 *1 R!H u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 74,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,S}
3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 R!H u0 {3,[D,T,B]}
+5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
+7 R!H u0 {2,S}
""",
kinetics = None,
)
entry(
index = 75,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r1 {1,[S,D]} {5,B}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,S}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,B}
+5 *1 O u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
+7 C u0 r0 {2,S}
""",
kinetics = None,
)
entry(
index = 76,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r1 {1,[S,D]} {5,B}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 C u0 r1 {3,B}
-6 *6 H u0 {4,S}
-7 R!H ux {4,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 C u0 {1,S} {4,[S,D]} {7,S}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 O u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {2,S}
""",
kinetics = None,
)
entry(
index = 77,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 R!H u0 {3,[D,T,B]}
+1 *3 C u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {7,S}
+5 *1 O u0 {3,D}
6 *6 H u0 {4,S}
+7 R!H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 78,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 R!H ux {4,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {7,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 C u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 79,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux {4,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {7,S}
+5 *1 O u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
+7 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 80,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
+1 *3 C u0 {2,S} {3,[S,D]}
2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 r0 {3,D}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]}
6 *6 H u0 {4,S}
-7 C ux r1 {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 81,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
+1 *3 C u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 {3,D}
6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]}
+7 C ux {4,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 82,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
+1 *3 C u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 {3,D}
6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 R!H ux {7,[S,D,T,B,Q]}
+7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 R!H u0 {7,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 83,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,D}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
-5 *1 O u0 r0 {3,D}
+1 *3 C u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 {3,D}
6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]} {8,S}
-8 C u0 r0 {7,S}
-9 R!H ux {4,[S,D,T,B,Q]}
+7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
+8 R!H u0 {7,[S,D,T,B,Q]} {9,S}
+9 R!H ux {8,S}
""",
kinetics = None,
)
entry(
index = 84,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
-8 R!H ux {7,[S,D,T,B,Q]}
-9 R!H ux {7,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,S}
+2 *4 C u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 {3,D}
+6 *6 H u0 {4,S}
+7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {10,D}
+8 O u0 {7,[S,D,T,B,Q]} {9,S}
+9 C ux {8,S}
+10 O u0 {7,D}
""",
kinetics = None,
)
entry(
index = 85,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-8 C ux {7,[S,D,T,B,Q]} {9,[S,D,T,B,Q]}
-9 R!H ux {8,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S}
+2 *4 C u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S} {7,[S,D,T,B,Q]}
+5 *1 C u0 r0 {3,D} {11,[S,D,T,B,Q]}
+6 *6 H u0 r0 {4,S}
+7 C ux {4,[S,D,T,B,Q]} {8,[S,D,T,B,Q]} {10,D}
+8 O u0 r0 {7,[S,D,T,B,Q]} {9,S}
+9 C ux {8,S}
+10 O u0 r0 {7,D}
+11 R!H ux {5,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 86,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
+1 *3 C u0 {2,S} {3,[S,D]}
2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S} {7,[S,D,T,B,Q]} {8,[S,D,T,B,Q]}
-5 *1 O u0 {3,[D,T,B]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]} {7,[S,D,T,B,Q]}
6 *6 H u0 {4,S}
-7 C ux r0 {4,[S,D,T,B,Q]}
-8 R!H ux {4,[S,D,T,B,Q]}
+7 R!H ux {5,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 87,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,[D,T,B]}
-4 *5 C u0 {2,S} {6,S} {7,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-7 O u0 {4,S}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 [O,N,S] u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 88,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,[D,T,B]}
-4 *5 C u0 r0 {2,S} {6,S} {7,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 r0 {4,S}
-7 O u0 {4,S} {8,S}
-8 C u0 r0 {7,S} {9,[S,D,T,B,Q]}
-9 R!H ux {8,[S,D,T,B,Q]}
+1 *3 C u0 {2,S} {3,[S,D]} {7,[S,D,T,B,Q]}
+2 *4 [O,N,S] u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
+7 R!H ux {1,[S,D,T,B,Q]}
""",
kinetics = None,
)
entry(
index = 89,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D} {7,S}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 R!H u0 {3,S}
+1 *3 C u0 {2,S} {3,[S,D]}
+2 *4 S u0 {1,S} {4,[S,D]}
+3 *2 C u0 {1,[S,D]} {5,[D,T,B]}
+4 *5 C u0 {2,[S,D]} {6,S}
+5 *1 C u0 {3,[D,T,B]}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 90,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D} {7,S}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 C u0 {3,S}
+1 *3 C u0 {2,S} {3,S}
+2 *4 [O,N] u0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,D}
+4 *5 C u0 {2,S} {6,S}
+5 *1 C u0 {3,D}
+6 *6 H u0 {4,S}
""",
kinetics = None,
)
entry(
index = 91,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O",
group =
"""
-1 *3 O u0 {2,S} {3,S}
-2 *4 C u0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D} {7,S}
-4 *5 C u0 {2,S} {6,S}
-5 *1 O u0 {3,D}
-6 *6 H u0 {4,S}
-7 C u0 {3,S} {8,S}
-8 C u0 {7,S}
+1 *3 C u0 r0 {2,S} {3,S}
+2 *4 O u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 C u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 92,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R",
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O",
group =
"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D} {7,S}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 C u0 r0 {3,S} {8,S}
-8 C u0 r0 {7,S} {9,[S,D,T,B,Q]}
-9 R!H ux {8,[S,D,T,B,Q]}
+1 *3 C u0 r0 {2,S} {3,S}
+2 *4 N u0 r0 {1,S} {4,S}
+3 *2 C u0 r0 {1,S} {5,D}
+4 *5 C u0 r0 {2,S} {6,S}
+5 *1 C u0 r0 {3,D}
+6 *6 H u0 r0 {4,S}
""",
kinetics = None,
)
entry(
index = 93,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C",
- group =
-"""
-1 *3 O u0 r0 {2,S} {3,S}
-2 *4 C u0 r0 {1,S} {4,S}
-3 *2 C u0 r0 {1,S} {5,D} {7,S}
-4 *5 C u0 r0 {2,S} {6,S}
-5 *1 O u0 r0 {3,D}
-6 *6 H u0 r0 {4,S}
-7 [Si,S,N,P,F,I,Br,Cl,O] u0 r0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 94,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C",
- group =
-"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 C u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 95,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C",
+ label = "Root_N-4R!H->C",
group =
"""
-1 *3 O u0 {2,S} {3,[S,D]}
-2 *4 C u0 {1,S} {4,[S,D]}
-3 *2 C u0 r0 {1,[S,D]} {5,[D,T,B]}
-4 *5 C u0 {2,[S,D]} {6,S}
-5 *1 O u0 {3,[D,T,B]}
-6 *6 H u0 {4,S}
+1 *3 R!H u0 r0 {2,S} {3,S}
+2 *4 R!H u0 r0 {1,S} {4,S}
+3 *2 C u0 {1,S} {5,[D,T,B]}
+4 *5 [I,P,Br,Cl,N,Si,S,F,Li,O] u0 r0 {2,S} {6,S}
+5 *1 R!H u0 {3,[D,T,B]}
+6 *6 [H,Li] u0 r0 {4,S}
""",
kinetics = None,
)
@@ -1628,101 +1596,99 @@
tree(
"""
L1: Root
- L2: Root_1R!H->C
- L3: Root_1R!H->C_2R!H->C
- L4: Root_1R!H->C_2R!H->C_Ext-1C-R
- L5: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
- L5: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C
- L7: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C
- L8: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C
- L6: Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C
- L4: Root_1R!H->C_2R!H->C_5R!H->C
- L5: Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R
- L6: Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R
- L7: Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R
- L8: Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
- L9: Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
- L5: Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R
- L4: Root_1R!H->C_2R!H->C_N-5R!H->C
- L5: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R
- L6: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C
- L6: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C
- L5: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R
- L6: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C
- L6: Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C
- L3: Root_1R!H->C_N-2R!H->C
- L4: Root_1R!H->C_N-2R!H->C_Ext-1C-R
- L4: Root_1R!H->C_N-2R!H->C_2NOS->S
- L4: Root_1R!H->C_N-2R!H->C_N-2NOS->S
- L5: Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N
- L5: Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N
- L2: Root_N-1R!H->C
- L3: Root_N-1R!H->C_Ext-2R!H-R
- L4: Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N
- L4: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N
- L5: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R
- L6: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R
- L6: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R
- L7: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
- L5: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C
- L6: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R
- L7: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing
- L7: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
- L9: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
- L9: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
- L6: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R
- L7: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H
- L8: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
- L6: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R
- L5: Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C
- L3: Root_N-1R!H->C_1BrClFINOPSSi->N
- L3: Root_N-1R!H->C_N-1BrClFINOPSSi->N
- L4: Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing
- L5: Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R
- L4: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing
- L5: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R
- L6: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C
- L7: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing
- L7: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing
- L8: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R
- L9: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R
- L9: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
- L9: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
- L8: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R
- L6: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C
- L7: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R
- L5: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R
- L6: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
- L7: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
- L8: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
- L6: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
- L5: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C
- L5: Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C
+ L2: Root_4R!H->C
+ L3: Root_4R!H->C_1R!H->O
+ L4: Root_4R!H->C_1R!H->O_Ext-2R!H-R
+ L5: Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R
+ L6: Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R
+ L6: Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R
+ L7: Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
+ L5: Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O
+ L5: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O
+ L6: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R
+ L7: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing
+ L7: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
+ L9: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+ L9: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
+ L6: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R
+ L7: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H
+ L8: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+ L6: Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R
+ L4: Root_4R!H->C_1R!H->O_3R!H-inRing
+ L5: Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R
+ L4: Root_4R!H->C_1R!H->O_N-3R!H-inRing
+ L5: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R
+ L6: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C
+ L7: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing
+ L7: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing
+ L8: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R
+ L9: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R
+ L9: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
+ L9: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
+ L8: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R
+ L6: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C
+ L7: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R
+ L5: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R
+ L6: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
+ L7: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
+ L8: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
+ L6: Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
+ L5: Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O
+ L5: Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O
+ L3: Root_4R!H->C_N-1R!H->O
+ L4: Root_4R!H->C_N-1R!H->O_2R!H->C
+ L5: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O
+ L5: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C
+ L5: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R
+ L7: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R
+ L8: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R
+ L9: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
+ L10: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
+ L6: Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R
+ L4: Root_4R!H->C_N-1R!H->O_N-2R!H->C
+ L5: Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R
+ L5: Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S
+ L5: Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S
+ L6: Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O
+ L6: Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O
+ L2: Root_N-4R!H->C
"""
)
diff --git a/input/kinetics/families/Retroene/rules.py b/input/kinetics/families/Retroene/rules.py
index c47c5bf7cc..13920c9889 100644
--- a/input/kinetics/families/Retroene/rules.py
+++ b/input/kinetics/families/Retroene/rules.py
@@ -9,1439 +9,1409 @@
entry(
index = 1,
label = "Root",
- kinetics = ArrheniusBM(A=(3.10012e+10,'s^-1'), n=0.352209, w0=(1.11205e+06,'J/mol'), E0=(162219,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0315482980354495, var=11.3165183829301, Tref=1000.0, N=67, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 67 training reactions at node Root
- Total Standard Deviation in ln(k): 6.823202550259767"""),
+ kinetics = ArrheniusBM(A=(1.69762e+27,'s^-1'), n=-4.4977, w0=(1.11211e+06,'J/mol'), E0=(176669,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.14486523882846947, var=132.63092240559882, Tref=1000.0, N=66, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 66 training reactions at node Root
+ Total Standard Deviation in ln(k): 23.451614637409254"""),
rank = 11,
- shortDesc = """BM rule fitted to 67 training reactions at node Root
-Total Standard Deviation in ln(k): 6.823202550259767""",
+ shortDesc = """BM rule fitted to 66 training reactions at node Root
+Total Standard Deviation in ln(k): 23.451614637409254""",
longDesc =
"""
-BM rule fitted to 67 training reactions at node Root
-Total Standard Deviation in ln(k): 6.823202550259767
+BM rule fitted to 66 training reactions at node Root
+Total Standard Deviation in ln(k): 23.451614637409254
""",
)
entry(
index = 2,
- label = "Root_1R!H->C",
- kinetics = ArrheniusBM(A=(7.08414e+11,'s^-1'), n=-0.0384258, w0=(1.04926e+06,'J/mol'), E0=(173468,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0885800887239561, var=2.933633025269101, Tref=1000.0, N=31, data_mean=0.0, correlation='Root_1R!H->C',), comment="""BM rule fitted to 31 training reactions at node Root_1R!H->C
- Total Standard Deviation in ln(k): 3.65624353954917"""),
+ label = "Root_4R!H->C",
+ kinetics = ArrheniusBM(A=(2.60995e+12,'s^-1'), n=-0.232363, w0=(1.11255e+06,'J/mol'), E0=(171058,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.08178908396205459, var=5.664309242707326, Tref=1000.0, N=65, data_mean=0.0, correlation='Root_4R!H->C',), comment="""BM rule fitted to 65 training reactions at node Root_4R!H->C
+ Total Standard Deviation in ln(k): 4.976731471406514"""),
rank = 11,
- shortDesc = """BM rule fitted to 31 training reactions at node Root_1R!H->C
-Total Standard Deviation in ln(k): 3.65624353954917""",
+ shortDesc = """BM rule fitted to 65 training reactions at node Root_4R!H->C
+Total Standard Deviation in ln(k): 4.976731471406514""",
longDesc =
"""
-BM rule fitted to 31 training reactions at node Root_1R!H->C
-Total Standard Deviation in ln(k): 3.65624353954917
+BM rule fitted to 65 training reactions at node Root_4R!H->C
+Total Standard Deviation in ln(k): 4.976731471406514
""",
)
entry(
index = 3,
- label = "Root_N-1R!H->C",
- kinetics = ArrheniusBM(A=(2.51696e+11,'s^-1'), n=0.0936269, w0=(1.16612e+06,'J/mol'), E0=(153183,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.03495653711814081, var=24.398290288554755, Tref=1000.0, N=36, data_mean=0.0, correlation='Root_N-1R!H->C',), comment="""BM rule fitted to 36 training reactions at node Root_N-1R!H->C
- Total Standard Deviation in ln(k): 9.990144333888548"""),
+ label = "Root_N-4R!H->C",
+ kinetics = ArrheniusBM(A=(2.46545e+14,'s^-1'), n=0.20628, w0=(1.0836e+06,'J/mol'), E0=(30025.7,'J/mol'), Tmin=(300,'K'), Tmax=(3000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-4R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 36 training reactions at node Root_N-1R!H->C
-Total Standard Deviation in ln(k): 9.990144333888548""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 36 training reactions at node Root_N-1R!H->C
-Total Standard Deviation in ln(k): 9.990144333888548
+BM rule fitted to 1 training reactions at node Root_N-4R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 4,
- label = "Root_1R!H->C_2R!H->C",
- kinetics = ArrheniusBM(A=(5.60991e+11,'s^-1'), n=-0.0273666, w0=(1.0543e+06,'J/mol'), E0=(171027,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.08769201295031893, var=2.499675655451367, Tref=1000.0, N=27, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C',), comment="""BM rule fitted to 27 training reactions at node Root_1R!H->C_2R!H->C
- Total Standard Deviation in ln(k): 3.3898905398944907"""),
+ label = "Root_4R!H->C_1R!H->O",
+ kinetics = ArrheniusBM(A=(9.88064e+10,'s^-1'), n=0.145534, w0=(1.17025e+06,'J/mol'), E0=(162131,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.08910027457046228, var=12.875945198171234, Tref=1000.0, N=34, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O',), comment="""BM rule fitted to 34 training reactions at node Root_4R!H->C_1R!H->O
+ Total Standard Deviation in ln(k): 7.417474409373551"""),
rank = 11,
- shortDesc = """BM rule fitted to 27 training reactions at node Root_1R!H->C_2R!H->C
-Total Standard Deviation in ln(k): 3.3898905398944907""",
+ shortDesc = """BM rule fitted to 34 training reactions at node Root_4R!H->C_1R!H->O
+Total Standard Deviation in ln(k): 7.417474409373551""",
longDesc =
"""
-BM rule fitted to 27 training reactions at node Root_1R!H->C_2R!H->C
-Total Standard Deviation in ln(k): 3.3898905398944907
+BM rule fitted to 34 training reactions at node Root_4R!H->C_1R!H->O
+Total Standard Deviation in ln(k): 7.417474409373551
""",
)
entry(
index = 5,
- label = "Root_1R!H->C_N-2R!H->C",
- kinetics = ArrheniusBM(A=(2.0937e+10,'s^-1'), n=0.830793, w0=(1.01525e+06,'J/mol'), E0=(222264,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=3.600131383473395, var=38.10179994091674, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C',), comment="""BM rule fitted to 4 training reactions at node Root_1R!H->C_N-2R!H->C
- Total Standard Deviation in ln(k): 21.42011538066948"""),
+ label = "Root_4R!H->C_N-1R!H->O",
+ kinetics = ArrheniusBM(A=(1.75937e+14,'s^-1'), n=-0.752182, w0=(1.04926e+06,'J/mol'), E0=(177823,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.09940869752124652, var=3.0101612294936864, Tref=1000.0, N=31, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O',), comment="""BM rule fitted to 31 training reactions at node Root_4R!H->C_N-1R!H->O
+ Total Standard Deviation in ln(k): 3.72794911351602"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_1R!H->C_N-2R!H->C
-Total Standard Deviation in ln(k): 21.42011538066948""",
+ shortDesc = """BM rule fitted to 31 training reactions at node Root_4R!H->C_N-1R!H->O
+Total Standard Deviation in ln(k): 3.72794911351602""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_1R!H->C_N-2R!H->C
-Total Standard Deviation in ln(k): 21.42011538066948
+BM rule fitted to 31 training reactions at node Root_4R!H->C_N-1R!H->O
+Total Standard Deviation in ln(k): 3.72794911351602
""",
)
entry(
index = 6,
- label = "Root_N-1R!H->C_Ext-2R!H-R",
- kinetics = ArrheniusBM(A=(4.59138e+06,'s^-1'), n=1.59388, w0=(1.17869e+06,'J/mol'), E0=(147231,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.21962150556401386, var=2.9313754415001467, Tref=1000.0, N=18, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R',), comment="""BM rule fitted to 18 training reactions at node Root_N-1R!H->C_Ext-2R!H-R
- Total Standard Deviation in ln(k): 3.984171878119655"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R",
+ kinetics = ArrheniusBM(A=(1.39379e+10,'s^-1'), n=0.636141, w0=(1.183e+06,'J/mol'), E0=(153232,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.08208416277232389, var=3.1024985670630194, Tref=1000.0, N=17, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R',), comment="""BM rule fitted to 17 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R
+ Total Standard Deviation in ln(k): 3.7373641153678494"""),
rank = 11,
- shortDesc = """BM rule fitted to 18 training reactions at node Root_N-1R!H->C_Ext-2R!H-R
-Total Standard Deviation in ln(k): 3.984171878119655""",
+ shortDesc = """BM rule fitted to 17 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R
+Total Standard Deviation in ln(k): 3.7373641153678494""",
longDesc =
"""
-BM rule fitted to 18 training reactions at node Root_N-1R!H->C_Ext-2R!H-R
-Total Standard Deviation in ln(k): 3.984171878119655
+BM rule fitted to 17 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R
+Total Standard Deviation in ln(k): 3.7373641153678494
""",
)
entry(
index = 7,
- label = "Root_N-1R!H->C_1BrClFINOPSSi->N",
- kinetics = ArrheniusBM(A=(9.54463e+09,'s^-1'), n=0.829688, w0=(1.0865e+06,'J/mol'), E0=(100226,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_1BrClFINOPSSi->N',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFINOPSSi->N
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_3R!H-inRing",
+ kinetics = ArrheniusBM(A=(7.51733e+12,'s^-1'), n=-0.801522, w0=(1.0245e+06,'J/mol'), E0=(143090,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.010065863716581231, var=81.8360764684643, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_3R!H-inRing',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing
+ Total Standard Deviation in ln(k): 18.160785079462567"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing
+Total Standard Deviation in ln(k): 18.160785079462567""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing
+Total Standard Deviation in ln(k): 18.160785079462567
""",
)
entry(
index = 8,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N",
- kinetics = ArrheniusBM(A=(6.16445e+10,'s^-1'), n=0.126877, w0=(1.1575e+06,'J/mol'), E0=(162948,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.10956172353909022, var=13.764781872707946, Tref=1000.0, N=17, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N',), comment="""BM rule fitted to 17 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N
- Total Standard Deviation in ln(k): 7.71303207558061"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing",
+ kinetics = ArrheniusBM(A=(3.80526e+09,'s^-1'), n=0.557473, w0=(1.17523e+06,'J/mol'), E0=(167509,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.06985395151529518, var=15.195398944716686, Tref=1000.0, N=15, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing',), comment="""BM rule fitted to 15 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing
+ Total Standard Deviation in ln(k): 7.99022561771435"""),
rank = 11,
- shortDesc = """BM rule fitted to 17 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 7.71303207558061""",
+ shortDesc = """BM rule fitted to 15 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing
+Total Standard Deviation in ln(k): 7.99022561771435""",
longDesc =
"""
-BM rule fitted to 17 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 7.71303207558061
+BM rule fitted to 15 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing
+Total Standard Deviation in ln(k): 7.99022561771435
""",
)
entry(
index = 9,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R",
- kinetics = ArrheniusBM(A=(1.50265e+10,'s^-1'), n=0.582016, w0=(1.0845e+06,'J/mol'), E0=(171532,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.07578885385627057, var=2.175429915116852, Tref=1000.0, N=15, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R',), comment="""BM rule fitted to 15 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R
- Total Standard Deviation in ln(k): 3.147275918033949"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C",
+ kinetics = ArrheniusBM(A=(1.13654e+14,'s^-1'), n=-0.713755, w0=(1.0543e+06,'J/mol'), E0=(175246,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.09769887345958214, var=2.5615805550933186, Tref=1000.0, N=27, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C',), comment="""BM rule fitted to 27 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C
+ Total Standard Deviation in ln(k): 3.454040713171818"""),
rank = 11,
- shortDesc = """BM rule fitted to 15 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R
-Total Standard Deviation in ln(k): 3.147275918033949""",
+ shortDesc = """BM rule fitted to 27 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C
+Total Standard Deviation in ln(k): 3.454040713171818""",
longDesc =
"""
-BM rule fitted to 15 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R
-Total Standard Deviation in ln(k): 3.147275918033949
+BM rule fitted to 27 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C
+Total Standard Deviation in ln(k): 3.454040713171818
""",
)
entry(
index = 10,
- label = "Root_1R!H->C_2R!H->C_5R!H->C",
- kinetics = ArrheniusBM(A=(2.14192e+15,'s^-1'), n=-1.36604, w0=(968000,'J/mol'), E0=(168571,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.07722342872883733, var=3.2717649671082105, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C',), comment="""BM rule fitted to 7 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C
- Total Standard Deviation in ln(k): 3.820197694621681"""),
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C",
+ kinetics = ArrheniusBM(A=(4.66324e+09,'s^-1'), n=1.0266, w0=(1.01525e+06,'J/mol'), E0=(221067,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=3.6261064540329477, var=38.372409117272156, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C
+ Total Standard Deviation in ln(k): 21.529245342658523"""),
rank = 11,
- shortDesc = """BM rule fitted to 7 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C
-Total Standard Deviation in ln(k): 3.820197694621681""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C
+Total Standard Deviation in ln(k): 21.529245342658523""",
longDesc =
"""
-BM rule fitted to 7 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C
-Total Standard Deviation in ln(k): 3.820197694621681
+BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C
+Total Standard Deviation in ln(k): 21.529245342658523
""",
)
entry(
index = 11,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C",
- kinetics = ArrheniusBM(A=(5.31421e+08,'s^-1'), n=0.798496, w0=(1.0845e+06,'J/mol'), E0=(166008,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.06646347756542345, var=3.684389843138008, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C',), comment="""BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C
- Total Standard Deviation in ln(k): 4.015035432311303"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R",
+ kinetics = ArrheniusBM(A=(7.3023e+08,'s^-1'), n=0.995367, w0=(1.183e+06,'J/mol'), E0=(138104,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.9718999545224009, var=2.144363497198564, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R
+ Total Standard Deviation in ln(k): 5.37762263812869"""),
rank = 11,
- shortDesc = """BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C
-Total Standard Deviation in ln(k): 4.015035432311303""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R
+Total Standard Deviation in ln(k): 5.37762263812869""",
longDesc =
"""
-BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C
-Total Standard Deviation in ln(k): 4.015035432311303
+BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R
+Total Standard Deviation in ln(k): 5.37762263812869
""",
)
entry(
index = 12,
- label = "Root_1R!H->C_N-2R!H->C_Ext-1C-R",
- kinetics = ArrheniusBM(A=(2.8e+12,'s^-1'), n=0, w0=(1.0665e+06,'J/mol'), E0=(218338,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C_Ext-1C-R',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_Ext-1C-R
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O",
+ kinetics = ArrheniusBM(A=(6.63512e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(94204,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_Ext-1C-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_Ext-1C-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_7R!H->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 13,
- label = "Root_1R!H->C_N-2R!H->C_2NOS->S",
- kinetics = ArrheniusBM(A=(5.6608e+10,'s^-1'), n=0, w0=(953500,'J/mol'), E0=(119669,'J/mol'), Tmin=(588,'K'), Tmax=(691,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C_2NOS->S',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_2NOS->S
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O",
+ kinetics = ArrheniusBM(A=(6.01187e+09,'s^-1'), n=0.754214, w0=(1.183e+06,'J/mol'), E0=(159151,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.09510808833121338, var=0.3875877265781486, Tref=1000.0, N=12, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O',), comment="""BM rule fitted to 12 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O
+ Total Standard Deviation in ln(k): 1.4870438207877734"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_2NOS->S
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 12 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O
+Total Standard Deviation in ln(k): 1.4870438207877734""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_2NOS->S
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 12 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O
+Total Standard Deviation in ln(k): 1.4870438207877734
""",
)
entry(
index = 14,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S",
- kinetics = ArrheniusBM(A=(1.18273e+11,'s^-1'), n=-0.16585, w0=(1.0205e+06,'J/mol'), E0=(160293,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.001642907944431047, var=4.049121298193099, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C_N-2NOS->S',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S
- Total Standard Deviation in ln(k): 4.03814174042697"""),
+ label = "Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(550000,'s^-1'), n=0.9, w0=(1.0245e+06,'J/mol'), E0=(131295,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S
-Total Standard Deviation in ln(k): 4.03814174042697""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S
-Total Standard Deviation in ln(k): 4.03814174042697
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_3R!H-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 15,
- label = "Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N",
- kinetics = ArrheniusBM(A=(1.93151e+06,'s^-1'), n=1.81611, w0=(1.1055e+06,'J/mol'), E0=(159124,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(8.70358e+06,'s^-1'), n=1.58277, w0=(1.183e+06,'J/mol'), E0=(173228,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.03155295581004311, var=0.24981443779741802, Tref=1000.0, N=9, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R',), comment="""BM rule fitted to 9 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R
+ Total Standard Deviation in ln(k): 1.0812742500274948"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 9 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 1.0812742500274948""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 9 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 1.0812742500274948
""",
)
entry(
index = 16,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N",
- kinetics = ArrheniusBM(A=(3.62979e+09,'s^-1'), n=0.813364, w0=(1.183e+06,'J/mol'), E0=(152248,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.07834185115310821, var=3.1028790984589047, Tref=1000.0, N=17, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N',), comment="""BM rule fitted to 17 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N
- Total Standard Deviation in ln(k): 3.728177867462698"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R",
+ kinetics = ArrheniusBM(A=(3.70672e+11,'s^-1'), n=-0.237439, w0=(1.183e+06,'J/mol'), E0=(161695,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.004913256994020603, var=47.85043960098877, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R
+ Total Standard Deviation in ln(k): 13.879901731532712"""),
rank = 11,
- shortDesc = """BM rule fitted to 17 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 3.728177867462698""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R
+Total Standard Deviation in ln(k): 13.879901731532712""",
longDesc =
"""
-BM rule fitted to 17 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N
-Total Standard Deviation in ln(k): 3.728177867462698
+BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R
+Total Standard Deviation in ln(k): 13.879901731532712
""",
)
entry(
index = 17,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing",
- kinetics = ArrheniusBM(A=(1.93725e+10,'s^-1'), n=-0.00164902, w0=(1.0245e+06,'J/mol'), E0=(139223,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.010065863716581231, var=81.8360764684643, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing
- Total Standard Deviation in ln(k): 18.160785079462567"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O",
+ kinetics = ArrheniusBM(A=(3.96667e+10,'s^-1'), n=0.59, w0=(1.183e+06,'J/mol'), E0=(179850,'J/mol'), Tmin=(500,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing
-Total Standard Deviation in ln(k): 18.160785079462567""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing
-Total Standard Deviation in ln(k): 18.160785079462567
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_5R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 18,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing",
- kinetics = ArrheniusBM(A=(5.0377e+09,'s^-1'), n=0.503998, w0=(1.17523e+06,'J/mol'), E0=(165380,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.07023301752382041, var=14.693850144505003, Tref=1000.0, N=15, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing',), comment="""BM rule fitted to 15 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing
- Total Standard Deviation in ln(k): 7.861127261438902"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O",
+ kinetics = ArrheniusBM(A=(3.33333e+07,'s^-1'), n=1.2, w0=(1.0665e+06,'J/mol'), E0=(177017,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 15 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing
-Total Standard Deviation in ln(k): 7.861127261438902""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 15 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing
-Total Standard Deviation in ln(k): 7.861127261438902
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_N-5R!H->O
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 19,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N",
- kinetics = ArrheniusBM(A=(1.06632e+07,'s^-1'), n=1.54494, w0=(1.0845e+06,'J/mol'), E0=(175232,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.03160873187820852, var=1.3512789532393483, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N',), comment="""BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N
- Total Standard Deviation in ln(k): 2.409813687361464"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R",
+ kinetics = ArrheniusBM(A=(4.46401e+12,'s^-1'), n=-0.158593, w0=(1.0845e+06,'J/mol'), E0=(176009,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.09120822726898409, var=2.288308081150335, Tref=1000.0, N=15, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R',), comment="""BM rule fitted to 15 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R
+ Total Standard Deviation in ln(k): 3.2617601570296633"""),
rank = 11,
- shortDesc = """BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N
-Total Standard Deviation in ln(k): 2.409813687361464""",
+ shortDesc = """BM rule fitted to 15 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R
+Total Standard Deviation in ln(k): 3.2617601570296633""",
longDesc =
"""
-BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N
-Total Standard Deviation in ln(k): 2.409813687361464
+BM rule fitted to 15 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R
+Total Standard Deviation in ln(k): 3.2617601570296633
""",
)
entry(
index = 20,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N",
- kinetics = ArrheniusBM(A=(2.11272e+10,'s^-1'), n=0.508892, w0=(1.0845e+06,'J/mol'), E0=(165988,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.05946298457203635, var=2.1502413853175404, Tref=1000.0, N=10, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N',), comment="""BM rule fitted to 10 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N
- Total Standard Deviation in ln(k): 3.0890881384700166"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O",
+ kinetics = ArrheniusBM(A=(3.94505e+09,'s^-1'), n=0.601596, w0=(1.0845e+06,'J/mol'), E0=(169425,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.07591793873856303, var=4.052420941329839, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O',), comment="""BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O
+ Total Standard Deviation in ln(k): 4.226405752097705"""),
rank = 11,
- shortDesc = """BM rule fitted to 10 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N
-Total Standard Deviation in ln(k): 3.0890881384700166""",
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O
+Total Standard Deviation in ln(k): 4.226405752097705""",
longDesc =
"""
-BM rule fitted to 10 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N
-Total Standard Deviation in ln(k): 3.0890881384700166
+BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O
+Total Standard Deviation in ln(k): 4.226405752097705
""",
)
entry(
index = 21,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(4.48935e+16,'s^-1'), n=-1.81548, w0=(968000,'J/mol'), E0=(163551,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.10791093733813462, var=3.878221135229738, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R',), comment="""BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R
- Total Standard Deviation in ln(k): 4.21909782627248"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O",
+ kinetics = ArrheniusBM(A=(1.32284e+18,'s^-1'), n=-2.21337, w0=(968000,'J/mol'), E0=(173278,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.09274224034300145, var=3.2786817472081715, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O',), comment="""BM rule fitted to 7 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O
+ Total Standard Deviation in ln(k): 3.8630206695740643"""),
rank = 11,
- shortDesc = """BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 4.21909782627248""",
+ shortDesc = """BM rule fitted to 7 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O
+Total Standard Deviation in ln(k): 3.8630206695740643""",
longDesc =
"""
-BM rule fitted to 5 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 4.21909782627248
+BM rule fitted to 7 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O
+Total Standard Deviation in ln(k): 3.8630206695740643
""",
)
entry(
index = 22,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R",
- kinetics = ArrheniusBM(A=(3.23333e+11,'s^-1'), n=0, w0=(968000,'J/mol'), E0=(182946,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R",
+ kinetics = ArrheniusBM(A=(2.8e+12,'s^-1'), n=0, w0=(1.0665e+06,'J/mol'), E0=(218338,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-5C-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_Ext-1C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 23,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R",
- kinetics = ArrheniusBM(A=(7.01606e+09,'s^-1'), n=0.528417, w0=(1.0845e+06,'J/mol'), E0=(162089,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.0004170773678849364, var=7.571252332200875, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R
- Total Standard Deviation in ln(k): 5.517258674761662"""),
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S",
+ kinetics = ArrheniusBM(A=(5.6608e+10,'s^-1'), n=0, w0=(953500,'J/mol'), E0=(119669,'J/mol'), Tmin=(588,'K'), Tmax=(691,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R
-Total Standard Deviation in ln(k): 5.517258674761662""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R
-Total Standard Deviation in ln(k): 5.517258674761662
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_2NOS->S
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 24,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(3.72448e+06,'s^-1'), n=1.38418, w0=(1.0845e+06,'J/mol'), E0=(169437,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.023226627232403933, var=4.996815442657889, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R
- Total Standard Deviation in ln(k): 4.539654493299976"""),
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S",
+ kinetics = ArrheniusBM(A=(3.11827e+11,'s^-1'), n=-0.293682, w0=(1.0205e+06,'J/mol'), E0=(160991,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.001642907944431047, var=4.049121298193099, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S
+ Total Standard Deviation in ln(k): 4.03814174042697"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 4.539654493299976""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S
+Total Standard Deviation in ln(k): 4.03814174042697""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 4.539654493299976
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S
+Total Standard Deviation in ln(k): 4.03814174042697
""",
)
entry(
index = 25,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N",
- kinetics = ArrheniusBM(A=(7.8141e+10,'s^-1'), n=0, w0=(974500,'J/mol'), E0=(160561,'J/mol'), Tmin=(602,'K'), Tmax=(694,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(4.45626e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(142579,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_2NO->N
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 26,
- label = "Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N",
- kinetics = ArrheniusBM(A=(4.1009e+10,'s^-1'), n=0, w0=(1.0665e+06,'J/mol'), E0=(167048,'J/mol'), Tmin=(725,'K'), Tmax=(810,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R",
+ kinetics = ArrheniusBM(A=(7.82163e+08,'s^-1'), n=0.989298, w0=(1.183e+06,'J/mol'), E0=(138899,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.9397855924827363, var=2.0052075611816607, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R
+ Total Standard Deviation in ln(k): 5.200082488575585"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R
+Total Standard Deviation in ln(k): 5.200082488575585""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_N-2R!H->C_N-2NOS->S_N-2NO->N
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R
+Total Standard Deviation in ln(k): 5.200082488575585
""",
)
entry(
index = 27,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R",
- kinetics = ArrheniusBM(A=(5.585e+08,'s^-1'), n=1.03057, w0=(1.183e+06,'J/mol'), E0=(137902,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.9849605138850569, var=2.175969446453559, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R
- Total Standard Deviation in ln(k): 5.431993466301682"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R",
+ kinetics = ArrheniusBM(A=(8.60672e+08,'s^-1'), n=0.975858, w0=(1.183e+06,'J/mol'), E0=(154165,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.8106532067876975, var=2.4765646750760326, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R',), comment="""BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R
+ Total Standard Deviation in ln(k): 5.191689703536848"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R
-Total Standard Deviation in ln(k): 5.431993466301682""",
+ shortDesc = """BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R
+Total Standard Deviation in ln(k): 5.191689703536848""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R
-Total Standard Deviation in ln(k): 5.431993466301682
+BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R
+Total Standard Deviation in ln(k): 5.191689703536848
""",
)
entry(
index = 28,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C",
- kinetics = ArrheniusBM(A=(2.72971e+09,'s^-1'), n=0.858007, w0=(1.183e+06,'J/mol'), E0=(158565,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.09327428286217945, var=0.3885302816570969, Tref=1000.0, N=12, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C',), comment="""BM rule fitted to 12 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C
- Total Standard Deviation in ln(k): 1.4839529178212068"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(2.09881e+10,'s^-1'), n=0.632458, w0=(1.183e+06,'J/mol'), E0=(164532,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.1408693790180404, var=0.053707762569230044, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R',), comment="""BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R
+ Total Standard Deviation in ln(k): 0.8185392202824676"""),
rank = 11,
- shortDesc = """BM rule fitted to 12 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C
-Total Standard Deviation in ln(k): 1.4839529178212068""",
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 0.8185392202824676""",
longDesc =
"""
-BM rule fitted to 12 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C
-Total Standard Deviation in ln(k): 1.4839529178212068
+BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 0.8185392202824676
""",
)
entry(
index = 29,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C",
- kinetics = ArrheniusBM(A=(6.63512e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(94204,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R",
+ kinetics = ArrheniusBM(A=(1.32388e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(156130,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_N-7R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-3R!H-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 30,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(550000,'s^-1'), n=0.9, w0=(1.0245e+06,'J/mol'), E0=(131295,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C",
+ kinetics = ArrheniusBM(A=(4.72908e+06,'s^-1'), n=1.66491, w0=(1.183e+06,'J/mol'), E0=(172562,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.062098384893677284, var=0.15842678504256216, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C',), comment="""BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C
+ Total Standard Deviation in ln(k): 0.9539680358266616"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C
+Total Standard Deviation in ln(k): 0.9539680358266616""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_3R!H-inRing_Ext-4R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 7 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C
+Total Standard Deviation in ln(k): 0.9539680358266616
""",
)
entry(
index = 31,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(4.97792e+06,'s^-1'), n=1.65745, w0=(1.183e+06,'J/mol'), E0=(173053,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.015698585890881855, var=0.33104774169034074, Tref=1000.0, N=9, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R',), comment="""BM rule fitted to 9 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R
- Total Standard Deviation in ln(k): 1.192903060789605"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C",
+ kinetics = ArrheniusBM(A=(4.24828e+14,'s^-1'), n=-0.820293, w0=(1.183e+06,'J/mol'), E0=(193063,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0018304600500318844, var=4.827869185588401, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C
+ Total Standard Deviation in ln(k): 4.4094857873895865"""),
rank = 11,
- shortDesc = """BM rule fitted to 9 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R
-Total Standard Deviation in ln(k): 1.192903060789605""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C
+Total Standard Deviation in ln(k): 4.4094857873895865""",
longDesc =
"""
-BM rule fitted to 9 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R
-Total Standard Deviation in ln(k): 1.192903060789605
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C
+Total Standard Deviation in ln(k): 4.4094857873895865
""",
)
entry(
index = 32,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R",
- kinetics = ArrheniusBM(A=(2.86778e+11,'s^-1'), n=-0.20998, w0=(1.183e+06,'J/mol'), E0=(161018,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.007000260714869858, var=47.42592109938536, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R
- Total Standard Deviation in ln(k): 13.82349346766583"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C",
+ kinetics = ArrheniusBM(A=(6.72259e+12,'s^-1'), n=-0.0948649, w0=(1.183e+06,'J/mol'), E0=(172576,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.005388821963453984, var=0.5959934247797803, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C',), comment="""BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
+ Total Standard Deviation in ln(k): 1.5612074705444146"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R
-Total Standard Deviation in ln(k): 13.82349346766583""",
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
+Total Standard Deviation in ln(k): 1.5612074705444146""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R
-Total Standard Deviation in ln(k): 13.82349346766583
+BM rule fitted to 3 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
+Total Standard Deviation in ln(k): 1.5612074705444146
""",
)
entry(
index = 33,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C",
- kinetics = ArrheniusBM(A=(3.33333e+07,'s^-1'), n=1.2, w0=(1.0665e+06,'J/mol'), E0=(165825,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C",
+ kinetics = ArrheniusBM(A=(58002.5,'s^-1'), n=0.286, w0=(1.183e+06,'J/mol'), E0=(125561,'J/mol'), Tmin=(500,'K'), Tmax=(1300,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_5R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 34,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C",
- kinetics = ArrheniusBM(A=(3.96667e+10,'s^-1'), n=0.59, w0=(1.183e+06,'J/mol'), E0=(179850,'J/mol'), Tmin=(500,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N",
+ kinetics = ArrheniusBM(A=(1.03406e+08,'s^-1'), n=1.25673, w0=(1.0845e+06,'J/mol'), E0=(177221,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.03936086616282145, var=1.4404858450236613, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N',), comment="""BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N
+ Total Standard Deviation in ln(k): 2.5049845366985655"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N
+Total Standard Deviation in ln(k): 2.5049845366985655""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_N-5R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N
+Total Standard Deviation in ln(k): 2.5049845366985655
""",
)
entry(
index = 35,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(7.17483e+06,'s^-1'), n=1.66626, w0=(1.0845e+06,'J/mol'), E0=(184882,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.014692611028300074, var=6.989117524371048, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R
- Total Standard Deviation in ln(k): 5.336822036500276"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N",
+ kinetics = ArrheniusBM(A=(1.18527e+12,'s^-1'), n=-0.0115864, w0=(1.0845e+06,'J/mol'), E0=(169271,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0704975947618844, var=2.3195327210082453, Tref=1000.0, N=10, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N',), comment="""BM rule fitted to 10 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N
+ Total Standard Deviation in ln(k): 3.230343606944405"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R
-Total Standard Deviation in ln(k): 5.336822036500276""",
+ shortDesc = """BM rule fitted to 10 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N
+Total Standard Deviation in ln(k): 3.230343606944405""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R
-Total Standard Deviation in ln(k): 5.336822036500276
+BM rule fitted to 10 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N
+Total Standard Deviation in ln(k): 3.230343606944405
""",
)
entry(
index = 36,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R",
- kinetics = ArrheniusBM(A=(8.9437e+07,'s^-1'), n=1.20317, w0=(1.0845e+06,'J/mol'), E0=(168361,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=4.289085629588869e-05, var=0.0032978926118627083, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
- Total Standard Deviation in ln(k): 0.11523425074443258"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R",
+ kinetics = ArrheniusBM(A=(4.16228e+08,'s^-1'), n=0.988266, w0=(1.0845e+06,'J/mol'), E0=(162518,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.0025626047091315556, var=9.251604624994211, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R
+ Total Standard Deviation in ln(k): 6.104131234895419"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
-Total Standard Deviation in ln(k): 0.11523425074443258""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R
+Total Standard Deviation in ln(k): 6.104131234895419""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
-Total Standard Deviation in ln(k): 0.11523425074443258
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R
+Total Standard Deviation in ln(k): 6.104131234895419
""",
)
entry(
index = 37,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(4.26489e+09,'s^-1'), n=0.721231, w0=(1.0845e+06,'J/mol'), E0=(173168,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.05463853673654339, var=3.498019671653633, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R
- Total Standard Deviation in ln(k): 3.8867374747822776"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(7.24523e+06,'s^-1'), n=1.35008, w0=(1.0845e+06,'J/mol'), E0=(171424,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.024461205742499107, var=5.078314475822991, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R
+ Total Standard Deviation in ln(k): 4.579154043078822"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R
-Total Standard Deviation in ln(k): 3.8867374747822776""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 4.579154043078822""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R
-Total Standard Deviation in ln(k): 3.8867374747822776
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 4.579154043078822
""",
)
entry(
index = 38,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R",
- kinetics = ArrheniusBM(A=(1.63884e+10,'s^-1'), n=0.553788, w0=(1.0845e+06,'J/mol'), E0=(159149,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0054573965212036946, var=1.5050092139275335, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R',), comment="""BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
- Total Standard Deviation in ln(k): 2.4730973283903155"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(4.54601e+20,'s^-1'), n=-3.0326, w0=(968000,'J/mol'), E0=(170265,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.12749591170885038, var=3.8667020133400993, Tref=1000.0, N=5, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R',), comment="""BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R
+ Total Standard Deviation in ln(k): 4.262438806876281"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
-Total Standard Deviation in ln(k): 2.4730973283903155""",
+ shortDesc = """BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 4.262438806876281""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
-Total Standard Deviation in ln(k): 2.4730973283903155
+BM rule fitted to 5 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R
+Total Standard Deviation in ln(k): 4.262438806876281
""",
)
entry(
index = 39,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(11.5839,'s^-1'), n=3.09547, w0=(1.0845e+06,'J/mol'), E0=(137668,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R",
+ kinetics = ArrheniusBM(A=(3.23333e+11,'s^-1'), n=0, w0=(968000,'J/mol'), E0=(182946,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFIOPSSi->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 40,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(1.2535e+06,'s^-1'), n=1.80968, w0=(1.0845e+06,'J/mol'), E0=(155867,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O",
+ kinetics = ArrheniusBM(A=(4.1009e+10,'s^-1'), n=0, w0=(1.0665e+06,'J/mol'), E0=(167048,'J/mol'), Tmin=(725,'K'), Tmax=(810,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFIOPSSi->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_2NO->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 41,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R",
- kinetics = ArrheniusBM(A=(1.47918e+17,'s^-1'), n=-2.02819, w0=(968000,'J/mol'), E0=(156988,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.11215013592975923, var=3.0170948703094664, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R
- Total Standard Deviation in ln(k): 3.763966312410604"""),
+ label = "Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O",
+ kinetics = ArrheniusBM(A=(7.8141e+10,'s^-1'), n=0, w0=(974500,'J/mol'), E0=(160561,'J/mol'), Tmin=(602,'K'), Tmax=(694,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R
-Total Standard Deviation in ln(k): 3.763966312410604""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R
-Total Standard Deviation in ln(k): 3.763966312410604
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_N-2R!H->C_N-2NOS->S_N-2NO->O
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 42,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C",
- kinetics = ArrheniusBM(A=(21.2645,'s^-1'), n=2.97303, w0=(1.0845e+06,'J/mol'), E0=(146892,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R",
+ kinetics = ArrheniusBM(A=(1.39881e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(136330,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_7R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 43,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C",
- kinetics = ArrheniusBM(A=(3.78363e+11,'s^-1'), n=0.169307, w0=(1.0845e+06,'J/mol'), E0=(166826,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(3.2598e+13,'s^-1'), n=-0.459377, w0=(1.183e+06,'J/mol'), E0=(156365,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.0006121978434094917, var=0.04941026246110573, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R
+ Total Standard Deviation in ln(k): 0.44715910440908485"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R
+Total Standard Deviation in ln(k): 0.44715910440908485""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-2C-R_N-7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R
+Total Standard Deviation in ln(k): 0.44715910440908485
""",
)
entry(
index = 44,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C",
- kinetics = ArrheniusBM(A=(6.80655,'s^-1'), n=3.07798, w0=(1.0845e+06,'J/mol'), E0=(150022,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(1.26986e+13,'s^-1'), n=-0.442687, w0=(1.183e+06,'J/mol'), E0=(141989,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0089736677479887, var=1.7601354926927055, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R
+ Total Standard Deviation in ln(k): 2.68223089749146"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 2.68223089749146""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 2.68223089749146
""",
)
entry(
index = 45,
- label = "Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C",
- kinetics = ArrheniusBM(A=(2419.21,'s^-1'), n=2.3826, w0=(1.0845e+06,'J/mol'), E0=(172708,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(2.4107e+13,'s^-1'), n=-0.432391, w0=(1.183e+06,'J/mol'), E0=(160784,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0010628098785811556, var=0.16224599752348345, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R
+ Total Standard Deviation in ln(k): 0.8101730807390738"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 0.8101730807390738""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_N-5R!H->C_Ext-4R!H-R_N-7R!H->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 0.8101730807390738
""",
)
entry(
index = 46,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(4.45626e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(142579,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing",
+ kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(165471,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-4R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 47,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R",
- kinetics = ArrheniusBM(A=(3.47446e+08,'s^-1'), n=1.09592, w0=(1.183e+06,'J/mol'), E0=(138292,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.9397855924827363, var=2.0052075611816607, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R
- Total Standard Deviation in ln(k): 5.200082488575585"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing",
+ kinetics = ArrheniusBM(A=(3.93467e+06,'s^-1'), n=1.69077, w0=(1.183e+06,'J/mol'), E0=(172691,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.047594001962377265, var=0.10410275187919844, Tref=1000.0, N=6, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing',), comment="""BM rule fitted to 6 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing
+ Total Standard Deviation in ln(k): 0.7664098514942174"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R
-Total Standard Deviation in ln(k): 5.200082488575585""",
+ shortDesc = """BM rule fitted to 6 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing
+Total Standard Deviation in ln(k): 0.7664098514942174""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R
-Total Standard Deviation in ln(k): 5.200082488575585
+BM rule fitted to 6 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing
+Total Standard Deviation in ln(k): 0.7664098514942174
""",
)
entry(
index = 48,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R",
- kinetics = ArrheniusBM(A=(4.72256e+08,'s^-1'), n=1.05476, w0=(1.183e+06,'J/mol'), E0=(153718,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.8089351856699499, var=2.4771942159743126, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R',), comment="""BM rule fitted to 7 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R
- Total Standard Deviation in ln(k): 5.187774025217704"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(181493,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 7 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R
-Total Standard Deviation in ln(k): 5.187774025217704""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 7 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R
-Total Standard Deviation in ln(k): 5.187774025217704
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_N-7R!H->C_Ext-7BrClFILiNOPSSi-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 49,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(7.77656e+09,'s^-1'), n=0.762969, w0=(1.183e+06,'J/mol'), E0=(163796,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.1381107593472458, var=0.05384276569539632, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R',), comment="""BM rule fitted to 3 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R
- Total Standard Deviation in ln(k): 0.8121915671689098"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R",
+ kinetics = ArrheniusBM(A=(6.26345e+11,'s^-1'), n=0.219787, w0=(1.183e+06,'J/mol'), E0=(170925,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-8.8745213110839e-15, var=2.116729755416175, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
+ Total Standard Deviation in ln(k): 2.9166861328622713"""),
rank = 11,
- shortDesc = """BM rule fitted to 3 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 0.8121915671689098""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
+Total Standard Deviation in ln(k): 2.9166861328622713""",
longDesc =
"""
-BM rule fitted to 3 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R
-Total Standard Deviation in ln(k): 0.8121915671689098
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
+Total Standard Deviation in ln(k): 2.9166861328622713
""",
)
entry(
index = 50,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R",
- kinetics = ArrheniusBM(A=(1.32388e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(156130,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(8.30743e+07,'s^-1'), n=1.34294, w0=(1.0845e+06,'J/mol'), E0=(186642,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.014692611028300074, var=6.989117524371048, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R
+ Total Standard Deviation in ln(k): 5.336822036500276"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R
+Total Standard Deviation in ln(k): 5.336822036500276""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-3R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R
+Total Standard Deviation in ln(k): 5.336822036500276
""",
)
entry(
index = 51,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C",
- kinetics = ArrheniusBM(A=(2.55471e+06,'s^-1'), n=1.74582, w0=(1.183e+06,'J/mol'), E0=(172104,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.06042635539233208, var=0.15875309730657372, Tref=1000.0, N=7, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C',), comment="""BM rule fitted to 7 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C
- Total Standard Deviation in ln(k): 0.9505882960246963"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R",
+ kinetics = ArrheniusBM(A=(5.08779e+07,'s^-1'), n=1.30493, w0=(1.0845e+06,'J/mol'), E0=(168720,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.00044315246717545727, var=0.047018350676703256, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
+ Total Standard Deviation in ln(k): 0.4358144939813908"""),
rank = 11,
- shortDesc = """BM rule fitted to 7 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 0.9505882960246963""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
+Total Standard Deviation in ln(k): 0.4358144939813908""",
longDesc =
"""
-BM rule fitted to 7 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 0.9505882960246963
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R
+Total Standard Deviation in ln(k): 0.4358144939813908
""",
)
entry(
index = 52,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C",
- kinetics = ArrheniusBM(A=(9.41708e+14,'s^-1'), n=-0.896351, w0=(1.183e+06,'J/mol'), E0=(201255,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-5.3172441301014085e-15, var=0.04558127893527205, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C
- Total Standard Deviation in ln(k): 0.4280063799185306"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(2.10319e+11,'s^-1'), n=0.204824, w0=(1.0845e+06,'J/mol'), E0=(175924,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.061353959294216984, var=3.4900972510040535, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R
+ Total Standard Deviation in ln(k): 3.899362049801037"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C
-Total Standard Deviation in ln(k): 0.4280063799185306""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R
+Total Standard Deviation in ln(k): 3.899362049801037""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C
-Total Standard Deviation in ln(k): 0.4280063799185306
+BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R
+Total Standard Deviation in ln(k): 3.899362049801037
""",
)
entry(
index = 53,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C",
- kinetics = ArrheniusBM(A=(1.7237e+13,'s^-1'), n=-0.218608, w0=(1.183e+06,'J/mol'), E0=(173278,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.008485639854909011, var=0.595884305542138, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C',), comment="""BM rule fitted to 3 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
- Total Standard Deviation in ln(k): 1.5688467338498606"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R",
+ kinetics = ArrheniusBM(A=(9.59965e+09,'s^-1'), n=0.653805, w0=(1.0845e+06,'J/mol'), E0=(159613,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.006151462620514832, var=1.8383730646871563, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
+ Total Standard Deviation in ln(k): 2.733608402853133"""),
rank = 11,
- shortDesc = """BM rule fitted to 3 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 1.5688467338498606""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
+Total Standard Deviation in ln(k): 2.733608402853133""",
longDesc =
"""
-BM rule fitted to 3 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C
-Total Standard Deviation in ln(k): 1.5688467338498606
+BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R
+Total Standard Deviation in ln(k): 2.733608402853133
""",
)
entry(
index = 54,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C",
- kinetics = ArrheniusBM(A=(58002.5,'s^-1'), n=0.286, w0=(1.183e+06,'J/mol'), E0=(125149,'J/mol'), Tmin=(500,'K'), Tmax=(1300,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(1.2535e+06,'s^-1'), n=1.80968, w0=(1.0845e+06,'J/mol'), E0=(155867,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_N-7R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 55,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C",
- kinetics = ArrheniusBM(A=(1708.21,'s^-1'), n=2.62955, w0=(1.0845e+06,'J/mol'), E0=(162976,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(11.5839,'s^-1'), n=3.09547, w0=(1.0845e+06,'J/mol'), E0=(137668,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_8R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 56,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C",
- kinetics = ArrheniusBM(A=(85500.5,'s^-1'), n=2.19797, w0=(1.0845e+06,'J/mol'), E0=(186561,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C",
+ kinetics = ArrheniusBM(A=(21.2645,'s^-1'), n=2.97303, w0=(1.0845e+06,'J/mol'), E0=(145085,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-4R!H-R_N-8R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 57,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C",
- kinetics = ArrheniusBM(A=(111514,'s^-1'), n=2.05353, w0=(1.0845e+06,'J/mol'), E0=(161295,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C",
+ kinetics = ArrheniusBM(A=(3.78363e+11,'s^-1'), n=0.169307, w0=(1.0845e+06,'J/mol'), E0=(163318,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-2C-R_N-7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 58,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C",
- kinetics = ArrheniusBM(A=(6.3077e+06,'s^-1'), n=1.41637, w0=(1.0845e+06,'J/mol'), E0=(158519,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C",
+ kinetics = ArrheniusBM(A=(6.80655,'s^-1'), n=3.07798, w0=(1.0845e+06,'J/mol'), E0=(148263,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_7R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 59,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(4.85194e+07,'s^-1'), n=1.12718, w0=(1.0845e+06,'J/mol'), E0=(163383,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.023199101818381307, var=14.082287951603485, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 7.581333161482922"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C",
+ kinetics = ArrheniusBM(A=(2419.21,'s^-1'), n=2.3826, w0=(1.0845e+06,'J/mol'), E0=(171107,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 7.581333161482922""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 7.581333161482922
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_5R!H->O_Ext-4C-R_N-7R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 60,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(1.86934e+11,'s^-1'), n=0.401442, w0=(1.0845e+06,'J/mol'), E0=(182171,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.021492990850914453, var=5.303057773824753, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 4.670580394351897"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R",
+ kinetics = ArrheniusBM(A=(1.54049e+21,'s^-1'), n=-3.24953, w0=(968000,'J/mol'), E0=(163723,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.1297736116659072, var=2.9989072691974563, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R
+ Total Standard Deviation in ln(k): 3.797734921010004"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 4.670580394351897""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R
+Total Standard Deviation in ln(k): 3.797734921010004""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 4.670580394351897
+BM rule fitted to 4 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R
+Total Standard Deviation in ln(k): 3.797734921010004
""",
)
entry(
index = 61,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C",
- kinetics = ArrheniusBM(A=(1.37571e+07,'s^-1'), n=1.37128, w0=(1.0845e+06,'J/mol'), E0=(152318,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.0072034781886713035, var=1.112822940211039, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
- Total Standard Deviation in ln(k): 2.1329027100545948"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing",
+ kinetics = ArrheniusBM(A=(1.25594e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(155092,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
-Total Standard Deviation in ln(k): 2.1329027100545948""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
-Total Standard Deviation in ln(k): 2.1329027100545948
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 62,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C",
- kinetics = ArrheniusBM(A=(1.35624e+13,'s^-1'), n=-0.218688, w0=(1.0845e+06,'J/mol'), E0=(165536,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.00045559036986736554, var=2.308582681294396, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
- Total Standard Deviation in ln(k): 3.0471433462500226"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing",
+ kinetics = ArrheniusBM(A=(1.98582e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(160232,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
-Total Standard Deviation in ln(k): 3.0471433462500226""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
-Total Standard Deviation in ln(k): 3.0471433462500226
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-4C-R_N-7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 63,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(2.2474e+17,'s^-1'), n=-2.18683, w0=(968000,'J/mol'), E0=(148502,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.10639571125003566, var=4.305704753171537, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R',), comment="""BM rule fitted to 3 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R
- Total Standard Deviation in ln(k): 4.427189719338195"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(1.32702e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(116943,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 3 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 4.427189719338195""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 3 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 4.427189719338195
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 64,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R",
- kinetics = ArrheniusBM(A=(1.39881e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(136330,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H",
+ kinetics = ArrheniusBM(A=(8.37297e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(151179,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_Ext-2R!H-R_Ext-3R!H-R_Ext-9R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 65,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(1.16921e+13,'s^-1'), n=-0.324602, w0=(1.183e+06,'J/mol'), E0=(155605,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-0.0006121978434024415, var=0.049410262461096775, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R
- Total Standard Deviation in ln(k): 0.4471591044090268"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H",
+ kinetics = ArrheniusBM(A=(8.84721e+12,'s^-1'), n=-0.302094, w0=(1.183e+06,'J/mol'), E0=(150154,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=3.255606157999161e-05, var=0.017017844750293856, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
+ Total Standard Deviation in ln(k): 0.2616044249499389"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R
-Total Standard Deviation in ln(k): 0.4471591044090268""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
+Total Standard Deviation in ln(k): 0.2616044249499389""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R
-Total Standard Deviation in ln(k): 0.4471591044090268
+BM rule fitted to 2 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
+Total Standard Deviation in ln(k): 0.2616044249499389
""",
)
entry(
index = 66,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(2.81965e+13,'s^-1'), n=-0.54761, w0=(1.183e+06,'J/mol'), E0=(142581,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.011656401367828983, var=1.7600602599389328, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R
- Total Standard Deviation in ln(k): 2.6889145927230276"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H",
+ kinetics = ArrheniusBM(A=(1.11936e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(158970,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 2.6889145927230276""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 2.6889145927230276
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_Sp-9R!H-8R!H
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 67,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(1.09597e+13,'s^-1'), n=-0.328822, w0=(1.183e+06,'J/mol'), E0=(160198,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0010628098785811556, var=0.16224599752348345, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R
- Total Standard Deviation in ln(k): 0.8101730807390738"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H",
+ kinetics = ArrheniusBM(A=(1.99054e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(166153,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 0.8101730807390738""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R
-Total Standard Deviation in ln(k): 0.8101730807390738
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-4C-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 68,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing",
- kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(165471,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R",
+ kinetics = ArrheniusBM(A=(139248,'s^-1'), n=2.06526, w0=(1.183e+06,'J/mol'), E0=(165686,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.6647699949854299, var=1.1672292911792304, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R',), comment="""BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R
+ Total Standard Deviation in ln(k): 3.8361597962833978"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R
+Total Standard Deviation in ln(k): 3.8361597962833978""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_7C-inRing
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 4 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R
+Total Standard Deviation in ln(k): 3.8361597962833978
""",
)
entry(
index = 69,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing",
- kinetics = ArrheniusBM(A=(1.99592e+06,'s^-1'), n=1.77995, w0=(1.183e+06,'J/mol'), E0=(172186,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.045572513486908654, var=0.10435748944687856, Tref=1000.0, N=6, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing',), comment="""BM rule fitted to 6 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing
- Total Standard Deviation in ln(k): 0.7621216381393935"""),
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(3.16053e+06,'s^-1'), n=1.87467, w0=(1.183e+06,'J/mol'), E0=(182477,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 6 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing
-Total Standard Deviation in ln(k): 0.7621216381393935""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 6 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing
-Total Standard Deviation in ln(k): 0.7621216381393935
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-4C-R
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 70,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(193178,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(6.96433e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(174127,'J/mol'), Tmin=(900,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_N-7R!H->C_Ext-7BrClFINOPSSi-R_Ext-8R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 71,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R",
- kinetics = ArrheniusBM(A=(1.49982e+12,'s^-1'), n=0.105014, w0=(1.183e+06,'J/mol'), E0=(171575,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=-1.6694644050553874e-15, var=2.116729755416145, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
- Total Standard Deviation in ln(k): 2.9166861328622327"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C",
+ kinetics = ArrheniusBM(A=(1708.21,'s^-1'), n=2.62955, w0=(1.0845e+06,'J/mol'), E0=(162976,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
-Total Standard Deviation in ln(k): 2.9166861328622327""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R
-Total Standard Deviation in ln(k): 2.9166861328622327
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_8R!H->C
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 72,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N",
- kinetics = ArrheniusBM(A=(6552.1,'s^-1'), n=2.29082, w0=(1.0845e+06,'J/mol'), E0=(167773,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C",
+ kinetics = ArrheniusBM(A=(85500.5,'s^-1'), n=2.19797, w0=(1.0845e+06,'J/mol'), E0=(186561,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_8R!H->N
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-4C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 73,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N",
- kinetics = ArrheniusBM(A=(459.236,'s^-1'), n=2.68918, w0=(1.0845e+06,'J/mol'), E0=(145855,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C",
+ kinetics = ArrheniusBM(A=(111514,'s^-1'), n=2.05353, w0=(1.0845e+06,'J/mol'), E0=(161295,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_7BrCClFIOPSSi->C_N-8R!H->N
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 74,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N",
- kinetics = ArrheniusBM(A=(2.87851e+08,'s^-1'), n=1.30992, w0=(1.0845e+06,'J/mol'), E0=(187582,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C",
+ kinetics = ArrheniusBM(A=(6.3077e+06,'s^-1'), n=1.41637, w0=(1.0845e+06,'J/mol'), E0=(156860,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_8R!H->N
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_7R!H->N_Ext-2C-R_N-8R!H->C
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 75,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N",
- kinetics = ArrheniusBM(A=(6.1395e+07,'s^-1'), n=1.36832, w0=(1.0845e+06,'J/mol'), E0=(163924,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(2.01084e+12,'s^-1'), n=0.0883205, w0=(1.0845e+06,'J/mol'), E0=(183925,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.021492990850914453, var=5.303057773824753, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O
+ Total Standard Deviation in ln(k): 4.670580394351897"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O
+Total Standard Deviation in ln(k): 4.670580394351897""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4R!H-R_N-7BrCClFIOPSSi->C_N-8R!H->N
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O
+Total Standard Deviation in ln(k): 4.670580394351897
""",
)
entry(
index = 76,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(1017.11,'s^-1'), n=2.55399, w0=(1.0845e+06,'J/mol'), E0=(143955,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(9.58447e+09,'s^-1'), n=0.427548, w0=(1.0845e+06,'J/mol'), E0=(167154,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.023199101818381307, var=14.082287951603485, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O
+ Total Standard Deviation in ln(k): 7.581333161482922"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O
+Total Standard Deviation in ln(k): 7.581333161482922""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O
+Total Standard Deviation in ln(k): 7.581333161482922
""",
)
entry(
index = 77,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(1.65185e+07,'s^-1'), n=1.51788, w0=(1.0845e+06,'J/mol'), E0=(159604,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C",
+ kinetics = ArrheniusBM(A=(2.6009e+07,'s^-1'), n=1.28561, w0=(1.0845e+06,'J/mol'), E0=(152714,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.00720347818867495, var=1.1128229402110497, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
+ Total Standard Deviation in ln(k): 2.1329027100546143"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
+Total Standard Deviation in ln(k): 2.1329027100546143""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C
+Total Standard Deviation in ln(k): 2.1329027100546143
""",
)
entry(
index = 78,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(2.0173e+12,'s^-1'), n=0.0499164, w0=(1.0845e+06,'J/mol'), E0=(160428,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C",
+ kinetics = ArrheniusBM(A=(5.01614e+11,'s^-1'), n=0.272082, w0=(1.0845e+06,'J/mol'), E0=(164653,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.0004677404420120619, var=2.2953718575893025, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
+ Total Standard Deviation in ln(k): 3.038446033140682"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
+Total Standard Deviation in ln(k): 3.038446033140682""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C
+Total Standard Deviation in ln(k): 3.038446033140682
""",
)
entry(
index = 79,
- label = "Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C",
- kinetics = ArrheniusBM(A=(8.27867e+08,'s^-1'), n=1.04991, w0=(1.0845e+06,'J/mol'), E0=(162025,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(1.84364e+21,'s^-1'), n=-3.37687, w0=(968000,'J/mol'), E0=(155107,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.12158036022019265, var=4.26315521405602, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R',), comment="""BM rule fitted to 3 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R
+ Total Standard Deviation in ln(k): 4.4447369115914395"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 3 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 4.4447369115914395""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFIOPSSi->C
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 3 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R
+Total Standard Deviation in ln(k): 4.4447369115914395
""",
)
entry(
index = 80,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R",
- kinetics = ArrheniusBM(A=(2.29826e+14,'s^-1'), n=-1.58523, w0=(968000,'J/mol'), E0=(118901,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0013608568101268583, var=1.6674726433047609, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
- Total Standard Deviation in ln(k): 2.5921468035711666"""),
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing",
+ kinetics = ArrheniusBM(A=(1.32702e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(152192,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
-Total Standard Deviation in ln(k): 2.5921468035711666""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
-Total Standard Deviation in ln(k): 2.5921468035711666
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 81,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing",
- kinetics = ArrheniusBM(A=(1.25594e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(155092,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing
+ label = "Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing",
+ kinetics = ArrheniusBM(A=(1.32702e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(151418,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_7C-inRing
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_Ext-2R!H-R_N-7R!H->O_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 82,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing",
- kinetics = ArrheniusBM(A=(1.98582e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(160232,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R",
+ kinetics = ArrheniusBM(A=(7.94328e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(172170,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-4R!H-R_N-7C-inRing
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 83,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(1.32702e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(116943,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R",
+ kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(170162,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Ext-8R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 84,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H",
- kinetics = ArrheniusBM(A=(8.37297e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(151179,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
+ label = "Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R",
+ kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(168938,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_Sp-9R!H=8R!H
+BM rule fitted to 1 training reactions at node Root_4R!H->C_1R!H->O_N-3R!H-inRing_Ext-4C-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 85,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H",
- kinetics = ArrheniusBM(A=(3.61437e+13,'s^-1'), n=-0.487071, w0=(1.183e+06,'J/mol'), E0=(151204,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=3.255606157999161e-05, var=0.017017844750293856, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H',), comment="""BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
- Total Standard Deviation in ln(k): 0.2616044249499389"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N",
+ kinetics = ArrheniusBM(A=(2.87851e+08,'s^-1'), n=1.30992, w0=(1.0845e+06,'J/mol'), E0=(187582,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
-Total Standard Deviation in ln(k): 0.2616044249499389""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 2 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H
-Total Standard Deviation in ln(k): 0.2616044249499389
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_8R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 86,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H",
- kinetics = ArrheniusBM(A=(1.11936e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(158970,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N",
+ kinetics = ArrheniusBM(A=(6.1395e+07,'s^-1'), n=1.36832, w0=(1.0845e+06,'J/mol'), E0=(163924,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_Sp-9R!H-8R!H
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_7BrCClFILiOPSSi->O_N-8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 87,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H",
- kinetics = ArrheniusBM(A=(1.99054e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(166153,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N",
+ kinetics = ArrheniusBM(A=(6552.1,'s^-1'), n=2.29082, w0=(1.0845e+06,'J/mol'), E0=(167773,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-4R!H-R_Ext-8R!H-R_N-Sp-9R!H-8R!H
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_8R!H->N
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 88,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R",
- kinetics = ArrheniusBM(A=(85171.3,'s^-1'), n=2.12989, w0=(1.183e+06,'J/mol'), E0=(165322,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.6638418747586526, var=1.1683510553150969, Tref=1000.0, N=4, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R',), comment="""BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R
- Total Standard Deviation in ln(k): 3.8348683456525428"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N",
+ kinetics = ArrheniusBM(A=(459.236,'s^-1'), n=2.68918, w0=(1.0845e+06,'J/mol'), E0=(145855,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R
-Total Standard Deviation in ln(k): 3.8348683456525428""",
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 4 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R
-Total Standard Deviation in ln(k): 3.8348683456525428
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-4C-R_N-7BrCClFILiOPSSi->O_N-8R!H->N
+Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 89,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(3.16053e+06,'s^-1'), n=1.87467, w0=(1.183e+06,'J/mol'), E0=(182477,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(1.65185e+07,'s^-1'), n=1.51788, w0=(1.0845e+06,'J/mol'), E0=(159604,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-4R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 90,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(6.96433e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(174127,'J/mol'), Tmin=(900,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(1017.11,'s^-1'), n=2.55399, w0=(1.0845e+06,'J/mol'), E0=(143955,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-3R!H-R_7R!H->C_Ext-7C-R_Ext-8R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 91,
- label = "Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R",
- kinetics = ArrheniusBM(A=(6.5e+10,'s^-1'), n=0, w0=(968000,'J/mol'), E0=(139431,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R',), comment="""BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(8.27867e+08,'s^-1'), n=1.04991, w0=(1.0845e+06,'J/mol'), E0=(160247,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_1R!H->C_2R!H->C_5R!H->C_Ext-4R!H-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 92,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing",
- kinetics = ArrheniusBM(A=(1.32702e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(152192,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O",
+ kinetics = ArrheniusBM(A=(2.0173e+12,'s^-1'), n=0.0499164, w0=(1.0845e+06,'J/mol'), E0=(158672,'J/mol'), Tmin=(300,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_7C-inRing
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_Ext-1C-R_N-7R!H->N_Ext-2C-R_N-8R!H->C_N-7BrCClFILiOPSSi->O
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
entry(
index = 93,
- label = "Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing",
- kinetics = ArrheniusBM(A=(1.32702e+12,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(151418,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
- Total Standard Deviation in ln(k): 11.540182761524994"""),
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R",
+ kinetics = ArrheniusBM(A=(1.34275e+16,'s^-1'), n=-2.11924, w0=(968000,'J/mol'), E0=(122130,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0013608568101268583, var=1.6674726433047609, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R',), comment="""BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
+ Total Standard Deviation in ln(k): 2.5921468035711666"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
-Total Standard Deviation in ln(k): 11.540182761524994""",
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
+Total Standard Deviation in ln(k): 2.5921468035711666""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_Ext-2R!H-R_N-1BrClFINOPSSi->N_7R!H->C_Ext-7C-R_Ext-8R!H-R_N-Sp-9R!H=8R!H_N-7C-inRing
-Total Standard Deviation in ln(k): 11.540182761524994
+BM rule fitted to 2 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R
+Total Standard Deviation in ln(k): 2.5921468035711666
""",
)
entry(
index = 94,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R",
- kinetics = ArrheniusBM(A=(7.94328e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(172170,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R
- Total Standard Deviation in ln(k): 11.540182761524994"""),
- rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994""",
- longDesc =
-"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-4R!H-R
-Total Standard Deviation in ln(k): 11.540182761524994
-""",
-)
-
-entry(
- index = 95,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R",
- kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(170162,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
- Total Standard Deviation in ln(k): 11.540182761524994"""),
- rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
-Total Standard Deviation in ln(k): 11.540182761524994""",
- longDesc =
-"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-7C-R
-Total Standard Deviation in ln(k): 11.540182761524994
-""",
-)
-
-entry(
- index = 96,
- label = "Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R",
- kinetics = ArrheniusBM(A=(7.92445e+11,'s^-1'), n=0, w0=(1.183e+06,'J/mol'), E0=(168938,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
+ label = "Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R",
+ kinetics = ArrheniusBM(A=(6.5e+10,'s^-1'), n=0, w0=(968000,'J/mol'), E0=(139431,'J/mol'), Tmin=(500,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R',), comment="""BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994"""),
rank = 11,
- shortDesc = """BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994""",
longDesc =
"""
-BM rule fitted to 1 training reactions at node Root_N-1R!H->C_N-1BrClFINOPSSi->N_N-3R!H-inRing_Ext-4R!H-R_7R!H->C_N-7C-inRing_Ext-7C-R_Ext-8R!H-R
+BM rule fitted to 1 training reactions at node Root_4R!H->C_N-1R!H->O_2R!H->C_N-5R!H->O_Ext-4C-R_Ext-7R!H-R_Ext-8R!H-R_Ext-7R!H-R_Ext-5C-R
Total Standard Deviation in ln(k): 11.540182761524994
""",
)
diff --git a/input/kinetics/families/Retroene/training/dictionary.txt b/input/kinetics/families/Retroene/training/dictionary.txt
index 0e007e07a4..fb0adb2fe1 100644
--- a/input/kinetics/families/Retroene/training/dictionary.txt
+++ b/input/kinetics/families/Retroene/training/dictionary.txt
@@ -1976,3 +1976,30 @@ CHN
2 *4 C u0 p0 c0 {1,T} {3,S}
3 H u0 p0 c0 {2,S}
+C3H5LiO2
+1 *5 O u0 p2 c0 {4,S} {6,S}
+2 *1 O u0 p2 c0 {5,D}
+3 *3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 *4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 *2 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 *6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+C2H3LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 *3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 *6 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+CH2O-2
+1 *5 O u0 p2 c0 {2,D}
+2 *4 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Retroene/training/reactions.py b/input/kinetics/families/Retroene/training/reactions.py
index d6da5dfbad..24c76f1197 100644
--- a/input/kinetics/families/Retroene/training/reactions.py
+++ b/input/kinetics/families/Retroene/training/reactions.py
@@ -50,7 +50,7 @@
kinetics = Arrhenius(A=(3.16601e+09,'1/s'), n=1.07561, Ea=(193.552,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to Multiple Arrhenius kinetics over range 300.0-2000.0 K. """),
rank = 5,
shortDesc = """Calculated at CBS-QB3 by Xiaorui Dong.""",
- longDesc =
+ longDesc =
"""
There are two different TS conformers (cis and trans) related to different H atom
reacting. The kinetics is fitted from the sum of the individual rate coeffs.
@@ -136,7 +136,7 @@
kinetics = Arrhenius(A=(2.34423e+11,'1/s'), n=0, Ea=(181.5,'kJ/mol'), T0=(1,'K'), Tmin=(602,'K'), Tmax=(694,'K')),
rank = 9,
shortDesc = """Measured from experiment""",
- longDesc =
+ longDesc =
"""
Cited from: Vitins P, Egger K W. The thermochemical kinetics of the retro-‘ene’reactions of
molecules with the general structure (allyl) XYH in the gas phase. Part IX.
@@ -152,7 +152,7 @@
kinetics = Arrhenius(A=(1.23027e+11,'1/s'), n=0, Ea=(174.05,'kJ/mol'), T0=(1,'K'), Tmin=(725,'K'), Tmax=(810,'K')),
rank = 9,
shortDesc = """Measured from experiment""",
- longDesc =
+ longDesc =
"""
Cited from: Kwart H, Sarner S F, Slutsky J. Mechanisms of thermolytic fragmentation of allyl
ethers. I[J]. Journal of the American Chemical Society, 1973, 95(16): 5234-5242.
@@ -166,7 +166,7 @@
kinetics = Arrhenius(A=(1.69824e+11,'1/s'), n=0, Ea=(160,'kJ/mol'), T0=(1,'K'), Tmin=(588,'K'), Tmax=(691,'K')),
rank = 9,
shortDesc = """Measured from experiment""",
- longDesc =
+ longDesc =
"""
Cited from: Martin G, Ropero M, Avila R. Gas-phase thermolysis of sulfur compounds.
Part V. Methyl allyl, diallyl and benzyl allyl sulfides[J]. Phosphorus and Sulfur
@@ -181,7 +181,7 @@
kinetics = Arrhenius(A=(1e+08,'1/s'), n=1.2, Ea=(44,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """calculated at CBS-QB3""",
- longDesc =
+ longDesc =
"""
Cited from: Jarvis, M. W., Daily, J. W., Carstensen, H. H., Dean, A. M., Sharma, S., Dayton,
D. C., ... & Nimlos, M. R. (2011). Direct detection of products from the pyrolysis
@@ -196,7 +196,7 @@
kinetics = Arrhenius(A=(5.5e+07,'1/s'), n=1.6, Ea=(54,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """calculated at CBS-QB3""",
- longDesc =
+ longDesc =
"""
Cited from: Jarvis, M. W., Daily, J. W., Carstensen, H. H., Dean, A. M., Sharma, S., Dayton,
D. C., ... & Nimlos, M. R. (2011). Direct detection of products from the pyrolysis
@@ -211,7 +211,7 @@
kinetics = Arrhenius(A=(7.94328e+12,'1/s'), n=0, Ea=(44.7,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -225,7 +225,7 @@
kinetics = Arrhenius(A=(2.2e+06,'1/s'), n=0.9, Ea=(49,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """calculated at CBS-QB3""",
- longDesc =
+ longDesc =
"""
Cited from: Jarvis, M. W., Daily, J. W., Carstensen, H. H., Dean, A. M., Sharma, S., Dayton,
D. C., ... & Nimlos, M. R. (2011). Direct detection of products from the pyrolysis
@@ -240,7 +240,7 @@
kinetics = Arrhenius(A=(8.91251e+12,'1/s'), n=0, Ea=(39.4,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -254,7 +254,7 @@
kinetics = Arrhenius(A=(1.25893e+13,'1/s'), n=0, Ea=(40,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -268,7 +268,7 @@
kinetics = Arrhenius(A=(3.98107e+11,'1/s'), n=0, Ea=(36.6,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -282,7 +282,7 @@
kinetics = Arrhenius(A=(2.51189e+12,'1/s'), n=0, Ea=(43.9,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -296,7 +296,7 @@
kinetics = Arrhenius(A=(3.98107e+12,'1/s'), n=0, Ea=(43.9,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -310,7 +310,7 @@
kinetics = Arrhenius(A=(3.98107e+12,'1/s'), n=0, Ea=(36.1,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -324,7 +324,7 @@
kinetics = Arrhenius(A=(3.98107e+12,'1/s'), n=0, Ea=(43.7,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -338,7 +338,7 @@
kinetics = Arrhenius(A=(1.58489e+12,'1/s'), n=0, Ea=(45.1,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -352,7 +352,7 @@
kinetics = Arrhenius(A=(2.51189e+12,'1/s'), n=0, Ea=(41.7,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -366,7 +366,7 @@
kinetics = Arrhenius(A=(6.30957e+12,'1/s'), n=0, Ea=(44.8,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -380,7 +380,7 @@
kinetics = Arrhenius(A=(1e+13,'1/s'), n=0, Ea=(39.3,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -394,7 +394,7 @@
kinetics = Arrhenius(A=(1.99526e+12,'1/s'), n=0, Ea=(47.4,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -408,7 +408,7 @@
kinetics = Arrhenius(A=(1.58489e+12,'1/s'), n=0, Ea=(46.4,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -422,7 +422,7 @@
kinetics = Arrhenius(A=(1.58489e+12,'1/s'), n=0, Ea=(46.4,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -436,7 +436,7 @@
kinetics = Arrhenius(A=(7.94328e+11,'1/s'), n=0, Ea=(45.8,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -450,7 +450,7 @@
kinetics = Arrhenius(A=(1.58489e+12,'1/s'), n=0, Ea=(48.6,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -464,7 +464,7 @@
kinetics = Arrhenius(A=(1.58489e+12,'1/s'), n=0, Ea=(48.3,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -478,7 +478,7 @@
kinetics = Arrhenius(A=(2.23872e+12,'1/s'), n=0, Ea=(43.8,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -492,7 +492,7 @@
kinetics = Arrhenius(A=(3.98107e+12,'1/s'), n=0, Ea=(43.8,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -506,7 +506,7 @@
kinetics = Arrhenius(A=(7.94328e+12,'1/s'), n=0, Ea=(44.1,'kcal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1500,'K')),
rank = 10,
shortDesc = """Estimated by group additivity approach""",
- longDesc =
+ longDesc =
"""
Cited from: O'Neal, H., & Benson, S. (1967). A method for estimating the Arrhenius a factors for
four-and six-center unimolecular reactions. The Journal of Physical Chemistry, 71(9), 2903-2921.
@@ -520,7 +520,7 @@
kinetics = Arrhenius(A=(1.19e+11,'1/s'), n=0.59, Ea=(49800,'cal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """calculated at CCSD(T)/CBS//M06-2X/cc-pVTZ""",
- longDesc =
+ longDesc =
"""
Cited from: Sun, W., Tao, T., Zhang, R., Liao, H., Huang, C., Zhang, F., ... & Yang, B. (2017).
Experimental and modeling efforts towards a better understanding of the high-temperature
@@ -536,7 +536,7 @@
kinetics = Arrhenius(A=(1.36e+14,'1/s'), n=-0.3, Ea=(49900,'cal/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """calculated at CCSD(T)/CBS//M06-2X/cc-pVTZ""",
- longDesc =
+ longDesc =
"""
Cited from: Sun, W., Tao, T., Zhang, R., Liao, H., Huang, C., Zhang, F., ... & Yang, B. (2017).
Experimental and modeling efforts towards a better understanding of the high-temperature
@@ -552,7 +552,7 @@
kinetics = Arrhenius(A=(6.93e+08,'1/s'), n=1.27, Ea=(48500,'cal/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K')),
rank = 5,
shortDesc = """calculated at CCSD(T)/CBS//M06-2X/cc-pVTZ""",
- longDesc =
+ longDesc =
"""
Cited from: Sun, W., Tao, T., Zhang, R., Liao, H., Huang, C., Zhang, F., ... & Yang, B. (2017).
Experimental and modeling efforts towards a better understanding of the high-temperature
@@ -568,7 +568,7 @@
kinetics = Arrhenius(A=(2.0893e+13,'1/s'), n=0, Ea=(49518,'cal/mol'), T0=(1,'K'), Tmin=(900,'K'), Tmax=(1500,'K')),
rank = 5,
shortDesc = """calculated at G3//MP2/aug-cc-pVDZ""",
- longDesc =
+ longDesc =
"""
AlAbbad, M., Giri, B. R., Szőri, M., & Farooq, A. (2017). On the high-temperature
unimolecular decomposition of ethyl levulinate. Proceedings of the Combustion
@@ -583,7 +583,7 @@
kinetics = Arrhenius(A=(348015,'1/s'), n=0.286, Ea=(158771,'J/mol'), T0=(1,'K'), Tmin=(500,'K'), Tmax=(1300,'K')),
rank = 5,
shortDesc = """calculated at G3//MP2/aug-cc-pVDZ""",
- longDesc =
+ longDesc =
"""
AlAbbad, M., Giri, B. R., Szőri, M., Viskolcz, B., & Farooq, A. (2017). A high
temperature kinetic study for the thermal unimolecular decomposition of diethyl
@@ -598,7 +598,7 @@
kinetics = Arrhenius(A=(127.587,'s^-1'), n=2.97303, Ea=(221.127,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.52331, dn = +|- 0.0559292, dEa = +|- 0.286484 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -611,7 +611,7 @@
kinetics = Arrhenius(A=(34.7517,'s^-1'), n=3.09547, Ea=(214.25,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.47481, dn = +|- 0.0516299, dEa = +|- 0.264462 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -624,7 +624,7 @@
kinetics = Arrhenius(A=(13.6131,'s^-1'), n=3.07798, Ea=(218.469,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.52121, dn = +|- 0.0557459, dEa = +|- 0.285545 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -637,7 +637,7 @@
kinetics = Arrhenius(A=(7.78487,'s^-1'), n=3.40032, Ea=(211.103,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.70197, dn = +|- 0.0706665, dEa = +|- 0.361972 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -650,7 +650,7 @@
kinetics = Arrhenius(A=(171001,'s^-1'), n=2.19797, Ea=(217.237,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.46775, dn = +|- 0.050992, dEa = +|- 0.261195 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -663,7 +663,7 @@
kinetics = Arrhenius(A=(13104.2,'s^-1'), n=2.29082, Ea=(214.941,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.43309, dn = +|- 0.0478167, dEa = +|- 0.24493 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -676,7 +676,7 @@
kinetics = Arrhenius(A=(6102.65,'s^-1'), n=2.55399, Ea=(214.789,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.35527, dn = +|- 0.0403969, dEa = +|- 0.206924 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -689,7 +689,7 @@
kinetics = Arrhenius(A=(3416.42,'s^-1'), n=2.62955, Ea=(212.275,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.33575, dn = +|- 0.0384693, dEa = +|- 0.19705 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -702,7 +702,7 @@
kinetics = Arrhenius(A=(918.473,'s^-1'), n=2.68918, Ea=(213.037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.44504, dn = +|- 0.0489194, dEa = +|- 0.250578 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -715,7 +715,7 @@
kinetics = Arrhenius(A=(3.21309,'s^-1'), n=3.32108, Ea=(220.256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.52174, dn = +|- 0.0557923, dEa = +|- 0.285783 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -728,7 +728,7 @@
kinetics = Arrhenius(A=(3.7605e+06,'s^-1'), n=1.80968, Ea=(236.043,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.60655, dn = +|- 0.0629992, dEa = +|- 0.322699 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -741,7 +741,7 @@
kinetics = Arrhenius(A=(1.2279e+08,'s^-1'), n=1.36832, Ea=(234.848,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.45449, dn = +|- 0.049786, dEa = +|- 0.255017 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -754,7 +754,7 @@
kinetics = Arrhenius(A=(1.13509e+12,'s^-1'), n=0.169307, Ea=(240.476,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.14422, dn = +|- 0.0179031, dEa = +|- 0.0917044 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -767,7 +767,7 @@
kinetics = Arrhenius(A=(6.05189e+12,'s^-1'), n=0.0499164, Ea=(232.901,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.22917, dn = +|- 0.0274189, dEa = +|- 0.140447 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -780,7 +780,7 @@
kinetics = Arrhenius(A=(9.91109e+07,'s^-1'), n=1.51788, Ea=(236.313,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.50331, dn = +|- 0.0541732, dEa = +|- 0.277489 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -793,7 +793,7 @@
kinetics = Arrhenius(A=(4838.42,'s^-1'), n=2.3826, Ea=(221.139,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.44929, dn = +|- 0.04931, dEa = +|- 0.252579 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -806,7 +806,7 @@
kinetics = Arrhenius(A=(669082,'s^-1'), n=2.05353, Ea=(215.947,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.26289, dn = +|- 0.0310154, dEa = +|- 0.158869 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -819,7 +819,7 @@
kinetics = Arrhenius(A=(2.4836e+09,'s^-1'), n=1.04991, Ea=(238.94,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.28482, dn = +|- 0.0333034, dEa = +|- 0.170589 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -832,7 +832,7 @@
kinetics = Arrhenius(A=(1.89231e+07,'s^-1'), n=1.41637, Ea=(213.544,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.17678, dn = +|- 0.0216307, dEa = +|- 0.110798 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -845,7 +845,7 @@
kinetics = Arrhenius(A=(5.75702e+08,'s^-1'), n=1.30992, Ea=(238.61,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 200 data points; dA = *|/ 1.87631, dn = +|- 0.083625, dEa = +|- 0.428349 kJ/mol"""),
rank = 5,
shortDesc = """Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.""",
- longDesc =
+ longDesc =
"""
Calculated at CBS-QB3 using TST + 1DSHR approximation by Jeffrey Herron, Xiaorui Dong, and Duminda Ranasinghe.
""",
@@ -858,7 +858,7 @@
kinetics = Arrhenius(A=(3.86302e+06,'s^-1'), n=1.81611, Ea=(228.248,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 50 data points; dA = *|/ 3.23831, dn = +|- 0.155918, dEa = +|- 0.803992 kJ/mol"""),
rank = 4,
shortDesc = """CCSD(T)-F12a/cc-pVDZ-F12//wB97X-D3/def2-TZVP""",
- longDesc =
+ longDesc =
"""
Original entry: r001085 <=> p001091_0 + p001091_1
Calculated by Kevin Spiekermann
@@ -875,13 +875,56 @@
kinetics = Arrhenius(A=(9.54463e+09,'s^-1'), n=0.829688, Ea=(151.966,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(2000,'K'), comment="""Fitted to 50 data points; dA = *|/ 1.298, dn = +|- 0.034609, dEa = +|- 0.178462 kJ/mol"""),
rank = 4,
shortDesc = """CCSD(T)-F12a/cc-pVDZ-F12//wB97X-D3/def2-TZVP""",
- longDesc =
+ longDesc =
"""
Original entry: r005588 <=> p005591_0 + p001091_1
Calculated by Kevin Spiekermann
opt, freq: wB97X-D3/def2-TZVP
sp: CCSD(T)-F12a/cc-pVDZ-F12
All species include systematic conformer search and 1D rotor scans
-""",
+"""
)
+entry(
+ index = 67,
+ label = "C3H5LiO2 <=> C2H3LiO + CH2O-2",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.46545e+14,'s^-1'), n=0.20628, Ea=(62.2385,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.7509029646949823,B=2.006218503247397,E=1.143393868363932,L=8.571412669855551,A=0.5404851704510933,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: O=CCCO[Li] <=> [Li]OC=C + C=O
+TS method summary for TS10 in O=CCCO[Li] <=> [Li]OC=C + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.67050684 -1.60390085 -0.36093039
+O -0.92604375 -1.15828311 -0.03727727
+C -1.60083705 -0.10816047 0.33621254
+O 2.05006768 -0.34074837 0.03435938
+C 1.84701267 0.85995531 0.09314486
+C -1.65781511 1.09798726 -0.28717014
+H -2.17928322 -0.21866717 1.26598488
+H 0.96975439 1.32395018 -0.38007248
+H 2.53532757 1.50855856 0.65878630
+H -1.19345872 1.25604363 -1.25688972
+H -2.27676986 1.89077262 0.11390132
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molTwo consecutive points are inconsistent by more than 6.68 kJ/mol
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 10], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1179.836010787957 J/mol
+""",
+)
diff --git a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/groups.py b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/groups.py
index 626d8c3f79..cf293f2c8f 100644
--- a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/groups.py
+++ b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/groups.py
@@ -2,16 +2,21 @@
# encoding: utf-8
name = "Singlet_Carbene_Intra_Disproportionation/groups"
-shortDesc = u"Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation"
-longDesc = u"""
+shortDesc = "Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation"
+longDesc = """
Reaction site *1 should always be a singlet in this family.
"""
-template(reactants=["singletcarbene_CH"], products=["CH_C_unsaturated"], ownReverse=False)
+template(reactants=["Root"], products=["CH_C_unsaturated"], ownReverse=False)
reverse = "SingletCarbenefromMultipleBond"
-
reversible = True
+
+reactantNum = 1
+productNum = 1
+
+autoGenerated = True
+
recipe(actions=[
['LOSE_PAIR', '*1', '1'],
['FORM_BOND', '*1', 1, '*3'],
@@ -23,259 +28,95 @@
entry(
index = 0,
- label = "singletcarbene_CH",
+ label = "Root",
group =
"""
-1 *1 C u0 p1 c0 {2,[S,D]}
-2 *2 C u0 {1,[S,D]} {3,S}
-3 *3 H u0 {2,S}
+1 *2 C u0 {2,S} {3,[S,D]}
+2 *3 H u0 {1,S}
+3 *1 C u0 p1 c0 {1,[S,D]}
""",
kinetics = None,
)
entry(
index = 1,
- label = "singletcarbene",
+ label = "Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C",
group =
"""
-1 *1 C u0 p1 c0
+1 *2 C u0 {2,S} {3,[S,D]} {4,S}
+2 *3 H u0 {1,S}
+3 *1 C u0 p1 c0 {1,[S,D]}
+4 C u0 {1,S}
""",
kinetics = None,
)
entry(
index = 2,
- label = "CH",
+ label = "Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R",
group =
"""
-1 *2 C u0 {2,S}
-2 *3 H u0 {1,S}
+1 *2 C u0 r1 {2,S} {3,[S,D]} {4,S}
+2 *3 H u0 {1,S}
+3 *1 C u0 p1 c0 r1 {1,[S,D]}
+4 C u0 r1 {1,S} {5,[S,D,T,B]} {6,[S,D,T,B]}
+5 R!H ux {4,[S,D,T,B]}
+6 R!H ux {4,[S,D,T,B]}
""",
kinetics = None,
)
entry(
index = 3,
- label = "fulvene_backbone",
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C",
group =
"""
-1 *2 C u0 {2,S} {6,S} {7,S}
-2 C u0 {1,S} {3,S} {5,D}
-3 C u0 {2,S} {4,D}
-4 C u0 {3,D} {6,S}
-5 C u0 {2,D}
-6 *1 C u0 p1 c0 {1,S} {4,S}
-7 *3 H u0 {1,S}
+1 *2 C u0 {2,S} {3,S} {4,[B,D,T]}
+2 *3 H u0 {1,S}
+3 *1 C u0 p1 c0 {1,S}
+4 C ux {1,[B,D,T]}
""",
kinetics = None,
)
entry(
index = 4,
- label = "benzene_backbone",
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H",
group =
"""
-1 *2 C u0 {2,S} {6,S} {7,S}
-2 C u0 {1,S} {3,D}
-3 C u0 {2,D} {4,S}
-4 C u0 {3,S} {5,D}
-5 C u0 {4,D} {6,S}
-6 *1 C u0 p1 c0 {1,S} {5,S}
-7 *3 H u0 {1,S}
+1 *2 C u0 r1 {2,S} {3,S} {4,[B,D,T]}
+2 *3 H u0 r0 {1,S}
+3 *1 C u0 p1 c0 r1 {1,S} {5,[S,D,T,B]}
+4 C ux r1 {1,[B,D,T]}
+5 C ux r1 {3,[S,D,T,B]} {6,S}
+6 C u0 r1 {5,S}
""",
kinetics = None,
)
entry(
index = 5,
- label = "CsJ2-C",
- group =
-"""
-1 *1 C u0 p1 c0 {2,S}
-2 *2 C u0 {1,S} {3,S}
-3 *3 H u0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 6,
- label = "CdJ2=C",
- group =
-"""
-1 *1 C u0 p1 c0 {2,D}
-2 *2 C u0 {1,D} {3,S}
-3 *3 H u0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 7,
- label = "CdJ2",
- group =
-"""
-1 *1 C2d u0 p1 c0
-""",
- kinetics = None,
-)
-
-entry(
- index = 8,
- label = "CsJ2H",
- group =
-"""
-1 *1 C2s u0 p1 c0 {2,S}
-2 H u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 9,
- label = "CsJ2C",
- group =
-"""
-1 *1 C2s u0 p1 c0 {2,S}
-2 C u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 10,
- label = "CsJ2(CsC)",
- group =
-"""
-1 *1 C2s u0 p1 c0 {2,S}
-2 Cs u0 {1,S} {3,S}
-3 C u0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 11,
- label = "CsJ2(C=C)",
- group =
-"""
-1 *1 C2s u0 p1 c0 {2,S}
-2 Cd u0 {1,S} {3,D}
-3 C u0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 12,
- label = "CdH2",
- group =
-"""
-1 *2 Cd u0 {2,S} {3,S}
-2 *3 H u0 {1,S}
-3 H u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 13,
- label = "CdHC",
- group =
-"""
-1 *2 Cd u0 {2,S} {3,S}
-2 *3 H u0 {1,S}
-3 C u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 14,
- label = "CH3",
- group =
-"""
-1 *2 Cs u0 {2,S} {3,S} {4,S}
-2 *3 H u0 {1,S}
-3 H u0 {1,S}
-4 H u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 15,
- label = "CH2(C)",
- group =
-"""
-1 *2 Cs u0 {2,S} {3,S} {4,S}
-2 *3 H u0 {1,S}
-3 H u0 {1,S}
-4 C u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 16,
- label = "CH2(C=C)",
- group =
-"""
-1 *2 Cs u0 {2,S} {3,S} {4,S}
-2 *3 H u0 {1,S}
-3 H u0 {1,S}
-4 Cd u0 {1,S} {5,D}
-5 C u0 {4,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 17,
- label = "CH(C)C",
- group =
-"""
-1 *2 Cs u0 {2,S} {3,S} {4,S}
-2 *3 H u0 {1,S}
-3 C u0 {1,S}
-4 C u0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 18,
- label = "CH=C",
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H",
group =
"""
-1 *2 Cd u0 {2,S} {3,D}
-2 *3 H u0 {1,S}
-3 C u0 {1,D}
+1 *2 C u0 r1 {2,S} {3,S} {4,[B,D,T]}
+2 *3 H u0 r0 {1,S}
+3 *1 C u0 p1 c0 r1 {1,S} {5,[S,D,T,B]}
+4 C ux r1 {1,[B,D,T]}
+5 C ux r1 {3,[S,D,T,B]} {6,[B,D,T]}
+6 C u0 r1 {5,[B,D,T]}
""",
kinetics = None,
)
tree(
"""
-L1: singletcarbene_CH
- L2: fulvene_backbone
- L2: benzene_backbone
- L2: CsJ2-C
- L2: CdJ2=C
-L1: singletcarbene
- L2: CdJ2
- L2: CsJ2H
- L2: CsJ2C
- L3: CsJ2(CsC)
- L3: CsJ2(C=C)
-L1: CH
- L2: CdH2
- L2: CdHC
- L2: CH3
- L2: CH2(C)
- L3: CH2(C=C)
- L2: CH(C)C
- L2: CH=C
+L1: Root
+ L2: Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C
+ L3: Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R
+ L2: Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C
+ L3: Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H
+ L3: Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H
"""
)
diff --git a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/rules.py b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/rules.py
index b8a170f5ea..45c05316ab 100644
--- a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/rules.py
+++ b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/rules.py
@@ -2,7 +2,97 @@
# encoding: utf-8
name = "Singlet_Carbene_Intra_Disproportionation/rules"
-shortDesc = u"Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation"
-longDesc = u"""
+shortDesc = "Convert a singlet carbene to a closed-shell molecule through a concerted 1,2-H shift + 1,2-bond formation"
+longDesc = """
Reaction site *1 should always be a singlet in this family.
"""
+entry(
+ index = 1,
+ label = "Root",
+ kinetics = ArrheniusBM(A=(3.95159e+18,'s^-1'), n=-1.97082, w0=(539000,'J/mol'), E0=(112289,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=-0.8305765209480382, var=17.041866923497537, Tref=1000.0, N=4, data_mean=0.0, correlation='Root',), comment="""BM rule fitted to 4 training reactions at node Root
+ Total Standard Deviation in ln(k): 10.36278215827023"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 10.36278215827023""",
+ longDesc =
+"""
+BM rule fitted to 4 training reactions at node Root
+Total Standard Deviation in ln(k): 10.36278215827023
+""",
+)
+
+entry(
+ index = 2,
+ label = "Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C",
+ kinetics = ArrheniusBM(A=(1234.65,'s^-1'), n=2.90797, w0=(539000,'J/mol'), E0=(53900,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=2.0720040911798123, var=5.164887496394838, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C',), comment="""BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C
+ Total Standard Deviation in ln(k): 9.762079318807448"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C
+Total Standard Deviation in ln(k): 9.762079318807448""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C
+Total Standard Deviation in ln(k): 9.762079318807448
+""",
+)
+
+entry(
+ index = 3,
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C",
+ kinetics = ArrheniusBM(A=(1.19752e-13,'s^-1'), n=7.15292, w0=(539000,'J/mol'), E0=(-2634.85,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.22451706692118498, var=51.16218975222221, Tref=1000.0, N=2, data_mean=0.0, correlation='Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C',), comment="""BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C
+ Total Standard Deviation in ln(k): 14.903532113840376"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C
+Total Standard Deviation in ln(k): 14.903532113840376""",
+ longDesc =
+"""
+BM rule fitted to 2 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C
+Total Standard Deviation in ln(k): 14.903532113840376
+""",
+)
+
+entry(
+ index = 4,
+ label = "Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R",
+ kinetics = ArrheniusBM(A=(8.067e+10,'s^-1'), n=0.649, w0=(539000,'J/mol'), E0=(53900,'J/mol'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_Sp-4R!H-1C_Ext-4R!H-R_Ext-4R!H-R
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 5,
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H",
+ kinetics = ArrheniusBM(A=(1.61832e+16,'s^-1'), n=-0.885455, w0=(539000,'J/mol'), E0=(109382,'J/mol'), Tmin=(303.03,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_Sp-6R!H-5R!H
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
+entry(
+ index = 6,
+ label = "Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H",
+ kinetics = ArrheniusBM(A=(4.66894e+13,'s^-1'), n=-1.27142, w0=(539000,'J/mol'), E0=(78261.5,'J/mol'), Tmin=(303.03,'K'), Tmax=(2000,'K'), uncertainty=RateUncertainty(mu=0.0, var=33.13686319048999, Tref=1000.0, N=1, data_mean=0.0, correlation='Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H',), comment="""BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H
+ Total Standard Deviation in ln(k): 11.540182761524994"""),
+ rank = 11,
+ shortDesc = """BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H
+Total Standard Deviation in ln(k): 11.540182761524994""",
+ longDesc =
+"""
+BM rule fitted to 1 training reactions at node Root_Ext-3C-R_Ext-4R!H-R_N-Sp-4R!H-1C_Ext-4R!H-R_Ext-5R!H-R_Ext-5R!H-R_N-Sp-6R!H-5R!H
+Total Standard Deviation in ln(k): 11.540182761524994
+""",
+)
+
diff --git a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/dictionary.txt b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/dictionary.txt
index a0120f0311..5a273e5a33 100644
--- a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/dictionary.txt
+++ b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/dictionary.txt
@@ -12,6 +12,34 @@ C6H6
11 H u0 p0 c0 {5,S}
12 H u0 p0 c0 {5,S}
+C6H6-2
+1 C u0 p0 c0 {2,S} {3,S} {6,D}
+2 *2 C u0 p0 c0 {1,S} {5,D} {8,S}
+3 C u0 p0 c0 {1,S} {4,D} {9,S}
+4 C u0 p0 c0 {3,D} {5,S} {10,S}
+5 *1 C u0 p0 c0 {2,D} {4,S} {7,S}
+6 C u0 p0 c0 {1,D} {11,S} {12,S}
+7 *3 H u0 p0 c0 {5,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+
+C6H6-3
+1 *2 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+2 C u0 p0 c0 {1,S} {3,D} {9,S}
+3 C u0 p0 c0 {2,D} {4,S} {11,S}
+4 C u0 p0 c0 {3,S} {5,D} {10,S}
+5 C u0 p0 c0 {4,D} {6,S} {12,S}
+6 *1 C u0 p1 c0 {1,S} {5,S}
+7 *3 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {1,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+
C6H6-4
1 *2 C u0 p0 c0 {2,S} {6,D} {8,S}
2 C u0 p0 c0 {1,S} {3,D} {9,S}
@@ -68,34 +96,6 @@ C6H6-7
11 H u0 p0 c0 {4,S}
12 *3 H u0 p0 c0 {5,S}
-C6H6-2
-1 C u0 p0 c0 {2,S} {3,S} {6,D}
-2 *2 C u0 p0 c0 {1,S} {5,D} {8,S}
-3 C u0 p0 c0 {1,S} {4,D} {9,S}
-4 C u0 p0 c0 {3,D} {5,S} {10,S}
-5 *1 C u0 p0 c0 {2,D} {4,S} {7,S}
-6 C u0 p0 c0 {1,D} {11,S} {12,S}
-7 *3 H u0 p0 c0 {5,S}
-8 H u0 p0 c0 {2,S}
-9 H u0 p0 c0 {3,S}
-10 H u0 p0 c0 {4,S}
-11 H u0 p0 c0 {6,S}
-12 H u0 p0 c0 {6,S}
-
-C6H6-3
-1 *2 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
-2 C u0 p0 c0 {1,S} {3,D} {9,S}
-3 C u0 p0 c0 {2,D} {4,S} {11,S}
-4 C u0 p0 c0 {3,S} {5,D} {10,S}
-5 C u0 p0 c0 {4,D} {6,S} {12,S}
-6 *1 C u0 p1 c0 {1,S} {5,S}
-7 *3 H u0 p0 c0 {1,S}
-8 H u0 p0 c0 {1,S}
-9 H u0 p0 c0 {2,S}
-10 H u0 p0 c0 {4,S}
-11 H u0 p0 c0 {3,S}
-12 H u0 p0 c0 {5,S}
-
C6H6-8
1 C u0 p0 c0 {2,S} {3,S} {7,S} {8,S}
2 C u0 p0 c0 {1,S} {4,D} {9,S}
diff --git a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/reactions.py b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/reactions.py
index 2b8dff0ff5..cbd145dd3d 100644
--- a/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/reactions.py
+++ b/input/kinetics/families/Singlet_Carbene_Intra_Disproportionation/training/reactions.py
@@ -2,8 +2,8 @@
# encoding: utf-8
name = "Singlet_Carbene_Intra_Disproportionation/training"
-shortDesc = u"Reaction kinetics used to generate rate rules"
-longDesc = u"""
+shortDesc = "Reaction kinetics used to generate rate rules"
+longDesc = """
Put kinetic parameters for specific reactions in this file to use as a
training set for generating rate rules to populate this kinetics family.
"""
@@ -11,11 +11,11 @@
index = 0,
label = "C6H6 <=> C6H6-2",
degeneracy = 1.0,
- kinetics = Arrhenius(A=(8.067e+10, 's^-1'), n=0.649, Ea=(8.03, 'kcal/mol'), T0=(1, 'K')),
+ kinetics = Arrhenius(A=(8.067e+10,'s^-1'), n=0.649, Ea=(8.03,'kcal/mol'), T0=(1,'K')),
rank = 5,
- shortDesc = u"""Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
+ shortDesc = """Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
longDesc =
-u"""
+"""
Taken from entry: A <=> IV
""",
)
@@ -24,11 +24,11 @@
index = 1,
label = "C6H6-3 <=> C6H6-4",
degeneracy = 1.0,
- kinetics = Arrhenius(A=(1.454e+12, 's^-1'), n=0.178, Ea=(0.205, 'kcal/mol'), T0=(1, 'K')),
+ kinetics = Arrhenius(A=(1.454e+12,'s^-1'), n=0.178, Ea=(0.205,'kcal/mol'), T0=(1,'K')),
rank = 5,
- shortDesc = u"""Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
+ shortDesc = """Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
longDesc =
-u"""
+"""
Taken from entry: IX <=> VII
""",
)
@@ -37,11 +37,11 @@
index = 2,
label = "C6H6-5 <=> C6H6-6",
degeneracy = 1.0,
- kinetics = Arrhenius(A=(1.865e+11, 's^-1'), n=0.577, Ea=(29.169, 'kcal/mol'), T0=(1, 'K')),
+ kinetics = Arrhenius(A=(1.865e+11,'s^-1'), n=0.577, Ea=(29.169,'kcal/mol'), T0=(1,'K')),
rank = 5,
- shortDesc = u"""Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
+ shortDesc = """Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
longDesc =
-u"""
+"""
Taken from entry: X <=> IX
""",
)
@@ -50,11 +50,11 @@
index = 3,
label = "C6H6-7 <=> C6H6-8",
degeneracy = 1.0,
- kinetics = Arrhenius(A=(3.355e+12, 's^-1'), n=0.294, Ea=(35.954, 'kcal/mol'), T0=(1, 'K')),
+ kinetics = Arrhenius(A=(3.355e+12,'s^-1'), n=0.294, Ea=(35.954,'kcal/mol'), T0=(1,'K')),
rank = 5,
- shortDesc = u"""Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
+ shortDesc = """Training reaction from kinetics library: 2003_Miller_Propargyl_Recomb_High_P""",
longDesc =
-u"""
+"""
Taken from entry: X <=> XI
""",
)
diff --git a/input/kinetics/families/Substitution_O/groups.py b/input/kinetics/families/Substitution_O/groups.py
index e85999941a..d4432d935d 100644
--- a/input/kinetics/families/Substitution_O/groups.py
+++ b/input/kinetics/families/Substitution_O/groups.py
@@ -34,7 +34,7 @@
1 *1 O u0 {2,S} {3,S}
2 *2 R u[0,1] {1,S}
3 R u0 {1,S}
-4 *3 [H,C,O,N,S] u[1,2]
+4 *3 [H,C,O,N,S,Li] u[1,2]
""",
kinetics = None,
)
diff --git a/input/kinetics/families/Substitution_O/training/dictionary.txt b/input/kinetics/families/Substitution_O/training/dictionary.txt
index 42d84e28d9..b1d9aadddf 100644
--- a/input/kinetics/families/Substitution_O/training/dictionary.txt
+++ b/input/kinetics/families/Substitution_O/training/dictionary.txt
@@ -1844,3 +1844,31 @@ C2H6O2-4
9 H u0 p0 c0 {3,S}
10 H u0 p0 c0 {3,S}
+CH3LiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 *2 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+Li
+multiplicity 2
+1 *2 Li u1 p0 c0
+
+HLiO
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+C2H5LiO
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 *2 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
diff --git a/input/kinetics/families/Substitution_O/training/reactions.py b/input/kinetics/families/Substitution_O/training/reactions.py
index 65fba7f165..c4ae483ac1 100644
--- a/input/kinetics/families/Substitution_O/training/reactions.py
+++ b/input/kinetics/families/Substitution_O/training/reactions.py
@@ -1719,3 +1719,330 @@
""",
)
+entry(
+ index = 128,
+ label = "CH3LiO + C2H5-2 <=> C3H8O-6 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.00266112,'cm^3/(mol*s)'), n=4.54216, Ea=(65.2952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + C[CH2] <=> [Li] + COCC
+TS method summary for TS2 in [Li]OC + C[CH2] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.95543900 -2.06606100 0.49168200
+C -1.75006400 0.40919300 0.35197900
+C -0.92556700 -0.39675200 -0.59963000
+O 0.88790900 -0.39946500 0.11588300
+C 1.47810800 0.86505900 -0.03509700
+H -1.29395600 1.37884800 0.56898500
+H -1.90037200 -0.11068200 1.30024000
+H -2.74501400 0.61653300 -0.07202800
+H -1.15395000 -1.45760200 -0.67306700
+H -0.66073800 0.05265400 -1.54957700
+H 1.04427800 1.60592100 0.65130900
+H 1.36341600 1.24189300 -1.06273700
+H 2.55152500 0.80698400 0.17628500
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 9], rotor symmetry: 3, max scan energy: 4.07 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 11], invalidation reason: Two consecutive points are inconsistent by more than 0.60 kJ/molTwo consecutive points are inconsistent by more than 0.75 kJ/molTwo consecutive points are inconsistent by more than 0.80 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 129,
+ label = "HLiO + H <=> H2O + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.03649e+11,'cm^3/(mol*s)'), n=0.812216, Ea=(-21.6525,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6576610150461983,B=2.4435784684265482,E=0.404796645816695,L=7.698368077501874,A=0.9750486732350473,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + [H] <=> [Li] + O
+TS method summary for TS9 in [Li]O + [H] <=> [Li] + O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.28826489 0.18010119 0.00207350
+O -0.36733064 0.11184220 0.00745957
+H 0.39396705 -1.32898954 -0.00633395
+H -1.27901258 -0.17912694 0.00905353
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2114.547977695349 J/mol
+""",
+)
+
+entry(
+ index = 130,
+ label = "CH3LiO + H <=> CH4O-2 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.47113e+11,'cm^3/(mol*s)'), n=0.774968, Ea=(-24.6724,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.4067121409688057,B=1.4628968939845368,E=0.9656443938025181,L=7.661570379273675,A=0.443175955652443,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + [H] <=> [Li] + CO
+TS method summary for TS11 in [Li]OC + [H] <=> [Li] + CO:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 0,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.05286763 0.11494012 -0.00863872
+O 0.38320517 0.12959365 -0.00264163
+C -1.00062168 -0.00723588 -0.00489942
+H 0.96172040 -1.23025812 0.00873654
+H -1.46633645 0.98431418 -0.00871499
+H -1.35936775 -0.54162168 0.88336582
+H -1.35623697 -0.54719021 -0.89107706
+
+1D rotors:
+pivots: [2, 3], dihedral: [1, 2, 3, 5], rotor symmetry: 1, max scan energy: 0.65 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1321.823066484516 J/mol
+""",
+)
+
+entry(
+ index = 131,
+ label = "HLiO + CH3-2 <=> CH4O-3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.07712e+06,'cm^3/(mol*s)'), n=2.28023, Ea=(85.5904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.4173362998736376,B=2.357499252462657,E=0.5167298959343533,L=7.9017680525604375,A=1.0064038665607862,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + [CH3] <=> [Li] + CO
+TS method summary for TS12 in [Li]O + [CH3] <=> [Li] + CO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.28748200 -0.18010600 1.00319500
+O 0.86993900 0.39784300 -0.11608000
+C 2.59811800 -0.51057100 -0.06290500
+H 0.96229700 1.06152900 -0.80658800
+H 3.25030100 0.31559600 0.18187100
+H 2.64875300 -0.90201200 -1.06889700
+H 2.43978600 -1.23892300 0.72228500
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2046.4105178239631 J/mol
+""",
+)
+
+entry(
+ index = 132,
+ label = "HLiO + C2H5-2 <=> C2H6O-5 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(26.5507,'cm^3/(mol*s)'), n=3.72095, Ea=(84.1068,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9913576154323054,B=3.1755887609180435,E=-0.2623364392566645,L=7.244831699370673,A=0.5572363451823703,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]O + C[CH2] <=> [Li] + CCO
+TS method summary for TS15 in [Li]O + C[CH2] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -2.57304700 0.27516400 -0.65750400
+C 1.54543100 -0.31294900 -0.20991200
+C 0.50691500 0.68250500 0.19066600
+O -1.20609000 -0.34489700 0.18644900
+H 1.31703400 -0.75838900 -1.18091300
+H 2.53974800 0.15487200 -0.28938100
+H 1.63329600 -1.12303200 0.51949300
+H 0.22894600 1.43785900 -0.53575000
+H 0.48492400 1.02184600 1.21876200
+H -1.09958300 -1.00876300 0.87538500
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 8], rotor symmetry: 3, max scan energy: 5.59 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1614.986893512281 J/mol
+""",
+)
+
+entry(
+ index = 133,
+ label = "C2H5LiO + H <=> C2H6O-3 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.77483e+09,'cm^3/(mol*s)'), n=1.18598, Ea=(-23.16,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-8.623486006056842,B=14.917486429580572,E=-5.719694357458241,L=40.120001635540106,A=-6.502228345652631,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCC + [H] <=> [Li] + CCO
+TS method summary for TS16 in [Li]OCC + [H] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.49143616 0.55729277 -0.12525674
+C -1.41113872 0.44040349 -0.02571704
+C -0.33003762 -0.62547457 0.03698411
+O 0.94967788 -0.09370527 -0.11768223
+H -1.37208971 0.96882848 -0.98064514
+H -2.40427692 -0.00332329 0.08351568
+H -1.26743662 1.17043881 0.77319839
+H -0.49296294 -1.36694873 -0.75554854
+H -0.39930548 -1.16567232 0.99075815
+H 1.34235779 0.48281906 1.16520496
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 4], rotor symmetry: 3, max scan energy: 13.87 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 1], rotor symmetry: 1, max scan energy: 0.52 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1.736364652060729e-05 J/mol
+""",
+)
+
+entry(
+ index = 134,
+ label = "CH3LiO + CH3-2 <=> C2H6O-4 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3026.56,'cm^3/(mol*s)'), n=2.80221, Ea=(80.834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.223920620501668,B=0.8264175269682525,E=0.40415741933873844,L=5.605210034978575,A=0.4397271958947774,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OC + [CH3] <=> [Li] + COC
+TS method summary for TS1 in [Li]OC + [CH3] <=> [Li] + COC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 6.51706400 -1.13632600 -3.21539400
+C 4.02423400 -1.41606000 -2.34418400
+O 5.56418700 -0.34050500 -2.05108800
+C 5.26882800 0.60085300 -1.05050100
+H 3.90830800 -1.82877700 -1.35110600
+H 4.26586000 -2.13817000 -3.11854700
+H 3.32573800 -0.64407500 -2.63764800
+H 4.99996100 0.11042200 -0.10400400
+H 4.43692100 1.25540800 -1.34741500
+H 6.14543300 1.23014000 -0.86797000
+
+1D rotors:
+* Invalidated! pivots: [3, 4], dihedral: [1, 3, 4, 8], invalidation reason: Two consecutive points are inconsistent by more than 1.40 kJ/molTwo consecutive points are inconsistent by more than 1.52 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1526.5386694571223 J/mol
+""",
+)
+
+entry(
+ index = 135,
+ label = "C2H5LiO + CH3-2 <=> C3H8O-7 + Li",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.09569,'cm^3/(mol*s)'), n=3.2546, Ea=(82.2788,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.091886494292463,B=0.5254418313743373,E=1.2963729646265112,L=5.721969023897385,A=0.6575614317431779,comment='')),
+ rank = 3,
+ longDesc =
+"""
+Training reaction from kinetics library: LithiumPrimaryKinetics
+Original entry: [Li]OCC + [CH3] <=> [Li] + COCC
+TS method summary for TS3 in [Li]OCC + [CH3] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -2.74010800 -4.87944000 -2.74685100
+C -2.29023200 -1.71339600 -1.09005000
+C -3.11923600 -1.87939400 -2.35977600
+O -3.12657200 -3.21901700 -2.79202100
+C -4.17095700 -3.35427200 -4.36839000
+H -1.25332700 -2.01355600 -1.26099300
+H -2.69616100 -2.32265000 -0.27855700
+H -2.29596500 -0.66546600 -0.76876900
+H -4.14967400 -1.54173400 -2.17015500
+H -2.70920200 -1.23314600 -3.15098300
+H -3.61682000 -2.67724300 -5.00431900
+H -5.11687000 -2.99859300 -3.98292400
+H -4.16500100 -4.39266700 -4.68634200
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 4], rotor symmetry: 3, max scan energy: 15.23 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 1], invalidation reason: Two consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.64 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1616.2708289398845 J/mol
+""",
+)
+
diff --git a/input/kinetics/families/Surface_Abstraction/groups.py b/input/kinetics/families/Surface_Abstraction/groups.py
index e7e7401231..f78b040d28 100644
--- a/input/kinetics/families/Surface_Abstraction/groups.py
+++ b/input/kinetics/families/Surface_Abstraction/groups.py
@@ -526,6 +526,48 @@
kinetics = None,
)
+entry(
+ index = 42,
+ label="*-CH-H",
+ group =
+"""
+1 *4 H u0 p0 c0 {2,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *5 Xo u0 p0 c0 {2,S}
+4 R u0 px c0 {2,S}
+5 H u0 p0 c0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 43,
+ label="*=CH-H",
+ group =
+"""
+1 *4 H u0 p0 c0 {2,S}
+2 *3 C u0 p0 c0 {1,S} {3,D} {4,S}
+3 *5 Xo u0 p0 c0 {2,D}
+4 H u0 p0 c0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 44,
+ label="*-CH2-H",
+ group =
+"""
+1 *4 H u0 p0 c0 {2,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *5 Xo u0 p0 c0 {2,S}
+4 H u0 px c0 {2,S}
+5 H u0 p0 c0 {2,S}
+""",
+ kinetics = None,
+)
+
+
tree(
"""
L1: Abstracting
@@ -544,7 +586,10 @@
L2: *R-H
L3: *C-H
L4: *-C-H
+ L5: *-CH-H
+ L6: *-CH2-H
L4: *=C-H
+ L5: *=CH-H
L4: *#C-H
L3: *N-H
L4: *-N-H
diff --git a/input/kinetics/families/Surface_Abstraction/rules.py b/input/kinetics/families/Surface_Abstraction/rules.py
index f06f481522..e14329048d 100644
--- a/input/kinetics/families/Surface_Abstraction/rules.py
+++ b/input/kinetics/families/Surface_Abstraction/rules.py
@@ -9,27 +9,19 @@
index = 1,
label = "Abstracting;Donating",
kinetics = SurfaceArrheniusBEP(
- A = (1.0e15, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0,
- alpha = 0,
- E0 = (80., 'kJ/mol'),
+ alpha = 0.37,
+ E0 = (99.3, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-"Arrhenius preexponential values for surface recombination...reactions are, in the SI system,... 10^13 - 10^14 m2/mol/s ...for bimolecular reactions"
-from page 54 of "Silicon epitaxy"
-Author: Danilo Crippa; Daniel L Rode; Maurizio Masi
-Publisher: San Diego : Academic Press, 2001.
-Series: Semiconductors and semimetals, v. 72.
-
-Ea made up.
-
-CFG: I bumped the prefactor from E13 to E15. The Delgado mechanism has pre-exponential factors
-on the order of 1E17 for H abstraction. This rule is specific for non-H abstraction.
-There is no instance of non-H abstraction in Delgado, so I reduced it from 1E17 to 1E15. Completely arbitrary!
+These numbers for the general BEP are from the abstraction reaction of C-H to C.
+BEP values from "Quantifying the Impact of Parametric Uncertainty on Automatic Mechanism Generation for CO2 Hydrogenation on Ni(111)", Kreitz et al., JACS Au, 2021, 1, 10, 1656-1673 DOI:10.1021/jacsau.1c00276
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
""",
)
@@ -37,18 +29,78 @@
index = 1,
label = "Abstracting;*R-H",
kinetics = SurfaceArrheniusBEP(
- A = (5.0e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0,
- alpha = 0.0, #0.26
- E0 = (40.0, 'kJ/mol'), #34.3
+ alpha = 0.37,
+ E0 = (99.3, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Made up""",
longDesc = u"""
-CFG increased the pre-exponential factor from 1E13, which is what we originally had,
-based upon the above citation, to 1E17, to bring it closer to the values in the
-Deutschmann_Ni (Delgado) mechanism
+These numbers for the general BEP are from the abstraction reaction of C-H to C.
+BEP values from "Quantifying the Impact of Parametric Uncertainty on Automatic Mechanism Generation for CO2 Hydrogenation on Ni(111)", Kreitz et al., JACS Au, 2021, 1, 10, 1656-1673 DOI:10.1021/jacsau.1c00276
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
+
+entry(
+ index = 3,
+ label = "O;*C-H",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha = 0.94,
+ E0 = (129.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+These numbers for the BEP are from the abstraction reaction of C-H to O.
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 4,
+ label = "O;*OH",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha = 0.65,
+ E0 = (15.4, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+These numbers for the BEP are from the abstraction reaction of O-H to O.
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 5,
+ label = "C;*C-H",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.37,
+ E0 = (99.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+These numbers for the general BEP are from the abstraction reaction of C-H to C.
+BEP values from "Quantifying the Impact of Parametric Uncertainty on Automatic Mechanism Generation for CO2 Hydrogenation on Ni(111)", Kreitz et al., JACS Au, 2021, 1, 10, 1656-1673 DOI:10.1021/jacsau.1c00276
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Abstraction/training/dictionary.txt b/input/kinetics/families/Surface_Abstraction/training/dictionary.txt
index 3cd99757ec..6f58ba98e0 100644
--- a/input/kinetics/families/Surface_Abstraction/training/dictionary.txt
+++ b/input/kinetics/families/Surface_Abstraction/training/dictionary.txt
@@ -40,22 +40,22 @@ CHX_4
2 *4 H u0 p0 {1,S}
3 *2 X u0 p0 {1,T}
-O*
+OX_1
1 *2 X u0 p0 c0 {2,D}
2 *1 O u0 p2 c0 {1,D}
-HCO*
+HCOX_3
1 O u0 p2 c0 {2,D}
2 *3 C u0 p0 c0 {1,D} {3,S} {4,S}
3 *4 H u0 p0 c0 {2,S}
4 *5 X u0 p0 c0 {2,S}
-OH*
+HOX_4
1 *1 O u0 p2 c0 {2,S} {3,S}
2 *4 H u0 p0 c0 {1,S}
3 *2 X u0 p0 c0 {1,S}
-CO*
+COX_5
1 O u0 p2 c0 {2,D}
2 *3 C u0 p0 c0 {1,D} {3,D}
3 *5 X u0 p0 c0 {2,D}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Abstraction/training/reactions.py b/input/kinetics/families/Surface_Abstraction/training/reactions.py
index da2f0f3774..b37c3d90a0 100644
--- a/input/kinetics/families/Surface_Abstraction/training/reactions.py
+++ b/input/kinetics/families/Surface_Abstraction/training/reactions.py
@@ -74,7 +74,7 @@
entry(
index = 28,
- label = "HOX_3 + CX_1 <=> OX_5 + CHX_4 ",
+ label = "CX_1 + HOX_3 <=> CHX_4 + OX_5",
degeneracy = 1,
kinetics = SurfaceArrhenius(
A=(2.43E17, 'm^2/(mol*s)'),
@@ -95,7 +95,7 @@
entry(
index = 39,
- label = "O* + HCO* <=> OH* + CO*",
+ label = "OX_1 + HCOX_3 <=> HOX_4 + COX_5",
degeneracy = 1,
kinetics = SurfaceArrhenius(
A=(3.298e17, 'm^2/(mol*s)'),
@@ -104,14 +104,14 @@
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
- rank = 1,
+ rank = 3,
shortDesc = u"""Default""",
longDesc = u"""
Reaction 39 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
A factor from paper / surface site density of Cu
-1.0e13 m^4/(mol^2 * s) / 2.943e‐5 mol/m^2 = 3.298e17 m^2/(mol*s)
+1.0e13 1/s / 2.943e‐5 mol/m^2 = 3.298e17 m^2/(mol*s)
""",
metal = "Cu",
)
diff --git a/input/kinetics/families/Surface_Abstraction_Beta/groups.py b/input/kinetics/families/Surface_Abstraction_Beta/groups.py
index 6fb03a36a9..c49b8b72cf 100755
--- a/input/kinetics/families/Surface_Abstraction_Beta/groups.py
+++ b/input/kinetics/families/Surface_Abstraction_Beta/groups.py
@@ -16,7 +16,7 @@
so k should be in (m2/mol/s).
"""
-template(reactants=["Combined", "Adsorbate1"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
+template(reactants=["Donating", "Abstracting"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
reverse = "Surface_Abstraction_reverse_Beta_vdW"
@@ -33,7 +33,7 @@
entry(
index = 1,
- label = "Combined",
+ label = "Donating",
group =
"""
1 *1 R!H u0 px c0 {2,S} {4,[D,T]}
@@ -46,18 +46,18 @@
entry(
index = 2,
- label="Adsorbate1",
+ label="Abstracting",
group =
"""
-1 *6 Xo u0 {2,D}
-2 *4 R!H u0 px c0 {1,D}
+1 *6 Xo u0 {2,[D,T,Q]}
+2 *4 R!H u0 px c0 {1,[D,T,Q]}
""",
kinetics = None,
)
entry(
index = 3,
- label = "C-H",
+ label = "R-C-H",
group =
"""
1 *1 R!H u0 px c0 {2,S} {4,[D,T]}
@@ -70,7 +70,7 @@
entry(
index = 4,
- label = "O-H",
+ label = "R-O-H",
group =
"""
1 *1 R!H u0 px c0 {2,S} {4,[D,T]}
@@ -92,13 +92,91 @@
kinetics = None,
)
+entry(
+ index = 6,
+ label = "C=*",
+ group =
+"""
+1 *4 C u0 p0 c0 {2,D}
+2 *6 Xo u0 p0 c0 {1,D}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "C#*",
+ group =
+"""
+1 *4 C u0 p0 c0 {2,T}
+2 *6 Xo u0 p0 c0 {1,T}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "C$*",
+ group =
+"""
+1 *4 C u0 p0 c0 {2,Q}
+2 *6 Xo u0 p0 c0 {1,Q}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "R-R-H",
+ group =
+"""
+1 *1 R!H u0 px c0 {2,S} {4,[D,T]}
+2 *2 R!H u0 px c0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,[D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "R-CH3",
+ group =
+"""
+1 *1 R!H u0 px c0 {2,S} {4,[D,T]}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,[D,T]}
+5 H u0 {2,S}
+6 H u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "C",
+ group =
+"""
+1 *4 C u0 px c0 {2,[D,T,Q]}
+2 *6 Xo u0 p0 c0 {1,[D,T,Q]}
+""",
+ kinetics = None,
+)
+
tree(
"""
-L1: Combined
- L2: C-H
- L2: O-H
-L1: Adsorbate1
+L1: Abstracting
+ L2: C
+ L3: C=*
+ L3: C#*
+ L3: C$*
L2: O
+L1: Donating
+ L2: R-R-H
+ L3: R-C-H
+ L4: R-CH3
+ L3: R-O-H
"""
)
diff --git a/input/kinetics/families/Surface_Abstraction_Beta/rules.py b/input/kinetics/families/Surface_Abstraction_Beta/rules.py
index 36a95db0cf..c2cfcf8b4f 100644
--- a/input/kinetics/families/Surface_Abstraction_Beta/rules.py
+++ b/input/kinetics/families/Surface_Abstraction_Beta/rules.py
@@ -8,9 +8,9 @@
entry(
index = 1,
- label = "Combined;Adsorbate1",
+ label = "Abstracting;Donating",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.94,
E0 = (129.3, 'kJ/mol'),
@@ -22,15 +22,15 @@
longDesc = u"""
These numbers for the general BEP are from the abstraction reaction of C-H to O.
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
entry(
index = 2,
- label = "C-H;O",
+ label = "O;R-C-H",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.94,
E0 = (129.3, 'kJ/mol'),
@@ -41,15 +41,15 @@
shortDesc = u"""Default""",
longDesc = u"""
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
entry(
index = 3,
- label = "O-H;O",
+ label = "O;R-O-H",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.65,
E0 = (15.4, 'kJ/mol'),
@@ -60,6 +60,6 @@
shortDesc = u"""Default""",
longDesc = u"""
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
-)
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/groups.py b/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/groups.py
index b95b8d08a8..0020d7fc50 100755
--- a/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/groups.py
+++ b/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/groups.py
@@ -16,7 +16,7 @@
so k should be in (m2/mol/s).
"""
-template(reactants=["Combined", "Adsorbate1"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
+template(reactants=["Abstracting", "Donating"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
reverse = "Surface_Abstraction_reverse_Beta_vdW"
@@ -33,11 +33,11 @@
entry(
index = 1,
- label = "Combined",
+ label = "Donating",
group =
"""
-1 *1 R!H u0 px cx {2,S} {4,S}
-2 *2 R!H u0 px cx {1,S} {3,S}
+1 *1 R!H u0 px cx {2,[S,D]} {4,S}
+2 *2 R!H u0 px cx {1,[S,D]} {3,S}
3 *3 R u0 {2,S}
4 *5 Xo u0 {1,S}
""",
@@ -46,7 +46,7 @@
entry(
index = 2,
- label="Adsorbate1",
+ label="Abstracting",
group =
"""
1 *6 Xo u0 {2,S}
@@ -57,11 +57,11 @@
entry(
index = 3,
- label = "C-H",
+ label = "R-C-H",
group =
"""
-1 *1 R!H u0 px cx {2,S} {4,S}
-2 *2 C u0 px cx {1,S} {3,S}
+1 *1 R!H u0 px cx {2,[S,D]} {4,S}
+2 *2 C u0 px cx {1,[S,D]} {3,S}
3 *3 H u0 {2,S}
4 *5 Xo u0 {1,S}
""",
@@ -70,7 +70,7 @@
entry(
index = 4,
- label = "O-H",
+ label = "R-O-H",
group =
"""
1 *1 R!H u0 px cx {2,S} {4,S}
@@ -93,12 +93,30 @@
kinetics = None,
)
+entry(
+ index = 6,
+ label = "R-CH3",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,S}
+5 H u0 {2,S}
+6 H u0 {2,S}
+""",
+ kinetics = None,
+)
+
+
+
tree(
"""
-L1: Combined
- L2: C-H
- L2: O-H
-L1: Adsorbate1
+L1: Abstracting
L2: OH
+L1: Donating
+ L2: R-C-H
+ L3: R-CH3
+ L2: R-O-H
"""
)
diff --git a/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/rules.py b/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/rules.py
index 3eb9f75b52..93acdec533 100644
--- a/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/rules.py
+++ b/input/kinetics/families/Surface_Abstraction_Beta_double_vdW/rules.py
@@ -8,9 +8,9 @@
entry(
index = 1,
- label = "Combined;Adsorbate1",
+ label = "Abstracting;Donating",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.68,
E0 = (106.1, 'kJ/mol'),
@@ -20,17 +20,16 @@
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-These numbers for the general BEP are from the abstraction reaction of C-H to OH.
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
-"""
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
)
entry(
index = 2,
- label = "C-H;OH",
+ label = "OH;R-C-H",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.68,
E0 = (106.1, 'kJ/mol'),
@@ -41,15 +40,15 @@
shortDesc = u"""Default""",
longDesc = u"""
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
entry(
index = 3,
- label = "O-H;OH",
+ label = "OH;R-O-H",
kinetics = SurfaceArrheniusBEP(
- A = (3.2e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
alpha =0.02,
E0 = (1.9, 'kJ/mol'),
@@ -60,9 +59,6 @@
shortDesc = u"""Default""",
longDesc = u"""
BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
-From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 3.16e-9 mol cm^-2 (Kreitz et al. 2021, DOI: 10.1021/jacsau.1c00276)
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
-)
-
-
-
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Abstraction_Beta_vdW/groups.py b/input/kinetics/families/Surface_Abstraction_Beta_vdW/groups.py
new file mode 100755
index 0000000000..09b2237ed7
--- /dev/null
+++ b/input/kinetics/families/Surface_Abstraction_Beta_vdW/groups.py
@@ -0,0 +1,142 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Abstraction_Beta_vdW/groups"
+shortDesc = u""
+longDesc = u"""
+Surface abstraction of one atom to another adsorbate. The bond fission occurs not at the binding atom, but in the beta position of the adsorbate, that is the bond between Atom *2 and *3 is broken. Atom *1 binds to the surface (*5). A vdW species is formed. The bond order between *4 and the surface decreases. An example for this reaction is: COOH* + O* = OH* + CO2*. The bond between *2 and *3 must be single.
+
+
+ *1-*2--*3 *4 *1=*2 *3-*4
+ | || ----> : |
+~*5~ + ~*6~~ ~*5~ + ~*6~~
+
+The rate, which should be in mol/m2/s, will be given by k * (mol/m2) * (mol/m2)
+so k should be in (m2/mol/s).
+"""
+
+template(reactants=["Abstracting", "Donating"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
+
+reverse = "Surface_Abstraction_reverse_Beta_vdW"
+
+reactantNum=2
+productNum=2
+
+recipe(actions=[
+ ['FORM_BOND', '*3', 1, '*4'],
+ ['BREAK_BOND', '*1', 1, '*5'],
+ ['FORM_BOND', '*1', 0, '*5'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['CHANGE_BOND', '*4',-1,'*6']
+])
+
+entry(
+ index = 1,
+ label = "Donating",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 R!H u0 px cx {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *5 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label="Abstracting",
+ group =
+"""
+1 *6 Xo u0 {2,D}
+2 *4 R!H u0 px cx {1,D}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "R-C-H",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 C u0 px cx {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "R-O-H",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 O u0 p2 cx {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "O",
+ group =
+"""
+1 *4 O u0 p2 c0 {2,D}
+2 *6 Xo u0 {1,D}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "R-CH3",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 *3 H u0 {2,S}
+4 *5 Xo u0 {1,S}
+5 H u0 {2,S}
+6 H u0 {2,S}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Abstracting
+ L2: O
+L1: Donating
+ L2: R-C-H
+ L3: R-CH3
+ L2: R-O-H
+"""
+)
+
+forbidden(
+ label = "Donating_Bidentate",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 R u0 px cx {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *5 Xo u0 {1,S}
+5 Xo u0
+"""
+)
+
+forbidden(
+ label="Abstracting_Bidentate",
+ group =
+"""
+1 *6 Xo u0 {2,D}
+2 *4 R!H u0 px cx {1,D}
+3 Xo u0
+"""
+)
+
diff --git a/input/kinetics/families/Surface_Abstraction_Beta_vdW/rules.py b/input/kinetics/families/Surface_Abstraction_Beta_vdW/rules.py
new file mode 100755
index 0000000000..09444ba85d
--- /dev/null
+++ b/input/kinetics/families/Surface_Abstraction_Beta_vdW/rules.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Abstraction_Beta_vdW/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "Abstracting;Donating",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.94,
+ E0 = (129.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 2,
+ label = "O;R-C-H",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.94,
+ E0 = (129.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+entry(
+ index = 3,
+ label = "O;R-O-H",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.65,
+ E0 = (15.4, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Abstraction_Beta_vdW/template.cdx b/input/kinetics/families/Surface_Abstraction_Beta_vdW/template.cdx
new file mode 100755
index 0000000000..3d5d9097d2
Binary files /dev/null and b/input/kinetics/families/Surface_Abstraction_Beta_vdW/template.cdx differ
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/template.eps b/input/kinetics/families/Surface_Abstraction_Beta_vdW/template.eps
old mode 100644
new mode 100755
similarity index 84%
rename from input/kinetics/families/Surface_Dual_Adsorption_vdW/template.eps
rename to input/kinetics/families/Surface_Abstraction_Beta_vdW/template.eps
index cf40d48266..d478ef85d9
--- a/input/kinetics/families/Surface_Dual_Adsorption_vdW/template.eps
+++ b/input/kinetics/families/Surface_Abstraction_Beta_vdW/template.eps
@@ -1,765 +1,699 @@
-%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: ChemDraw 17.1.0.105
-%%Title: template.eps
-%%CreationDate: 12/6/2019 11:33 AM
-%%DocumentSuppliedProcSets: chemdict30 24 13
-%%DocumentFonts: Helvetica Helvetica Times-Roman
-%%BoundingBox: 81 334 458 385
-%%DocumentProcessColors: Cyan Magenta Yellow Black
-%%EndComments
-%%BeginProcSet: chemdict30 24 13
-% ChemDraw Laser Prep
-% 1985-2018 PerkinElmer Informatics, Inc. All rights reserved.
-userdict/chemdict30 210 dict put
-chemdict30 begin/version 24 def/sv 13 def
-/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
-/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
-/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
-/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
-/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
-/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
-/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
-/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
-/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
-/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
-/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
-/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
-/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
-/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
-/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
-/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
-/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
-/C{Wd rot Wd rot Wd rot setrgbcolor}b
-/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
- gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
-bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
-/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
-x}b
-/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
-/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
-8 m sl st}ie}b
-/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
-r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
-/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
-/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
-/B{bs N rot put/N N 1 a d}b
-/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
-/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-0 cw 2 dv xl
-aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
-aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
-St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
-St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
-St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
-St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
-St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
-np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
-xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
-/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
-e s o o at ro D m e D m a sq}b
-/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
-/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
-/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
-180 arc 0 cw -2 dv rl cp f}b
-/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
- rad 0 l gs Ast gr}b
-/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
-P P}{sq at 2
-m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
-e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
-/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
- .35 dv w 2 m M 0 0
-l w .35 dv w -2 m l st}b
-/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
-w n l w 2 m D n l cp st}b
-/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
-{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
-DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
-HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
-DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
-OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
-{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
-OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
-AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
-gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
-/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
-/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
-21 -10 27 -8 27 0 cv
-27 8 21 10 9 6 cv
--3 2 -3 -2 9 -6 cv
-cp}b/DLB{0 0 M
-0 0 -9.51 9.65 -9.51 18.02 cv
--9.51 23.22 -6.75 27 0 27 cv
-6.75 27 9.51 23.22 9.51 18.02 cv
-9.51 9.65 0 0 0 0 cv
-cp}b/ZLB{LB}b
-/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
-/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-0 0 0 Y rO ac
-cp}b/Rc{0 0 M
-0 Y l
-X Y l
-X 0 l
-cp
-}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
-currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
-setrgbcolor}b/gS{dtransform CMT idtransform
-m D 0 lt{n}if sq n D
-CMT dtransform idtransform
-e 2 m e
-xl
-7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-13.5 0 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv
-gS
--13.5 0 xl
-LB f
-gr}for
-LB SM st}{LB grf}ie}b/gOv{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv 0.65 m D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b
-/gDLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-0 13.5 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv e
-gS
-0 -13.5 xl
-DLB f
-gr}for
-DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rr f
-gr}for
-Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rc f
-gr}for
-Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
- rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
-rev{1 -1 sc}if
-gs
-0 lW 2 m xl
-D SA OA
-gr
-rad 0 xl
-180 ro
-0 lW 2 m xl
-SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
-gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
-D stringwidth P 2 dv D 1 a/rad x
-n 0 M show gr
-rad 2 s -5 M
-rad n -5 rad n 1 2 ac
-rad n 1 rad 1 2 ac
-rad 1 rad -5 2 ac
-rad -5 rad n -5 2 ac
-cp Ast}b/Ar{D 39 lt{Ar1}
-{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
-o 0 lt o 0 lt ne/rev x
-D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
-if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M 0 0 l 0 Y l lp Y l
-X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M
-0 0 0 Y lp ac
-0 Y 2 dv lp neg o lp ac
-0 Y 2 dv 0 Y lp ac
-0 Y lp Y lp ac
-X lp s 0 M
-X 0 X Y lp ac
-X Y 2 dv X lp a o lp ac
-X Y 2 dv X Y lp ac
-X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
-np X Y s Y 2 dv
-Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
-rO D rl
-X lW 2 dv a rO a Y lW 2 dv a rO a l
-rO lW -2 dv a Y lW 2 dv a rO a l
-lW -2 dv Y lW 2 dv a l
-0 Y l X Y l X 0 l cp f
-0 0 M
-0 Y l
-X Y l
-X 0 l cp
-SM st}{Rr SM st}{rO Y M rO rO xl
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-rO neg D xl X Y 0 Y rO ac
-cp f
-Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
-{Asc gs gLB gr
--1 -1 sc LB whf}{Asc gs gLB gr
--0.4 -0.4 sc LB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc gOv gr
-ZLB whf}{Asc gs -1 -1 sc gZLB gr
-gs 3.6 12 sc Cr whf gr
-gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
-{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
-0 -1 M
-0 0 1 0 1 ac
-8 0 8 1 1 ac
-8 0 16 0 1 ac
-16 0 16 -1 1 ac
-SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-2 0 M 0 0 2 0 360 arc
-Ast}{4.5 Aos
-1 0 M -1 0 l
-2 0 M 0 0 2 0 360 arc
-Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
-0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
-1 -1 M -1 -1 l
-0 2 M 0 -2 l
-Ast}{5 Aos
-1 -1 M -1 -1 l
-1 1 M -1 1 l
-0 2 M 0 -2 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
-gs 3.6 12 sc Cr whf gr
-ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc Cr blf gr
-ZLB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
-np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
-np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
-{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
-}e 39 s g xc gr}ie}b/DS{np M l st}b
-/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
-e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
-o length 6 gt{P 6 g}{e P 8 dv}ie
-D lW 2 m lt{P lW 2 m}if
-0 e
-0 0
-3 -1 r s 3 1 r e s e
-0 0 M 1 0 l
-0 0 ap M 1 0 ap l
-e n e n
-0 0 ap M 1 0 ap l
-P P}b/DT{gs np PT SM st gr}b
-/NH{lW s D hS dv ru
-cvi D 0 eq{P 1}if/nH x
-D hS nH m s
-D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
-/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
-bW 2 dv/bd x
-lW 2 dv e D NH e{D bd M bd n l}for
-st gr}{gs 12 OB np
-lW 2 dv 0 xl NH 1 sc
-bW 2 dv wF m nH 1 a dv/bd x
-0 1 nH
-{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp f gr}{P}{gs 12 OB/bL x
-bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
-bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
-bL nSq 2 m dv D sc
-nSq{.135 .667 .865 .667 1 0 rcurveto
-.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
-}o 1 g 1 s g e 2 4 gi al P
-5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
-/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
-/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
-np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
-g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
-/FF/CR/SO/SI
-/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
-mv 0 32 gi as P
-mv 32/Times-Roman findfont/Encoding get
-32 96 gi putinterval
-mv 39/quotesingle put
-mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
-/dagger/daggerdbl
-/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
-/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
-/emdash
-/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
-/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
-/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
-/macron
-/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
-/periodcentered
-/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
-/threequarters/questiondown
-/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
-/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
-/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
-/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
-/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
-/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
-/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
-/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
-mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
-findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
-D length dict/newdict x{
-1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
-newdict 3 1 r put}{P P}ie}forall
-newdict/Encoding mv put
-fSt 8 fSt length 8 sub gi cvs length 8 add
-fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
-/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
-64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
-D 4 -1 r e scalefont setfont m cpt P e M}b
-end
-%%EndProcSet
-
-%%EndProlog
-chemdict30 begin
-/cW 40 def
-/bW 80 def
-/lW 20 def
-/hS 54 def
-/sh true def
-719 SPe[
-/Helvetica
-fD
-/Helvetica
-fD
-/Times-Roman
-fD]/ft x
-1620 6680 M
-9160 6680 l
-9160 7700 l
-1620 7700 l
-cp
-clip
-np
-65535 65535 65535 sBg
-0 2975 7293 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-20 D sl/lW x
-5666 7178 M
-4960 7178 l
-st
-5104 7238 M
-5810 7238 l
-st
-gs
-20 sl
-5840 7188
-5840 7188 5840 7188 5665 7188 5840 7188 5840 7188 5640 7126 5665 7155 5665
-7188 5840 7188 5640 7126 5640 7126 4 5840 7188 129 Sp
-gr
-gs
-20 sl
-4930 7228
-4930 7228 4930 7228 5130 7290 4930 7228 4930 7228 5105 7241 5130 7290 5130
-7290 4930 7228 5105 7228 5105 7228 4 4930 7228 129 Sp
-gr
-gr
-0 3872 7642 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-0 6340 7004 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 6352 7604 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 1663 6978 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 1912 7630 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 2265 6979 ts
-0 32896 0 C
-64 10 1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2071 7405 M
-2051 7405 l
-2051 7357 l
-2071 7357 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2071 7309 M
-2051 7309 l
-2051 7260 l
-2071 7260 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2071 7212 M
-2051 7212 l
-2051 7164 l
-2071 7164 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0
-0 0 C
-np
-2071 7115 M
-2051 7115 l
-2051 7067 l
-2071 7067 l
-cp
-f
-gr
-gs
-20
-D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2071 7018 M
-2051 7018 l
-2051
-6976 l
-2071 6976 l
-cp
-f
-gr
-0 8262 7293 ts
-0 0 0 C
-0 12 0 tx
-(+)show
-gr
-0 8887 7004 ts
-0 65535 65535 C
-64 10 0 tx
-(6)show
-0 10 0 tx
-(R)show
-gr
-0 8900 7605 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2232 6855 M
-2232 6875 l
-1927 6874 l
-1927 6854 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2232 6927 M
-2232 6947 l
-1926 6946 l
-1926 6926 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-9094 7382 M
-9074 7382 l
-9070 7043 l
-9090 7043 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0
-0 0 C
-np
-9022 7383 M
-9002 7383 l
-8998 7044 l
-9018 7043 l
-cp
-f
-gr
-gs
-20
-D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6511 7379 M
-6491 7379 l
-6487
-7043 l
-6507 7043 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4011 6981 M
-4031 6981 l
-4031 7030 l
-4011 7030 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40
-/cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4011 7078 M
-4031 7078 l
-4031 7127 l
-4011
-7127 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4011
-7176 M
-4031 7176 l
-4031 7225 l
-4011 7225 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4011 7273 M
-4031 7273 l
-4031 7322 l
-4011 7322 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4012 7371 M
-4032 7371 l
-4032 7419 l
-4012 7419 l
-cp
-f
-gr
-0 3605 6967 ts
-65535 0 65535 C
-64
-10 0 tx
-(4)show
-0 10 0 tx
-(R)show
-gr
-0 4206 6969 ts
-0 65535 65535 C
-64 10 1 tx
-(6)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4172 6880 M
-4172 6900 l
-3868 6899 l
-3868 6879 l
-cp
-f
-gr
-0 6947 7022 ts
-0 32896 0 C
-64 10
-1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6914 6928 M
-6913 6948 l
-6603 6939 l
-6603 6919 l
-cp
-f
-gr
-0 7552 7039 ts
-65535 0 65535 C
-64
-10 1 tx
-(4)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7514 6945 M
-7513 6965 l
-7209 6957 l
-7210 6937 l
-cp
-f
-gr
-gr
-end
-%%Trailer
-showpage
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw 18.2.0.48
+%%Title: template_Surface_abstraction_beta_vdw.eps
+%%CreationDate: 30.09.2020 10:39
+%%DocumentSuppliedProcSets: chemdict30 24 13
+%%DocumentFonts: Helvetica Times-Roman
+%%BoundingBox: 104 338 425 386
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProcSet: chemdict30 24 13
+% ChemDraw Laser Prep
+% 1985-2019 PerkinElmer Informatics, Inc. All rights reserved.
+userdict/chemdict30 210 dict put
+chemdict30 begin/version 24 def/sv 13 def
+/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
+/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
+/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
+/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
+/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
+/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
+/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
+/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
+/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
+/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
+/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
+/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
+/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
+/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
+/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
+/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
+/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
+/C{Wd rot Wd rot Wd rot setrgbcolor}b
+/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
+ gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
+bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
+/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
+x}b
+/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
+/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
+8 m sl st}ie}b
+/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
+r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
+/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
+/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
+/B{bs N rot put/N N 1 a d}b
+/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
+/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+0 cw 2 dv xl
+aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
+aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
+St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
+St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
+St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
+St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
+St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
+np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
+xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
+/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
+e s o o at ro D m e D m a sq}b
+/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
+/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
+/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
+180 arc 0 cw -2 dv rl cp f}b
+/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
+ rad 0 l gs Ast gr}b
+/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
+P P}{sq at 2
+m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
+e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
+/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
+ .35 dv w 2 m M 0 0
+l w .35 dv w -2 m l st}b
+/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
+w n l w 2 m D n l cp st}b
+/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
+{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
+DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
+HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
+DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
+OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
+{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
+OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
+AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
+gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
+/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
+/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
+21 -10 27 -8 27 0 cv
+27 8 21 10 9 6 cv
+-3 2 -3 -2 9 -6 cv
+cp}b/DLB{0 0 M
+0 0 -9.51 9.65 -9.51 18.02 cv
+-9.51 23.22 -6.75 27 0 27 cv
+6.75 27 9.51 23.22 9.51 18.02 cv
+9.51 9.65 0 0 0 0 cv
+cp}b/ZLB{LB}b
+/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
+/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+0 0 0 Y rO ac
+cp}b/Rc{0 0 M
+0 Y l
+X Y l
+X 0 l
+cp}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
+currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
+setrgbcolor}b/gS{dtransform CMT idtransform
+m D 0 lt{n}if sq n D
+CMT dtransform idtransform
+e 2 m e
+xl
+7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+13.5 0 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv
+gS
+-13.5 0 xl
+LB f
+gr}for
+LB SM st}{LB grf}ie}b/gOv{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv 0.65 m D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b
+/gDLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+0 13.5 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv e
+gS
+0 -13.5 xl
+DLB f
+gr}for
+DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rr f
+gr}for
+Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rc f
+gr}for
+Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
+ rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
+rev{1 -1 sc}if
+gs
+0 lW 2 m xl
+D SA OA
+gr
+rad 0 xl
+180 ro
+0 lW 2 m xl
+SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
+gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
+D stringwidth P 2 dv D 1 a/rad x
+n 0 M show gr
+rad 2 s -5 M
+rad n -5 rad n 1 2 ac
+rad n 1 rad 1 2 ac
+rad 1 rad -5 2 ac
+rad -5 rad n -5 2 ac
+cp Ast}b/Ar{D 39 lt{Ar1}
+{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
+o 0 lt o 0 lt ne/rev x
+D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
+if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M 0 0 l 0 Y l lp Y l
+X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M
+0 0 0 Y lp ac
+0 Y 2 dv lp neg o lp ac
+0 Y 2 dv 0 Y lp ac
+0 Y lp Y lp ac
+X lp s 0 M
+X 0 X Y lp ac
+X Y 2 dv X lp a o lp ac
+X Y 2 dv X Y lp ac
+X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
+np X Y s Y 2 dv
+Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
+rO D rl
+X lW 2 dv a rO a Y lW 2 dv a rO a l
+rO lW -2 dv a Y lW 2 dv a rO a l
+lW -2 dv Y lW 2 dv a l
+0 Y l X Y l X 0 l cp f
+0 0 M
+0 Y l
+X Y l
+X 0 l cp
+SM st}{Rr SM st}{rO Y M rO rO xl
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+rO neg D xl X Y 0 Y rO ac
+cp f
+Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
+{Asc gs gLB gr
+-1 -1 sc LB whf}{Asc gs gLB gr
+-0.4 -0.4 sc LB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc gOv gr
+ZLB whf}{Asc gs -1 -1 sc gZLB gr
+gs 3.6 12 sc Cr whf gr
+gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
+{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
+0 -1 M
+0 0 1 0 1 ac
+8 0 8 1 1 ac
+8 0 16 0 1 ac
+16 0 16 -1 1 ac
+SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+2 0 M 0 0 2 0 360 arc
+Ast}{4.5 Aos
+1 0 M -1 0 l
+2 0 M 0 0 2 0 360 arc
+Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
+0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
+1 -1 M -1 -1 l
+0 2 M 0 -2 l
+Ast}{5 Aos
+1 -1 M -1 -1 l
+1 1 M -1 1 l
+0 2 M 0 -2 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
+gs 3.6 12 sc Cr whf gr
+ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc Cr blf gr
+ZLB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
+np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
+np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
+{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
+}e 39 s g xc gr}ie}b/DS{np M l st}b
+/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
+e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
+o length 6 gt{P 6 g}{e P 8 dv}ie
+D lW 2 m lt{P lW 2 m}if
+0 e
+0 0
+3 -1 r s 3 1 r e s e
+0 0 M 1 0 l
+0 0 ap M 1 0 ap l
+e n e n
+0 0 ap M 1 0 ap l
+P P}b/DT{gs np PT SM st gr}b
+/NH{lW s D hS dv ru
+cvi D 0 eq{P 1}if/nH x
+D hS nH m s
+D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
+/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
+bW 2 dv/bd x
+lW 2 dv e D NH e{D bd M bd n l}for
+st gr}{gs 12 OB np
+lW 2 dv 0 xl NH 1 sc
+bW 2 dv wF m nH 1 a dv/bd x
+0 1 nH
+{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp f gr}{P}{gs 12 OB/bL x
+bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
+bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
+bL nSq 2 m dv D sc
+nSq{.135 .667 .865 .667 1 0 rcurveto
+.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
+}o 1 g 1 s g e 2 4 gi al P
+5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
+/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
+/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
+np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
+g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
+/FF/CR/SO/SI
+/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
+mv 0 32 gi as P
+mv 32/Times-Roman findfont/Encoding get
+32 96 gi putinterval
+mv 39/quotesingle put
+mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
+/dagger/daggerdbl
+/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
+/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
+/emdash
+/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
+/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
+/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
+/macron
+/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
+/periodcentered
+/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
+/threequarters/questiondown
+/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
+mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
+findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
+D length dict/newdict x{
+1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
+newdict 3 1 r put}{P P}ie}forall
+newdict/Encoding mv put
+fSt 8 fSt length 8 sub gi cvs length 8 add
+fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
+/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
+64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
+D 4 -1 r e scalefont setfont m cpt P e M}b
+end
+%%EndProcSet
+
+%%EndProlog
+chemdict30 begin
+/cW 40 def
+/bW 80 def
+/lW 20 def
+/hS 54 def
+/sh true def
+724 SPe[
+/Helvetica
+fD
+/Times-Roman
+fD]/ft x
+2080 6760 M
+8500 6760 l
+8500 7720 l
+2080 7720 l
+cp
+clip
+np
+65535 65535 65535 sBg
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+20 D sl/lW x
+5577
+7156 M
+4871 7156 l
+st
+5015 7216 M
+5721 7216 l
+st
+gs
+20 sl
+5751 7166
+5751 7166 5751 7166 5576 7166 5751 7166 5751 7166 5551 7104 5576 7133 5576
+7166 5751 7166 5551 7104 5551 7104 4 5751 7166 129 Sp
+gr
+gs
+20 sl
+4841
+7206 4841 7206 4841 7206 5041 7268 4841 7206 4841 7206 5016 7219 5041 7268
+5041 7268 4841 7206 5016 7206 5016 7206 4 4841 7206 129 Sp
+gr
+gr
+0 4084
+7647 ts
+0 65535 65535 C
+64 10 0 tx
+(6)show
+0 10 0 tx
+(X)show
+gr
+0 2354 7047 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 3603 7611 ts
+0 0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 2132 7647 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2292
+7424 M
+2272 7424 l
+2272 7087 l
+2292 7087 l
+cp
+f
+gr
+0 7058 7587 ts
+0
+0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 6299 7647 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+0 8236 7623 ts
+0 65535 65535 C
+64 10 0 tx
+(6)show
+0 10 0 tx
+(X)show
+gr
+0 7738 7047 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+0 6521 7047 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 6772 7047 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6737
+6931 M
+6737 6951 l
+6556 6951 l
+6556 6931 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6737 6988 M
+6737 7008 l
+6556 7008 l
+6556 6988 l
+cp
+f
+gr
+0 2607 7047 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+0 3042 7047 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+3009
+6959 M
+3009 6979 l
+2870 6979 l
+2870 6959 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2572 6959 M
+2572 6979 l
+2389 6979 l
+2389 6959 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0
+0 C
+np
+6439 7087 M
+6459 7087 l
+6459 7135 l
+6439 7135 l
+cp
+f
+gr
+gs
+20
+D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6439 7183 M
+6459 7183
+l
+6459 7231 l
+6439 7231 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6438 7280 M
+6458 7280 l
+6458 7328 l
+6438 7328 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6438
+7376 M
+6458 7376 l
+6458 7424 l
+6438 7424 l
+cp
+f
+gr
+0 4073 7047 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+4183
+7087 M
+4203 7087 l
+4207 7423 l
+4187 7423 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+4255 7087 M
+4275 7086 l
+4279 7422 l
+4259 7422 l
+cp
+f
+gr
+0 8225 7047 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+8187
+6959 M
+8187 6979 l
+8001 6979 l
+8001 6959 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+8372 7087 M
+8392 7087 l
+8395 7399 l
+8375 7399 l
+cp
+f
+gr
+gr
+end
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/training/dictionary.txt b/input/kinetics/families/Surface_Abstraction_Beta_vdW/training/dictionary.txt
old mode 100644
new mode 100755
similarity index 100%
rename from input/kinetics/families/Surface_DoubleBond_to_Bidentate/training/dictionary.txt
rename to input/kinetics/families/Surface_Abstraction_Beta_vdW/training/dictionary.txt
diff --git a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/training/reactions.py b/input/kinetics/families/Surface_Abstraction_Beta_vdW/training/reactions.py
old mode 100644
new mode 100755
similarity index 84%
rename from input/kinetics/families/Surface_DoubleBond_to_Bidentate/training/reactions.py
rename to input/kinetics/families/Surface_Abstraction_Beta_vdW/training/reactions.py
index 42b8ad19f1..08524dafb2
--- a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/training/reactions.py
+++ b/input/kinetics/families/Surface_Abstraction_Beta_vdW/training/reactions.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# encoding: utf-8
-name = "Surface_DoubleBond_to_Bidentate/training"
+name = "Surface_Abstraction_Beta_vdW/training"
shortDesc = u"Reaction kinetics used to generate rate rules"
longDesc = u"""
Put kinetic parameters for specific reactions in this file to use as a
diff --git a/input/kinetics/families/Surface_Abstraction_Single_vdW/groups.py b/input/kinetics/families/Surface_Abstraction_Single_vdW/groups.py
index 10d0573d93..81ede9cb59 100644
--- a/input/kinetics/families/Surface_Abstraction_Single_vdW/groups.py
+++ b/input/kinetics/families/Surface_Abstraction_Single_vdW/groups.py
@@ -35,7 +35,7 @@
"""
multiplicity [1]
1 *1 Xv u0 p0 c0
-2 *2 R u0 px cx {3,S}
+2 *2 R!H u0 px cx {3,S}
3 *3 R u0 px cx {2,S}
""",
# Note: shuold we restrict it so atoms *2 and *3 have no charge?
@@ -48,21 +48,8 @@
label = "Abstracting",
group =
"""
-1 *5 X u0 p0 c0 {2,S}
-2 *4 R ux px cx {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 3,
- label = "H-H",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 H u0 p0 c0 {3,S}
-3 *3 H u0 p0 c0 {2,S}
+1 *5 X u0 p0 c0 {2,S}
+2 *4 R!H ux px cx {1,S}
""",
kinetics = None,
)
@@ -588,7 +575,6 @@
tree(
"""
L1: Donating
- L2: H-H
L2: O-R
L3: O-H
L4: H2O
diff --git a/input/kinetics/families/Surface_Abstraction_Single_vdW/rules.py b/input/kinetics/families/Surface_Abstraction_Single_vdW/rules.py
index 5e9623e43d..93303b330e 100644
--- a/input/kinetics/families/Surface_Abstraction_Single_vdW/rules.py
+++ b/input/kinetics/families/Surface_Abstraction_Single_vdW/rules.py
@@ -12,14 +12,18 @@
index = 1,
label = "Donating;Abstracting",
kinetics = SurfaceArrheniusBEP(
- A = (1.0e13, 'm^2/(mol*s)'),
- n = 0,
- alpha = 0.5,
- E0 = (0, 'kcal/mol'),
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.94,
+ E0 = (129.3, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
- longDesc = u"""Made up"""
+ longDesc = u"""
+These numbers for the general BEP are from the abstraction reaction of C-H to O.
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
)
diff --git a/input/kinetics/families/Surface_Abstraction_vdW/rules.py b/input/kinetics/families/Surface_Abstraction_vdW/rules.py
index dd35569bde..0002685b56 100644
--- a/input/kinetics/families/Surface_Abstraction_vdW/rules.py
+++ b/input/kinetics/families/Surface_Abstraction_vdW/rules.py
@@ -12,14 +12,18 @@
index = 1,
label = "AdsorbateVdW;Adsorbate1",
kinetics = SurfaceArrheniusBEP(
- A = (1.0e13, 'm^2/(mol*s)'),
- n = 0,
- alpha = 0.5,
- E0 = (0, 'kcal/mol'),
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.94,
+ E0 = (129.3, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
- longDesc = u"""Made up"""
+ longDesc = u"""
+These numbers for the general BEP are from the abstraction reaction of C-H to O.
+BEP values from "Combined DFT, Microkinetic, and Experimental Study of Ethanol Steam Reforming on Pt", Sutton et al., The Journal of Physical Chemistry C, 2013, 117, 4691-4706, DOI:10.1021/jp312593u
+From Table 7 includes beta and alpha position. Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/groups.py b/input/kinetics/families/Surface_Addition_Single_vdW/groups.py
deleted file mode 100644
index 374adeb6c0..0000000000
--- a/input/kinetics/families/Surface_Addition_Single_vdW/groups.py
+++ /dev/null
@@ -1,649 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Addition_Single_vdW/groups"
-shortDesc = u""
-longDesc = u"""
-A single bonded surface species adding to a vdW double, triple, or quadruple bonded species and adsorbing to a surface.
-
-*2=*3 *4 *2-*3-*4
- : + | ----> | +
-~*1~ ~*5~ ~*1~ ~*5~
-
-The rate, which should be in mol/m2/s,
-will be given by k * (mol/m2) * (mol/m2)
-so k should be in (m2/mol/s).
-
-"""
-
-template(reactants=["AdsorbateVdW","Adsorbate1"], products=["VacantSite","Adsorbate2"], ownReverse=False)
-
-reverse = "Surface_Deletion_Single_vdW"
-
-reactantNum=2
-productNum=2
-
-recipe(actions=[
- ['CHANGE_BOND', '*1', 1, '*2'],
- ['CHANGE_BOND', '*2', -1, '*3'],
- ['FORM_BOND', '*3', 1, '*4'],
- ['BREAK_BOND', '*4', 1, '*5'],
-])
-
-entry(
- index = 1,
- label = "AdsorbateVdW",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 R!H u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 2,
- label = "Adsorbate1",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 R ux px cx {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 3,
- label = "H*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 H u0 p0 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 4,
- label = "O*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 O u0 px c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 5,
- label = "HO*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 O u0 p2 c0 {1,S} {3,S}
-3 H u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 6,
- label = "N*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 N u0 p1 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 7,
- label = "C*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 C u0 p0 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 8,
- label = "O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 px cx {3,D}
-3 *3 R!H u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 9,
- label = "C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 10,
- label = "O=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 cx {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 11,
- label = "O=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 12,
- label = "C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 13,
- label = "CO2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D} {4,D}
-3 *3 O u0 p2 c0 {2,D}
-4 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 14,
- label = "O=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 15,
- label = "HONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 20,
- label = "RONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 21,
- label = "RNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 27,
- label = "CC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,[D,T]}
-3 *3 C u0 p0 c0 {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 28,
- label = "C=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 C u0 p0 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 29,
- label = "C#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T}
-3 *3 C u0 p0 c0 {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 30,
- label = "CN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 31,
- label = "C=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 32,
- label = "C#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,T}
-3 *3 N u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 33,
- label = "C=N-R",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 35,
- label = "RC#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T} {4,S}
-3 *3 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 38,
- label = "N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 39,
- label = "N=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 40,
- label = "NC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 C u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 41,
- label = "N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 42,
- label = "N#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,T}
-3 *3 C u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 43,
- label = "R-N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,D}
-3 *2 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 45,
- label = "N#CR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,T} {4,S}
-3 *2 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 51,
- label = "ONOH",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 52,
- label = "ONOR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 53,
- label = "ONR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 59,
- label = "O=C=O",
- group =
-"""
-multiplicity [1]
-1 O u0 p2 c0 {3,D}
-2 *2 O u0 p2 c0 {3,D}
-3 *3 C u0 p0 c0 {1,D} {2,D}
-4 *1 Xv u0 p0 c0
-""",
- kinetics = None,
-)
-
-entry(
- index = 60,
- label = "HNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 61,
- label = "2R-C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,S} {5,S}
-4 R u0 px cx {3,S}
-5 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 62,
- label = "R=C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,D}
-4 R!H u0 px cx {3,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 63,
- label = "NN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 64,
- label = "N=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 65,
- label = "N2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 p1 c0 {3,T}
-3 *3 N u0 p1 c0 {2,T}
-""",
- kinetics = None,
-)
-
-tree(
-"""
-L1: AdsorbateVdW
- L2: O
- L3: O=C
- L4: O=C=O
- L3: O=O
- L3: O=N
- L4: RNO
- L5: RONO
- L6: HONO
- L5: HNO
- L2: C
- L3: C=O
- L4: 2R-C=O
- L4: R=C=O
- L5: CO2
- L3: CC
- L4: C=C
- L4: C#C
- L3: CN
- L4: C=N
- L5: C=N-R
- L4: C#N
- L5: RC#N
- L2: N
- L3: NC
- L4: N=C
- L5: R-N=C
- L4: N#C
- L5: N#CR
- L3: N=O
- L4: ONR
- L5: ONOR
- L6: ONOH
- L3: NN
- L4: N=N
- L4: N2
-
-L1: Adsorbate1
- L2: H*
- L2: O*
- L3: HO*
- L2: N*
- L2: C*
-"""
-)
-
-forbidden(
- label = "chargedBond",
- group =
-"""
-1 *2 R!H ux c[+1,-1] {2,[S,D,T]}
-2 *3 R!H ux c[+1,-1] {1,[S,D,T]}
-3 *1 Xv u0 p0 c0
-""",
- shortDesc = u"""""",
- longDesc =
-u"""
-The adsorbing molecule should not have a charge on the surface.
-""",
-)
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/rules.py b/input/kinetics/families/Surface_Addition_Single_vdW/rules.py
deleted file mode 100644
index e20b710e75..0000000000
--- a/input/kinetics/families/Surface_Addition_Single_vdW/rules.py
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Addition_Single_vdW/rules"
-shortDesc = u""
-longDesc = u"""
-A single bonded surface species adding to a vdW double, triple, or quadruple bonded species and adsorbing to a surface.
-"""
-
-entry(
- index = 1,
- label = "AdsorbateVdW;Adsorbate1",
- kinetics = SurfaceArrheniusBEP(
- A = (1.0e13, 'm^2/(mol*s)'),
- n = 0,
- alpha = 0.5,
- E0 = (5, 'kcal/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 0,
- shortDesc = u"""Default""",
- longDesc = u"""Made up"""
-)
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/template.cdx b/input/kinetics/families/Surface_Addition_Single_vdW/template.cdx
deleted file mode 100644
index 0c5d04882d..0000000000
Binary files a/input/kinetics/families/Surface_Addition_Single_vdW/template.cdx and /dev/null differ
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/groups.py b/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/groups.py
deleted file mode 100644
index 1f9311365b..0000000000
--- a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/groups.py
+++ /dev/null
@@ -1,641 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Adsorption_Abstraction_vdW/groups"
-shortDesc = u""
-longDesc = u"""
-Adsorbtion of a vdw species to the surface with a surface species.
-
-*2=*3 *4-*5 *2-*3-*5 *4
- : + | ----> | + ||
-~*1~ ~*6~ ~*1~~ ~*6~
-
-The rate, which should be in mol/m2/s,
-will be given by k * (mol/m2) * (mol/m2)
-so k should be in (m2/mol/s). We will use sticking coefficients.
-"""
-
-template(reactants=["AdsorbateVdW", "Adsorbate1"], products=["Adsorbate2","Adsorbate3"], ownReverse=False)
-
-reverse = "Surface_Desorption_Abstraction_vdW"
-
-reactantNum=2
-productNum=2
-
-recipe(actions=[
- ['CHANGE_BOND', '*2', -1, '*3'],
- ['CHANGE_BOND', '*1', 1, '*2'],
- ['BREAK_BOND', '*4', 1, '*5'],
- ['FORM_BOND', '*3', 1, '*5'],
- ['CHANGE_BOND', '*4', 1, '*6'],
-])
-
-entry(
- index = 1,
- label = "AdsorbateVdW",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 R!H ux px cx {3,[D,T]}
-3 *3 R!H ux px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 2,
- label="Adsorbate1",
- group =
-"""
-1 *6 Xo u0 p0 c0 {2,[S,D,T]}
-2 *4 R!H ux px cx {1,[S,D,T]} {3,S}
-3 *5 R ux px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 3,
- label="*C-R",
- group =
-"""
-1 *6 Xo u0 p0 c0 {2,[S,D,T]}
-2 *4 C ux px cx {1,[S,D,T]} {3,S}
-3 *5 R ux px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 4,
- label="*O-R",
- group =
-"""
-1 *6 Xo u0 p0 c0 {2,S}
-2 *4 O u0 p2 c0 {1,S} {3,S}
-3 *5 R ux px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 5,
- label="*C-H",
- group =
-"""
-1 *6 Xo u0 p0 c0 {2,S}
-2 *4 C u0 p0 c0 {1,S} {3,S}
-3 *5 H u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 6,
- label="*N-R",
- group =
-"""
-1 *6 Xo u0 p0 c0 {2,[S,D]}
-2 *4 N ux px cx {1,[S,D]} {3,S}
-3 *5 R ux px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 8,
- label = "O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 px cx {3,D}
-3 *3 R!H u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 9,
- label = "C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 10,
- label = "O=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 cx {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 11,
- label = "O=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 12,
- label = "C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 13,
- label = "CO2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D} {4,D}
-3 *3 O u0 p2 c0 {2,D}
-4 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 14,
- label = "O=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 15,
- label = "HONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 20,
- label = "RONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 21,
- label = "RNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 27,
- label = "CC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,[D,T]}
-3 *3 C u0 p0 c0 {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 28,
- label = "C=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 C u0 p0 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 29,
- label = "C#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T}
-3 *3 C u0 p0 c0 {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 30,
- label = "CN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 31,
- label = "C=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 32,
- label = "C#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,T}
-3 *3 N u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 33,
- label = "C=N-R",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 35,
- label = "RC#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T} {4,S}
-3 *3 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 38,
- label = "N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 39,
- label = "N=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 40,
- label = "NC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 C u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 41,
- label = "N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 42,
- label = "N#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,T}
-3 *3 C u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 43,
- label = "R-N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,D}
-3 *2 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 45,
- label = "N#CR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,T} {4,S}
-3 *2 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 51,
- label = "ONOH",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 52,
- label = "ONOR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 53,
- label = "ONR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 59,
- label = "O=C=O",
- group =
-"""
-multiplicity [1]
-1 O u0 p2 c0 {3,D}
-2 *2 O u0 p2 c0 {3,D}
-3 *3 C u0 p0 c0 {1,D} {2,D}
-4 *1 Xv u0 p0 c0
-""",
- kinetics = None,
-)
-
-entry(
- index = 60,
- label = "HNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 61,
- label = "2R-C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,S} {5,S}
-4 R u0 px cx {3,S}
-5 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 62,
- label = "R=C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,D}
-4 R!H u0 px cx {3,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 63,
- label = "NN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 64,
- label = "N=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 65,
- label = "N2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 p1 c0 {3,T}
-3 *3 N u0 p1 c0 {2,T}
-""",
- kinetics = None,
-)
-
-tree(
-"""
-L1: AdsorbateVdW
- L2: O
- L3: O=C
- L4: O=C=O
- L3: O=O
- L3: O=N
- L4: RNO
- L5: RONO
- L6: HONO
- L5: HNO
- L2: C
- L3: C=O
- L4: 2R-C=O
- L4: R=C=O
- L5: CO2
- L3: CC
- L4: C=C
- L4: C#C
- L3: CN
- L4: C=N
- L5: C=N-R
- L4: C#N
- L5: RC#N
- L2: N
- L3: NC
- L4: N=C
- L5: R-N=C
- L4: N#C
- L5: N#CR
- L3: N=O
- L4: ONR
- L5: ONOR
- L6: ONOH
- L3: NN
- L4: N=N
- L4: N2
-
-L1: Adsorbate1
- L2: *C-R
- L3: *C-H
- L2: *O-R
- L2: *N-R
-"""
-)
-
-forbidden(
- label = "chargedBond",
- group =
-"""
-1 *2 R!H ux c[+1,-1] {2,[S,D,T]}
-2 *3 R!H ux c[+1,-1] {1,[S,D,T]}
-3 *1 Xv u0 p0 c0
-""",
- shortDesc = u"""""",
- longDesc =
-u"""
-The adsorbing molecule should not have a charge on the surface.
-""",
-)
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/rules.py b/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/rules.py
deleted file mode 100644
index 357e7865f5..0000000000
--- a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/rules.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Adsorption_Abstraction_vdW/rules"
-shortDesc = u""
-longDesc = u"""
-Adsorbtion of a vdw species to the surface with a surface species."""
-
-entry(
- index = 43,
- label = "AdsorbateVdW;Adsorbate1",
- kinetics = SurfaceArrheniusBEP(
- A = (1.845e16, 'm^2/(mol*s)'),
- n = 0,
- alpha = 0.42,
- E0 = (9.68543017, 'kcal/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 0,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 43 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
-
-E0 is Ea
-
-A factor from paper / surface site density of Cu
-5.43e11 m^4/(mol^2 * s) / 2.943e‐5 mol/m^2 = 1.845e16 m^2/(mol*s)
-"""
-)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.cdx b/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.cdx
deleted file mode 100644
index c88859f671..0000000000
Binary files a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.cdx and /dev/null differ
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/dictionary.txt
deleted file mode 100644
index b28f9b51d2..0000000000
--- a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/dictionary.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-HCOOH*
-1 O u0 p2 c0 {3,S} {5,S}
-2 *2 O u0 p2 c0 {3,D}
-3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
-4 H u0 p0 c0 {3,S}
-5 H u0 p0 c0 {1,S}
-6 *1 X u0 p0 c0
-
-HCO*
-1 O u0 p2 c0 {2,D}
-2 *4 C u0 p0 c0 {1,D} {3,S} {4,S}
-3 *5 H u0 p0 c0 {2,S}
-4 *6 X u0 p0 c0 {2,S}
-
-CH3O2*
-1 O u0 p2 c0 {3,S} {6,S}
-2 *2 O u0 p2 c0 {3,S} {7,S}
-3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
-4 *5 H u0 p0 c0 {3,S}
-5 H u0 p0 c0 {3,S}
-6 H u0 p0 c0 {1,S}
-7 *1 X u0 p0 c0 {2,S}
-
-CO*
-1 O u0 p2 c0 {2,D}
-2 *4 C u0 p0 c0 {1,D} {3,D}
-3 *6 X u0 p0 c0 {2,D}
-
-CH2O*
-1 *3 C u0 p0 c0 {2,D} {3,S} {4,S}
-2 *2 O u0 p2 c0 {1,D}
-3 H u0 p0 c0 {1,S}
-4 H u0 p0 c0 {1,S}
-5 *1 X u0 p0 c0
-
-CH3O*
-1 *3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
-2 *2 O u0 p2 c0 {1,S} {3,S}
-3 *1 X u0 p0 c0 {2,S}
-4 *5 H u0 p0 c0 {1,S}
-5 H u0 p0 c0 {1,S}
-6 H u0 p0 c0 {1,S}
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/reactions.py b/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/reactions.py
deleted file mode 100644
index 9ab134b3b0..0000000000
--- a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/training/reactions.py
+++ /dev/null
@@ -1,55 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Adsorption_Abstraction_vdW/training"
-shortDesc = u"Reaction kinetics used to generate rate rules"
-longDesc = u"""
-Put kinetic parameters for specific reactions in this file to use as a
-training set for generating rate rules to populate this kinetics family.
-"""
-
-entry(
- index = 43,
- label = "HCOOH* + HCO* <=> CH3O2* + CO*",
- kinetics = SurfaceArrhenius(
- A = (1.814e16, 'm^2/(mol*s)'),
- n = 0,
- Ea = (0.42, 'eV/molecule'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 10,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 43 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
-
-A factor from paper / surface site density of Cu
-5.34e11 1/s / 2.943e‐5 mol/m^2 = 1.814e16 m^2/(mol*s)
-Erxn = -0.68 eV
-""",
- metal = "Cu",
-)
-
-entry(
- index = 44,
- label = "CH2O* + HCO* <=> CH3O* + CO*",
- kinetics = SurfaceArrhenius(
- A = (3.398e17, 'm^2/(mol*s)'),
- n = 0,
- Ea = (0.0, 'kcal/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 10,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 44 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
-
-A factor from paper / surface site density of Cu
-1.0e13 1/s / 2.943e‐5 mol/m^2 = 3.398e17 m^2/(mol*s)
-Erxn = -1.81 eV
-""",
- metal = "Cu",
-)
diff --git a/input/kinetics/families/Surface_Adsorption_Dissociative/groups.py b/input/kinetics/families/Surface_Adsorption_Dissociative/groups.py
index 4ca9e8b95e..b7fcda06ee 100644
--- a/input/kinetics/families/Surface_Adsorption_Dissociative/groups.py
+++ b/input/kinetics/families/Surface_Adsorption_Dissociative/groups.py
@@ -197,6 +197,107 @@
kinetics = None,
)
+entry(
+ index = 15,
+ label = "C",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S}
+2 *2 R u0 {1,S}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 16,
+ label = "CH4",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 17,
+ label = "C2H6",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 *2 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 18,
+ label = "C3H8",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+4 *2 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 19,
+ label = "CH3OH",
+ group =
+"""
+multiplicity [1]
+1 O u0 p2 c0 {2,S} {6,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *2 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 20,
+ label = "C2H4",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 *2 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+""",
+ kinetics = None,
+)
+
+
tree(
"""
L1: Adsorbate
@@ -209,7 +310,13 @@
L2: N
L3: N-C
L3: N-H
- L2: C-H
+ L2: C
+ L3: C-H
+ L4: CH4
+ L4: C2H6
+ L4: C3H8
+ L4: CH3OH
+ L4: C2H4
L1: VacantSite1
L1: VacantSite2
diff --git a/input/kinetics/families/Surface_Adsorption_Dissociative/rules.py b/input/kinetics/families/Surface_Adsorption_Dissociative/rules.py
index 930d2e35bb..c6d9077753 100644
--- a/input/kinetics/families/Surface_Adsorption_Dissociative/rules.py
+++ b/input/kinetics/families/Surface_Adsorption_Dissociative/rules.py
@@ -10,39 +10,159 @@
index = 1,
label = "Adsorbate;VacantSite1;VacantSite2",
kinetics = StickingCoefficientBEP(
- A = 0.01,
+ A = 0.1,
n = 0,
- alpha = 0,
- E0 = (10, 'kcal/mol'),
+ alpha = 0.69,
+ E0 = (107.9, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
- longDesc = u"""Made up"""
+ longDesc = u"""Universal BEP relation for all metals from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a."""
)
entry(
index = 2,
label = "H2;VacantSite1;VacantSite2",
kinetics = StickingCoefficientBEP(
- A = 0.01,
+ A = 0.1,
n = 0,
alpha = 0,
- E0 = (0., 'kJ/mol'),
+ E0 = (3.8, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 10,
shortDesc = u"""H2 dissociative adsorption""",
longDesc = u"""
- Micro-kinetic modeling of NH3 decomposition on Ni and its application to solid oxide fuel cells
- Deutschmann et al
- doi: 10.1016/j.ces.2011.07.007
+ Parameters are from Carvalho et al. "Microkinetic Modeling and Reduced Rate Expression of the Water–Gas Shift Reaction on Nickel", Ind. Eng. Chem. Res. 2018, 57, 31, 10269-10280, DOI:10.1021/acs.iecr.8b01957. Metal is Ni(111).
+ """
+)
- E0 is the paper's Ea
- This is R1
+entry(
+ index = 3,
+ label = "CH4;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 1.51,
+ n = 0,
+ alpha =0.0,
+ E0 = (58.0, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""CH4 dissociative adsorption""",
+ longDesc = u"""
+Data from G.W. Cushing, J.K. Navin, S.B. Donald, L. Valdez, V. Johanek, I. Harrison "C-H Bond Activation of Light Alkanes on Pt(111): Dissociative Sticking Coefficients, Evans-Polanyi Relation, and Gas-Surface Energy Transfer" J. Phys. Chem. C, 2010, 114, 17222-17232, DOI:10.1021/jp105073.
+A (6.04) divided by 4 because of surface degeneracy for CH4
+"""
+)
- metal = 'Ni'
- """
+entry(
+ index = 4,
+ label = "C2H6;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.342,
+ n = 0,
+ alpha =0.0,
+ E0 = (42.7, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""C2H6 dissociative adsorption""",
+ longDesc = u"""
+Data from G.W. Cushing, J.K. Navin, S.B. Donald, L. Valdez, V. Johanek, I. Harrison "C-H Bond Activation of Light Alkanes on Pt(111): Dissociative Sticking Coefficients, Evans-Polanyi Relation, and Gas-Surface Energy Transfer" J. Phys. Chem. C, 2010, 114, 17222-17232, DOI:10.1021/jp105073.
+A (2.05) divided by 6 because of surface degeneracy for C2H6
+"""
)
+
+entry(
+ index = 5,
+ label = "C3H8;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.198,
+ n = 0,
+ alpha =0.0,
+ E0 = (33.6, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""C3H8 dissociative adsorption""",
+ longDesc = u"""
+Data from G.W. Cushing, J.K. Navin, S.B. Donald, L. Valdez, V. Johanek, I. Harrison "C-H Bond Activation of Light Alkanes on Pt(111): Dissociative Sticking Coefficients, Evans-Polanyi Relation, and Gas-Surface Energy Transfer" J. Phys. Chem. C, 2010, 114, 17222-17232, DOI:10.1021/jp105073.
+A (1.19) divided by 6 because of surface degeneracy for C3H8
+"""
+)
+
+entry(
+ index = 7,
+ label = "C-H;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.1,
+ n = 0,
+ alpha = 0.69,
+ E0 = (107.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""Universal BEP relation for all metals from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a."""
+)
+
+entry(
+ index = 7,
+ label = "O-H;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.1,
+ n = 0,
+ alpha = 0.69,
+ E0 = (107.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""Universal BEP relation for all metals from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a."""
+)
+
+entry(
+ index = 8,
+ label = "CH3OH;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.033,
+ n = 0,
+ alpha =0.76,
+ E0 = (107.1, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""CH3OH dissociative adsorption""",
+ longDesc = u"""
+BEP relation for all metals (but only steps) from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a.
+Divided by 3 because of surface degeneracy for CH3OH
+"""
+)
+
+entry(
+ index = 9,
+ label = "C2H4;VacantSite1;VacantSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.025,
+ n = 0,
+ alpha = 0.69,
+ E0 = (107.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""Universal BEP relation for all metals from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a.
+Divided by 4 because of surface degeneracy for C2H4
+"""
+)
+
diff --git a/input/kinetics/families/Surface_Adsorption_Single/groups.py b/input/kinetics/families/Surface_Adsorption_Single/groups.py
index 1dfa19329c..b1c84cd7af 100644
--- a/input/kinetics/families/Surface_Adsorption_Single/groups.py
+++ b/input/kinetics/families/Surface_Adsorption_Single/groups.py
@@ -33,7 +33,7 @@
group =
"""
multiplicity [2]
-1 *1 R u1
+1 *1 [H,C,N,O,S,F,Cl,Br] u1
""",
kinetics = None,
)
@@ -214,7 +214,7 @@
L2: C
L3: C-H
L3: CH=O
- L3: CH2-H
+ L3: CH2-H
L2: N
L3: N=O
L2: O
diff --git a/input/kinetics/families/Surface_Bidentate_Dissociation/rules.py b/input/kinetics/families/Surface_Bidentate_Dissociation/rules.py
index 5b05d3f531..e646edb87d 100644
--- a/input/kinetics/families/Surface_Bidentate_Dissociation/rules.py
+++ b/input/kinetics/families/Surface_Bidentate_Dissociation/rules.py
@@ -12,14 +12,18 @@
A = (1.187E12, '1/s'),
n = 0.0,
alpha = 0.842,
- E0 = (34.82, 'kcal/mol'),
+ E0 = (145.69, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-A and n factors are averages of training reactions 1-3 and the reverse direction of training reactions 4-7,
-and alpha and E0 are BEP parameters from training reactions 1-3 and the reverse of training reactions 4-7.
+A factors are averages of training reactions 1-4 and the reverse direction of training reactions 5-7,
+and alpha and E0 are BEP parameters from training reactions 1-4 and the reverse of training reactions 5-7.
+
+Details on the computational method to derive the rate constants for the BEP relation are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
"""
)
diff --git a/input/kinetics/families/Surface_Bidentate_Dissociation/template.cdx b/input/kinetics/families/Surface_Bidentate_Dissociation/template.cdx
index 4982377ef0..795314c2fd 100644
Binary files a/input/kinetics/families/Surface_Bidentate_Dissociation/template.cdx and b/input/kinetics/families/Surface_Bidentate_Dissociation/template.cdx differ
diff --git a/input/kinetics/families/Surface_Bidentate_Dissociation/template.eps b/input/kinetics/families/Surface_Bidentate_Dissociation/template.eps
index fac21fb566..1ec352d009 100644
--- a/input/kinetics/families/Surface_Bidentate_Dissociation/template.eps
+++ b/input/kinetics/families/Surface_Bidentate_Dissociation/template.eps
@@ -1,625 +1,681 @@
%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: ChemDraw 17.1.0.105
-%%Title: template.eps
-%%CreationDate: 6/4/2019 6:24 PM
-%%DocumentSuppliedProcSets: chemdict30 24 13
-%%DocumentFonts: Helvetica Times-Roman
-%%BoundingBox: 98 336 442 384
+%%Creator: ChemDraw
+%%CreationDate: 3/18/24
+%%BoundingBox: 0 0 210 46
%%DocumentProcessColors: Cyan Magenta Yellow Black
%%EndComments
-%%BeginProcSet: chemdict30 24 13
-% ChemDraw Laser Prep
-% 1985-2018 PerkinElmer Informatics, Inc. All rights reserved.
-userdict/chemdict30 210 dict put
-chemdict30 begin/version 24 def/sv 13 def
-/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
-/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
-/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
-/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
-/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
-/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
-/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
-/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
-/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
-/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
-/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
-/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
-/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
-/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
-/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
-/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
-/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
-/C{Wd rot Wd rot Wd rot setrgbcolor}b
-/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
- gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
-bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
-/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
-x}b
-/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
-/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
-8 m sl st}ie}b
-/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
-r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
-/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
-/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
-/B{bs N rot put/N N 1 a d}b
-/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
-/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-0 cw 2 dv xl
-aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
-aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
-St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
-St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
-St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
-St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
-St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
-np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
-xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
-/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
-e s o o at ro D m e D m a sq}b
-/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
-/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
-/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
-180 arc 0 cw -2 dv rl cp f}b
-/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
- rad 0 l gs Ast gr}b
-/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
-P P}{sq at 2
-m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
-e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
-/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
- .35 dv w 2 m M 0 0
-l w .35 dv w -2 m l st}b
-/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
-w n l w 2 m D n l cp st}b
-/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
-{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
-DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
-HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
-DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
-OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
-{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
-OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
-AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
-gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
-/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
-/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
-21 -10 27 -8 27 0 cv
-27 8 21 10 9 6 cv
--3 2 -3 -2 9 -6 cv
-cp}b/DLB{0 0 M
-0 0 -9.51 9.65 -9.51 18.02 cv
--9.51 23.22 -6.75 27 0 27 cv
-6.75 27 9.51 23.22 9.51 18.02 cv
-9.51 9.65 0 0 0 0 cv
-cp}b/ZLB{LB}b
-/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
-/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-0 0 0 Y rO ac
-cp}b/Rc{0 0 M
-0 Y l
-X Y l
-X 0 l
-cp
-}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
-currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
-setrgbcolor}b/gS{dtransform CMT idtransform
-m D 0 lt{n}if sq n D
-CMT dtransform idtransform
-e 2 m e
-xl
-7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-13.5 0 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv
-gS
--13.5 0 xl
-LB f
-gr}for
-LB SM st}{LB grf}ie}b/gOv{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv 0.65 m D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b
-/gDLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-0 13.5 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv e
-gS
-0 -13.5 xl
-DLB f
-gr}for
-DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rr f
-gr}for
-Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rc f
-gr}for
-Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
- rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
-rev{1 -1 sc}if
-gs
-0 lW 2 m xl
-D SA OA
-gr
-rad 0 xl
-180 ro
-0 lW 2 m xl
-SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
-gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
-D stringwidth P 2 dv D 1 a/rad x
-n 0 M show gr
-rad 2 s -5 M
-rad n -5 rad n 1 2 ac
-rad n 1 rad 1 2 ac
-rad 1 rad -5 2 ac
-rad -5 rad n -5 2 ac
-cp Ast}b/Ar{D 39 lt{Ar1}
-{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
-o 0 lt o 0 lt ne/rev x
-D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
-if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M 0 0 l 0 Y l lp Y l
-X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M
-0 0 0 Y lp ac
-0 Y 2 dv lp neg o lp ac
-0 Y 2 dv 0 Y lp ac
-0 Y lp Y lp ac
-X lp s 0 M
-X 0 X Y lp ac
-X Y 2 dv X lp a o lp ac
-X Y 2 dv X Y lp ac
-X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
-np X Y s Y 2 dv
-Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
-rO D rl
-X lW 2 dv a rO a Y lW 2 dv a rO a l
-rO lW -2 dv a Y lW 2 dv a rO a l
-lW -2 dv Y lW 2 dv a l
-0 Y l X Y l X 0 l cp f
-0 0 M
-0 Y l
-X Y l
-X 0 l cp
-SM st}{Rr SM st}{rO Y M rO rO xl
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-rO neg D xl X Y 0 Y rO ac
-cp f
-Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
-{Asc gs gLB gr
--1 -1 sc LB whf}{Asc gs gLB gr
--0.4 -0.4 sc LB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc gOv gr
-ZLB whf}{Asc gs -1 -1 sc gZLB gr
-gs 3.6 12 sc Cr whf gr
-gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
-{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
-0 -1 M
-0 0 1 0 1 ac
-8 0 8 1 1 ac
-8 0 16 0 1 ac
-16 0 16 -1 1 ac
-SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-2 0 M 0 0 2 0 360 arc
-Ast}{4.5 Aos
-1 0 M -1 0 l
-2 0 M 0 0 2 0 360 arc
-Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
-0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
-1 -1 M -1 -1 l
-0 2 M 0 -2 l
-Ast}{5 Aos
-1 -1 M -1 -1 l
-1 1 M -1 1 l
-0 2 M 0 -2 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
-gs 3.6 12 sc Cr whf gr
-ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc Cr blf gr
-ZLB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
-np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
-np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
-{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
-}e 39 s g xc gr}ie}b/DS{np M l st}b
-/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
-e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
-o length 6 gt{P 6 g}{e P 8 dv}ie
-D lW 2 m lt{P lW 2 m}if
-0 e
-0 0
-3 -1 r s 3 1 r e s e
-0 0 M 1 0 l
-0 0 ap M 1 0 ap l
-e n e n
-0 0 ap M 1 0 ap l
-P P}b/DT{gs np PT SM st gr}b
-/NH{lW s D hS dv ru
-cvi D 0 eq{P 1}if/nH x
-D hS nH m s
-D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
-/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
-bW 2 dv/bd x
-lW 2 dv e D NH e{D bd M bd n l}for
-st gr}{gs 12 OB np
-lW 2 dv 0 xl NH 1 sc
-bW 2 dv wF m nH 1 a dv/bd x
-0 1 nH
-{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp f gr}{P}{gs 12 OB/bL x
-bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
-bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
-bL nSq 2 m dv D sc
-nSq{.135 .667 .865 .667 1 0 rcurveto
-.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
-}o 1 g 1 s g e 2 4 gi al P
-5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
-/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
-/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
-np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
-g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
-/FF/CR/SO/SI
-/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
-mv 0 32 gi as P
-mv 32/Times-Roman findfont/Encoding get
-32 96 gi putinterval
-mv 39/quotesingle put
-mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
-/dagger/daggerdbl
-/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
-/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
-/emdash
-/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
-/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
-/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
-/macron
-/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
-/periodcentered
-/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
-/threequarters/questiondown
-/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
-/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
-/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
-/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
-/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
-/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
-/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
-/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
-mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
-findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
-D length dict/newdict x{
-1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
-newdict 3 1 r put}{P P}ie}forall
-newdict/Encoding mv put
-fSt 8 fSt length 8 sub gi cvs length 8 add
-fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
-/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
-64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
-D 4 -1 r e scalefont setfont m cpt P e M}b
+%%BeginProlog
+/ellipse {7 dict begin
+ /endangle exch def
+ /startangle exch def
+ /yradius exch def
+ /xradius exch def
+ /yC exch def
+ /xC exch def
+ /savematrix matrix currentmatrix def % save current transformation matrix
+ xC yC translate % translate to center of ellipse
+ xradius yradius scale % scale by radius values
+ 0 0 1 startangle endangle arc % add arc to path
+ savematrix setmatrix % restore the transformation matrix
end
-%%EndProcSet
+} def
+/Encoding1252
+[
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /space
+ /exclam
+ /quotedbl
+ /numbersign
+ /dollar
+ /percent
+ /ampersand
+ /quotesingle
+ /parenleft
+ /parenright
+ /asterisk
+ /plus
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ /five
+ /six
+ /seven
+ /eight
+ /nine
+ /colon
+ /semicolon
+ /less
+ /equal
+ /greater
+ /question
+ /at
+ /A
+ /B
+ /C
+ /D
+ /E
+ /F
+ /G
+ /H
+ /I
+ /J
+ /K
+ /L
+ /M
+ /N
+ /O
+ /P
+ /Q
+ /R
+ /S
+ /T
+ /U
+ /V
+ /W
+ /X
+ /Y
+ /Z
+ /bracketleft
+ /backslash
+ /bracketright
+ /asciicircum
+ /underscore
+ /grave
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ /j
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ /q
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ /z
+ /braceleft
+ /bar
+ /braceright
+ /asciitilde
+ /.notdef
+ /.notdef
+ /.notdef
+ /quotesinglbase
+ /florin
+ /quotedblbase
+ /ellipsis
+ /dagger
+ /daggerdbl
+ /circumflex
+ /perthousand
+ /Scaron
+ /guilsinglleft
+ /OE
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /quoteleft
+ /quoteright
+ /quotedblleft
+ /quotedblright
+ /bullet
+ /endash
+ /emdash
+ /tilde
+ /trademark
+ /scaron
+ /guilsinglright
+ /oe
+ /dotlessi
+ /.notdef
+ /Ydieresis
+ /.notdef
+ /exclamdown
+ /cent
+ /sterling
+ /currency
+ /yen
+ /brokenbar
+ /section
+ /dieresis
+ /copyright
+ /ordfeminine
+ /guillemotleft
+ /logicalnot
+ /guilsinglright
+ /registered
+ /macron
+ /ring
+ /plusminus
+ /twosuperior
+ /threesuperior
+ /acute
+ /mu
+ /paragraph
+ /periodcentered
+ /cedilla
+ /onesuperior
+ /ordmasculine
+ /guillemotright
+ /onequarter
+ /onehalf
+ /threequarters
+ /questiondown
+ /Agrave
+ /Aacute
+ /Acircumflex
+ /Atilde
+ /Adieresis
+ /Aring
+ /AE
+ /Ccedilla
+ /Egrave
+ /Eacute
+ /Ecircumflex
+ /Edieresis
+ /Igrave
+ /Iacute
+ /Icircumflex
+ /Idieresis
+ /Eth
+ /Ntilde
+ /Ograve
+ /Oacute
+ /Ocircumflex
+ /Otilde
+ /Odieresis
+ /multiply
+ /Oslash
+ /Ugrave
+ /Uacute
+ /Ucircumflex
+ /Udieresis
+ /Yacute
+ /Thorn
+ /germandbls
+ /agrave
+ /aacute
+ /acircumflex
+ /atilde
+ /adieresis
+ /aring
+ /ae
+ /ccedilla
+ /egrave
+ /eacute
+ /ecircumflex
+ /edieresis
+ /igrave
+ /iacute
+ /icircumflex
+ /idieresis
+ /eth
+ /ntilde
+ /ograve
+ /oacute
+ /ocircumflex
+ /otilde
+ /odieresis
+ /divide
+ /oslash
+ /ugrave
+ /uacute
+ /ucircumflex
+ /udieresis
+ /yacute
+ /thorn
+ /ydieresis
+]
+def
+
+ /reencode1252
+ {
+ findfont dup
+ length dict copy
+ dup /Encoding Encoding1252 put
+ definefont
+ } bind def
%%EndProlog
-chemdict30 begin
-/cW 40 def
-/bW 80 def
-/lW 20 def
-/hS 54 def
-/sh true def
-720 SPe[
-/Helvetica
-fD
-/Times-Roman
-fD]/ft x
-1960 6720 M
-8840 6720 l
-8840 7680 l
-1960 7680 l
-cp
-clip
-np
-65535 65535 65535 sBg
-0 3916 7563 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-20 D sl/lW x
-5945 7156 M
-5239 7156 l
-st
-5383 7216 M
-6089 7216 l
-st
-gs
-20 sl
-6119 7166
-6119 7166 6119 7166 5944 7166 6119 7166 6119 7166 5919 7104 5944 7133 5944
-7166 6119 7166 5919 7104 5919 7104 4 6119 7166 129 Sp
-gr
-gs
-20 sl
-5209 7206
-5209 7206 5209 7206 5409 7268 5209 7206 5209 7206 5384 7219 5409 7268 5409
-7268 5209 7206 5384 7206 5384 7206 4 5209 7206 129 Sp
-gr
-gr
-0 3255 7600 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-0 2233 7000 ts
-65535 0 0 C
--227.856 0 M
-64 10 0 tx
-(1)show
-0 10 0 tx
-(R)show
-gr
-0 2606 7000 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2571 6876 M
-2571 6896 l
-2268 6896 l
-2268 6876 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2571 6948 M
-2571 6968 l
-2268 6968 l
-2268 6948 l
-cp
-f
-gr
-0
-2672 7563 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-0 2012 7600 ts
-65535 0 65535 C
-64 10 0 tx
-(4)show
-0 10 0 tx
-(X)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2171 7377 M
-2151 7377 l
-2151 7040 l
-2171 7040 l
-cp
-f
-gr
-0 4499 7600 ts
-0 65535 65535 C
-64
-10 0 tx
-(6)show
-0 10 0 tx
-(X)show
-gr
-0 3207 7000 ts
-0 32896 0 C
-64 10 0 tx
-(3)show
-0 10 0 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3174 6912 M
-3174 6932 l
-2869 6932 l
-2869 6912 l
-cp
-f
-gr
-0 7934 7563 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-0 6840 7000 ts
-65535 0 0 C
--227.856 0 M
-64 10 0 tx
-(1)show
-0 10 0 tx
-(R)show
-gr
-0 7213 7000 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7178 6912 M
-7178 6932 l
-6875 6932 l
-6875 6912 l
-cp
-f
-gr
-0 6618 7600 ts
-65535 0 65535 C
-64
-10 0 tx
-(4)show
-0 10 0 tx
-(X)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6778 7377 M
-6758 7377 l
-6758 7040 l
-6778 7040 l
-cp
-f
-gr
-0 8572 7600 ts
-0 65535 65535 C
-64
-10 0 tx
-(6)show
-0 10 0 tx
-(X)show
-gr
-0 8567 7000 ts
-0 32896 0 C
-64 10 0 tx
-(3)show
-0 10 0 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-8712 7040 M
-8732 7040 l
-8732 7376 l
-8712 7376 l
-cp
-f
-gr
-0 7219 7600 ts
-65535 32896 0 C
-64
-10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7378 7378 M
-7358 7378 l
-7358 7040 l
-7378 7040 l
-cp
-f
-gr
-gr
-end
+[1 0 0 -1 0 46] concat
+[1 0 0 1 -185 -343] concat
+[0.05 0 0 0.05 0 0] concat
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5944.94 7295.66 moveto
+5238.94 7295.66 lineto
+5238.94 7275.66 lineto
+5944.94 7275.66 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5382.94 7335.66 moveto
+6088.94 7335.66 lineto
+6088.94 7355.66 lineto
+5382.94 7355.66 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+6118.94 7295.66 moveto
+6118.94 7295.66 5943.94 7295.66 5943.94 7295.66 curveto
+5943.94 7262.91 5918.94 7233.66 5918.94 7233.66 curveto
+5918.94 7233.66 6118.94 7295.66 6118.94 7295.66 curveto
+6118.94 7295.66 6118.94 7295.66 6118.94 7295.66 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+5208.94 7335.66 moveto
+5208.94 7335.66 5408.94 7397.66 5408.94 7397.66 curveto
+5408.94 7397.66 5383.94 7348.41 5383.94 7335.66 curveto
+5383.94 7335.66 5208.94 7335.66 5208.94 7335.66 curveto
+5208.94 7335.66 5208.94 7335.66 5208.94 7335.66 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 /Helvetica reencode1252
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 7174.53 7400.21] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6612.14 7033.44] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6695.56 7105.08] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7633.01 7033.81] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7716.44 7105.44] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6617.44 7633.44] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6700.86 7705.08] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6797.98 7162.65 moveto
+6817.98 7162.88 lineto
+6813.99 7503.91 lineto
+6793.99 7503.68 lineto
+6797.98 7162.65 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6728.16 7161.83 moveto
+6748.16 7162.07 lineto
+6744.17 7503.1 lineto
+6724.17 7502.86 lineto
+6728.16 7161.83 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7639.17 7633.81] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7722.59 7705.44] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7819.01 7163.98 moveto
+7839.01 7164.19 lineto
+7835.53 7504.99 lineto
+7815.53 7504.78 lineto
+7819.01 7163.98 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7749.19 7163.27 moveto
+7769.19 7163.47 lineto
+7765.7 7504.27 lineto
+7745.7 7504.07 lineto
+7749.19 7163.27 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3743.74 7033.44] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3827.16 7105.08] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4343.74 7033.44] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4427.16 7105.08] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+4009.07 7043.44 moveto
+4009.07 7023.44 lineto
+4307.13 7023.44 lineto
+4307.13 7043.44 lineto
+4009.07 7043.44 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3749.04 7633.44] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3832.46 7705.08] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3894.67 7162.24 moveto
+3914.67 7162.48 lineto
+3910.68 7503.5 lineto
+3890.68 7503.27 lineto
+3894.67 7162.24 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4349.9 7633.44] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4433.32 7705.08] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+4494.84 7162.26 moveto
+4514.84 7162.46 lineto
+4511.35 7503.27 lineto
+4491.35 7503.06 lineto
+4494.84 7162.26 lineto
+closepath
+fill
+grestore
+grestore
%%Trailer
showpage
diff --git a/input/kinetics/families/Surface_Bidentate_Dissociation/training/reactions.py b/input/kinetics/families/Surface_Bidentate_Dissociation/training/reactions.py
index 5222ebcdaf..390bb5b9fc 100644
--- a/input/kinetics/families/Surface_Bidentate_Dissociation/training/reactions.py
+++ b/input/kinetics/families/Surface_Bidentate_Dissociation/training/reactions.py
@@ -8,31 +8,24 @@
training set for generating rate rules to populate this kinetics family.
"""
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Bidentate_Dissociation/training"
-shortDesc = u"Reaction kinetics used to generate rate rules"
-longDesc = u"""
-Put kinetic parameters for specific reactions in this file to use as a
-training set for generating rate rules to populate this kinetics family.
-"""
-
entry(
index = 1,
label = "CC_2X <=> CX_3 + CX_4 ",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(2.202E12, '1/s'),
- n = 0.09,
- Ea=(103497.2, 'J/mol'),
+ A=(4.22E12, '1/s'),
+ n = 0.0,
+ Ea=(104, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
@@ -42,16 +35,19 @@
label = "CCH_2X <=> CX_3 + CHX_4",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(5.272E11, '1/s'),
+ A=(1.3E12, '1/s'),
n = 0.126,
- Ea=(76699.8, 'J/mol'),
+ Ea=(77, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
@@ -61,35 +57,41 @@
label = "HCCH_2X <=> CHX_3 + CHX_4",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(7.062E11, '1/s'),
- n = 0.320,
- Ea=(88220.0, 'J/mol'),
+ A=(7.93E12, '1/s'),
+ n = 0.0,
+ Ea=(90, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
- rank=10,
+ rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
entry(
index = 4,
- label = "CHX_3 + CH2X_4 <=> HCCH2_2X",
+ label = "HCCH2_2X <=> CHX_3 + CH2X_4",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(4.256E17, 'm^2/(mol*s)'),
- n = 0.106,
- Ea=(138024.4, 'J/mol'),
+ A=(2.74E13, '1/s'),
+ n = 0.0,
+ Ea=(140, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
@@ -99,16 +101,19 @@
label = "CH2X_3 + CH2X_4 <=> H2CCH2_2X",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(1.161E19, 'm^2/(mol*s)'),
- n = 0.281,
- Ea=(152439.3, 'J/mol'),
+ A=(9.89E23, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(154, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
@@ -118,16 +123,19 @@
label = "CHX_3 + OX_4 <=> HCO_2X",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(6.922E17, 'm^2/(mol*s)'),
- n = 0.049,
- Ea=(142325.0, 'J/mol'),
+ A=(6.54E21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(142, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
@@ -137,16 +145,19 @@
label = "CH2X_3 + OX_4 <=> H2CO_2X",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(1.174E18, 'm^2/(mol*s)'),
- n = 0.082,
- Ea=(114251.7, 'J/mol'),
+ A=(2.2E22, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(115, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
-)
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Carbonate_2F_Decomposition/groups.py b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/groups.py
new file mode 100644
index 0000000000..a901917a7c
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/groups.py
@@ -0,0 +1,69 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_2F_Decomposition/groups"
+shortDesc = u""
+longDesc = u"""
+"""
+
+template(reactants=["CarbonateRing","SurfaceSite1","SurfaceSite2"], products=["FX","CO","ORROX"], ownReverse=False)
+
+reverse = "Surface_Carbonate_2F_Addition"
+
+#autoGenerated=True
+reactantNum=3
+productNum=3
+
+recipe(actions=[
+ ['BREAK_BOND', '*1', 1, '*4'],
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*3', 1, '*5'],
+ ['FORM_BOND', '*4', 1, '*6'],
+])
+
+entry(
+ index = 1,
+ label = "CarbonateRing",
+ group =
+"""
+1 O u0 p2 {2,D}
+2 C u0 p0 {1,D} {3,S} {4,S}
+3 O u0 p2 {2,S} {5,S}
+4 O u0 p2 {2,S} {6,S}
+5 *1 R!H u0 px cx {6,[S,D]} {3,S} {8,S}
+6 *2 R!H u0 px cx {5,[S,D]} {4,S} {7,S}
+7 *3 F u0 p3 c0 {6,S}
+8 *4 F u0 p3 c0 {5,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite1",
+ group =
+"""
+1 *5 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite2",
+ group =
+"""
+1 *6 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: CarbonateRing
+L1: SurfaceSite1
+L1: SurfaceSite2
+"""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_2F_Decomposition/rules.py b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/rules.py
new file mode 100644
index 0000000000..db2ca2390b
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/rules.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_F_CO_Decomposition/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "CarbonateRing;SurfaceSite1;SurfaceSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.2,
+ n = 0,
+ alpha = 0,
+ E0 = (0, 'kcal/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/training/dictionary.txt
similarity index 100%
rename from input/kinetics/families/Surface_Addition_Single_vdW/training/dictionary.txt
rename to input/kinetics/families/Surface_Carbonate_2F_Decomposition/training/dictionary.txt
diff --git a/input/kinetics/families/Surface_Carbonate_2F_Decomposition/training/reactions.py b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/training/reactions.py
new file mode 100644
index 0000000000..1a62231158
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_2F_Decomposition/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/groups.py b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/groups.py
new file mode 100644
index 0000000000..76e420ecde
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/groups.py
@@ -0,0 +1,76 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_CO_2F_Decomposition/groups"
+shortDesc = u""
+longDesc = u"""
+"""
+
+template(reactants=["CarbonateRing","SurfaceSite1","SurfaceSite2"], products=["XF","XF-2","CO","ORRO"], ownReverse=False)
+
+reverse = "Surface_Carbonate_CO_2F_Addition"
+
+#autoGenerated=True
+reactantNum=3
+productNum=4
+irreversible=True
+
+recipe(actions=[
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['BREAK_BOND', '*2', 1, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['LOSE_PAIR', '*1', '1'],
+ ['GAIN_PAIR', '*2', '1'],
+ ['BREAK_BOND', '*5', 1, '*7'],
+ ['BREAK_BOND', '*6', 1, '*8'],
+ ['FORM_BOND', '*7', 1, '*9'],
+ ['FORM_BOND', '*8', 1, '*10'],
+ ['CHANGE_BOND', '*3', 1, '*5'],
+ ['CHANGE_BOND', '*4', 1, '*6'],
+])
+
+entry(
+ index = 1,
+ label = "CarbonateRing",
+ group =
+"""
+1 *1 O u0 p2 {2,D}
+2 *2 C u0 p0 {1,D} {3,S} {4,S}
+3 *3 O u0 p2 {2,S} {5,S}
+4 *4 O u0 p2 {2,S} {6,S}
+5 *5 R!H u0 px cx {6,[S,D]} {3,S} {7,S}
+6 *6 R!H u0 px cx {5,[S,D]} {4,S} {8,S}
+7 *7 F u0 p3 c0 {5,S}
+8 *8 F u0 p3 c0 {6,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite1",
+ group =
+"""
+1 *9 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite2",
+ group =
+"""
+1 *10 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: CarbonateRing
+L1: SurfaceSite1
+L1: SurfaceSite2
+"""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/rules.py b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/rules.py
new file mode 100644
index 0000000000..115d2ae98a
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/rules.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_CO_2F_Decomposition/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "CarbonateRing;SurfaceSite1;SurfaceSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.2,
+ n = 0,
+ alpha = 0,
+ E0 = (0, 'kcal/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/dictionary.txt b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/dictionary.txt
new file mode 100644
index 0000000000..98dff0f0d5
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/dictionary.txt
@@ -0,0 +1,136 @@
+H*
+1 *5 X u0 p0 c0 {2,S}
+2 *4 H u0 p0 c0 {1,S}
+
+CO2*
+1 O u0 p2 c0 {3,D}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+X_5
+1 *5 X u0 p0 c0
+
+HCOO*
+1 *2 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 *4 H u0 p0 c0 {3,S}
+5 *1 X u0 p0 c0 {1,S}
+
+CH3O2*
+1 *4 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH2O*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+OH*
+1 *4 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *5 X u0 p0 c0 {1,S}
+
+CH3O_1*
+1 *2 O u0 p2 c0 {2,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *4 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *1 X u0 p0 c0 {1,S}
+
+COOH*
+1 *3 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *4 H u0 p0 c0 {1,S}
+5 *1 X u0 p0 c0 {3,S}
+
+CO2_2*
+1 O u0 p2 c0 {3,D}
+2 *3 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+CH2O_2*
+1 *3 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+CH2OH*
+1 *3 O u0 p2 c0 {2,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0 {2,S}
+
+HCOOH*
+1 O u0 p2 c0 {3,S} {5,S}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0
+
+CH3O2_2*
+1 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 *4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH3O_5*
+1 *4 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *5 X u0 p0 c0 {1,S}
+
+H2COOCH3*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 *4 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
+
+HCOOCH3*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {5,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0
+
+H2COOCH3_2*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 *4 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/reactions.py b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/reactions.py
new file mode 100644
index 0000000000..1a62231158
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_2F_Decomposition/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Carbonate_CO_Decomposition/groups.py b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/groups.py
new file mode 100644
index 0000000000..f9c642d7a9
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/groups.py
@@ -0,0 +1,69 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_CO_Decomposition/groups"
+shortDesc = u""
+longDesc = u"""
+"""
+
+template(reactants=["CarbonateRing","SurfaceSite1","SurfaceSite2"], products=["CO","ORROX"], ownReverse=False)
+
+reverse = "Surface_Carbonate_CO_Addition"
+
+#autoGenerated=True
+reactantNum=3
+productNum=2
+
+recipe(actions=[
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['BREAK_BOND', '*2', 1, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*3', 1, '*5'],
+ ['FORM_BOND', '*4', 1, '*6'],
+ ['LOSE_PAIR', '*1', '1'],
+ ['GAIN_PAIR', '*2', '1'],
+])
+
+entry(
+ index = 1,
+ label = "CarbonateRing",
+ group =
+"""
+1 *1 O u0 p2 {2,D}
+2 *2 C u0 p0 {1,D} {3,S} {4,S}
+3 *3 O u0 p2 {2,S} {5,S}
+4 *4 O u0 p2 {2,S} {6,S}
+5 R!H u0 px cx {6,[S,D]} {3,S}
+6 R!H u0 px cx {5,[S,D]} {4,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite1",
+ group =
+"""
+1 *5 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 1,
+ label = "SurfaceSite2",
+ group =
+"""
+1 *6 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: CarbonateRing
+L1: SurfaceSite1
+L1: SurfaceSite2
+"""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_CO_Decomposition/rules.py b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/rules.py
new file mode 100644
index 0000000000..4659e969fe
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/rules.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_CO_Decomposition/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "CarbonateRing;SurfaceSite1;SurfaceSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.2,
+ n = 0,
+ alpha = 0,
+ E0 = (0, 'kcal/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/dictionary.txt b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/dictionary.txt
new file mode 100644
index 0000000000..98dff0f0d5
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/dictionary.txt
@@ -0,0 +1,136 @@
+H*
+1 *5 X u0 p0 c0 {2,S}
+2 *4 H u0 p0 c0 {1,S}
+
+CO2*
+1 O u0 p2 c0 {3,D}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+X_5
+1 *5 X u0 p0 c0
+
+HCOO*
+1 *2 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 *4 H u0 p0 c0 {3,S}
+5 *1 X u0 p0 c0 {1,S}
+
+CH3O2*
+1 *4 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH2O*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+OH*
+1 *4 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *5 X u0 p0 c0 {1,S}
+
+CH3O_1*
+1 *2 O u0 p2 c0 {2,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *4 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *1 X u0 p0 c0 {1,S}
+
+COOH*
+1 *3 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *4 H u0 p0 c0 {1,S}
+5 *1 X u0 p0 c0 {3,S}
+
+CO2_2*
+1 O u0 p2 c0 {3,D}
+2 *3 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+CH2O_2*
+1 *3 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+CH2OH*
+1 *3 O u0 p2 c0 {2,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0 {2,S}
+
+HCOOH*
+1 O u0 p2 c0 {3,S} {5,S}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0
+
+CH3O2_2*
+1 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 *4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH3O_5*
+1 *4 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *5 X u0 p0 c0 {1,S}
+
+H2COOCH3*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 *4 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
+
+HCOOCH3*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {5,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0
+
+H2COOCH3_2*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 *4 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/reactions.py b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/reactions.py
new file mode 100644
index 0000000000..1a62231158
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_CO_Decomposition/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Carbonate_Deposition/groups.py b/input/kinetics/families/Surface_Carbonate_Deposition/groups.py
new file mode 100644
index 0000000000..5ec536d11c
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_Deposition/groups.py
@@ -0,0 +1,67 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition/groups"
+shortDesc = u""
+longDesc = u"""
+"""
+
+template(reactants=["CarbonateRing","SurfaceSite1","SurfaceSite2"], products=["CarbonateXX","Unstaturate"], ownReverse=False)
+
+reverse = "Surface_Carbonate_Addition"
+
+#autoGenerated=True
+reactantNum=3
+productNum=2
+
+recipe(actions=[
+ ['BREAK_BOND', '*3', 1, '*5'],
+ ['BREAK_BOND', '*2', 1, '*4'],
+ ['FORM_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*3', 1, '*6'],
+ ['CHANGE_BOND', '*4', 1, '*5'],
+])
+
+entry(
+ index = 1,
+ label = "CarbonateRing",
+ group =
+"""
+1 O u0 p2 {2,D}
+2 C u0 p0 {1,D} {3,S} {4,S}
+3 *2 O u0 p2 {2,S} {5,S}
+4 *3 O u0 p2 {2,S} {6,S}
+5 *4 R!H u0 px cx {6,[S,D]} {3,S}
+6 *5 R!H u0 px cx {5,[S,D]} {4,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "SurfaceSite1",
+ group =
+"""
+1 *1 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "SurfaceSite2",
+ group =
+"""
+1 *6 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: CarbonateRing
+L1: SurfaceSite1
+L1: SurfaceSite2
+"""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_Deposition/rules.py b/input/kinetics/families/Surface_Carbonate_Deposition/rules.py
new file mode 100644
index 0000000000..cef4557390
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_Deposition/rules.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "CarbonateRing;SurfaceSite1;SurfaceSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.2,
+ n = 0,
+ alpha = 0,
+ E0 = (0, 'kcal/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_Deposition/training/dictionary.txt b/input/kinetics/families/Surface_Carbonate_Deposition/training/dictionary.txt
new file mode 100644
index 0000000000..98dff0f0d5
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_Deposition/training/dictionary.txt
@@ -0,0 +1,136 @@
+H*
+1 *5 X u0 p0 c0 {2,S}
+2 *4 H u0 p0 c0 {1,S}
+
+CO2*
+1 O u0 p2 c0 {3,D}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+X_5
+1 *5 X u0 p0 c0
+
+HCOO*
+1 *2 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 *4 H u0 p0 c0 {3,S}
+5 *1 X u0 p0 c0 {1,S}
+
+CH3O2*
+1 *4 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH2O*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+OH*
+1 *4 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *5 X u0 p0 c0 {1,S}
+
+CH3O_1*
+1 *2 O u0 p2 c0 {2,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *4 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *1 X u0 p0 c0 {1,S}
+
+COOH*
+1 *3 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *4 H u0 p0 c0 {1,S}
+5 *1 X u0 p0 c0 {3,S}
+
+CO2_2*
+1 O u0 p2 c0 {3,D}
+2 *3 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+CH2O_2*
+1 *3 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+CH2OH*
+1 *3 O u0 p2 c0 {2,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0 {2,S}
+
+HCOOH*
+1 O u0 p2 c0 {3,S} {5,S}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0
+
+CH3O2_2*
+1 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 *4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH3O_5*
+1 *4 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *5 X u0 p0 c0 {1,S}
+
+H2COOCH3*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 *4 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
+
+HCOOCH3*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {5,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0
+
+H2COOCH3_2*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 *4 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Surface_Carbonate_Deposition/training/reactions.py b/input/kinetics/families/Surface_Carbonate_Deposition/training/reactions.py
new file mode 100644
index 0000000000..1a62231158
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_Deposition/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/groups.py b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/groups.py
new file mode 100644
index 0000000000..edba36c3ec
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/groups.py
@@ -0,0 +1,72 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_F_CO_Decomposition/groups"
+shortDesc = u""
+longDesc = u"""
+"""
+
+template(reactants=["CarbonateRing","SurfaceSite1","SurfaceSite2"], products=["FX","CO","ORROX"], ownReverse=False)
+
+reverse = "Surface_Carbonate_F_CO_Addition"
+
+#autoGenerated=True
+reactantNum=3
+productNum=3
+
+recipe(actions=[
+ ['BREAK_BOND', '*2', 1, '*3'],
+ ['BREAK_BOND', '*2', 1, '*4'],
+ ['BREAK_BOND', '*6', 1, '*7'],
+ ['FORM_BOND', '*8', 1, '*7'],
+ ['FORM_BOND', '*3', 1, '*9'],
+ ['CHANGE_BOND', '*4', 1, '*6'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['LOSE_PAIR', '*1', '1'],
+ ['GAIN_PAIR', '*2', '1'],
+])
+
+entry(
+ index = 1,
+ label = "CarbonateRing",
+ group =
+"""
+1 *1 O u0 p2 {2,D}
+2 *2 C u0 p0 {1,D} {3,S} {4,S}
+3 *3 O u0 p2 {2,S} {5,S}
+4 *4 O u0 p2 {2,S} {6,S}
+5 *5 R!H u0 px cx {6,[S,D]} {3,S}
+6 *6 R!H u0 px cx {5,[S,D]} {4,S} {7,S}
+7 *7 F u0 p3 c0 {6,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "SurfaceSite1",
+ group =
+"""
+1 *8 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "SurfaceSite2",
+ group =
+"""
+1 *9 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: CarbonateRing
+L1: SurfaceSite1
+L1: SurfaceSite2
+"""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/rules.py b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/rules.py
new file mode 100644
index 0000000000..db2ca2390b
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/rules.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_F_CO_Decomposition/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "CarbonateRing;SurfaceSite1;SurfaceSite2",
+ kinetics = StickingCoefficientBEP(
+ A = 0.2,
+ n = 0,
+ alpha = 0,
+ E0 = (0, 'kcal/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/dictionary.txt b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/dictionary.txt
new file mode 100644
index 0000000000..98dff0f0d5
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/dictionary.txt
@@ -0,0 +1,136 @@
+H*
+1 *5 X u0 p0 c0 {2,S}
+2 *4 H u0 p0 c0 {1,S}
+
+CO2*
+1 O u0 p2 c0 {3,D}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+X_5
+1 *5 X u0 p0 c0
+
+HCOO*
+1 *2 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 *4 H u0 p0 c0 {3,S}
+5 *1 X u0 p0 c0 {1,S}
+
+CH3O2*
+1 *4 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH2O*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+OH*
+1 *4 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *5 X u0 p0 c0 {1,S}
+
+CH3O_1*
+1 *2 O u0 p2 c0 {2,S} {6,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *4 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *1 X u0 p0 c0 {1,S}
+
+COOH*
+1 *3 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *4 H u0 p0 c0 {1,S}
+5 *1 X u0 p0 c0 {3,S}
+
+CO2_2*
+1 O u0 p2 c0 {3,D}
+2 *3 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *1 X u0 p0 c0
+
+CH2O_2*
+1 *3 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *1 X u0 p0 c0
+
+CH2OH*
+1 *3 O u0 p2 c0 {2,S} {5,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0 {2,S}
+
+HCOOH*
+1 O u0 p2 c0 {3,S} {5,S}
+2 *2 O u0 p2 c0 {3,D}
+3 *3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+6 *1 X u0 p0 c0
+
+CH3O2_2*
+1 O u0 p2 c0 {3,S} {6,S}
+2 *2 O u0 p2 c0 {3,S} {7,S}
+3 *3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 *4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *1 X u0 p0 c0 {2,S}
+
+CH3O_5*
+1 *4 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *5 X u0 p0 c0 {1,S}
+
+H2COOCH3*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 *4 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
+
+HCOOCH3*
+1 *2 O u0 p2 c0 {2,D}
+2 *3 C u0 p0 c0 {1,D} {3,S} {5,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0
+
+H2COOCH3_2*
+1 *2 O u0 p2 c0 {2,S} {9,S}
+2 *3 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 *4 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *1 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/reactions.py b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/reactions.py
new file mode 100644
index 0000000000..1a62231158
--- /dev/null
+++ b/input/kinetics/families/Surface_Carbonate_F_CO_Decomposition/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Carbonate_Deposition_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Dissociation/groups.py b/input/kinetics/families/Surface_Dissociation/groups.py
index c55e59abc0..0fd579b26b 100644
--- a/input/kinetics/families/Surface_Dissociation/groups.py
+++ b/input/kinetics/families/Surface_Dissociation/groups.py
@@ -277,6 +277,45 @@
kinetics = None,
)
+entry(
+ index = 21,
+ label = "C-C",
+ group =
+"""
+1 *1 C u0 {2,S} {3,[S,D,T]}
+2 *2 C u0 {1,S}
+3 *3 Xo u0 {1,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 22,
+ label = "CH2R",
+ group =
+"""
+1 *1 C u0 {2,S} {3,S} {4,S} {5,S}
+2 *2 H u0 {1,S}
+3 *3 Xo u0 {1,S}
+4 H u0 {1,S}
+5 R!H u0 px cx {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 23,
+ label = "CHR",
+ group =
+"""
+1 *1 C u0 {2,S} {3,D} {4,S}
+2 *2 H u0 {1,S}
+3 *3 Xo u0 {1,D}
+4 R!H u0 px cx {1,S}
+""",
+ kinetics = None,
+)
+
tree(
"""
@@ -287,8 +326,11 @@
L4: CH2
L4: CH3
L4: C-H_Bidentate
+ L4: CH2R
+ L4: CHR
L3: C-O
L4: C-OH
+ L3: C-C
L2: O
L3: O-H
L3: O-C
diff --git a/input/kinetics/families/Surface_Dissociation/rules.py b/input/kinetics/families/Surface_Dissociation/rules.py
index 23895d7faf..b84ec00e45 100644
--- a/input/kinetics/families/Surface_Dissociation/rules.py
+++ b/input/kinetics/families/Surface_Dissociation/rules.py
@@ -9,7 +9,7 @@
index = 1,
label = "Combined;VacantSite",
kinetics = SurfaceArrheniusBEP(
- A = (1.0e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0,
alpha = 0.84,
E0 = (44.25, 'kcal/mol'),
@@ -19,17 +19,10 @@
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-"Arrhenius preexponential values for surface recombination...reactions
-are, in the SI system,... 10^13 - 10^14 m2/mol/s ...for bimolecular reactions"
-from page 54 of "Silicon epitaxy"
-Author: Danilo Crippa; Daniel L Rode; Maurizio Masi
-Publisher: San Diego : Academic Press, 2001.
-Series: Semiconductors and semimetals, v. 72.
-
E0 and alpha are taken from:
-"Universal Brønsted-Evans-Polanyi Relations for C–C, C–O, C–N, N–O, N–N, and O–O Dissociation Reactions" by Wang, ..., Norskov/ Catal. Lett (2011) 141:370-373.
-DOI 10.1007/s10562-010-0477-y
+"Universal Brønsted-Evans-Polanyi Relations for C–C, C–O, C–N, N–O, N–N, and O–O Dissociation Reactions" by Wang, ..., Norskov/ Catal. Lett (2011) 141:370-373, DOI: 10.1007/s10562-010-0477-y
(actual value for E0 was 1.92 eV.)
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
@@ -37,10 +30,10 @@
index = 2,
label = "C-H_Bidentate;VacantSite",
kinetics = SurfaceArrheniusBEP(
- A = (7.250e16, 'm^2/(mol*s)'),
+ A = (1.36e18, 'm^2/(mol*s)'),
n = 0.0,
- alpha = 0.961,
- E0 = (22.37, 'kcal/mol'),
+ alpha = 0.85,
+ E0 = (65.61, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
@@ -51,3 +44,99 @@
parameters from training reactions 60-63. The A factor has been divided by 2 here to account for the degeneracies of the training reactions.
"""
)
+
+entry(
+ index = 3,
+ label = "C-O;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.77,
+ E0 = (142.8, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+entry(
+ index = 4,
+ label = "C-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.57,
+ E0 = (75.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+
+entry(
+ index = 5,
+ label = "O-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.26,
+ E0 = (73.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 6,
+ label = "C-OH;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.58,
+ E0 = (117.7, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 7,
+ label = "C-C;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.72,
+ E0 = (126.4, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation/training/dictionary.txt b/input/kinetics/families/Surface_Dissociation/training/dictionary.txt
index f6dc17fedd..48810eff9c 100644
--- a/input/kinetics/families/Surface_Dissociation/training/dictionary.txt
+++ b/input/kinetics/families/Surface_Dissociation/training/dictionary.txt
@@ -185,3 +185,51 @@ HCO_2X
3 O u0 p2 {1,S} {5,S}
4 *3 X u0 p0 {1,D}
5 X u0 p0 {3,S}
+
+
+XCXCH2_1
+1 C u0 p0 {2,S} {5,T}
+2 *1 C u0 p0 {1,S} {3,S} {4,S} {6,S}
+3 *2 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 X u0 p0 {1,T}
+6 *3 X u0 p0 {2,S}
+
+XCXCH_3
+1 C u0 p0 {2,S} {4,T}
+2 *1 C u0 p0 {1,S} {3,S} {5,D}
+3 H u0 p0 {2,S}
+4 X u0 p0 {1,T}
+5 *3 X u0 p0 {2,D}
+
+XCHXCH2_1
+1 *1 C u0 p0 {2,S} {3,S} {6,D}
+2 C u0 p0 {1,S} {4,S} {5,S} {7,S}
+3 *2 H u0 p0 {1,S}
+4 H u0 p0 {2,S}
+5 H u0 p0 {2,S}
+6 *3 X u0 p0 {1,D}
+7 X u0 p0 {2,S}
+
+XCXCH2_3
+1 *1 C u0 p0 {2,S} {5,T}
+2 C u0 p0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 *3 X u0 p0 {1,T}
+6 X u0 p0 {2,S}
+
+XCHXCH_1
+1 *1 C u0 p0 {2,S} {3,S} {5,D}
+2 C u0 p0 {1,S} {4,S} {6,D}
+3 *2 H u0 p0 {1,S}
+4 H u0 p0 {2,S}
+5 *3 X u0 p0 {1,D}
+6 X u0 p0 {2,D}
+
+XCXCH_4
+1 *1 C u0 p0 {2,S} {4,T}
+2 C u0 p0 {1,S} {3,S} {5,D}
+3 H u0 p0 {2,S}
+4 *3 X u0 p0 {1,T}
+5 X u0 p0 {2,D}
diff --git a/input/kinetics/families/Surface_Dissociation/training/reactions.py b/input/kinetics/families/Surface_Dissociation/training/reactions.py
index f8b5754454..1d43215879 100644
--- a/input/kinetics/families/Surface_Dissociation/training/reactions.py
+++ b/input/kinetics/families/Surface_Dissociation/training/reactions.py
@@ -373,16 +373,21 @@
label = "HCCH2_2X + Ni_4 <=> HCCH_2X + HX_5",
degeneracy = 2,
kinetics = SurfaceArrhenius(
- A=(1.9460e16, 'm^2/(mol*s)'),
- n = 0.512,
- Ea=(69707.5, 'J/mol'),
+ A=(4.75e21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(72, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 2 because of the degeneracy.
+
""",
metal = "Pt",
)
@@ -392,16 +397,20 @@
label = "H2CCH2_2X + Ni_4 <=> H2CCH_2X + HX_5",
degeneracy = 2,
kinetics = SurfaceArrhenius(
- A=(3.034e15, 'm^2/(mol*s)'),
- n = 0.661,
- Ea=(55411.0, 'J/mol'),
+ A=(2.225e21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(59, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 2 because of the degeneracy.
""",
metal = "Pt",
)
@@ -411,16 +420,88 @@
label = "H2CO_2X + Ni_4 <=> HCO_2X + HX_5",
degeneracy = 2,
kinetics = SurfaceArrhenius(
- A=(1.438e17, 'm^2/(mol*s)'),
- n = 0.043,
- Ea=(1417.1, 'J/mol'),
+ A=(0.875e21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(2, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank=8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 2 because of the degeneracy.
""",
metal = "Pt",
)
+
+entry(
+ index = 63,
+ label = "XCXCH_3 + HX_5 <=> XCXCH2_1 + Ni_4",
+ degeneracy = 2,
+ kinetics = SurfaceArrhenius(
+ A=(2.595e19, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(34, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank=8,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 2 because of the degeneracy.
+""",
+ metal = "Pt",
+)
+
+entry(
+ index = 64,
+ label = "XCXCH_4 + HX_5 <=> XCHXCH_1 + Ni_4",
+ degeneracy = 2,
+ kinetics = SurfaceArrhenius(
+ A=(1.66e21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(62, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank=8,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 2 because of the degeneracy.
+""",
+ metal = "Pt",
+)
+
+entry(
+ index = 65,
+ label = "XCHXCH2_1 + Ni_4 <=> XCXCH2_3 + HX_5",
+ degeneracy = 1,
+ kinetics = SurfaceArrhenius(
+ A=(9.69e21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(48, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank=8,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+""",
+ metal = "Pt",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/groups.py b/input/kinetics/families/Surface_Dissociation_Beta/groups.py
old mode 100644
new mode 100755
index d583e0e12b..bcbb85efda
--- a/input/kinetics/families/Surface_Dissociation_Beta/groups.py
+++ b/input/kinetics/families/Surface_Dissociation_Beta/groups.py
@@ -4,19 +4,17 @@
name = "Surface_Dissociation_Beta/groups"
shortDesc = u""
longDesc = u"""
-Surface bond fission of one species into two distinct adsorbates. The bond fission occurs not at the binding atom, but in the beta position of the adsorbate, that is the bond between Atom *2 and *3 is broken. Atom *1 is bonded to the surface (*4). The image below shows a double bond, but a triple bond is also possible. What matters is that the bond between *2 and *3 must be single.
+Surface bond fission of one species into two distinct adsorbates. The bond fission occurs not at the binding atom, but in the beta position of the adsorbate, that is the bond between Atom *2 and *3 is broken. Atom *1 binds to the surface (*4). The image below shows a double bond, but a triple bond is also possible. What matters is that the bond between *2 and *3 must be single.
- *2=*3 *4 *2-*3-*4
- | + | ----> || +
-~*1~ ~*5~ ~*1~ ~*5~
+ *1-*2--*3 *1=*2 *3
+ || ----> | |
+~*4~ + ~*5~~ ~*4~ + ~*5~~
-The rate, which should be in mol/m2/s,
-will be given by k * (mol/m2) * (mol/m2) * (mol/m3)
-so k should be in (m5/mol2/s). We will use sticking coefficients.
+The rate, which should be in mol/m2/s, so k should be in (m2/mol/s).
"""
-template(reactants=["Adsorbate1", "Adsorbate2"], products=["Adsorbate3","VacantSite"], ownReverse=False)
+template(reactants=["Combined", "VacantSite"], products=["Adsorbate1","Adsorbate2"], ownReverse=False)
reverse = "Surface_Association_Beta"
@@ -24,233 +22,134 @@
productNum=2
recipe(actions=[
- ['CHANGE_BOND', '*2', -1, '*3'],
+ ['FORM_BOND', '*3', 1, '*5'],
+ ['CHANGE_BOND', '*1', -1, '*4'],
['CHANGE_BOND', '*1', 1, '*2'],
- ['BREAK_BOND', '*4', 1, '*5'],
- ['FORM_BOND', '*3', 1, '*4'],
+ ['BREAK_BOND', '*2', 1, '*3']
])
entry(
index = 1,
- label = "Adsorbate1",
+ label = "Combined",
group =
"""
-1 *1 Xo ux p0 c0 {2,[S,D]}
-2 *2 R!H ux px cx {1,[S,D]} {3,[D,T]}
-3 *3 R!H ux px cx {2,[D,T]}
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 R!H u0 {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *4 Xo u0 {1,[D,T]}
""",
kinetics = None,
)
entry(
index = 2,
- label="Adsorbate2",
+ label="VacantSite",
group =
"""
-1 *5 Xo ux px cx {2,S}
-2 *4 R ux px cx {1,S}
+1 *5 Xv u0
""",
kinetics = None,
)
entry(
index = 3,
- label = "*C",
+ label = "C-H",
group =
"""
-1 *1 Xo ux p0 c0 {2,[S,D]}
-2 *2 C ux px cx {1,[S,D]} {3,[D,T]}
-3 *3 R!H ux px cx {2,[D,T]}
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 C u0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,[D,T]}
""",
kinetics = None,
)
entry(
index = 4,
- label = "*-C=",
+ label = "O-H",
group =
"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 C u0 p0 c0 {1,S} {3,D}
-3 *3 R!H ux px cx {2,D}
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 O u0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,[D,T]}
""",
kinetics = None,
)
-
entry(
index = 5,
- label = "*-C=O",
+ label = "R-H",
group =
"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 C u0 p0 c0 {1,S} {3,D}
-3 *3 O ux px cx {2,D}
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 R!H u0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,[D,T]}
""",
kinetics = None,
)
entry(
index = 6,
- label = "*-C=C",
+ label = "CH3",
group =
"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 C u0 p0 c0 {1,S} {3,D}
-3 *3 C u0 p0 c0 {2,D}
+1 *1 R!H u0 px cx {2,S} {6,[D,T]}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *4 Xo u0 p0 c0 {1,[D,T]}
""",
kinetics = None,
)
entry(
index = 7,
- label = "*-C#",
- group =
-"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 C u0 p0 c0 {1,S} {3,T}
-3 *3 C ux px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 8,
- label="H-*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 H u0 p0 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 9,
- label="O-*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 O u0 p2 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 10,
- label="C-*",
- group =
-"""
-1 *5 Xo u0 p0 c0 {2,S}
-2 *4 C u0 p0 c0 {1,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 11,
- label = "*-C",
- group =
-"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 C ux px cx {1,S} {3,[D,T]}
-3 *3 R!H ux px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 12,
- label = "*=C",
- group =
-"""
-1 *1 Xo ux p0 c0 {2,D}
-2 *2 C ux px cx {1,D} {3,D}
-3 *3 R!H ux px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 13,
- label = "*=C=C",
+ label = "CR-H",
group =
"""
-1 *1 Xo ux p0 c0 {2,D}
-2 *2 C ux px cx {1,D} {3,D}
-3 *3 C ux px cx {2,D}
+1 *1 R!H u0 {2,S} {4,D}
+2 *2 C u0 {1,S} {3,S} {5,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,D}
+5 R!H u0 {2,S}
""",
kinetics = None,
)
-entry(
- index = 14,
- label = "*=C=O",
- group =
+tree(
"""
-1 *1 Xo u0 p0 c0 {2,D}
-2 *2 C u0 px c0 {1,D} {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 15,
- label = "*N",
- group =
+L1: Combined
+ L2: R-H
+ L3: CR-H
+ L3: C-H
+ L4: CH3
+ L3: O-H
+L1: VacantSite
"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 N ux px cx {1,S} {3,D}
-3 *3 R!H ux px cx {2,D}
-""",
- kinetics = None,
)
-entry(
- index = 16,
- label = "*-N=N",
+forbidden(
+ label = "R-C",
group =
"""
-1 *1 Xo ux p0 c0 {2,S}
-2 *2 N ux px cx {1,S} {3,D}
-3 *3 N ux px cx {2,D}
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 R!H u0 {1,S} {3,S}
+3 *3 C u0 px cx {2,S}
+4 *4 Xo u0 {1,[D,T]}
""",
- kinetics = None,
)
-entry(
- index = 17,
- label = "*-N=NH",
+forbidden(
+ label = "Bidentate",
group =
"""
-1 *1 Xo u0 p0 c0 {2,S}
-2 *2 N u0 p1 c0 {1,S} {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-
-tree(
-"""
-L1: Adsorbate1
- L2: *C
- L3: *-C
- L4: *-C=
- L5: *-C=O
- L5: *-C=C
- L4: *-C#
- L3: *=C
- L4: *=C=C
- L4: *=C=O
- L2: *N
- L3: *-N=N
- L4: *-N=NH
-L1: Adsorbate2
- L2: H-*
- L2: O-*
- L2: C-*
+1 *1 R!H u0 {2,S} {4,[D,T]}
+2 *2 R!H u0 {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *4 Xo u0 {1,[D,T]}
+5 Xo u0
"""
)
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/rules.py b/input/kinetics/families/Surface_Dissociation_Beta/rules.py
old mode 100644
new mode 100755
index 88327c7a4b..21fa41d8de
--- a/input/kinetics/families/Surface_Dissociation_Beta/rules.py
+++ b/input/kinetics/families/Surface_Dissociation_Beta/rules.py
@@ -7,25 +7,60 @@
"""
entry(
- index = 29,
- label = "Adsorbate1;Adsorbate2",
+ index = 1,
+ label = "Combined;VacantSite",
kinetics = SurfaceArrheniusBEP(
- A = (3.048e17, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0.,
- alpha = 0.54,
- E0 = (20.9850987, 'kcal/mol'),
+ alpha =0.84,
+ E0 = (185.1, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-Reaction 29 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
+E0 and alpha are taken from:
+"Universal Brønsted-Evans-Polanyi Relations for C–C, C–O, C–N, N–O, N–N, and O–O Dissociation Reactions" by Wang, ..., Norskov/ Catal. Lett (2011) 141:370-373, DOI: 10.1007/s10562-010-0477-y
+(actual value for E0 was 1.92 eV.)
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
-E0 is Ea
+entry(
+ index = 2,
+ label = "C-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.58,
+ E0 = (112.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 6 for oxygenates for 3x3 cell size from "A Theoretical and Computational Analysis of Linear Free Energy Relations for the Estimation of Activation Energies" Jonathan E. Sutton, Dionisios G. Vlachos, ACS Catal., 2012, 2, 1624-1634, DOI:10.1021/cs3003269.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
-A factor from paper / surface site density of Cu
-8.971e12 m^4/(mol^2 * s) / 2.943e‐5 mol/m^2 = 3.048e17 m^2/(mol*s)
+entry(
+ index = 3,
+ label = "O-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.26,
+ E0 = (73.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/template.cdx b/input/kinetics/families/Surface_Dissociation_Beta/template.cdx
old mode 100644
new mode 100755
index fec8e122e7..45e6948a85
Binary files a/input/kinetics/families/Surface_Dissociation_Beta/template.cdx and b/input/kinetics/families/Surface_Dissociation_Beta/template.cdx differ
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/template.eps b/input/kinetics/families/Surface_Dissociation_Beta/template.eps
old mode 100644
new mode 100755
index 4251b8615c..f3b0b5c95f
--- a/input/kinetics/families/Surface_Dissociation_Beta/template.eps
+++ b/input/kinetics/families/Surface_Dissociation_Beta/template.eps
@@ -1,603 +1,610 @@
-%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: ChemDraw 17.1.0.105
-%%Title: template.eps
-%%CreationDate: 12/6/2019 11:37 AM
-%%DocumentSuppliedProcSets: chemdict30 24 13
-%%DocumentFonts: Helvetica Helvetica Times-Roman
-%%BoundingBox: 80 336 459 383
-%%DocumentProcessColors: Cyan Magenta Yellow Black
-%%EndComments
-%%BeginProcSet: chemdict30 24 13
-% ChemDraw Laser Prep
-% 1985-2018 PerkinElmer Informatics, Inc. All rights reserved.
-userdict/chemdict30 210 dict put
-chemdict30 begin/version 24 def/sv 13 def
-/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
-/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
-/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
-/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
-/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
-/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
-/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
-/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
-/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
-/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
-/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
-/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
-/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
-/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
-/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
-/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
-/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
-/C{Wd rot Wd rot Wd rot setrgbcolor}b
-/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
- gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
-bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
-/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
-x}b
-/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
-/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
-8 m sl st}ie}b
-/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
-r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
-/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
-/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
-/B{bs N rot put/N N 1 a d}b
-/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
-/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-0 cw 2 dv xl
-aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
-aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
-St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
-St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
-St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
-St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
-St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
-np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
-xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
-/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
-e s o o at ro D m e D m a sq}b
-/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
-/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
-/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
-180 arc 0 cw -2 dv rl cp f}b
-/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
- rad 0 l gs Ast gr}b
-/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
-P P}{sq at 2
-m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
-e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
-/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
- .35 dv w 2 m M 0 0
-l w .35 dv w -2 m l st}b
-/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
-w n l w 2 m D n l cp st}b
-/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
-{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
-DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
-HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
-DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
-OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
-{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
-OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
-AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
-gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
-/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
-/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
-21 -10 27 -8 27 0 cv
-27 8 21 10 9 6 cv
--3 2 -3 -2 9 -6 cv
-cp}b/DLB{0 0 M
-0 0 -9.51 9.65 -9.51 18.02 cv
--9.51 23.22 -6.75 27 0 27 cv
-6.75 27 9.51 23.22 9.51 18.02 cv
-9.51 9.65 0 0 0 0 cv
-cp}b/ZLB{LB}b
-/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
-/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-0 0 0 Y rO ac
-cp}b/Rc{0 0 M
-0 Y l
-X Y l
-X 0 l
-cp
-}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
-currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
-setrgbcolor}b/gS{dtransform CMT idtransform
-m D 0 lt{n}if sq n D
-CMT dtransform idtransform
-e 2 m e
-xl
-7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-13.5 0 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv
-gS
--13.5 0 xl
-LB f
-gr}for
-LB SM st}{LB grf}ie}b/gOv{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv 0.65 m D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b
-/gDLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-0 13.5 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv e
-gS
-0 -13.5 xl
-DLB f
-gr}for
-DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rr f
-gr}for
-Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rc f
-gr}for
-Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
- rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
-rev{1 -1 sc}if
-gs
-0 lW 2 m xl
-D SA OA
-gr
-rad 0 xl
-180 ro
-0 lW 2 m xl
-SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
-gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
-D stringwidth P 2 dv D 1 a/rad x
-n 0 M show gr
-rad 2 s -5 M
-rad n -5 rad n 1 2 ac
-rad n 1 rad 1 2 ac
-rad 1 rad -5 2 ac
-rad -5 rad n -5 2 ac
-cp Ast}b/Ar{D 39 lt{Ar1}
-{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
-o 0 lt o 0 lt ne/rev x
-D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
-if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M 0 0 l 0 Y l lp Y l
-X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M
-0 0 0 Y lp ac
-0 Y 2 dv lp neg o lp ac
-0 Y 2 dv 0 Y lp ac
-0 Y lp Y lp ac
-X lp s 0 M
-X 0 X Y lp ac
-X Y 2 dv X lp a o lp ac
-X Y 2 dv X Y lp ac
-X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
-np X Y s Y 2 dv
-Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
-rO D rl
-X lW 2 dv a rO a Y lW 2 dv a rO a l
-rO lW -2 dv a Y lW 2 dv a rO a l
-lW -2 dv Y lW 2 dv a l
-0 Y l X Y l X 0 l cp f
-0 0 M
-0 Y l
-X Y l
-X 0 l cp
-SM st}{Rr SM st}{rO Y M rO rO xl
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-rO neg D xl X Y 0 Y rO ac
-cp f
-Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
-{Asc gs gLB gr
--1 -1 sc LB whf}{Asc gs gLB gr
--0.4 -0.4 sc LB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc gOv gr
-ZLB whf}{Asc gs -1 -1 sc gZLB gr
-gs 3.6 12 sc Cr whf gr
-gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
-{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
-0 -1 M
-0 0 1 0 1 ac
-8 0 8 1 1 ac
-8 0 16 0 1 ac
-16 0 16 -1 1 ac
-SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-2 0 M 0 0 2 0 360 arc
-Ast}{4.5 Aos
-1 0 M -1 0 l
-2 0 M 0 0 2 0 360 arc
-Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
-0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
-1 -1 M -1 -1 l
-0 2 M 0 -2 l
-Ast}{5 Aos
-1 -1 M -1 -1 l
-1 1 M -1 1 l
-0 2 M 0 -2 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
-gs 3.6 12 sc Cr whf gr
-ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc Cr blf gr
-ZLB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
-np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
-np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
-{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
-}e 39 s g xc gr}ie}b/DS{np M l st}b
-/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
-e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
-o length 6 gt{P 6 g}{e P 8 dv}ie
-D lW 2 m lt{P lW 2 m}if
-0 e
-0 0
-3 -1 r s 3 1 r e s e
-0 0 M 1 0 l
-0 0 ap M 1 0 ap l
-e n e n
-0 0 ap M 1 0 ap l
-P P}b/DT{gs np PT SM st gr}b
-/NH{lW s D hS dv ru
-cvi D 0 eq{P 1}if/nH x
-D hS nH m s
-D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
-/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
-bW 2 dv/bd x
-lW 2 dv e D NH e{D bd M bd n l}for
-st gr}{gs 12 OB np
-lW 2 dv 0 xl NH 1 sc
-bW 2 dv wF m nH 1 a dv/bd x
-0 1 nH
-{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp f gr}{P}{gs 12 OB/bL x
-bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
-bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
-bL nSq 2 m dv D sc
-nSq{.135 .667 .865 .667 1 0 rcurveto
-.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
-}o 1 g 1 s g e 2 4 gi al P
-5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
-/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
-/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
-np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
-g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
-/FF/CR/SO/SI
-/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
-mv 0 32 gi as P
-mv 32/Times-Roman findfont/Encoding get
-32 96 gi putinterval
-mv 39/quotesingle put
-mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
-/dagger/daggerdbl
-/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
-/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
-/emdash
-/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
-/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
-/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
-/macron
-/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
-/periodcentered
-/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
-/threequarters/questiondown
-/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
-/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
-/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
-/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
-/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
-/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
-/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
-/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
-mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
-findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
-D length dict/newdict x{
-1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
-newdict 3 1 r put}{P P}ie}forall
-newdict/Encoding mv put
-fSt 8 fSt length 8 sub gi cvs length 8 add
-fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
-/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
-64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
-D 4 -1 r e scalefont setfont m cpt P e M}b
-end
-%%EndProcSet
-
-%%EndProlog
-chemdict30 begin
-/cW 40 def
-/bW 80 def
-/lW 20 def
-/hS 54 def
-/sh true def
-719 SPe[
-/Helvetica
-fD
-/Helvetica
-fD
-/Times-Roman
-fD]/ft x
-1600 6720 M
-9180 6720 l
-9180 7660 l
-1600 7660 l
-cp
-clip
-np
-65535 65535 65535 sBg
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-20 D sl/lW x
-5379 7178 M
-4673 7178 l
-st
-4817 7238 M
-5523 7238 l
-st
-gs
-20 sl
-5553 7188 5553 7188 5553
-7188 5378 7188 5553 7188 5553 7188 5353 7126 5378 7155 5378 7188 5553 7188
-5353 7126 5353 7126 4 5553 7188 129 Sp
-gr
-gs
-20 sl
-4643 7228 4643 7228 4643
-7228 4843 7290 4643 7228 4643 7228 4818 7241 4843 7290 4843 7290 4643 7228
-4818 7228 4818 7228 4 4643 7228 129 Sp
-gr
-gr
-0 6755 7004 ts
-0 32896 0 C
-64
-10 0 tx
-(3)show
-0 10 0 tx
-(R)show
-gr
-0 6167 7604 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 1657 7004 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 1669 7604 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 2259 7005 ts
-0 32896 0 C
-64 10 1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-0 6157 7005 ts
-0 0 65535 C
-64 10 1 tx
-(2)show
-0 10 1 tx
-(R)show
-gr
-0 7357 7005 ts
-65535 0 65535 C
-64 10 1 tx
-(4)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-1804 7043 M
-1824 7043 l
-1828 7379 l
-1808 7379 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6420 6937 M
-6420 6917 l
-6722 6916 l
-6722 6936 l
-cp
-f
-gr
-0
-3078 7269 ts
-0 0 0 C
-0 12 2 tx
-(+)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2226 6881 M
-2226 6901 l
-1920 6900 l
-1920 6880 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2226 6953 M
-2226 6973 l
-1920 6972 l
-1920 6952 l
-cp
-f
-gr
-0
-3821 7605 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-0 3811 7005 ts
-65535 0 65535 C
-64 10 1 tx
-(4)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3957 7045 M
-3977 7045 l
-3980 7383 l
-3960 7383 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6267 7045 M
-6287 7045 l
-6290 7379 l
-6270 7380 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6339 7044 M
-6359 7044 l
-6362 7379 l
-6342 7379 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0
-0 0 C
-np
-7319 6917 M
-7319 6937 l
-7018 6936 l
-7018 6916 l
-cp
-f
-gr
-0 8176 7269
-ts
-0 0 0 C
-0 12 2 tx
-(+)show
-gr
-0 8906 7605 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-gr
-end
-%%Trailer
-showpage
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw 18.2.0.48
+%%Title: template_Surface_dissociation_beta.eps
+%%CreationDate: 30.09.2020 10:38
+%%DocumentSuppliedProcSets: chemdict30 24 13
+%%DocumentFonts: Helvetica Times-Roman
+%%BoundingBox: 104 336 401 384
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProcSet: chemdict30 24 13
+% ChemDraw Laser Prep
+% 1985-2019 PerkinElmer Informatics, Inc. All rights reserved.
+userdict/chemdict30 210 dict put
+chemdict30 begin/version 24 def/sv 13 def
+/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
+/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
+/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
+/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
+/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
+/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
+/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
+/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
+/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
+/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
+/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
+/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
+/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
+/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
+/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
+/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
+/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
+/C{Wd rot Wd rot Wd rot setrgbcolor}b
+/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
+ gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
+bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
+/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
+x}b
+/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
+/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
+8 m sl st}ie}b
+/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
+r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
+/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
+/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
+/B{bs N rot put/N N 1 a d}b
+/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
+/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+0 cw 2 dv xl
+aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
+aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
+St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
+St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
+St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
+St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
+St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
+np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
+xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
+/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
+e s o o at ro D m e D m a sq}b
+/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
+/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
+/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
+180 arc 0 cw -2 dv rl cp f}b
+/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
+ rad 0 l gs Ast gr}b
+/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
+P P}{sq at 2
+m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
+e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
+/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
+ .35 dv w 2 m M 0 0
+l w .35 dv w -2 m l st}b
+/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
+w n l w 2 m D n l cp st}b
+/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
+{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
+DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
+HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
+DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
+OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
+{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
+OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
+AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
+gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
+/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
+/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
+21 -10 27 -8 27 0 cv
+27 8 21 10 9 6 cv
+-3 2 -3 -2 9 -6 cv
+cp}b/DLB{0 0 M
+0 0 -9.51 9.65 -9.51 18.02 cv
+-9.51 23.22 -6.75 27 0 27 cv
+6.75 27 9.51 23.22 9.51 18.02 cv
+9.51 9.65 0 0 0 0 cv
+cp}b/ZLB{LB}b
+/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
+/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+0 0 0 Y rO ac
+cp}b/Rc{0 0 M
+0 Y l
+X Y l
+X 0 l
+cp}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
+currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
+setrgbcolor}b/gS{dtransform CMT idtransform
+m D 0 lt{n}if sq n D
+CMT dtransform idtransform
+e 2 m e
+xl
+7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+13.5 0 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv
+gS
+-13.5 0 xl
+LB f
+gr}for
+LB SM st}{LB grf}ie}b/gOv{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv 0.65 m D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b
+/gDLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+0 13.5 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv e
+gS
+0 -13.5 xl
+DLB f
+gr}for
+DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rr f
+gr}for
+Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rc f
+gr}for
+Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
+ rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
+rev{1 -1 sc}if
+gs
+0 lW 2 m xl
+D SA OA
+gr
+rad 0 xl
+180 ro
+0 lW 2 m xl
+SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
+gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
+D stringwidth P 2 dv D 1 a/rad x
+n 0 M show gr
+rad 2 s -5 M
+rad n -5 rad n 1 2 ac
+rad n 1 rad 1 2 ac
+rad 1 rad -5 2 ac
+rad -5 rad n -5 2 ac
+cp Ast}b/Ar{D 39 lt{Ar1}
+{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
+o 0 lt o 0 lt ne/rev x
+D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
+if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M 0 0 l 0 Y l lp Y l
+X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M
+0 0 0 Y lp ac
+0 Y 2 dv lp neg o lp ac
+0 Y 2 dv 0 Y lp ac
+0 Y lp Y lp ac
+X lp s 0 M
+X 0 X Y lp ac
+X Y 2 dv X lp a o lp ac
+X Y 2 dv X Y lp ac
+X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
+np X Y s Y 2 dv
+Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
+rO D rl
+X lW 2 dv a rO a Y lW 2 dv a rO a l
+rO lW -2 dv a Y lW 2 dv a rO a l
+lW -2 dv Y lW 2 dv a l
+0 Y l X Y l X 0 l cp f
+0 0 M
+0 Y l
+X Y l
+X 0 l cp
+SM st}{Rr SM st}{rO Y M rO rO xl
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+rO neg D xl X Y 0 Y rO ac
+cp f
+Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
+{Asc gs gLB gr
+-1 -1 sc LB whf}{Asc gs gLB gr
+-0.4 -0.4 sc LB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc gOv gr
+ZLB whf}{Asc gs -1 -1 sc gZLB gr
+gs 3.6 12 sc Cr whf gr
+gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
+{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
+0 -1 M
+0 0 1 0 1 ac
+8 0 8 1 1 ac
+8 0 16 0 1 ac
+16 0 16 -1 1 ac
+SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+2 0 M 0 0 2 0 360 arc
+Ast}{4.5 Aos
+1 0 M -1 0 l
+2 0 M 0 0 2 0 360 arc
+Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
+0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
+1 -1 M -1 -1 l
+0 2 M 0 -2 l
+Ast}{5 Aos
+1 -1 M -1 -1 l
+1 1 M -1 1 l
+0 2 M 0 -2 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
+gs 3.6 12 sc Cr whf gr
+ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc Cr blf gr
+ZLB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
+np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
+np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
+{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
+}e 39 s g xc gr}ie}b/DS{np M l st}b
+/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
+e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
+o length 6 gt{P 6 g}{e P 8 dv}ie
+D lW 2 m lt{P lW 2 m}if
+0 e
+0 0
+3 -1 r s 3 1 r e s e
+0 0 M 1 0 l
+0 0 ap M 1 0 ap l
+e n e n
+0 0 ap M 1 0 ap l
+P P}b/DT{gs np PT SM st gr}b
+/NH{lW s D hS dv ru
+cvi D 0 eq{P 1}if/nH x
+D hS nH m s
+D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
+/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
+bW 2 dv/bd x
+lW 2 dv e D NH e{D bd M bd n l}for
+st gr}{gs 12 OB np
+lW 2 dv 0 xl NH 1 sc
+bW 2 dv wF m nH 1 a dv/bd x
+0 1 nH
+{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp f gr}{P}{gs 12 OB/bL x
+bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
+bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
+bL nSq 2 m dv D sc
+nSq{.135 .667 .865 .667 1 0 rcurveto
+.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
+}o 1 g 1 s g e 2 4 gi al P
+5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
+/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
+/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
+np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
+g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
+/FF/CR/SO/SI
+/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
+mv 0 32 gi as P
+mv 32/Times-Roman findfont/Encoding get
+32 96 gi putinterval
+mv 39/quotesingle put
+mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
+/dagger/daggerdbl
+/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
+/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
+/emdash
+/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
+/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
+/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
+/macron
+/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
+/periodcentered
+/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
+/threequarters/questiondown
+/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
+mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
+findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
+D length dict/newdict x{
+1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
+newdict 3 1 r put}{P P}ie}forall
+newdict/Encoding mv put
+fSt 8 fSt length 8 sub gi cvs length 8 add
+fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
+/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
+64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
+D 4 -1 r e scalefont setfont m cpt P e M}b
+end
+%%EndProcSet
+
+%%EndProlog
+chemdict30 begin
+/cW 40 def
+/bW 80 def
+/lW 20 def
+/hS 54 def
+/sh true def
+720 SPe[
+/Helvetica
+fD
+/Times-Roman
+fD]/ft x
+2080 6720 M
+8020 6720 l
+8020 7680 l
+2080 7680 l
+cp
+clip
+np
+65535 65535 65535 sBg
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+20 D sl/lW x
+5577
+7156 M
+4871 7156 l
+st
+5015 7216 M
+5721 7216 l
+st
+gs
+20 sl
+5751 7166
+5751 7166 5751 7166 5576 7166 5751 7166 5751 7166 5551 7104 5576 7133 5576
+7166 5751 7166 5551 7104 5551 7104 4 5751 7166 129 Sp
+gr
+gs
+20 sl
+4841
+7206 4841 7206 4841 7206 5041 7268 4841 7206 4841 7206 5016 7219 5041 7268
+5041 7268 4841 7206 5016 7206 5016 7206 4 4841 7206 129 Sp
+gr
+gr
+0 4084
+7600 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+0 2354 7000 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 3603 7563 ts
+0 0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 2132 7600 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2328
+7376 M
+2308 7376 l
+2308 7040 l
+2328 7040 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2256 7376 M
+2236 7376 l
+2236 7040 l
+2256 7040 l
+cp
+f
+gr
+0 7058 7563 ts
+0 0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 6302 7606 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+0 7743 7600 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+0 7738 7000 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+7903
+7377 M
+7883 7377 l
+7884 7040 l
+7904 7040 l
+cp
+f
+gr
+0 6524 7006 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6462
+7382 M
+6442 7382 l
+6442 7046 l
+6462 7046 l
+cp
+f
+gr
+0 6775 7006 ts
+0
+0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6740
+6889 M
+6740 6909 l
+6559 6909 l
+6559 6889 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6740 6947 M
+6740 6967 l
+6559 6967 l
+6559 6947 l
+cp
+f
+gr
+0 2607 7000 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+0 3042 7000 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+3009
+6912 M
+3009 6932 l
+2870 6932 l
+2870 6912 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2572 6912 M
+2572 6932 l
+2389 6932 l
+2389 6912 l
+cp
+f
+gr
+gr
+end
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/training/dictionary.txt b/input/kinetics/families/Surface_Dissociation_Beta/training/dictionary.txt
old mode 100644
new mode 100755
diff --git a/input/kinetics/families/Surface_Dissociation_Beta/training/reactions.py b/input/kinetics/families/Surface_Dissociation_Beta/training/reactions.py
old mode 100644
new mode 100755
index 1289683c2a..e45ac42031
--- a/input/kinetics/families/Surface_Dissociation_Beta/training/reactions.py
+++ b/input/kinetics/families/Surface_Dissociation_Beta/training/reactions.py
@@ -8,50 +8,3 @@
training set for generating rate rules to populate this kinetics family.
"""
-entry(
- index = 27,
- label = "CO* + H* <=> COH* + Cu",
- degeneracy = 1,
- kinetics = SurfaceArrhenius(
- A = (3.799e17, 'm^2/(mol*s)'),
- n = 0.,
- Ea = (2.26, 'eV/molecule'),
- Tmin = (298, 'K'),
- Tmax = (2000, 'K'),
- ),
- rank = 10,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 27 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/c s200055d
-
-A factor from paper / surface site density of Cu
-1.118e13 1/s / 2.943e‐5 mol/m^2 = 3.799e17 m^2/(mol*s)
-Erxn = 1.15 eV
-""",
- metal = "Cu",
-)
-
-entry(
- index = 29,
- label = "HCO* + H* <=> HCOH* + Cu",
- degeneracy = 4,
- kinetics = SurfaceArrhenius(
- A = (3.048e17, 'm^2/(mol*s)'),
- n = 0.,
- Ea = (0.91, 'eV/molecule'),
- Tmin = (298, 'K'),
- Tmax = (2000, 'K'),
- ),
- rank = 10,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 29 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/c s200055d
-
-A factor from paper / surface site density of Cu
-8.971e12 1/s / 2.943e‐5 mol/m^2 = 3.048e17 m^2/(mol*s)
-Erxn = 0.09 eV
-""",
- metal = "Cu",
-)
diff --git a/input/kinetics/families/Surface_Dissociation_Beta_vdW/groups.py b/input/kinetics/families/Surface_Dissociation_Beta_vdW/groups.py
new file mode 100755
index 0000000000..586e86d219
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Beta_vdW/groups.py
@@ -0,0 +1,132 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Dissociation_Beta_vdW/groups"
+shortDesc = u""
+longDesc = u"""
+Surface bond fission of one species into two adsorbates. The bond fission occurs not at the binding atom, but in the beta position of the adsorbate, that is the bond between Atom *2 and *3 is broken. Molecule *1-2 forms a vdW bond to the surface (*4). The bond between *2 and *3 must be single.
+
+
+ *1-*2--*3 *1=*2 *3
+ | ----> : |
+~*4~ + ~*5~~ ~*4~ + ~*5~~
+
+The rate should be in mol/m2/s, so k should be in (m2/mol/s).
+"""
+
+template(reactants=["Combined", "VacantSite"], products=["Adsorbate1","Adsorbate2"], ownReverse=False)
+
+reverse = "Surface_Association_Beta_vdW"
+
+reactantNum=2
+productNum=2
+
+recipe(actions=[
+ ['FORM_BOND', '*3', 1, '*5'],
+ ['BREAK_BOND', '*1', 1, '*4'],
+ ['FORM_BOND', '*1', 0, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*2'],
+ ['BREAK_BOND', '*2', 1, '*3']
+])
+
+entry(
+ index = 1,
+ label = "Combined",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 R!H u0 px cx {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *4 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label="VacantSite",
+ group =
+"""
+1 *5 Xv u0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 3,
+ label = "R-H",
+ group =
+"""
+1 *1 R!H u0 {2,S} {4,S}
+2 *2 R!H u0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "C-H",
+ group =
+"""
+1 *1 R!H u0 {2,S} {4,S}
+2 *2 C u0 {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "CH3",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *4 Xo u0 p0 c0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "O-H",
+ group =
+"""
+1 *1 R!H u0 {2,S} {4,S}
+2 *2 O u0 px {1,S} {3,S}
+3 *3 H u0 {2,S}
+4 *4 Xo u0 {1,S}
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: Combined
+ L2: R-H
+ L3: C-H
+ L4: CH3
+ L3: O-H
+L1: VacantSite
+"""
+)
+
+forbidden(
+ label = "Bidentate",
+ group =
+"""
+1 *1 R!H u0 px cx {2,S} {4,S}
+2 *2 R!H u0 px cx {1,S} {3,S}
+3 *3 R u0 {2,S}
+4 *4 Xo u0 {1,S}
+5 Xo u0
+""",
+)
+
diff --git a/input/kinetics/families/Surface_Dissociation_Beta_vdW/rules.py b/input/kinetics/families/Surface_Dissociation_Beta_vdW/rules.py
new file mode 100755
index 0000000000..10371ade46
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Beta_vdW/rules.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Dissociation_Beta_vdW/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+
+entry(
+ index = 1,
+ label = "Combined;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.58,
+ E0 = (112.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 6 for oxygenates for 3x3 cell size from "A Theoretical and Computational Analysis of Linear Free Energy Relations for the Estimation of Activation Energies" Jonathan E. Sutton, Dionisios G. Vlachos, ACS Catal., 2012, 2, 1624-1634, DOI:10.1021/cs3003269.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+entry(
+ index = 2,
+ label = "C-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.58,
+ E0 = (112.9, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 6 for oxygenates for 3x3 cell size from "A Theoretical and Computational Analysis of Linear Free Energy Relations for the Estimation of Activation Energies" Jonathan E. Sutton, Dionisios G. Vlachos, ACS Catal., 2012, 2, 1624-1634, DOI:10.1021/cs3003269.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+entry(
+ index = 3,
+ label = "O-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0.,
+ alpha =0.26,
+ E0 = (73.3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation_Beta_vdW/template.cdx b/input/kinetics/families/Surface_Dissociation_Beta_vdW/template.cdx
new file mode 100755
index 0000000000..f4de7968e2
Binary files /dev/null and b/input/kinetics/families/Surface_Dissociation_Beta_vdW/template.cdx differ
diff --git a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.eps b/input/kinetics/families/Surface_Dissociation_Beta_vdW/template.eps
old mode 100644
new mode 100755
similarity index 86%
rename from input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.eps
rename to input/kinetics/families/Surface_Dissociation_Beta_vdW/template.eps
index 66dbef8367..0983658874
--- a/input/kinetics/families/Surface_Adsorption_Abstraction_vdW/template.eps
+++ b/input/kinetics/families/Surface_Dissociation_Beta_vdW/template.eps
@@ -1,706 +1,640 @@
-%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: ChemDraw 17.1.0.105
-%%Title: template.eps
-%%CreationDate: 12/6/2019 11:26 AM
-%%DocumentSuppliedProcSets: chemdict30 24 13
-%%DocumentFonts: Helvetica Helvetica Times-Roman
-%%BoundingBox: 121 341 439 390
-%%DocumentProcessColors: Cyan Magenta Yellow Black
-%%EndComments
-%%BeginProcSet: chemdict30 24 13
-% ChemDraw Laser Prep
-% 1985-2018 PerkinElmer Informatics, Inc. All rights reserved.
-userdict/chemdict30 210 dict put
-chemdict30 begin/version 24 def/sv 13 def
-/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
-/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
-/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
-/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
-/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
-/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
-/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
-/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
-/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
-/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
-/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
-/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
-/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
-/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
-/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
-/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
-/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
-/C{Wd rot Wd rot Wd rot setrgbcolor}b
-/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
- gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
-bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
-/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
-x}b
-/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
-/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
-8 m sl st}ie}b
-/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
-r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
-/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
-/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
-/B{bs N rot put/N N 1 a d}b
-/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
-/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-0 cw 2 dv xl
-aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
-aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
-St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
-St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
-St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
-St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
-St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
-np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
-xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
-/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
-e s o o at ro D m e D m a sq}b
-/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
-/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
-/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
-180 arc 0 cw -2 dv rl cp f}b
-/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
- rad 0 l gs Ast gr}b
-/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
-P P}{sq at 2
-m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
-e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
-/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
- .35 dv w 2 m M 0 0
-l w .35 dv w -2 m l st}b
-/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
-w n l w 2 m D n l cp st}b
-/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
-{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
-DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
-HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
-DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
-OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
-{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
-OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
-AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
-gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
-/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
-/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
-21 -10 27 -8 27 0 cv
-27 8 21 10 9 6 cv
--3 2 -3 -2 9 -6 cv
-cp}b/DLB{0 0 M
-0 0 -9.51 9.65 -9.51 18.02 cv
--9.51 23.22 -6.75 27 0 27 cv
-6.75 27 9.51 23.22 9.51 18.02 cv
-9.51 9.65 0 0 0 0 cv
-cp}b/ZLB{LB}b
-/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
-/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-0 0 0 Y rO ac
-cp}b/Rc{0 0 M
-0 Y l
-X Y l
-X 0 l
-cp
-}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
-currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
-setrgbcolor}b/gS{dtransform CMT idtransform
-m D 0 lt{n}if sq n D
-CMT dtransform idtransform
-e 2 m e
-xl
-7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-13.5 0 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv
-gS
--13.5 0 xl
-LB f
-gr}for
-LB SM st}{LB grf}ie}b/gOv{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv 0.65 m D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b
-/gDLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-0 13.5 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv e
-gS
-0 -13.5 xl
-DLB f
-gr}for
-DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rr f
-gr}for
-Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rc f
-gr}for
-Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
- rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
-rev{1 -1 sc}if
-gs
-0 lW 2 m xl
-D SA OA
-gr
-rad 0 xl
-180 ro
-0 lW 2 m xl
-SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
-gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
-D stringwidth P 2 dv D 1 a/rad x
-n 0 M show gr
-rad 2 s -5 M
-rad n -5 rad n 1 2 ac
-rad n 1 rad 1 2 ac
-rad 1 rad -5 2 ac
-rad -5 rad n -5 2 ac
-cp Ast}b/Ar{D 39 lt{Ar1}
-{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
-o 0 lt o 0 lt ne/rev x
-D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
-if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M 0 0 l 0 Y l lp Y l
-X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M
-0 0 0 Y lp ac
-0 Y 2 dv lp neg o lp ac
-0 Y 2 dv 0 Y lp ac
-0 Y lp Y lp ac
-X lp s 0 M
-X 0 X Y lp ac
-X Y 2 dv X lp a o lp ac
-X Y 2 dv X Y lp ac
-X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
-np X Y s Y 2 dv
-Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
-rO D rl
-X lW 2 dv a rO a Y lW 2 dv a rO a l
-rO lW -2 dv a Y lW 2 dv a rO a l
-lW -2 dv Y lW 2 dv a l
-0 Y l X Y l X 0 l cp f
-0 0 M
-0 Y l
-X Y l
-X 0 l cp
-SM st}{Rr SM st}{rO Y M rO rO xl
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-rO neg D xl X Y 0 Y rO ac
-cp f
-Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
-{Asc gs gLB gr
--1 -1 sc LB whf}{Asc gs gLB gr
--0.4 -0.4 sc LB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc gOv gr
-ZLB whf}{Asc gs -1 -1 sc gZLB gr
-gs 3.6 12 sc Cr whf gr
-gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
-{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
-0 -1 M
-0 0 1 0 1 ac
-8 0 8 1 1 ac
-8 0 16 0 1 ac
-16 0 16 -1 1 ac
-SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-2 0 M 0 0 2 0 360 arc
-Ast}{4.5 Aos
-1 0 M -1 0 l
-2 0 M 0 0 2 0 360 arc
-Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
-0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
-1 -1 M -1 -1 l
-0 2 M 0 -2 l
-Ast}{5 Aos
-1 -1 M -1 -1 l
-1 1 M -1 1 l
-0 2 M 0 -2 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
-gs 3.6 12 sc Cr whf gr
-ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc Cr blf gr
-ZLB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
-np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
-np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
-{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
-}e 39 s g xc gr}ie}b/DS{np M l st}b
-/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
-e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
-o length 6 gt{P 6 g}{e P 8 dv}ie
-D lW 2 m lt{P lW 2 m}if
-0 e
-0 0
-3 -1 r s 3 1 r e s e
-0 0 M 1 0 l
-0 0 ap M 1 0 ap l
-e n e n
-0 0 ap M 1 0 ap l
-P P}b/DT{gs np PT SM st gr}b
-/NH{lW s D hS dv ru
-cvi D 0 eq{P 1}if/nH x
-D hS nH m s
-D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
-/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
-bW 2 dv/bd x
-lW 2 dv e D NH e{D bd M bd n l}for
-st gr}{gs 12 OB np
-lW 2 dv 0 xl NH 1 sc
-bW 2 dv wF m nH 1 a dv/bd x
-0 1 nH
-{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp f gr}{P}{gs 12 OB/bL x
-bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
-bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
-bL nSq 2 m dv D sc
-nSq{.135 .667 .865 .667 1 0 rcurveto
-.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
-}o 1 g 1 s g e 2 4 gi al P
-5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
-/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
-/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
-np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
-g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
-/FF/CR/SO/SI
-/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
-mv 0 32 gi as P
-mv 32/Times-Roman findfont/Encoding get
-32 96 gi putinterval
-mv 39/quotesingle put
-mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
-/dagger/daggerdbl
-/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
-/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
-/emdash
-/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
-/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
-/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
-/macron
-/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
-/periodcentered
-/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
-/threequarters/questiondown
-/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
-/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
-/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
-/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
-/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
-/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
-/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
-/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
-mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
-findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
-D length dict/newdict x{
-1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
-newdict 3 1 r put}{P P}ie}forall
-newdict/Encoding mv put
-fSt 8 fSt length 8 sub gi cvs length 8 add
-fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
-/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
-64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
-D 4 -1 r e scalefont setfont m cpt P e M}b
-end
-%%EndProcSet
-
-%%EndProlog
-chemdict30 begin
-/cW 40 def
-/bW 80 def
-/lW 20 def
-/hS 54 def
-/sh true def
-731 SPe[
-/Helvetica
-fD
-/Helvetica
-fD
-/Times-Roman
-fD]/ft x
-2420 6820 M
-8780 6820 l
-8780 7800 l
-2420 7800 l
-cp
-clip
-np
-65535 65535 65535 sBg
-0 3618 7417 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-20 D sl/lW x
-5968 7303 M
-5262 7303 l
-st
-5406 7363 M
-6112 7363 l
-st
-gs
-20 sl
-6142 7313
-6142 7313 6142 7313 5967 7313 6142 7313 6142 7313 5942 7251 5967 7280 5967
-7313 6142 7313 5942 7251 5942 7251 4 6142 7313 129 Sp
-gr
-gs
-20 sl
-5232 7353
-5232 7353 5232 7353 5432 7415 5232 7353 5232 7353 5407 7366 5432 7415 5432
-7415 5232 7353 5407 7353 5407 7353 4 5232 7353 129 Sp
-gr
-gr
-0 4087 7729 ts
-0
-65535 65535 C
-64 10 0 tx
-(6)show
-0 10 0 tx
-(X)show
-gr
-0 4075 7128 ts
-65535 0 65535 C
-64 10 0 tx
-(4)show
-0 10 0 tx
-(R)show
-gr
-0 6470 7129 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 6482 7729 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 2479 7103 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 2728 7755 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4222 7168 M
-4242 7168 l
-4246 7504 l
-4226 7505 l
-cp
-f
-gr
-0 3081 7104 ts
-0 32896 0 C
-64 10
-1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2887 7530 M
-2867 7530 l
-2867 7482 l
-2887 7482 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2887 7433 M
-2867 7433 l
-2867 7385 l
-2887 7385 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2887 7337 M
-2867 7337 l
-2867 7288 l
-2887 7288 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0
-0 0 C
-np
-2887 7240 M
-2867 7240 l
-2867 7192 l
-2887 7192 l
-cp
-f
-gr
-gs
-20
-D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2887 7143 M
-2867 7143 l
-2867
-7101 l
-2887 7101 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6616 7168 M
-6636 7168 l
-6640 7504 l
-6620 7504 l
-cp
-f
-gr
-0 8051 7403 ts
-0
-0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-0 8508 7128 ts
-65535 0 65535 C
-64 10 0 tx
-(4)show
-0 10 0 tx
-(R)show
-gr
-0 8520 7729 ts
-0 65535 65535 C
-64 10 0 tx
-(6)show
-0 10 0 tx
-(X)show
-gr
-0 7071 7130 ts
-0 32896 0 C
-64 10 1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3048 6980 M
-3048 7000 l
-2742 6999 l
-2743 6979 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3048 7052 M
-3048 7072 l
-2742 7071 l
-2742 7051 l
-cp
-f
-gr
-0
-4682 7146 ts
-65535 32896 0 C
-64 10 1 tx
-(5)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4649 7053 M
-4648 7073 l
-4338 7063 l
-4338 7044 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7038 7042 M
-7038 7062 l
-6733 7061 l
-6733 7041 l
-cp
-f
-gr
-0
-7671 7131 ts
-65535 32896 0 C
-64 10 1 tx
-(5)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7638 7043 M
-7638 7063 l
-7334 7062 l
-7334 7042 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-8715 7504 M
-8695 7504 l
-8691 7167 l
-8711 7167 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-8643 7505 M
-8623 7505 l
-8619 7168 l
-8639 7168 l
-cp
-f
-gr
-gr
-end
-%%Trailer
-showpage
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw 18.2.0.48
+%%Title: template_Surface_dissociation_beta_vdW.eps
+%%CreationDate: 30.09.2020 10:37
+%%DocumentSuppliedProcSets: chemdict30 24 13
+%%DocumentFonts: Helvetica Times-Roman
+%%BoundingBox: 104 336 401 384
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProcSet: chemdict30 24 13
+% ChemDraw Laser Prep
+% 1985-2019 PerkinElmer Informatics, Inc. All rights reserved.
+userdict/chemdict30 210 dict put
+chemdict30 begin/version 24 def/sv 13 def
+/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
+/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
+/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
+/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
+/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
+/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
+/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
+/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
+/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
+/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
+/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
+/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
+/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
+/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
+/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
+/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
+/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
+/C{Wd rot Wd rot Wd rot setrgbcolor}b
+/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
+ gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
+bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
+/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
+x}b
+/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
+/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
+8 m sl st}ie}b
+/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
+r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
+/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
+/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
+/B{bs N rot put/N N 1 a d}b
+/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
+/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+0 cw 2 dv xl
+aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
+aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
+St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
+St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
+St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
+St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
+St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
+np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
+xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
+/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
+e s o o at ro D m e D m a sq}b
+/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
+/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
+/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
+180 arc 0 cw -2 dv rl cp f}b
+/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
+ rad 0 l gs Ast gr}b
+/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
+P P}{sq at 2
+m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
+e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
+/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
+ .35 dv w 2 m M 0 0
+l w .35 dv w -2 m l st}b
+/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
+w n l w 2 m D n l cp st}b
+/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
+{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
+DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
+HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
+DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
+OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
+{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
+OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
+AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
+gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
+/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
+/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
+21 -10 27 -8 27 0 cv
+27 8 21 10 9 6 cv
+-3 2 -3 -2 9 -6 cv
+cp}b/DLB{0 0 M
+0 0 -9.51 9.65 -9.51 18.02 cv
+-9.51 23.22 -6.75 27 0 27 cv
+6.75 27 9.51 23.22 9.51 18.02 cv
+9.51 9.65 0 0 0 0 cv
+cp}b/ZLB{LB}b
+/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
+/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+0 0 0 Y rO ac
+cp}b/Rc{0 0 M
+0 Y l
+X Y l
+X 0 l
+cp}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
+currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
+setrgbcolor}b/gS{dtransform CMT idtransform
+m D 0 lt{n}if sq n D
+CMT dtransform idtransform
+e 2 m e
+xl
+7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+13.5 0 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv
+gS
+-13.5 0 xl
+LB f
+gr}for
+LB SM st}{LB grf}ie}b/gOv{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv 0.65 m D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b
+/gDLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+0 13.5 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv e
+gS
+0 -13.5 xl
+DLB f
+gr}for
+DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rr f
+gr}for
+Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rc f
+gr}for
+Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
+ rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
+rev{1 -1 sc}if
+gs
+0 lW 2 m xl
+D SA OA
+gr
+rad 0 xl
+180 ro
+0 lW 2 m xl
+SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
+gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
+D stringwidth P 2 dv D 1 a/rad x
+n 0 M show gr
+rad 2 s -5 M
+rad n -5 rad n 1 2 ac
+rad n 1 rad 1 2 ac
+rad 1 rad -5 2 ac
+rad -5 rad n -5 2 ac
+cp Ast}b/Ar{D 39 lt{Ar1}
+{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
+o 0 lt o 0 lt ne/rev x
+D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
+if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M 0 0 l 0 Y l lp Y l
+X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M
+0 0 0 Y lp ac
+0 Y 2 dv lp neg o lp ac
+0 Y 2 dv 0 Y lp ac
+0 Y lp Y lp ac
+X lp s 0 M
+X 0 X Y lp ac
+X Y 2 dv X lp a o lp ac
+X Y 2 dv X Y lp ac
+X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
+np X Y s Y 2 dv
+Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
+rO D rl
+X lW 2 dv a rO a Y lW 2 dv a rO a l
+rO lW -2 dv a Y lW 2 dv a rO a l
+lW -2 dv Y lW 2 dv a l
+0 Y l X Y l X 0 l cp f
+0 0 M
+0 Y l
+X Y l
+X 0 l cp
+SM st}{Rr SM st}{rO Y M rO rO xl
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+rO neg D xl X Y 0 Y rO ac
+cp f
+Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
+{Asc gs gLB gr
+-1 -1 sc LB whf}{Asc gs gLB gr
+-0.4 -0.4 sc LB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc gOv gr
+ZLB whf}{Asc gs -1 -1 sc gZLB gr
+gs 3.6 12 sc Cr whf gr
+gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
+{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
+0 -1 M
+0 0 1 0 1 ac
+8 0 8 1 1 ac
+8 0 16 0 1 ac
+16 0 16 -1 1 ac
+SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+2 0 M 0 0 2 0 360 arc
+Ast}{4.5 Aos
+1 0 M -1 0 l
+2 0 M 0 0 2 0 360 arc
+Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
+0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
+1 -1 M -1 -1 l
+0 2 M 0 -2 l
+Ast}{5 Aos
+1 -1 M -1 -1 l
+1 1 M -1 1 l
+0 2 M 0 -2 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
+gs 3.6 12 sc Cr whf gr
+ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc Cr blf gr
+ZLB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
+np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
+np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
+{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
+}e 39 s g xc gr}ie}b/DS{np M l st}b
+/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
+e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
+o length 6 gt{P 6 g}{e P 8 dv}ie
+D lW 2 m lt{P lW 2 m}if
+0 e
+0 0
+3 -1 r s 3 1 r e s e
+0 0 M 1 0 l
+0 0 ap M 1 0 ap l
+e n e n
+0 0 ap M 1 0 ap l
+P P}b/DT{gs np PT SM st gr}b
+/NH{lW s D hS dv ru
+cvi D 0 eq{P 1}if/nH x
+D hS nH m s
+D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
+/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
+bW 2 dv/bd x
+lW 2 dv e D NH e{D bd M bd n l}for
+st gr}{gs 12 OB np
+lW 2 dv 0 xl NH 1 sc
+bW 2 dv wF m nH 1 a dv/bd x
+0 1 nH
+{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp f gr}{P}{gs 12 OB/bL x
+bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
+bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
+bL nSq 2 m dv D sc
+nSq{.135 .667 .865 .667 1 0 rcurveto
+.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
+}o 1 g 1 s g e 2 4 gi al P
+5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
+/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
+/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
+np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
+g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
+/FF/CR/SO/SI
+/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
+mv 0 32 gi as P
+mv 32/Times-Roman findfont/Encoding get
+32 96 gi putinterval
+mv 39/quotesingle put
+mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
+/dagger/daggerdbl
+/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
+/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
+/emdash
+/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
+/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
+/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
+/macron
+/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
+/periodcentered
+/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
+/threequarters/questiondown
+/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
+mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
+findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
+D length dict/newdict x{
+1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
+newdict 3 1 r put}{P P}ie}forall
+newdict/Encoding mv put
+fSt 8 fSt length 8 sub gi cvs length 8 add
+fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
+/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
+64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
+D 4 -1 r e scalefont setfont m cpt P e M}b
+end
+%%EndProcSet
+
+%%EndProlog
+chemdict30 begin
+/cW 40 def
+/bW 80 def
+/lW 20 def
+/hS 54 def
+/sh true def
+720 SPe[
+/Helvetica
+fD
+/Times-Roman
+fD]/ft x
+2080 6720 M
+8020 6720 l
+8020 7680 l
+2080 7680 l
+cp
+clip
+np
+65535 65535 65535 sBg
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+20 D sl/lW x
+5577
+7156 M
+4871 7156 l
+st
+5015 7216 M
+5721 7216 l
+st
+gs
+20 sl
+5751 7166
+5751 7166 5751 7166 5576 7166 5751 7166 5751 7166 5551 7104 5576 7133 5576
+7166 5751 7166 5551 7104 5551 7104 4 5751 7166 129 Sp
+gr
+gs
+20 sl
+4841
+7206 4841 7206 4841 7206 5041 7268 4841 7206 4841 7206 5016 7219 5041 7268
+5041 7268 4841 7206 5016 7206 5016 7206 4 4841 7206 129 Sp
+gr
+gr
+0 4084
+7600 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+0 2354 7000 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 3603 7563 ts
+0 0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 2132 7600 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2292
+7376 M
+2272 7376 l
+2272 7040 l
+2292 7040 l
+cp
+f
+gr
+0 7058 7563 ts
+0
+0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 6302 7606 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+0 7743 7600 ts
+65535 32896 0 C
+64 10 0 tx
+(5)show
+0 10 0 tx
+(X)show
+gr
+0 7738 7000 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+7903
+7377 M
+7883 7377 l
+7884 7040 l
+7904 7040 l
+cp
+f
+gr
+0 6524 7006 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 6775 7006 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6740
+6889 M
+6740 6909 l
+6559 6909 l
+6559 6889 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6740 6947 M
+6740 6967 l
+6559 6967 l
+6559 6947 l
+cp
+f
+gr
+0 2607 7000 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+0 3042 7000 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+3009
+6912 M
+3009 6932 l
+2870 6932 l
+2870 6912 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2572 6912 M
+2572 6932 l
+2389 6932 l
+2389 6912 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0
+0 C
+np
+6442 7046 M
+6462 7046 l
+6462 7094 l
+6442 7094 l
+cp
+f
+gr
+gs
+20
+D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6442 7142 M
+6462 7142
+l
+6462 7190 l
+6442 7190 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6441 7238 M
+6461 7238 l
+6461 7286 l
+6441 7286 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6441
+7334 M
+6461 7334 l
+6461 7382 l
+6441 7382 l
+cp
+f
+gr
+gr
+end
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_Dissociation_Beta_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Dissociation_Beta_vdW/training/dictionary.txt
new file mode 100755
index 0000000000..737e6cb089
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Beta_vdW/training/dictionary.txt
@@ -0,0 +1,136 @@
+X_5
+1 *5 X u0 p0 c0
+
+COOH*
+1 *2 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 *1 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 *3 H u0 p0 c0 {1,S}
+5 *4 X u0 p0 c0 {3,S}
+
+CO2_2*
+1 *2 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 *1 C u0 p0 c0 {1,D} {2,D}
+4 *4 X u0 p0 c0
+
+H*
+1 *5 X u0 p0 c0 {2,S}
+2 *3 H u0 p0 c0 {1,S}
+
+HCOO*
+1 *1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 *3 H u0 p0 c0 {3,S}
+5 *4 X u0 p0 c0 {1,S}
+
+CO2*
+1 *1 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,D} {2,D}
+4 *4 X u0 p0 c0
+
+HCOOH*
+1 O u0 p2 c0 {3,S} {5,S}
+2 *1 O u0 p2 c0 {3,D}
+3 *2 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+6 *4 X u0 p0 c0
+
+CH3O2_2*
+1 O u0 p2 c0 {3,S} {6,S}
+2 *1 O u0 p2 c0 {3,S} {7,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 *3 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *4 X u0 p0 c0 {2,S}
+
+CH3O2*
+1 *3 O u0 p2 c0 {3,S} {6,S}
+2 *1 O u0 p2 c0 {3,S} {7,S}
+3 *2 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+7 *4 X u0 p0 c0 {2,S}
+
+CH2O*
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 X u0 p0 c0
+
+OH*
+1 *3 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *5 X u0 p0 c0 {1,S}
+
+CH3O_1*
+1 *1 O u0 p2 c0 {2,S} {6,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 *3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *4 X u0 p0 c0 {1,S}
+
+CH2O_2*
+1 *2 O u0 p2 c0 {2,D}
+2 *1 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *4 X u0 p0 c0
+
+CH2OH*
+1 *2 O u0 p2 c0 {2,S} {5,S}
+2 *1 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 *3 H u0 p0 c0 {1,S}
+6 *4 X u0 p0 c0 {2,S}
+
+CH3O_5*
+1 *3 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *5 X u0 p0 c0 {1,S}
+
+H2COOCH3*
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 *3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *4 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
+
+HCOOCH3*
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,S} {5,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *4 X u0 p0 c0
+
+H2COOCH3_2*
+1 *1 O u0 p2 c0 {2,S} {9,S}
+2 *2 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+3 O u0 p2 c0 {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 *3 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 *4 X u0 p0 c0 {1,S}
+10 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/training/reactions.py b/input/kinetics/families/Surface_Dissociation_Beta_vdW/training/reactions.py
old mode 100644
new mode 100755
similarity index 87%
rename from input/kinetics/families/Surface_Addition_Single_vdW/training/reactions.py
rename to input/kinetics/families/Surface_Dissociation_Beta_vdW/training/reactions.py
index 899ab3d04d..e9fadc4791
--- a/input/kinetics/families/Surface_Addition_Single_vdW/training/reactions.py
+++ b/input/kinetics/families/Surface_Dissociation_Beta_vdW/training/reactions.py
@@ -1,38 +1,14 @@
#!/usr/bin/env python
# encoding: utf-8
-name = "Surface_Addition_Single_vdW/training"
+name = "Surface_Dissociation_Beta_vdW/training"
shortDesc = u"Reaction kinetics used to generate rate rules"
longDesc = u"""
Put kinetic parameters for specific reactions in this file to use as a
training set for generating rate rules to populate this kinetics family.
"""
-# entry(
-# index = 11,
-# label = "COOH* + X_5 <=> CO2_2* + H*",
-# degeneracy = 2,
-# kinetics = SurfaceArrhenius(
-# A = (8.028e17, 'm^2/(mol*s)'),
-# n = 0.,
-# Ea = (1.23, 'eV/molecule'),
-# Tmin = (298, 'K'),
-# Tmax = (2000, 'K'),
-# ),
-# rank = 10,
-# shortDesc = u"""Default""",
-# longDesc = u"""
-# Reaction 11 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-# and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
-
-# A factor from paper / surface site density of Cu
-# 2.3626e13 1/s / 2.943e‐5 mol/m^2 = 8.028e17 m^2/(mol*s)
-# """,
-# metal = "Cu",
-# )
-
-#reverse of 11
-# in the forward direction of family direction
+# in the reverse direction of family direction
entry(
index = 45,
label = "CO2_2* + H* <=> COOH* + X_5",
@@ -54,6 +30,7 @@
metal = "Ni",
)
+# in the reverse direction of family direction
entry(
index = 17,
label = "CO2* + H* <=> HCOO* + X_5",
@@ -77,6 +54,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 20,
label = "HCOOH* + H* <=> CH3O2_2* + X_5",
@@ -100,6 +78,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 23,
label = "CH2O* + OH* <=> CH3O2* + X_5",
@@ -125,6 +104,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 24,
label = "CH2O* + H* <=> CH3O_1* + X_5",
@@ -149,6 +129,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 31,
label = "CH2O_2* + H* <=> CH2OH* + X_5",
@@ -173,6 +154,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 47,
label = "CH3O_5* + CH2O* <=> H2COOCH3* + X_5",
@@ -197,6 +179,7 @@
metal = "Cu",
)
+# in the reverse direction of family direction
entry(
index = 48,
label = "HCOOCH3* + H* <=> H2COOCH3_2* + X_5",
@@ -219,4 +202,4 @@
Erxn = 0.01 eV
""",
metal = "Cu",
-)
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation_Double/groups.py b/input/kinetics/families/Surface_Dissociation_Double/groups.py
new file mode 100755
index 0000000000..530f873a46
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Double/groups.py
@@ -0,0 +1,124 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Dissociation_Double/groups"
+shortDesc = u""
+longDesc = u"""
+Surface bond fission of one species with a double bond into two distinct adsorbates. Atom *1 binds to the surface (*3). The image below shows a single bond, but double is also possible. What matters is that the bond between *1 and *2 must be double.
+
+ *1=*2 *1 *2
+ | ----> ||| ||
+~*3~ + ~*4~~ ~*3~ + ~*4~~
+
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m2)
+so k should be in (m2/mol/s)
+"""
+
+template(reactants=["Combined", "VacantSite"], products=["Adsorbate1", "Adsorbate2"], ownReverse=False)
+
+reverse = "Surface_Association_Double"
+
+reactantNum=2
+productNum=2
+
+recipe(actions=[
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['FORM_BOND', '*2', 1, '*4'],
+ ['CHANGE_BOND', '*2', 1, '*4'],
+ ['CHANGE_BOND', '*1', 1, '*3'],
+ ['CHANGE_BOND', '*1', 1, '*3'],
+])
+
+entry(
+ index = 1,
+ label = "Combined",
+ group =
+"""
+1 *1 R!H u0 px c0 {2,D} {3,[S,D]}
+2 *2 R!H u0 px c0 {1,D}
+3 *3 Xo u0 {1,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label="VacantSite",
+ group =
+"""
+1 *4 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 3,
+ label = "C=R",
+ group =
+"""
+1 *1 C u0 px c0 {2,D} {3,[S,D]}
+2 *2 R!H u0 px c0 {1,D}
+3 *3 Xo u0 {1,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "C=O",
+ group =
+"""
+1 *1 C u0 p0 c0 {2,D} {3,[S,D]}
+2 *2 O u0 px c0 {1,D}
+3 *3 Xo u0 p0 {1,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "C=C",
+ group =
+"""
+1 *1 C u0 p0 c0 {2,D} {3,[S,D]}
+2 *2 C u0 px c0 {1,D}
+3 *3 Xo u0 p0 {1,[S,D]}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Combined
+ L2: C=R
+ L3: C=O
+ L3: C=C
+L1: VacantSite
+"""
+)
+
+forbidden(
+ label = "AdsorbateVdW",
+ group =
+"""
+multiplicity [1]
+1 *3 Xv u0 p0 c0
+2 *2 R!H ux px cx {3,D}
+3 *1 R!H ux px cx {2,D}
+"""
+)
+
+forbidden(
+ label = "Bidentate",
+ group =
+"""
+1 *1 R!H u0 px c0 {2,D} {3,[S,D]}
+2 *2 R!H u0 px c0 {1,D}
+3 *3 Xo u0 {1,[S,D]}
+4 Xo u0
+""",
+)
diff --git a/input/kinetics/families/Surface_Dissociation_Double/rules.py b/input/kinetics/families/Surface_Dissociation_Double/rules.py
new file mode 100755
index 0000000000..079ceeb00a
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Double/rules.py
@@ -0,0 +1,65 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Dissociation_Double/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+entry(
+ index = 1,
+ label = "Combined;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.84,
+ E0 = (185.1, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from:
+"Universal Brønsted-Evans-Polanyi Relations for C–C, C–O, C–N, N–O, N–N, and O–O Dissociation Reactions" by Wang, ..., Norskov/ Catal. Lett (2011) 141:370-373, DOI: 10.1007/s10562-010-0477-y
+(actual value for E0 was 1.92 eV.)
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 2,
+ label = "C=O;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.77,
+ E0 = (142.8, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for Pt from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+"""
+)
+
+entry(
+ index = 3,
+ label = "C=C;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.72,
+ E0 = (126.4, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for Pt from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
diff --git a/input/kinetics/families/Surface_Dissociation_Double/template.cdx b/input/kinetics/families/Surface_Dissociation_Double/template.cdx
new file mode 100755
index 0000000000..3ca6a57a3f
Binary files /dev/null and b/input/kinetics/families/Surface_Dissociation_Double/template.cdx differ
diff --git a/input/kinetics/families/Surface_Addition_Single_vdW/template.eps b/input/kinetics/families/Surface_Dissociation_Double/template.eps
old mode 100644
new mode 100755
similarity index 87%
rename from input/kinetics/families/Surface_Addition_Single_vdW/template.eps
rename to input/kinetics/families/Surface_Dissociation_Double/template.eps
index d04cc48ac3..9a7953f09f
--- a/input/kinetics/families/Surface_Addition_Single_vdW/template.eps
+++ b/input/kinetics/families/Surface_Dissociation_Double/template.eps
@@ -1,648 +1,597 @@
-%!PS-Adobe-2.0 EPSF-1.2
-%%Creator: ChemDraw 17.1.0.105
-%%Title: template.eps
-%%CreationDate: 12/6/2019 11:23 AM
-%%DocumentSuppliedProcSets: chemdict30 24 13
-%%DocumentFonts: Helvetica Helvetica Times-Roman
-%%BoundingBox: 121 347 447 398
-%%DocumentProcessColors: Cyan Magenta Yellow Black
-%%EndComments
-%%BeginProcSet: chemdict30 24 13
-% ChemDraw Laser Prep
-% 1985-2018 PerkinElmer Informatics, Inc. All rights reserved.
-userdict/chemdict30 210 dict put
-chemdict30 begin/version 24 def/sv 13 def
-/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
-/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
-/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
-/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
-/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
-/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
-/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
-/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
-/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
-/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
-/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
-/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
-/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
-/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
-/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
-/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
-/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
-/C{Wd rot Wd rot Wd rot setrgbcolor}b
-/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
- gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
-bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
-/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
-x}b
-/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
-/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
-8 m sl st}ie}b
-/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
-r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
-/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
-/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
-/B{bs N rot put/N N 1 a d}b
-/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
-/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
-0 cw 2 dv xl
-aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
-aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
-St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
-St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
-St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
-St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
-St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
-np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
-xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
-/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
-e s o o at ro D m e D m a sq}b
-/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
-/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
-/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
-180 arc 0 cw -2 dv rl cp f}b
-/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
- rad 0 l gs Ast gr}b
-/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
-P P}{sq at 2
-m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
-e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
-/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
- .35 dv w 2 m M 0 0
-l w .35 dv w -2 m l st}b
-/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
-w n l w 2 m D n l cp st}b
-/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
-{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
-DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
-HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
-DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
-OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
-{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
-OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
-AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
-gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
-/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
-/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
-21 -10 27 -8 27 0 cv
-27 8 21 10 9 6 cv
--3 2 -3 -2 9 -6 cv
-cp}b/DLB{0 0 M
-0 0 -9.51 9.65 -9.51 18.02 cv
--9.51 23.22 -6.75 27 0 27 cv
-6.75 27 9.51 23.22 9.51 18.02 cv
-9.51 9.65 0 0 0 0 cv
-cp}b/ZLB{LB}b
-/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
-/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-0 0 0 Y rO ac
-cp}b/Rc{0 0 M
-0 Y l
-X Y l
-X 0 l
-cp
-}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
-currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
-setrgbcolor}b/gS{dtransform CMT idtransform
-m D 0 lt{n}if sq n D
-CMT dtransform idtransform
-e 2 m e
-xl
-7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-13.5 0 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv
-gS
--13.5 0 xl
-LB f
-gr}for
-LB SM st}{LB grf}ie}b/gOv{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv 0.65 m D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-D 32 s 64 dv D
-gS
-Cr f
-gr}for
-Cr SM st}{Cr grf}ie}b
-/gDLB{sh{sRmp
-32 -0.5 0.5{gs
-gG
-0 13.5 xl
-D 32 s 64 dv 13.5 m D 7 m 24 dv e
-gS
-0 -13.5 xl
-DLB f
-gr}for
-DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rr f
-gr}for
-Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
-32 -0.5 0.5{gs
-gG
-X 2 dv Y 2 dv xl
-D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
-gS
-X -2 dv Y -2 dv xl
-Rc f
-gr}for
-Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
- rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
-rev{1 -1 sc}if
-gs
-0 lW 2 m xl
-D SA OA
-gr
-rad 0 xl
-180 ro
-0 lW 2 m xl
-SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
-gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
-D stringwidth P 2 dv D 1 a/rad x
-n 0 M show gr
-rad 2 s -5 M
-rad n -5 rad n 1 2 ac
-rad n 1 rad 1 2 ac
-rad 1 rad -5 2 ac
-rad -5 rad n -5 2 ac
-cp Ast}b/Ar{D 39 lt{Ar1}
-{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
-o 0 lt o 0 lt ne/rev x
-D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
-if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M 0 0 l 0 Y l lp Y l
-X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
-lp 0 M
-0 0 0 Y lp ac
-0 Y 2 dv lp neg o lp ac
-0 Y 2 dv 0 Y lp ac
-0 Y lp Y lp ac
-X lp s 0 M
-X 0 X Y lp ac
-X Y 2 dv X lp a o lp ac
-X Y 2 dv X Y lp ac
-X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
-np X Y s Y 2 dv
-Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
-rO D rl
-X lW 2 dv a rO a Y lW 2 dv a rO a l
-rO lW -2 dv a Y lW 2 dv a rO a l
-lW -2 dv Y lW 2 dv a l
-0 Y l X Y l X 0 l cp f
-0 0 M
-0 Y l
-X Y l
-X 0 l cp
-SM st}{Rr SM st}{rO Y M rO rO xl
-0 Y X Y rO ac
-X Y X 0 rO ac
-X 0 0 0 rO ac
-rO neg D xl X Y 0 Y rO ac
-cp f
-Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
-{Asc gs gLB gr
--1 -1 sc LB whf}{Asc gs gLB gr
--0.4 -0.4 sc LB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc gOv gr
-ZLB whf}{Asc gs -1 -1 sc gZLB gr
-gs 3.6 12 sc Cr whf gr
-gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
-{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
-0 -1 M
-0 0 1 0 1 ac
-8 0 8 1 1 ac
-8 0 16 0 1 ac
-16 0 16 -1 1 ac
-SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{XY D X Y dt 0 0 M SM cpt xl
-2 dv D sc
-1 0 M -1 0 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-2 0 M 0 0 2 0 360 arc
-Ast}{4.5 Aos
-1 0 M -1 0 l
-2 0 M 0 0 2 0 360 arc
-Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
-0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
-1 -1 M -1 -1 l
-0 2 M 0 -2 l
-Ast}{5 Aos
-1 -1 M -1 -1 l
-1 1 M -1 1 l
-0 2 M 0 -2 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-0 1 M 0 -1 l
-Ast}{4.5 Aos
-1 0 M -1 0 l
-Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
-np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
-gs 3.6 12 sc Cr whf gr
-ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
-gs 3.6 12 sc Cr blf gr
-ZLB whf}{Asc LB gs whf gr
-np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
-np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
-np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
-{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
-}e 39 s g xc gr}ie}b/DS{np M l st}b
-/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
-e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
-o length 6 gt{P 6 g}{e P 8 dv}ie
-D lW 2 m lt{P lW 2 m}if
-0 e
-0 0
-3 -1 r s 3 1 r e s e
-0 0 M 1 0 l
-0 0 ap M 1 0 ap l
-e n e n
-0 0 ap M 1 0 ap l
-P P}b/DT{gs np PT SM st gr}b
-/NH{lW s D hS dv ru
-cvi D 0 eq{P 1}if/nH x
-D hS nH m s
-D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
-/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
-bW 2 dv/bd x
-lW 2 dv e D NH e{D bd M bd n l}for
-st gr}{gs 12 OB np
-lW 2 dv 0 xl NH 1 sc
-bW 2 dv wF m nH 1 a dv/bd x
-0 1 nH
-{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp f gr}{P}{gs 12 OB/bL x
-bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
-bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
-bL nSq 2 m dv D sc
-nSq{.135 .667 .865 .667 1 0 rcurveto
-.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
-np 0 lW 2 dv o o n M l bW 2 dv
-wF m o o l n l
-cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
-}o 1 g 1 s g e 2 4 gi al P
-5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
-/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
-/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
-np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
-g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
-/FF/CR/SO/SI
-/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
-mv 0 32 gi as P
-mv 32/Times-Roman findfont/Encoding get
-32 96 gi putinterval
-mv 39/quotesingle put
-mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
-/dagger/daggerdbl
-/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
-/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
-/emdash
-/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
-/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
-/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
-/macron
-/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
-/periodcentered
-/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
-/threequarters/questiondown
-/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
-/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
-/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
-/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
-/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
-/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
-/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
-/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
-mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
-findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
-D length dict/newdict x{
-1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
-newdict 3 1 r put}{P P}ie}forall
-newdict/Encoding mv put
-fSt 8 fSt length 8 sub gi cvs length 8 add
-fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
-/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
-64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
-D 4 -1 r e scalefont setfont m cpt P e M}b
-end
-%%EndProcSet
-
-%%EndProlog
-chemdict30 begin
-/cW 40 def
-/bW 80 def
-/lW 20 def
-/hS 54 def
-/sh true def
-745 SPe[
-/Helvetica
-fD
-/Helvetica
-fD
-/Times-Roman
-fD]/ft x
-2420 6940 M
-8940 6940 l
-8940 7960 l
-2420 7960 l
-cp
-clip
-np
-65535 65535 65535 sBg
-0 3719 7561 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-20 D sl/lW x
-5671 7447 M
-4965 7447 l
-st
-5109 7507 M
-5815 7507 l
-st
-gs
-20 sl
-5845 7457
-5845 7457 5845 7457 5670 7457 5845 7457 5845 7457 5645 7395 5670 7424 5670
-7457 5845 7457 5645 7395 5645 7395 4 5845 7457 129 Sp
-gr
-gs
-20 sl
-4935 7497
-4935 7497 4935 7497 5135 7559 4935 7497 4935 7497 5110 7509 5135 7559 5135
-7559 4935 7497 5110 7497 5110 7497 4 4935 7497 129 Sp
-gr
-gr
-0 4288 7873 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-0 4276 7272 ts
-65535 0 65535 C
-64 10 0 tx
-(4)show
-0 10 0 tx
-(R)show
-gr
-0 6273 7272 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 6285 7872 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 2479 7228 ts
-0 0 65535 C
-64 10 0 tx
-(2)show
-0 10 0 tx
-(R)show
-gr
-0 2728 7917 ts
-65535 0 0 C
-64 10 0 tx
-(1)show
-0 10 0 tx
-(X)show
-gr
-0 3081 7229 ts
-0 32896 0 C
-64 10 1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6420 7312 M
-6440 7312 l
-6443 7648 l
-6423 7648 l
-cp
-f
-gr
-0 8116 7542 ts
-0 0 0 C
-0 12 0 tx
-0 0 0 C
-(+)show
-gr
-0 7473 7273 ts
-65535 0 65535 C
-64 10 0 tx
-(4)show
-0 10 0 tx
-(R)show
-gr
-0 8668 7873 ts
-65535 32896 0 C
-64 10 0 tx
-(5)show
-0 10 0 tx
-(X)show
-gr
-0 6874 7274 ts
-0 32896 0 C
-64 10 1 tx
-(3)show
-0 10 1 tx
-(R)show
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3048 7105 M
-3048 7125 l
-2742 7124 l
-2743 7104 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-3048 7177 M
-3048 7197 l
-2742 7196 l
-2742 7176 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2867 7257 M
-2887 7257 l
-2887 7305 l
-2867 7305 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0
-0 0 C
-np
-2867 7354 M
-2887 7354 l
-2887 7402 l
-2867 7402 l
-cp
-f
-gr
-gs
-20
-D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2867 7450 M
-2887 7450 l
-2887
-7499 l
-2867 7499 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2867 7547 M
-2887 7547 l
-2887 7595 l
-2867 7595 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40
-/cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-2867 7644 M
-2887 7644 l
-2887 7692 l
-2867
-7692 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-4423
-7312 M
-4443 7312 l
-4447 7651 l
-4427 7651 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-6841 7185 M
-6841 7205 l
-6536 7205 l
-6536 7185 l
-cp
-f
-gr
-gs
-20 D sl/lW x
-40 /cW x
-80 /bW x
-54 /hS x
-0 0 0 C
-np
-7435 7185 M
-7435 7205 l
-7137 7206 l
-7137 7186 l
-cp
-f
-gr
-gr
-end
-%%Trailer
-showpage
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw 18.2.0.48
+%%Title: template_Surface_Double.eps
+%%CreationDate: 30.09.2020 10:37
+%%DocumentSuppliedProcSets: chemdict30 24 13
+%%DocumentFonts: Helvetica Times-Roman
+%%BoundingBox: 104 336 401 384
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProcSet: chemdict30 24 13
+% ChemDraw Laser Prep
+% 1985-2019 PerkinElmer Informatics, Inc. All rights reserved.
+userdict/chemdict30 210 dict put
+chemdict30 begin/version 24 def/sv 13 def
+/b{bind def}bind def/L{load def}b/R{null def}b/d/def L/a/add L/al/aload L
+/as/astore L/at/atan L/cp/closepath L/cv/curveto L/cw/currentlinewidth L
+/cpt/currentpoint L/dv/div L/D/dup L/e/exch L/F/false L/f/fill L/fa/forall L
+/g/get L/gi/getinterval L/gr/grestore L/gs/gsave L/ie/ifelse L/ix/index L
+/l/lineto L/mt/matrix L/M/moveto L/m/mul L/n/neg L/np/newpath L/pb/pathbbox L
+/P/pop L/r/roll L/rl/rlineto L/rm/rmoveto L/ro/rotate L/rp/repeat L
+/ru/round L/sc/scale L/sl/setlinewidth L/sm/setmatrix L/st/stroke L
+/sp/strokepath L/sq/sqrt L/s/sub L/T/true L/tr/transform L/xl/translate L
+/xc/exec L/A R/N R/St R/X R/Y R/aL R/bL R/bS R/bd R/bs R/cX R/cY R/ch R/co R
+/fB R/fI R/fS R/fZ R/fl R/ft R/iX R/iY R/idx R/lh R/llx R/lly R/lp R/nH R
+/nSq R/newdict R/ps R/rad R/rev R/sL R/sba R/sbl R/sbs R/sn R/spa R/tB R
+/typ R/urx R/ury R/w R/wF R/xX R/xY R/rBg R/gBg R/bBg R/gry R/rDst R/gDst R
+/bDst R/cpd R/Aeq R/Ath R/Aos R/Ach R/ed R/sf 20 d/cW 20 d/lW 20 d/bW 75 d
+/wF 1.5 d/aF 11.875 d/aR 0.263 d/aA 50 d/hS 54 d/pA 32 d/sh F d/S{sf m}b
+/dL{[hS] 0 setdash}b/o{1 ix}b/rot{3 -1 r}b/x{e d}b/CMT mt d/TM mt d
+/SM{CMT sm}b/XY{X D m Y D m a sq}b/s1 1 string d/fp{T charpath flattenpath}b
+/p{tr ru 0.25 a e ru 0.25 a e itransform}b/Wd{65536. dv}b
+/C{Wd rot Wd rot Wd rot setrgbcolor}b
+/setcmykcolor where{P/sk/setcmykcolor L}{/sk{4 1 r 3{3 ix a D 0 lt{P 0}if D 1\
+ gt{P 1}if 1 e s 3 1 r}rp setrgbcolor P}b}ie/sg{D currenthsbcolor P rot seths\
+bcolor currenthsbcolor e P e P o s D m .001 gt{setgray}{P}ie}b
+/sBg{65535 dv/bBg x 65535 dv/gBg x 65535 dv/rBg
+x}b
+/sRmp{currentrgbcolor bBg e s/bDst x gBg e s/gDst x rBg e s/rDst x}b
+/dD{np 2 1 r 4 2 r xl 2 dv D sc -1 0 M 0 -1 l 1 0 l 0 1 l cp SM 0 ne{f}{lW 0.\
+8 m sl st}ie}b
+/dM{gs np 3 1 r xl D sc 0 4 M 0 -8 rl 3.5 2 rm -7 4 rl 0 -4 rm 7 4 rl SM st g\
+r}b/dQ{gs np 0 360 arc 0.5 sg f gr}b
+/dR{lW 0.8 m sl 2 ix s/Y x 2 ix s/X x xl Rr SM st}b
+/dT{fp pb 3 1 r s 3 2 r s 2 1 r rm f}b/N 0 d/db{array/bs x/N 0 d}b
+/B{bs N rot put/N N 1 a d}b
+/SpA{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+aR aL m n D aL a 0 M 0 o n aA n aA arc cp f gr}b
+/SpH{gs np o o xl rot s e rot s o 0 ne o 0 ne or{at ro}{P P}ie
+0 cw 2 dv xl
+aR aL m n D aL a 0 M 0 o n aA n 0 arc cp f gr}b/Sp{/St x 0.316/aR x gs
+aF lW m 0.8 m St 4 and 0 ne{bW m lW dv bW sl}if/aL x
+St 8 and 0 ne{8 ix 8 ix 3 ix 3 ix SpA}if
+St 16 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpA}if
+St 32 and 0 ne{8 ix 8 ix 3 ix 3 ix SpH}if
+St 64 and 0 ne{2 ix 6 m 1 a D ix e D ix e D ix e D ix e P SpH}if
+St 2 and 0 ne{St 4 and 0 ne{[hS bW m lW dv] 0 setdash}{dL}ie}if
+np M{cv}rp St 128 and 0 ne{f}{st}ie gr}b/Ha{gs np 3 1 r
+xl D sc -.7 1.4 M 0.7 1.4 l -.7 2.4 M 0.7 2.4 l SM st gr}b
+/OP{3 ix 3 ix xl 3 -1 r s 3 1 r
+e s o o at ro D m e D m a sq}b
+/OB{/bS x OP D bS dv D lW 2 m lt{P lW 2 m}if/bd x}b
+/DA{np 0 0 M aL 0 aR aL m 180 aA s 180 aA a arc cp f}b
+/OA{np 0 cw -2 dv M aL 0 aR aL m 180 aA s
+180 arc 0 cw -2 dv rl cp f}b
+/Ast{SM cw 0.8 m sl st}b/SA{aF m lW m/aL x 0.263/aR x aL 1 aR s m np 0 M
+ rad 0 l gs Ast gr}b
+/CA{aF lW m 0.8 m/aL x 0.316/aR x aL 1 aR s m 2 dv rad D m o D m s D 0 le{P
+P P}{sq at 2
+m np rad 0 rad 180 6 -1 r s 180 6 -1 r s arc gs Ast gr cpt
+e at ro}ie}b/AA{np rad 0 rad 180 180 6 -1 r a arc gs SM st gr}b
+/RA{lW m/w x np rad w M w .7 dv w l rad w n M w .7 dv w n l w
+ .35 dv w 2 m M 0 0
+l w .35 dv w -2 m l st}b
+/HA{lW m/w x np 0 0 M w 2 m D l w 2 m w l rad w l rad w n l w 2 m
+w n l w 2 m D n l cp st}b
+/Ar1{gs 5 1 r OP/rad x{{2.25 SA DA}{1.5 SA DA}{1 SA DA}{lW 4 m sl 4.5 SA DA}
+{lW 4 m sl 3 SA DA}{lW 4 m sl 2 SA
+DA}{270 CA DA}{180 CA DA}{120 CA DA}{90 CA DA}{2.5 RA}{2.5
+HA}{1 -1 sc 270 CA DA}{1 -1 sc 180 CA DA}{1 -1 sc 120 CA DA}{1 -1 sc 90 CA
+DA}{5 RA}{5 HA}{dL 2.25 SA DA}{dL 1.5 SA DA}{dL 1 SA DA}{2.25 SA OA}{1.5 SA
+OA}{1 SA OA}{1 -1 sc 2.25 SA OA}{1 -1 sc 1.5 SA OA}
+{1 -1 sc 1 SA OA}{270 CA OA}{180 CA OA}{120 CA OA}{90 CA OA}{1 -1 sc 270 CA
+OA}{1 -1 sc 180 CA OA}{1 -1 sc 120 CA OA}{1 -1 sc 90 CA OA}{1 -1 sc 270
+AA}{1 -1 sc 180 AA}{1 -1 sc 120 AA}{1 -1 sc 90 AA}}e g xc
+gr}b/ac{arcto 4{P}rp}b/rO{4 cw m}b/Cr{0 0 1 0 360 arc}b/Ac{XY D sc Cr SM}b
+/OrA{Y X at ro XY D rev{neg}if sc}b/Ov{OrA 1 0.4 sc Cr SM}b
+/Asc{OrA 1 27 dv D sc}b/LB{9 -6 M
+21 -10 27 -8 27 0 cv
+27 8 21 10 9 6 cv
+-3 2 -3 -2 9 -6 cv
+cp}b/DLB{0 0 M
+0 0 -9.51 9.65 -9.51 18.02 cv
+-9.51 23.22 -6.75 27 0 27 cv
+6.75 27 9.51 23.22 9.51 18.02 cv
+9.51 9.65 0 0 0 0 cv
+cp}b/ZLB{LB}b
+/dt{gs np M SM cpt np rot 4.5 dv 0 360 arc f gr}b
+/whf{gs 1 setgray f gr SM st}b/blf{gs f gr SM st}b/Rr{0 rO M
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+0 0 0 Y rO ac
+cp}b/Rc{0 0 M
+0 Y l
+X Y l
+X 0 l
+cp}b/grf{gs 0.5 sg f gr SM st}b/gG{D 32 dv D m 1 e s/gry x
+currentrgbcolor bDst gry m a 3 1 r gDst gry m a 3 1 r rDst gry m a 3 1 r
+setrgbcolor}b/gS{dtransform CMT idtransform
+m D 0 lt{n}if sq n D
+CMT dtransform idtransform
+e 2 m e
+xl
+7 m 32 a 256 dv D sc}b/gLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+13.5 0 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv
+gS
+-13.5 0 xl
+LB f
+gr}for
+LB SM st}{LB grf}ie}b/gOv{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv 0.65 m D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b/gAc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+D 32 s 64 dv D
+gS
+Cr f
+gr}for
+Cr SM st}{Cr grf}ie}b
+/gDLB{sh{sRmp
+32 -0.5 0.5{gs
+gG
+0 13.5 xl
+D 32 s 64 dv 13.5 m D 7 m 24 dv e
+gS
+0 -13.5 xl
+DLB f
+gr}for
+DLB SM st}{DLB grf}ie}b/gRr{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rr f
+gr}for
+Rr SM st}{Rr grf}ie}b/gRc{sh{sRmp
+32 -0.5 0.5{gs
+gG
+X 2 dv Y 2 dv xl
+D 32 s 64 dv X Y lt{X}{Y}ie m 0.25 m D
+gS
+X -2 dv Y -2 dv xl
+Rc f
+gr}for
+Rc SM st}{Rc grf}ie}b/gZLB{gLB}b/Ath{Y X at ro XY 2 dv/rad x gs D SA DA gr
+ rad 2 m 0 xl 180 ro SA DA}b/Aeq{Y X at ro XY/rad x
+rev{1 -1 sc}if
+gs
+0 lW 2 m xl
+D SA OA
+gr
+rad 0 xl
+180 ro
+0 lW 2 m xl
+SA OA}b/Aos{X Y M SM cpt xl XY e dv lW 1.667 m o o lt{e}if P D sc}b/Ach{5 Aos
+gs/Helvetica findfont[1 0 0 -1 0 0]makefont 5.5 scalefont setfont
+D stringwidth P 2 dv D 1 a/rad x
+n 0 M show gr
+rad 2 s -5 M
+rad n -5 rad n 1 2 ac
+rad n 1 rad 1 2 ac
+rad 1 rad -5 2 ac
+rad -5 rad n -5 2 ac
+cp Ast}b/Ar{D 39 lt{Ar1}
+{gs 5 1 r o o xl 3 -1 r e s 3 1 r s e
+o 0 lt o 0 lt ne/rev x
+D 0 lt{1 -1 sc neg}if/Y x D 0 lt{-1 1 sc neg}
+if/X x np{{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M 0 0 l 0 Y l lp Y l
+X lp s 0 M X 0 l X Y l X lp s Y l SM st}{Y 16 div D 2 S lt{P 2 S}if/lp x
+lp 0 M
+0 0 0 Y lp ac
+0 Y 2 dv lp neg o lp ac
+0 Y 2 dv 0 Y lp ac
+0 Y lp Y lp ac
+X lp s 0 M
+X 0 X Y lp ac
+X Y 2 dv X lp a o lp ac
+X Y 2 dv X Y lp ac
+X Y X lp s Y lp ac SM st}{Y D 2 dv Y 180 pA s 180 pA a arc st
+np X Y s Y 2 dv
+Y pA D neg arcn st}{Rc SM st}{X lW 2 dv a lW -2 dv M
+rO D rl
+X lW 2 dv a rO a Y lW 2 dv a rO a l
+rO lW -2 dv a Y lW 2 dv a rO a l
+lW -2 dv Y lW 2 dv a l
+0 Y l X Y l X 0 l cp f
+0 0 M
+0 Y l
+X Y l
+X 0 l cp
+SM st}{Rr SM st}{rO Y M rO rO xl
+0 Y X Y rO ac
+X Y X 0 rO ac
+X 0 0 0 rO ac
+rO neg D xl X Y 0 Y rO ac
+cp f
+Rr st}{Ac st}{OrA gAc}{Ov st}{OrA 1 .4 sc gOv}{Asc LB whf}{Asc gLB}
+{Asc gs gLB gr
+-1 -1 sc LB whf}{Asc gs gLB gr
+-0.4 -0.4 sc LB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc gLB}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro gs gDLB gr -1 -1 sc gDLB}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc gOv gr
+ZLB whf}{Asc gs -1 -1 sc gZLB gr
+gs 3.6 12 sc Cr whf gr
+gZLB}{0 0 M X Y l SM st}{bW sl 0 0 M X Y l SM st}
+{dL 0 0 M X Y l SM st}{OrA 1 16 dv D sc
+0 -1 M
+0 0 1 0 1 ac
+8 0 8 1 1 ac
+8 0 16 0 1 ac
+16 0 16 -1 1 ac
+SM st}{XY D 0 0 dt X Y dt}{XY 2 dv X Y dt}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{XY D X Y dt 0 0 M SM cpt xl
+2 dv D sc
+1 0 M -1 0 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+2 0 M 0 0 2 0 360 arc
+Ast}{4.5 Aos
+1 0 M -1 0 l
+2 0 M 0 0 2 0 360 arc
+Ast}{2.25 Ath}{1.5 Ath}{1 Ath}{2.25 Aeq}{1.5 Aeq}{1 Aeq}{OrA 1 16 dv D sc
+0 -1 M 0 0 l 16 0 l 16 -1 l SM st}{5 Aos
+1 -1 M -1 -1 l
+0 2 M 0 -2 l
+Ast}{5 Aos
+1 -1 M -1 -1 l
+1 1 M -1 1 l
+0 2 M 0 -2 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+0 1 M 0 -1 l
+Ast}{4.5 Aos
+1 0 M -1 0 l
+Ast}{gRc}{gRr}{Rc blf}{Rr blf}{Ac blf}{Ov blf}{Asc DLB -1 -1 sc DLB gs whf gr
+np 90 ro DLB -1 -1 sc DLB blf}{Asc gs -1 -1 sc ZLB blf gr
+gs 3.6 12 sc Cr whf gr
+ZLB blf}{Asc gs -1 -1 sc ZLB whf gr
+gs 3.6 12 sc Cr blf gr
+ZLB whf}{Asc LB gs whf gr
+np -0.4 -0.4 sc LB blf}{Asc LB gs f gr gs SM st gr
+np -0.4 -0.4 sc LB whf}{Asc LB blf}{Asc LB gs f gr gs SM st gr
+np -1 -1 sc LB whf}{Ac whf}{OrA gAc}{Ac blf}{Ov whf}
+{OrA 1 .4 sc gOv}{Ov blf}{(Rac)Ach}{(Abs)Ach}{(Rel)Ach}
+}e 39 s g xc gr}ie}b/DS{np M l st}b
+/DD{gs dL DS gr}b/DB{gs 12 OB bW sl np 0 0 M 0 l st gr}b/ap{e 3 ix a
+e 2 ix a}b/PT{D 2 4 gi al P OP D 1 sc
+o length 6 gt{P 6 g}{e P 8 dv}ie
+D lW 2 m lt{P lW 2 m}if
+0 e
+0 0
+3 -1 r s 3 1 r e s e
+0 0 M 1 0 l
+0 0 ap M 1 0 ap l
+e n e n
+0 0 ap M 1 0 ap l
+P P}b/DT{gs np PT SM st gr}b
+/NH{lW s D hS dv ru
+cvi D 0 eq{P 1}if/nH x
+D hS nH m s
+D 0 lt{P .1 s nH dv}{nH 2 a dv D 0 xl 2 m s nH dv}ie}b
+/Bd{D type/arraytype ne{bs e g}if{{P}{{{DS}{DD}{gs 12 OB np
+bW 2 dv/bd x
+lW 2 dv e D NH e{D bd M bd n l}for
+st gr}{gs 12 OB np
+lW 2 dv 0 xl NH 1 sc
+bW 2 dv wF m nH 1 a dv/bd x
+0 1 nH
+{D 1 a bd m o o M n l}for SM st gr}{P}{DB}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp f gr}{P}{gs 12 OB/bL x
+bW 2 dv D lW lt{P lW}if/bd x np 0 0 M
+bL bd 4 m dv ru 2 o o lt{e}if P cvi/nSq x
+bL nSq 2 m dv D sc
+nSq{.135 .667 .865 .667 1 0 rcurveto
+.135 -.667 .865 -.667 1 0 rcurveto}rp SM st gr}{gs 12 OB
+np 0 lW 2 dv o o n M l bW 2 dv
+wF m o o l n l
+cp SM lW 0.8 m sl st gr}{P}{4 2 r gs OP/rad x 1 SA DA gr}{P}
+}o 1 g 1 s g e 2 4 gi al P
+5 -1 r xc}{al P 8 ix 1 eq{DD}{DS}ie 5 -1 r 2 eq{DB}{DS}ie P}{DT}}o 0 g g xc}b
+/ed{gs cpt np cw 2 dv 0 360 arc f gr}b
+/SPe{gs 0 e xl 1 1 S dv D n sc CMT currentmatrix P lW sl 4.0 setmiterlimit
+np}b/ws{Wd 0 32 4 -1 roll widthshow}b/blank/Times-Roman findfont/CharStrings
+g/space g d/mv 256 array d/NUL/SOH/STX/ETX/EOT/ENQ/ACK/BEL/BS/HT/LF/VT
+/FF/CR/SO/SI
+/DLE/DC1/DC2/DC3/DC4/NAK/SYN/ETB/CAN/EM/SUB/ESC/FS/GS/RS/US
+mv 0 32 gi as P
+mv 32/Times-Roman findfont/Encoding get
+32 96 gi putinterval
+mv 39/quotesingle put
+mv 96/grave put/unknown/unknown/quotesinglbase/florin/quotedblbase/ellipsis
+/dagger/daggerdbl
+/circumflex/perthousand/Scaron/guilsinglleft/OE/unknown/unknown/unknown
+/unknown/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash
+/emdash
+/tilde/trademark/scaron/guilsinglright/oe/unknown/unknown/Ydieresis
+/blank/exclamdown/cent/sterling/currency/yen/brokenbar/section
+/dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered
+/macron
+/degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph
+/periodcentered
+/cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf
+/threequarters/questiondown
+/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla
+/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis
+/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply
+/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls
+/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla
+/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis
+/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide
+/oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis
+mv 128 128 gi as P/fSt 50 string d(ChemDraw)fSt copy P/fD{D/Symbol eq{
+findfont[1 0 0 -1 0 0]makefont}{D {findfont}stopped{/Helvetica findfont}if
+D length dict/newdict x{
+1 index/FID ne{1 index/FontMatrix eq{[1 0 0 -1 0 0]matrix concatmatrix}if
+newdict 3 1 r put}{P P}ie}forall
+newdict/Encoding mv put
+fSt 8 fSt length 8 sub gi cvs length 8 add
+fSt 0 rot gi cvn newdict definefont}ie}b/ts{gs xl ro 0 0 M}b
+/nl{0 e xl 0 0 M}b/tx{ft e g e sf m rot D 96 and 0 ne{
+64 and 0 ne{-0.5}{0.25}ie e 0.75 m}{P 0 e}ie
+D 4 -1 r e scalefont setfont m cpt P e M}b
+end
+%%EndProcSet
+
+%%EndProlog
+chemdict30 begin
+/cW 40 def
+/bW 80 def
+/lW 20 def
+/hS 54 def
+/sh true def
+720 SPe[
+/Helvetica
+fD
+/Times-Roman
+fD]/ft x
+2080 6720 M
+8020 6720 l
+8020 7680 l
+2080 7680 l
+cp
+clip
+np
+65535 65535 65535 sBg
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+20 D sl/lW x
+5577
+7156 M
+4871 7156 l
+st
+5015 7216 M
+5721 7216 l
+st
+gs
+20 sl
+5751 7166
+5751 7166 5751 7166 5576 7166 5751 7166 5751 7166 5551 7104 5576 7133 5576
+7166 5751 7166 5551 7104 5551 7104 4 5751 7166 129 Sp
+gr
+gs
+20 sl
+4841
+7206 4841 7206 4841 7206 5041 7268 4841 7206 4841 7206 5016 7219 5041 7268
+5041 7268 4841 7206 5016 7206 5016 7206 4 4841 7206 129 Sp
+gr
+gr
+0 4084
+7600 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+0 2354 7000 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+0 2727 7036 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2692
+6912 M
+2692 6932 l
+2389 6932 l
+2389 6912 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2692 6984 M
+2692 7004 l
+2389 7004 l
+2389 6984 l
+cp
+f
+gr
+0 3603 7563 ts
+0 0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 2132 7600 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(X)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+2292
+7376 M
+2272 7376 l
+2272 7040 l
+2292 7040 l
+cp
+f
+gr
+0 7058 7563 ts
+0
+0 0 C
+0 12 0 tx
+0 0 0 C
+(+)show
+gr
+0 6297 7600 ts
+0 32896 0 C
+64 10 0 tx
+(3)show
+0 10 0 tx
+(X)show
+gr
+0 7743 7600 ts
+65535 0 65535 C
+64 10 0 tx
+(4)show
+0 10 0 tx
+(X)show
+gr
+0 7738 7000 ts
+0 0 65535 C
+64 10 0 tx
+(2)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+7939
+7376 M
+7919 7376 l
+7920 7040 l
+7940 7040 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+7867 7376 M
+7847 7376 l
+7848 7040 l
+7868 7040 l
+cp
+f
+gr
+0 6524 7006 ts
+65535 0 0 C
+-227.856 0 M
+64 10 0 tx
+(1)show
+0 10 0 tx
+(R)show
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6529
+7376 M
+6509 7376 l
+6512 7046 l
+6532 7046 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40
+/cW x
+80 /bW x
+54 /hS x
+0 0 0 C
+np
+6458 7376 M
+6438 7376 l
+6441 7045 l
+6461 7046 l
+cp
+f
+gr
+gs
+20 D sl/lW x
+40 /cW x
+80 /bW x
+54 /hS x
+0 0
+0 C
+np
+6387 7375 M
+6367 7375 l
+6369 7045 l
+6389 7045 l
+cp
+f
+gr
+gr
+end
+
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_Dissociation_Double/training/dictionary.txt b/input/kinetics/families/Surface_Dissociation_Double/training/dictionary.txt
new file mode 100755
index 0000000000..e69de29bb2
diff --git a/input/kinetics/families/Surface_Dissociation_Double/training/reactions.py b/input/kinetics/families/Surface_Dissociation_Double/training/reactions.py
new file mode 100755
index 0000000000..e16fc6f82b
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_Double/training/reactions.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Dissociation_Double/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
diff --git a/input/kinetics/families/Surface_Dissociation_to_Bidentate/rules.py b/input/kinetics/families/Surface_Dissociation_to_Bidentate/rules.py
index f056b64ece..3d501378bf 100644
--- a/input/kinetics/families/Surface_Dissociation_to_Bidentate/rules.py
+++ b/input/kinetics/families/Surface_Dissociation_to_Bidentate/rules.py
@@ -8,21 +8,23 @@
entry(
index = 1,
- label = "Combined;VacantSite1;VacantSite2",
+ label = "Combined;VacantSite1;VacantSite2",
kinetics = SurfaceArrheniusBEP(
- A = (5.726E21, 'm^4/(mol^2*s)'),
- n = 0.0,
- alpha = 0.0824,
- E0 = (12.11, 'kcal/mol'),
+ A = (1.41E22, 'm^4/(mol^2*s)'),
+ n = 0.0,
+ alpha = 0.87,
+ E0 = (77.188, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-A and n factors are from the average rates of training reactions 1-3, and alpha and E0 are BEP
-parameters from training reactions 1-3 (in the Surface_Dissociation_to_Bidentate
-forward direction).
-The A factor has been divided by 2.33 here to account for the average degeneracy of the training reactions.
+A and n factors are from the average rates of training reactions 1-2 and reverse of 3-4, and alpha and E0 are BEP
+parameters from training reactions 1-2 and reverse of 3-4.
+
+Details on the computational method to derive the rate constants for the BEP relation are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
"""
)
diff --git a/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.cdx b/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.cdx
new file mode 100644
index 0000000000..6f17985e3b
Binary files /dev/null and b/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.cdx differ
diff --git a/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.eps b/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.eps
new file mode 100644
index 0000000000..bb0489e712
--- /dev/null
+++ b/input/kinetics/families/Surface_Dissociation_to_Bidentate/template.eps
@@ -0,0 +1,837 @@
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw
+%%CreationDate: 3/18/24
+%%BoundingBox: 0 0 294 46
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProlog
+/ellipse {7 dict begin
+ /endangle exch def
+ /startangle exch def
+ /yradius exch def
+ /xradius exch def
+ /yC exch def
+ /xC exch def
+ /savematrix matrix currentmatrix def % save current transformation matrix
+ xC yC translate % translate to center of ellipse
+ xradius yradius scale % scale by radius values
+ 0 0 1 startangle endangle arc % add arc to path
+ savematrix setmatrix % restore the transformation matrix
+end
+} def
+
+/Encoding1252
+[
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /space
+ /exclam
+ /quotedbl
+ /numbersign
+ /dollar
+ /percent
+ /ampersand
+ /quotesingle
+ /parenleft
+ /parenright
+ /asterisk
+ /plus
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ /five
+ /six
+ /seven
+ /eight
+ /nine
+ /colon
+ /semicolon
+ /less
+ /equal
+ /greater
+ /question
+ /at
+ /A
+ /B
+ /C
+ /D
+ /E
+ /F
+ /G
+ /H
+ /I
+ /J
+ /K
+ /L
+ /M
+ /N
+ /O
+ /P
+ /Q
+ /R
+ /S
+ /T
+ /U
+ /V
+ /W
+ /X
+ /Y
+ /Z
+ /bracketleft
+ /backslash
+ /bracketright
+ /asciicircum
+ /underscore
+ /grave
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ /j
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ /q
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ /z
+ /braceleft
+ /bar
+ /braceright
+ /asciitilde
+ /.notdef
+ /.notdef
+ /.notdef
+ /quotesinglbase
+ /florin
+ /quotedblbase
+ /ellipsis
+ /dagger
+ /daggerdbl
+ /circumflex
+ /perthousand
+ /Scaron
+ /guilsinglleft
+ /OE
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /quoteleft
+ /quoteright
+ /quotedblleft
+ /quotedblright
+ /bullet
+ /endash
+ /emdash
+ /tilde
+ /trademark
+ /scaron
+ /guilsinglright
+ /oe
+ /dotlessi
+ /.notdef
+ /Ydieresis
+ /.notdef
+ /exclamdown
+ /cent
+ /sterling
+ /currency
+ /yen
+ /brokenbar
+ /section
+ /dieresis
+ /copyright
+ /ordfeminine
+ /guillemotleft
+ /logicalnot
+ /guilsinglright
+ /registered
+ /macron
+ /ring
+ /plusminus
+ /twosuperior
+ /threesuperior
+ /acute
+ /mu
+ /paragraph
+ /periodcentered
+ /cedilla
+ /onesuperior
+ /ordmasculine
+ /guillemotright
+ /onequarter
+ /onehalf
+ /threequarters
+ /questiondown
+ /Agrave
+ /Aacute
+ /Acircumflex
+ /Atilde
+ /Adieresis
+ /Aring
+ /AE
+ /Ccedilla
+ /Egrave
+ /Eacute
+ /Ecircumflex
+ /Edieresis
+ /Igrave
+ /Iacute
+ /Icircumflex
+ /Idieresis
+ /Eth
+ /Ntilde
+ /Ograve
+ /Oacute
+ /Ocircumflex
+ /Otilde
+ /Odieresis
+ /multiply
+ /Oslash
+ /Ugrave
+ /Uacute
+ /Ucircumflex
+ /Udieresis
+ /Yacute
+ /Thorn
+ /germandbls
+ /agrave
+ /aacute
+ /acircumflex
+ /atilde
+ /adieresis
+ /aring
+ /ae
+ /ccedilla
+ /egrave
+ /eacute
+ /ecircumflex
+ /edieresis
+ /igrave
+ /iacute
+ /icircumflex
+ /idieresis
+ /eth
+ /ntilde
+ /ograve
+ /oacute
+ /ocircumflex
+ /otilde
+ /odieresis
+ /divide
+ /oslash
+ /ugrave
+ /uacute
+ /ucircumflex
+ /udieresis
+ /yacute
+ /thorn
+ /ydieresis
+]
+def
+
+ /reencode1252
+ {
+ findfont dup
+ length dict copy
+ dup /Encoding Encoding1252 put
+ definefont
+ } bind def
+%%EndProlog
+[1 0 0 -1 0 46] concat
+[1 0 0 1 -162 -338] concat
+[0.05 0 0 0.05 0 0] concat
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6627.11 7177.5 moveto
+5921.11 7177.5 lineto
+5921.11 7157.5 lineto
+6627.11 7157.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6065.11 7217.5 moveto
+6771.11 7217.5 lineto
+6771.11 7237.5 lineto
+6065.11 7237.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+6801.11 7177.5 moveto
+6801.11 7177.5 6626.11 7177.5 6626.11 7177.5 curveto
+6626.11 7144.75 6601.11 7115.5 6601.11 7115.5 curveto
+6601.11 7115.5 6801.11 7177.5 6801.11 7177.5 curveto
+6801.11 7177.5 6801.11 7177.5 6801.11 7177.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+5891.11 7217.5 moveto
+5891.11 7217.5 6091.11 7279.5 6091.11 7279.5 curveto
+6091.11 7279.5 6066.11 7230.25 6066.11 7217.5 curveto
+6066.11 7217.5 5891.11 7217.5 5891.11 7217.5 curveto
+5891.11 7217.5 5891.11 7217.5 5891.11 7217.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 /Helvetica reencode1252
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3297.52 7535.75] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3380.94 7607.38] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4253.76 7536.48] concat
+1 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(5) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4337.19 7608.12] concat
+1 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3298.36 6963.84] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3381.78 7035.47] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3898.36 6963.84] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3981.78 7035.47] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 3814.6 7577.65] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7446.15 6935.75] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7529.57 7007.38] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 8046.15 6935.75] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 8129.57 7007.38] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7711.48 6945.75 moveto
+7711.48 6925.75 lineto
+8010.55 6925.75 lineto
+8010.55 6945.75 lineto
+7711.48 6945.75 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7451.45 7535.75] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7534.88 7607.38] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7632 7064.96 moveto
+7652 7065.19 lineto
+7648 7407 lineto
+7628 7406.77 lineto
+7632 7064.96 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7562.18 7064.14 moveto
+7582.17 7064.37 lineto
+7578.17 7406.18 lineto
+7558.18 7405.95 lineto
+7562.18 7064.14 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 8052.31 7535.75] concat
+1 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(5) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 8135.73 7607.38] concat
+1 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+8197.25 7064.57 moveto
+8217.25 7064.77 lineto
+8213.75 7406.84 lineto
+8193.75 7406.64 lineto
+8197.25 7064.57 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3448.03 7093.48 moveto
+3468.02 7093.94 lineto
+3460.83 7406.76 lineto
+3440.83 7406.3 lineto
+3448.03 7093.48 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 5285.04 7535.53] concat
+0 1 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(6) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 5368.47 7607.16] concat
+0 1 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3563.69 6991.97 moveto
+3563.69 6971.97 lineto
+3862.75 6971.97 lineto
+3862.75 6991.97 lineto
+3563.69 6991.97 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4504.95 6981.97] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4588.37 7053.61] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+4163.75 6991.97 moveto
+4163.75 6971.97 lineto
+4470.25 6971.97 lineto
+4470.25 6991.97 lineto
+4163.75 6991.97 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 4803.24 7581.17] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 8848.36 6935.64] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 8931.78 7007.27] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 8853.66 7535.64] concat
+0 1 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(6) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 8937.08 7607.27] concat
+0 1 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 8485.83 7302.52] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+8999.3 7064.44 moveto
+9019.29 7064.67 lineto
+9015.31 7405.7 lineto
+8995.32 7405.47 lineto
+8999.3 7064.44 lineto
+closepath
+fill
+grestore
+grestore
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/dictionary.txt b/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/dictionary.txt
index 2d464c9684..89ea569960 100644
--- a/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/dictionary.txt
+++ b/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/dictionary.txt
@@ -62,3 +62,19 @@ H2CO_2X
4 *2 O u0 p2 {1,S} {6,S}
5 *4 X u0 p0 {1,S}
6 *5 X u0 p0 {4,S}
+
+XCXCH2
+1 *1 C u0 p0 {2,S} {5,T}
+2 *2 C u0 p0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 *4 X u0 p0 {1,T}
+6 *5 X u0 p0 {2,S}
+
+XCCH3
+1 *1 C u0 p0 {2,S} {6,T}
+2 *2 C u0 p0 {1,S} {3,S} {4,S} {5,S}
+3 *3 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 H u0 p0 {2,S}
+6 *4 X u0 p0 {1,T}
diff --git a/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/reactions.py b/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/reactions.py
index ebb1593251..54bf68e6e2 100644
--- a/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/reactions.py
+++ b/input/kinetics/families/Surface_Dissociation_to_Bidentate/training/reactions.py
@@ -13,16 +13,20 @@
label = "H2CCH3_X + Pt_5 + Pt_6 <=> H2CCH2_2X + H_X",
degeneracy = 3,
kinetics = SurfaceArrhenius(
- A=(1.163E20, 'm^4/(mol^2*s)'),
- n = 0.644,
- Ea=(42144.629, 'J/mol'),
+ A=(0.557E22, 'm^4/(mol^2*s)'),
+ n = 0.0,
+ Ea=(46, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank = 8,
shortDesc = u"""Deutschmann Ni""",
longDesc = u"""
-Calculated by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 3 due to the degeneracy.
""",
metal = "Pt",
)
@@ -32,16 +36,20 @@
label = "HCCH3_X + Pt_5 + Pt_6 <=> HCCH2_2X + H_X",
degeneracy = 3,
kinetics = SurfaceArrhenius(
- A=(2.057E20, 'm^4/(mol^2*s)'),
- n = 0.598,
- Ea=(45301.1, 'J/mol'),
+ A=(0.65E22, 'm^4/(mol^2*s)'),
+ n = 0.0,
+ Ea=(49, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank = 8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+A divided by 3 due to the degeneracy.
""",
metal = "Pt",
)
@@ -51,16 +59,41 @@
label = "H2CO_2X + H_X <=> H2COH_X + Pt_5 + Pt_6",
degeneracy = 1,
kinetics = SurfaceArrhenius(
- A=(4.857E16, 'm^2/(mol*s)'),
- n = 0.063,
- Ea=(28353.5, 'J/mol'),
+ A=(8.22E16, 'm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(29, 'kJ/mol'),
Tmin = (298, 'K'),
Tmax = (2000, 'K'),
),
rank = 8,
shortDesc = u"""Default""",
longDesc = u"""
-Calculated by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
""",
metal = "Pt",
)
+
+entry(
+ index = 4,
+ label = "XCXCH2 + H_X <=> XCCH3 + Pt_5 + Pt_6",
+ degeneracy = 1,
+ kinetics = SurfaceArrhenius(
+ A=(1.07E18, 'm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(72, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank = 8,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Calculated with DFT by Katrín Blöndal and Bjarne Kreitz at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+""",
+ metal = "Pt",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dissociation_vdW/groups.py b/input/kinetics/families/Surface_Dissociation_vdW/groups.py
index 2a5057a8b2..662af7710a 100644
--- a/input/kinetics/families/Surface_Dissociation_vdW/groups.py
+++ b/input/kinetics/families/Surface_Dissociation_vdW/groups.py
@@ -35,8 +35,8 @@
group =
"""
multiplicity [1]
-1 *1 R!H u0 px cx {2,S}
-2 *2 R u0 px cx {1,S}
+1 *1 R!H u0 px c0 {2,[S,D]}
+2 *2 R u0 px c0 {1,[S,D]}
3 *3 Xv u0 p0 c0
""",
kinetics = None,
@@ -58,7 +58,7 @@
group =
"""
multiplicity [1]
-1 *1 R!H u0 px cx {2,S}
+1 *1 R!H u0 px c0 {2,S}
2 *2 H u0 p0 c0 {1,S}
3 *3 Xv u0 p0 c0
""",
@@ -71,7 +71,7 @@
group =
"""
multiplicity [1]
-1 *1 C u0 px cx {2,S}
+1 *1 C u0 px c0 {2,S}
2 *2 H u0 p0 c0 {1,S}
3 *3 Xv u0 p0 c0
""",
@@ -84,7 +84,7 @@
group =
"""
multiplicity [1]
-1 *1 O u0 px cx {2,S}
+1 *1 O u0 px c0 {2,S}
2 *2 H u0 p0 c0 {1,S}
3 *3 Xv u0 p0 c0
""",
@@ -97,20 +97,211 @@
group =
"""
multiplicity [1]
-1 *1 N u0 px cx {2,S}
+1 *1 N u0 px c0 {2,S}
2 *2 H u0 p0 c0 {1,S}
3 *3 Xv u0 p0 c0
""",
kinetics = None,
)
+entry(
+ index = 7,
+ label = "H2O",
+ group =
+"""
+multiplicity [1]
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "C-OH",
+ group =
+"""
+multiplicity [1]
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S}
+3 *3 Xv u0 p0 c0
+4 H u0 p0 c0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "CH4",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "CH2R",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 px c0 {2,S} {3,S} {4,D}
+2 *2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 R!H u0 px cx {1,D}
+5 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "CH3R",
+ group =
+"""
+multiplicity [1]
+1 R!H u0 px cx {2,S}
+2 *1 C u0 px c0 {1,S} {3,S} {4,S} {5,S}
+3 *2 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 12,
+ label = "C-C",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,[S,D]}
+2 *2 C u0 p0 c0 {1,[S,D]}
+3 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "C-R",
+ group =
+"""
+multiplicity [1]
+1 *1 R!H u0 px c0 {2,[S,D]}
+2 *2 C u0 p0 c0 {1,[S,D]}
+3 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "C2H6",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 *2 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "C2H4",
+ group =
+"""
+multiplicity [1]
+1 *1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 *2 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 *3 Xv u0 p0 c0
+""",
+ kinetics = None,
+)
+
tree(
"""
L1: Combined
L2: R-H
L3: C-H
+ L4: CH4
+ L4: CH2R
+ L5: C2H4
+ L4: CH3R
+ L5: C2H6
L3: O-H
+ L4: H2O
L3: N-H
+ L2: C-R
+ L3: C-C
+ L3: C-OH
L1: VacantSite
"""
)
+
+forbidden(
+ label = "C-O",
+ group =
+"""
+1 *2 O u0 px cx {2,[S,D]}
+2 *1 C u0 {1,[S,D]}
+3 *3 Xv u0 p0 c0
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+O should not match to *2 with a less heavy atom
+""",
+)
+
+forbidden(
+ label = "O-O",
+ group =
+"""
+1 *1 O u0 p2 {2,S}
+2 *2 O u0 p2 {1,S}
+3 *3 Xv u0 p0 c0
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+No rule for O-O breaking available
+""",
+)
+
+forbidden(
+ label = "H-C",
+ group =
+"""
+1 *2 C u0 {2,S}
+2 *1 H u0 {1,S}
+3 *3 Xv u0 p0 c0
+""",
+ shortDesc = u"""""",
+ longDesc =
+u"""
+C should not match to *2 with a less heavy atom
+""",
+)
diff --git a/input/kinetics/families/Surface_Dissociation_vdW/rules.py b/input/kinetics/families/Surface_Dissociation_vdW/rules.py
index 77b54f2c7d..b8ebf1e99d 100644
--- a/input/kinetics/families/Surface_Dissociation_vdW/rules.py
+++ b/input/kinetics/families/Surface_Dissociation_vdW/rules.py
@@ -10,21 +10,98 @@
index = 1,
label = "Combined;VacantSite",
kinetics = SurfaceArrheniusBEP(
- A = (4.879e15, 'm^2/(mol*s)'),
+ A = (4.18e17, 'm^2/(mol*s)'),
n = 0,
- alpha = 0.6,
- E0 = (10.8384576, 'kcal/mol'),
+ alpha =0.84,
+ E0 = (185.1, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
longDesc = u"""
-Reaction 30 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/cs200055d
-E0 is Ea
+E0 and alpha are taken from:
+"Universal Brønsted-Evans-Polanyi Relations for C–C, C–O, C–N, N–O, N–N, and O–O Dissociation Reactions" by Wang, ..., Norskov/ Catal. Lett (2011) 141:370-373, DOI: 10.1007/s10562-010-0477-y
+(actual value for E0 was 1.92 eV.)
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
+
+entry(
+ index = 2,
+ label = "O-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.51,
+ E0 = (97.5, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+BEP relation for all metals and facets from Wang et al. "Universal transition state scaling relations for (de)hydrogenation over transition metals", Physical chemistry chemical physics, 2011, 13, 20760-20765, DOI:10.1039/c1cp20547a.
+Technically this is a relation for dissociative adsorption.
+"""
+)
+
+entry(
+ index = 3,
+ label = "C-OH;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.58,
+ E0 = (117.7, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+ """
+)
-A factor from paper / surface site density of Cu
-1.436e11 m^4/(mol^2 * s) / 2.943e‐5 mol/m^2 = 4.879e15 m^2/(mol*s)
+entry(
+ index = 4,
+ label = "C-H;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (4.18e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.57,
+ E0 = (75.25, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
"""
)
+
+entry(
+ index = 8,
+ label = "C-C;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (2.09e17, 'm^2/(mol*s)'),
+ n = 0,
+ alpha =0.72,
+ E0 = (126.39, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+E0 and alpha are taken from Table 5 for all metals from Sutton and Vlachos, "Ethanol Activation on closed-packed surfaces", Industrial & Engineering Chemistry Research, 2015, 54, 4213-4225, DOI: 10.1021/ie5043374.
+Pre-exponential coefficient is calculated from 1e13 s^-1 (standard guess from transition state theory) divided by 2.39e-9 mol cm^-2 (surface site density of Pt(111)
+
+BK: This group is symmetrical, and RMG matches this node from both directions. Thus, a reaction degeneracy of 2 is applied, and the pre-exponential coefficient A is doubled.
+We divided the pre-exponential coefficient by a factor of 2 so that RMG predicts the correct rate.
+ """
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/rules.py b/input/kinetics/families/Surface_DoubleBond_to_Bidentate/rules.py
deleted file mode 100644
index 519a930e2c..0000000000
--- a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/rules.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_DoubleBond_to_Bidentate/rules"
-shortDesc = u""
-longDesc = u"""
-"""
-entry(
- index = 1,
- label = "Combined;VacantSite",
- kinetics = SurfaceArrheniusBEP(
- A = (4.27e15, 'm^2/(mol*s)'),
- n = 0.549,
- alpha = 0,
- E0 = (1.0, 'kcal/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 0,
- shortDesc = u"""Default""",
- longDesc = u"""
-Pre-exponential value, n and E0 are from R31 in Table 1 of "A Catalytic Reaction Mechanism for Methane
-Partial Oxidation at Short ContactTimes, Reforming, and Combustion, and
-for Oxygenate Decomposition and Oxidation on Platinum"
-Authors: A.B. Mhadeshwar and D.G. Vlachos
-doi:10.1021/ie070322c
-
-Pre-exponential factor from paper / surface site density of Pt
-1.06e11 1/s / 2.483e-5 mol/m2 = 4.27e15 m2/(mol*s)
-
-The reaction R31 is
- COOH* + * -> CO2* + H*
-They report a nonlinear dependence of the activation energy on specific coverage (of H*)
-and temperature, but don't say what this dependence is.
-Note that this reaction is not in fact an example of this reaction family!
-The products have dissocated and are not the bidentate COOH** (or CHOO**).
-However, in the absence of better data, it is currently our best estimate. (KB, CFG, RHW, 2020-11-30).
-"""
-)
-
-
-
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/groups.py b/input/kinetics/families/Surface_Dual_Adsorption_vdW/groups.py
deleted file mode 100644
index c29c7459bb..0000000000
--- a/input/kinetics/families/Surface_Dual_Adsorption_vdW/groups.py
+++ /dev/null
@@ -1,915 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Dual_Adsorption_vdW/groups"
-shortDesc = u""
-longDesc = u"""
-Two vdW species reacting together and abstracting a functional group and then forming a single bond to the surface.
-
-*2=*3 *4-*6 *2-*3-*4 *6
- : : ----> | |
-~*1~ + ~*5~~ ~*1~ + ~*5~~
-
-The rate, which should be in mol/m2/s,
-will be given by k * (mol/m2) * (mol/m2)
-so k should be in (m2/mol/s).
-
-"""
-
-template(reactants=["Adsorbate1","Adsorbate2"], products=["Adsorbate3","Adsorbate4"], ownReverse=False)
-
-reverse = "Surface_Dual_Desorption_vdW"
-
-reactantNum=2
-productNum=2
-
-recipe(actions=[
- ['CHANGE_BOND','*2', -1, '*3'],
- ['CHANGE_BOND', '*1', 1, '*2'],
- ['BREAK_BOND', '*4', 1, '*6'],
- ['FORM_BOND', '*3', 1, '*4'],
- ['CHANGE_BOND', '*5', 1, '*6'],
-])
-
-entry(
- index = 1,
- label = "Adsorbate1",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 R!H u0 px cx {3,[D,T,Q]}
-3 *3 R!H u0 px cx {2,[D,T,Q]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 2,
- label = "Adsorbate2",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 R u0 px cx {3,S}
-3 *4 R u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 3,
- label = "O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 px cx {3,D}
-3 *3 R!H u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 4,
- label = "O=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 5,
- label = "C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 6,
- label = "O=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 8,
- label = "RNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 9,
- label = "C$C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,Q}
-3 *3 C u0 p0 c0 {2,Q}
-""",
- kinetics = None,
-)
-
-entry(
- index = 10,
- label = "O=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 11,
- label = "RONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 12,
- label = "HONO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 20,
- label = "C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T,Q]}
-3 *3 R!H u0 px cx {2,[D,T,Q]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 21,
- label = "CO2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D} {4,D}
-3 *3 O u0 p2 c0 {2,D}
-4 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 22,
- label = "CC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,[D,T,Q]}
-3 *3 C u0 p0 c0 {2,[D,T,Q]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 23,
- label = "C=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 C u0 p0 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 24,
- label = "C#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T}
-3 *3 C u0 p0 c0 {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 25,
- label = "CN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 26,
- label = "C=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 27,
- label = "C#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 px cx {3,T}
-3 *3 N u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 28,
- label = "C=N-R",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,D}
-3 *3 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 30,
- label = "RC#N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 C u0 p0 c0 {3,T} {4,S}
-3 *3 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 33,
- label = "N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 R!H u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 34,
- label = "N=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 O u0 p2 c0 {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 35,
- label = "NC",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 C u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 36,
- label = "N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 C u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 37,
- label = "N#C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,T}
-3 *3 C u0 px cx {2,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 38,
- label = "R-N=C",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,D}
-3 *2 N u0 px c0 {2,D} {4,S}
-4 R u0 px c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 40,
- label = "N#CR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 C u0 p0 c0 {3,T} {4,S}
-3 *2 N u0 p1 c0 {2,T}
-4 R u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 46,
- label = "ONOH",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 H u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 47,
- label = "ONOR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 O u0 p2 c0 {3,S} {5,S}
-5 R u0 p0 c0 {4,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 48,
- label = "ONR",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 N u0 p1 c0 {2,D} {4,S}
-4 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 54,
- label = "O-R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 cx {3,S}
-3 *4 R u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 55,
- label = "C-R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 C u0 px cx {3,S}
-3 *4 R u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 56,
- label = "H-H",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 H u0 p0 c0 {3,S}
-3 *4 H u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 57,
- label = "N-R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 N u0 px cx {3,S}
-3 *4 R u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 58,
- label = "O-O",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 O u0 p2 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 59,
- label = "HO-OH",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S} {5,S}
-3 *4 O u0 p2 c0 {2,S} {4,S}
-4 H u0 p0 c0 {3,S}
-5 H u0 p0 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 60,
- label = "O-N",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 N u0 p1 c0 {2,S} {4,[S,D]}
-4 R u0 px cx {3,[S,D]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 61,
- label = "O-C",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 C u0 p0 c0 {2,S} {4,[S,D,T]}
-4 R u0 px cx {3,[S,D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 62,
- label = "O-C-3R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
-4 R u0 px cx {3,S}
-5 R u0 px cx {3,S}
-6 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 63,
- label = "O-C=R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 C u0 p0 c0 {2,S} {4,D} {5,S}
-4 R!H u0 px cx {3,D}
-5 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 64,
- label = "O-C#R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 C u0 p0 c0 {2,S} {4,T}
-4 R!H u0 px cx {3,T}
-""",
- kinetics = None,
-)
-
-entry(
- index = 65,
- label = "O-N-2R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 N u0 p1 c0 {2,S} {4,S} {5,S}
-4 R u0 px cx {3,S}
-5 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 66,
- label = "O-NHH",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 N u0 p1 c0 {2,S} {4,S} {5,S}
-4 H u0 p0 c0 {3,S}
-5 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 67,
- label = "O-N=R",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 O u0 p2 c0 {3,S}
-3 *4 N u0 p1 c0 {2,S} {4,D}
-4 R!H u0 px cx {3,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 68,
- label = "C-C",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 C u0 px cx {3,S}
-3 *4 C u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 69,
- label = "C-O",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 C u0 px cx {3,S}
-3 *4 O u0 p2 cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 70,
- label = "C-N",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 C u0 px cx {3,S}
-3 *4 N u0 p1 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 71,
- label = "C-OH",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 C u0 px cx {3,S}
-3 *4 O u0 p2 c0 {2,S} {4,S}
-4 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 72,
- label = "N-N",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 N u0 px cx {3,S}
-3 *4 N u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 73,
- label = "N-O",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 N u0 px cx {3,S}
-3 *4 O u0 p2 c0 {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 74,
- label = "N-C",
- group =
-"""
-multiplicity [1]
-1 *5 Xv u0 p0 c0
-2 *6 N u0 px cx {3,S}
-3 *4 C u0 px cx {2,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 75,
- label = "O=C=O",
- group =
-"""
-multiplicity [1]
-1 O u0 p2 c0 {3,D}
-2 *2 O u0 p2 c0 {3,D}
-3 *3 C u0 p0 c0 {1,D} {2,D}
-4 *1 Xv u0 p0 c0
-""",
- kinetics = None,
-)
-
-entry(
- index = 76,
- label = "HNO",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 O u0 p2 c0 {3,D}
-3 *3 N u0 p1 c0 {2,D} {4,S}
-4 H u0 p0 c0 {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 77,
- label = "2R-C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,S} {5,S}
-4 R u0 px cx {3,S}
-5 R u0 px cx {3,S}
-""",
- kinetics = None,
-)
-
-entry(
- index = 78,
- label = "R=C=O",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {2,D} {4,D}
-4 R!H u0 px cx {3,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 79,
- label = "NN",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,[D,T]}
-3 *3 N u0 px cx {2,[D,T]}
-""",
- kinetics = None,
-)
-
-entry(
- index = 80,
- label = "N=N",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 px cx {3,D}
-3 *3 N u0 px cx {2,D}
-""",
- kinetics = None,
-)
-
-entry(
- index = 81,
- label = "N2",
- group =
-"""
-multiplicity [1]
-1 *1 Xv u0 p0 c0
-2 *2 N u0 p1 c0 {3,T}
-3 *3 N u0 p1 c0 {2,T}
-""",
- kinetics = None,
-)
-
-tree(
-"""
-L1: Adsorbate1
- L2: O
- L3: O=C
- L4: O=C=O
- L3: O=O
- L3: O=N
- L4: RNO
- L5: RONO
- L6: HONO
- L5: HNO
- L2: C
- L3: C=O
- L4: 2R-C=O
- L4: R=C=O
- L5: CO2
- L3: CC
- L4: C=C
- L4: C#C
- L4: C$C
- L3: CN
- L4: C=N
- L5: C=N-R
- L4: C#N
- L5: RC#N
- L2: N
- L3: NC
- L4: N=C
- L5: R-N=C
- L4: N#C
- L5: N#CR
- L3: N=O
- L4: ONR
- L5: ONOR
- L6: ONOH
- L3: NN
- L4: N=N
- L4: N2
-
-L1: Adsorbate2
- L2: H-H
- L2: O-R
- L3: O-O
- L4: HO-OH
- L3: O-N
- L4: O-N-2R
- L5: O-NHH
- L4: O-N=R
- L3: O-C
- L4: O-C-3R
- L4: O-C=R
- L4: O-C#R
- L2: C-R
- L3: C-C
- L3: C-O
- L4: C-OH
- L3: C-N
- L2: N-R
- L3: N-N
- L3: N-O
- L3: N-C
-"""
-)
-
-forbidden(
- label = "chargedBond",
- group =
-"""
-1 *2 R!H ux c[+1,-1] {2,[S,D,T]}
-2 *3 R!H ux c[+1,-1] {1,[S,D,T]}
-3 *1 Xv u0 p0 c0
-""",
- shortDesc = u"""""",
- longDesc =
-u"""
-The adsorbing molecule should not have a charge on the surface.
-""",
-)
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/rules.py b/input/kinetics/families/Surface_Dual_Adsorption_vdW/rules.py
deleted file mode 100644
index d443503da2..0000000000
--- a/input/kinetics/families/Surface_Dual_Adsorption_vdW/rules.py
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Dual_Adsorption_vdW/rules"
-shortDesc = u""
-longDesc = u"""
-A vdW double bonded species dissociatively adsorbing to the surface with double
-bonds.
-"""
-
-entry(
- index = 1,
- label = "Adsorbate1;Adsorbate2",
- kinetics = SurfaceArrheniusBEP(
- A = (1.0e13, 'm^2/(mol*s)'),
- n = 0,
- alpha = 0.0,
- E0 = (0, 'kcal/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- ),
- rank = 0,
- shortDesc = u"""Default""",
- longDesc = u"""Made up"""
-)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/template.cdx b/input/kinetics/families/Surface_Dual_Adsorption_vdW/template.cdx
deleted file mode 100644
index e02b9d36c2..0000000000
Binary files a/input/kinetics/families/Surface_Dual_Adsorption_vdW/template.cdx and /dev/null differ
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/dictionary.txt
deleted file mode 100644
index cc44785f46..0000000000
--- a/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/dictionary.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-OH*
-1 *6 O u0 p2 c0 {2,S} {3,S}
-2 H u0 p0 c0 {1,S}
-3 *5 X u0 p0 c0 {1,S}
-
-COOH*
-1 *3 O u0 p2 c0 {3,S} {4,S}
-2 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {1,S} {2,D} {5,S}
-4 *4 H u0 p0 c0 {1,S}
-5 *1 X u0 p0 c0 {3,S}
-
-CO2*
-1 O u0 p2 c0 {3,D}
-2 *3 O u0 p2 c0 {3,D}
-3 *2 C u0 p0 c0 {1,D} {2,D}
-4 *1 X u0 p0 c0
-
-H2O*
-1 *6 O u0 p2 c0 {2,S} {3,S}
-2 *4 H u0 p0 c0 {1,S}
-3 H u0 p0 c0 {1,S}
-4 *5 X u0 p0 c0
diff --git a/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/reactions.py b/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/reactions.py
deleted file mode 100644
index 3f21cb2f4c..0000000000
--- a/input/kinetics/families/Surface_Dual_Adsorption_vdW/training/reactions.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-# encoding: utf-8
-
-name = "Surface_Dual_Adsorption_vdW/training"
-shortDesc = u"Reaction kinetics used to generate rate rules"
-longDesc = u"""
-Put kinetic parameters for specific reactions in this file to use as a
-training set for generating rate rules to populate this kinetics family.
-"""
-
-entry(
- index = 12,
- label = "COOH* + OH* <=> CO2* + H2O*",
- degeneracy = 1,
- kinetics = SurfaceArrhenius(
- A = (3.398e17, 'm^2/(mol*s)'),
- n = 0.,
- Ea = (0., 'kcal/mol'),
- Tmin = (298, 'K'),
- Tmax = (2000, 'K'),
- ),
- rank = 10,
- shortDesc = u"""Default""",
- longDesc = u"""
-Reaction 12 from table 2 in "Mechanism of Methanol Synthesis on Cu through CO2
-and CO Hydrogenation", Grabow and Mavrikakis. doi:10.1021/c s200055d
-
-A factor from paper / surface site density of Cu
-1.0e13 m^4/(mol^2 * s) / 2.943e‐5 mol/m^2 = 3.398e17 m^2/(mol*s)
-""",
- metal = "Cu",
-)
diff --git a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/groups.py b/input/kinetics/families/Surface_Monodentate_to_Bidentate/groups.py
similarity index 67%
rename from input/kinetics/families/Surface_DoubleBond_to_Bidentate/groups.py
rename to input/kinetics/families/Surface_Monodentate_to_Bidentate/groups.py
index 599ccfa2e7..e641abbf96 100644
--- a/input/kinetics/families/Surface_DoubleBond_to_Bidentate/groups.py
+++ b/input/kinetics/families/Surface_Monodentate_to_Bidentate/groups.py
@@ -1,10 +1,10 @@
#!/usr/bin/env python
# encoding: utf-8
-name = "Surface_DoubleBond_to_Bidentate"
+name = "Surface_Monodentate_to_Bidentate"
shortDesc = u""
longDesc = u"""
-If an adsorbate has an internal double bond, then it can fall over onto a vacant site, creating a bidentate.
+If a monodentate adsorbate has an internal double or triple bond, then it can fall over onto a vacant site, creating a bidentate.
*1=*2 *1--*2
| ----> || |
@@ -15,9 +15,9 @@
so k should be in (m2/mol/s)
"""
-template(reactants=["Combined", "VacantSite"], products=["Adsorbate"], ownReverse=False)
+template(reactants=["Monodentate", "VacantSite"], products=["Bidentate"], ownReverse=False)
-reverse = "Surface_Bidentate_to_DoubleBond"
+reverse = "Surface_Bidentate_to_Monodentate"
recipe(actions=[
['FORM_BOND', '*2', 1, '*4'],
@@ -27,7 +27,7 @@
entry(
index = 1,
- label = "Combined",
+ label = "Monodentate",
group =
"""
1 *1 R!H u0 {2,[D,T]} {3,[S,D]}
@@ -50,7 +50,7 @@
tree(
"""
-L1: Combined
+L1: Monodentate
L1: VacantSite
"""
diff --git a/input/kinetics/families/Surface_Monodentate_to_Bidentate/rules.py b/input/kinetics/families/Surface_Monodentate_to_Bidentate/rules.py
new file mode 100644
index 0000000000..85bb72f2f5
--- /dev/null
+++ b/input/kinetics/families/Surface_Monodentate_to_Bidentate/rules.py
@@ -0,0 +1,35 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Monodentate_to_Bidentate/rules"
+shortDesc = u""
+longDesc = u"""
+"""
+entry(
+ index = 1,
+ label = "Monodentate;VacantSite",
+ kinetics = SurfaceArrheniusBEP(
+ A = (7.15e20, 'cm^2/(mol*s)'),
+ n = 0.0,
+ alpha = 0,
+ E0 = (3, 'kJ/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Pre-exponential value and E0 are from R6b in Table 2 of "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates"
+Authors: B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith
+doi:10.1039/d3dd00184a
+
+The reaction R6b is
+ *CHCH2 + * -> *CH*CH2
+
+Other monodentate to bidentate reactions in this publication were without reaction barriers.
+"""
+)
+
+
+
diff --git a/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.cdx b/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.cdx
new file mode 100644
index 0000000000..075fb3902d
Binary files /dev/null and b/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.cdx differ
diff --git a/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.eps b/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.eps
new file mode 100644
index 0000000000..f1ec7fbc3d
--- /dev/null
+++ b/input/kinetics/families/Surface_Monodentate_to_Bidentate/template.eps
@@ -0,0 +1,681 @@
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw
+%%CreationDate: 3/18/24
+%%BoundingBox: 0 0 214 46
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProlog
+/ellipse {7 dict begin
+ /endangle exch def
+ /startangle exch def
+ /yradius exch def
+ /xradius exch def
+ /yC exch def
+ /xC exch def
+ /savematrix matrix currentmatrix def % save current transformation matrix
+ xC yC translate % translate to center of ellipse
+ xradius yradius scale % scale by radius values
+ 0 0 1 startangle endangle arc % add arc to path
+ savematrix setmatrix % restore the transformation matrix
+end
+} def
+
+/Encoding1252
+[
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /space
+ /exclam
+ /quotedbl
+ /numbersign
+ /dollar
+ /percent
+ /ampersand
+ /quotesingle
+ /parenleft
+ /parenright
+ /asterisk
+ /plus
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ /five
+ /six
+ /seven
+ /eight
+ /nine
+ /colon
+ /semicolon
+ /less
+ /equal
+ /greater
+ /question
+ /at
+ /A
+ /B
+ /C
+ /D
+ /E
+ /F
+ /G
+ /H
+ /I
+ /J
+ /K
+ /L
+ /M
+ /N
+ /O
+ /P
+ /Q
+ /R
+ /S
+ /T
+ /U
+ /V
+ /W
+ /X
+ /Y
+ /Z
+ /bracketleft
+ /backslash
+ /bracketright
+ /asciicircum
+ /underscore
+ /grave
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ /j
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ /q
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ /z
+ /braceleft
+ /bar
+ /braceright
+ /asciitilde
+ /.notdef
+ /.notdef
+ /.notdef
+ /quotesinglbase
+ /florin
+ /quotedblbase
+ /ellipsis
+ /dagger
+ /daggerdbl
+ /circumflex
+ /perthousand
+ /Scaron
+ /guilsinglleft
+ /OE
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /quoteleft
+ /quoteright
+ /quotedblleft
+ /quotedblright
+ /bullet
+ /endash
+ /emdash
+ /tilde
+ /trademark
+ /scaron
+ /guilsinglright
+ /oe
+ /dotlessi
+ /.notdef
+ /Ydieresis
+ /.notdef
+ /exclamdown
+ /cent
+ /sterling
+ /currency
+ /yen
+ /brokenbar
+ /section
+ /dieresis
+ /copyright
+ /ordfeminine
+ /guillemotleft
+ /logicalnot
+ /guilsinglright
+ /registered
+ /macron
+ /ring
+ /plusminus
+ /twosuperior
+ /threesuperior
+ /acute
+ /mu
+ /paragraph
+ /periodcentered
+ /cedilla
+ /onesuperior
+ /ordmasculine
+ /guillemotright
+ /onequarter
+ /onehalf
+ /threequarters
+ /questiondown
+ /Agrave
+ /Aacute
+ /Acircumflex
+ /Atilde
+ /Adieresis
+ /Aring
+ /AE
+ /Ccedilla
+ /Egrave
+ /Eacute
+ /Ecircumflex
+ /Edieresis
+ /Igrave
+ /Iacute
+ /Icircumflex
+ /Idieresis
+ /Eth
+ /Ntilde
+ /Ograve
+ /Oacute
+ /Ocircumflex
+ /Otilde
+ /Odieresis
+ /multiply
+ /Oslash
+ /Ugrave
+ /Uacute
+ /Ucircumflex
+ /Udieresis
+ /Yacute
+ /Thorn
+ /germandbls
+ /agrave
+ /aacute
+ /acircumflex
+ /atilde
+ /adieresis
+ /aring
+ /ae
+ /ccedilla
+ /egrave
+ /eacute
+ /ecircumflex
+ /edieresis
+ /igrave
+ /iacute
+ /icircumflex
+ /idieresis
+ /eth
+ /ntilde
+ /ograve
+ /oacute
+ /ocircumflex
+ /otilde
+ /odieresis
+ /divide
+ /oslash
+ /ugrave
+ /uacute
+ /ucircumflex
+ /udieresis
+ /yacute
+ /thorn
+ /ydieresis
+]
+def
+
+ /reencode1252
+ {
+ findfont dup
+ length dict copy
+ dup /Encoding Encoding1252 put
+ definefont
+ } bind def
+%%EndProlog
+[1 0 0 -1 0 46] concat
+[1 0 0 1 -163 -338] concat
+[0.05 0 0 0.05 0 0] concat
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5862.21 7177.5 moveto
+5156.21 7177.5 lineto
+5156.21 7157.5 lineto
+5862.21 7157.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5300.21 7217.5 moveto
+6006.21 7217.5 lineto
+6006.21 7237.5 lineto
+5300.21 7237.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+6036.21 7177.5 moveto
+6036.21 7177.5 5861.21 7177.5 5861.21 7177.5 curveto
+5861.21 7144.75 5836.21 7115.5 5836.21 7115.5 curveto
+5836.21 7115.5 6036.21 7177.5 6036.21 7177.5 curveto
+6036.21 7177.5 6036.21 7177.5 6036.21 7177.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+5126.21 7217.5 moveto
+5126.21 7217.5 5326.21 7279.5 5326.21 7279.5 curveto
+5326.21 7279.5 5301.21 7230.25 5301.21 7217.5 curveto
+5301.21 7217.5 5126.21 7217.5 5126.21 7217.5 curveto
+5126.21 7217.5 5126.21 7217.5 5126.21 7217.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 /Helvetica reencode1252
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3297.52 7519.79] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3380.94 7591.42] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4253.76 7519.79] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4337.19 7591.42] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3298.36 6947.87] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3381.78 7019.51] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3898.36 6947.87] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3981.78 7019.51] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3563.69 6921.87 moveto
+3563.69 6901.87 lineto
+3862.75 6901.87 lineto
+3862.75 6921.87 lineto
+3563.69 6921.87 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3563.69 6993.87 moveto
+3563.69 6973.87 lineto
+3862.75 6973.87 lineto
+3862.75 6993.87 lineto
+3563.69 6993.87 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 3814.6 7560.96] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6673.36 6933.83] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6756.78 7005.46] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7273.36 6933.83] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7356.78 7005.46] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6938.69 6943.83 moveto
+6938.69 6923.83 lineto
+7237.75 6923.83 lineto
+7237.75 6943.83 lineto
+6938.69 6943.83 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6678.66 7533.83] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6762.08 7605.46] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6859.2 7064.04 moveto
+6879.19 7064.27 lineto
+6875.22 7404.3 lineto
+6855.22 7404.07 lineto
+6859.2 7064.04 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6789.37 7063.22 moveto
+6809.37 7063.46 lineto
+6805.39 7403.48 lineto
+6785.39 7403.25 lineto
+6789.37 7063.22 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7279.52 7533.83] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7362.94 7605.46] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7424.45 7063.65 moveto
+7444.45 7063.85 lineto
+7440.96 7404.65 lineto
+7420.96 7404.45 lineto
+7424.45 7063.65 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3448.03 7077.52 moveto
+3468.02 7077.98 lineto
+3460.85 7390.02 lineto
+3440.86 7389.56 lineto
+3448.03 7077.52 lineto
+closepath
+fill
+grestore
+grestore
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/dictionary.txt b/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/dictionary.txt
new file mode 100644
index 0000000000..938bc5a669
--- /dev/null
+++ b/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/dictionary.txt
@@ -0,0 +1,47 @@
+XCCH2
+1 *1 C u0 p0 {5,D} {2,D}
+2 *2 C u0 p0 {1,D} {3,S} {4,S}
+3 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 *3 X u0 p0 {1,D}
+
+Pt_4
+1 *4 X u0 p0 c0
+
+XCXCH2
+1 *1 C u0 p0 {5,T} {2,S}
+2 *2 C u0 p0 {1,S} {3,S} {4,S} {6,S}
+3 H u0 p0 {2,S}
+4 H u0 p0 {2,S}
+5 *3 X u0 p0 {1,T}
+6 *4 X u0 p0 {2,S}
+
+XCHCH2
+1 *1 C u0 p0 {6,S} {2,D} {3,S}
+2 *2 C u0 p0 {1,D} {4,S} {5,S}
+3 H u0 p0 {1,S}
+4 H u0 p0 {2,S}
+5 H u0 p0 {2,S}
+6 *3 X u0 p0 {1,S}
+
+XCHXCH2
+1 *1 C u0 p0 {6,D} {2,S} {3,S}
+2 *2 C u0 p0 {1,S} {4,S} {5,S} {7,S}
+3 H u0 p0 {1,S}
+4 H u0 p0 {2,S}
+5 H u0 p0 {2,S}
+6 *3 X u0 p0 {1,D}
+7 *4 X u0 p0 {2,S}
+
+HXCO
+1 *1 C u0 p0 {2,D} {3,S} {4,S}
+2 *2 O u0 p2 {1,D}
+3 H u0 p0 {1,S}
+4 *3 X u0 p0 {1,S}
+
+HXCXO
+1 *1 C u0 p0 {2,S} {3,S} {4,D}
+2 *2 O u0 p2 {1,S} {5,S}
+3 H u0 p0 {1,S}
+4 *3 X u0 p0 {1,D}
+5 *4 X u0 p0 {2,S}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/reactions.py b/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/reactions.py
new file mode 100644
index 0000000000..fd771f61bc
--- /dev/null
+++ b/input/kinetics/families/Surface_Monodentate_to_Bidentate/training/reactions.py
@@ -0,0 +1,75 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Monodentate_to_Bidentate/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+entry(
+ index = 1,
+ label = "XCCH2 + Pt_4 <=> XCXCH2",
+ degeneracy = 1,
+ kinetics = SurfaceArrhenius(
+ A=(1E21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(0, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank = 10,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates
+Authors: B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith
+doi:10.1039/d3dd00184a
+""",
+ metal = "Pt",
+)
+
+entry(
+ index = 2,
+ label = "XCHCH2 + Pt_4 <=> XCHXCH2",
+ degeneracy = 1,
+ kinetics = SurfaceArrhenius(
+ A=(7.15E20, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(3, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank = 10,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates
+Authors: B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith
+doi:10.1039/d3dd00184a
+""",
+ metal = "Pt",
+)
+
+entry(
+ index = 3,
+ label = "HXCO + Pt_4 <=> HXCXO",
+ degeneracy = 1,
+ kinetics = SurfaceArrhenius(
+ A=(1E21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea=(0, 'kJ/mol'),
+ Tmin = (298, 'K'),
+ Tmax = (2000, 'K'),
+ ),
+ rank = 10,
+ shortDesc = u"""Default""",
+ longDesc = u"""
+Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates
+Authors: B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith
+doi:10.1039/d3dd00184a
+""",
+ metal = "Pt",
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/groups.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/groups.py
new file mode 100644
index 0000000000..a40b561d0a
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/groups.py
@@ -0,0 +1,211 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha/groups"
+shortDesc = u""
+longDesc = u"""
+
+ *1 *1-*3H
+ || + *3H+ + *e- ----> |
+ ~*2~ ~*2~~
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m3) * 1
+so k should be in (m3/mol/s).
+"""
+
+template(reactants=["Adsorbate", "Proton"], products=["Reduced"], ownReverse=False)
+
+reverse = "Surface_Proton_Electron_Oxidation_Alpha"
+
+reactantNum = 2
+productNum = 1
+allowChargedSpecies = True
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+])
+
+entry(
+ index = 1,
+ label = "Adsorbate",
+ group =
+"""
+1 *1 R!H u0 {2,[D,T,Q]}
+2 *2 X u0 {1,[D,T,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Proton",
+ group =
+"""
+1 *3 H+ u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "CX",
+ group =
+"""
+1 *1 C u0 {2,[D,T,Q]}
+2 *2 X u0 {1,[D,T,Q]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "CTX",
+ group =
+"""
+1 *1 C u0 {2,T}
+2 *2 X u0 {1,T}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "HCX",
+ group =
+"""
+1 *1 C u0 {2,T} {3,S}
+2 *2 X u0 {1,T}
+3 H u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "C=X",
+ group =
+"""
+1 *1 C u0 {2,D}
+2 *2 X u0 {1,D}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 8,
+ label = "H2C=X",
+ group =
+"""
+1 *1 C u0 {2,D} {3,S} {4,S}
+2 *2 X u0 {1,D}
+3 H u0 {1,S}
+4 H u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "O=C=X",
+ group =
+"""
+1 *1 C u0 {2,D} {3,D}
+2 *2 X u0 {1,D}
+3 O2d u0 {1,D}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 10,
+ label = "OX",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 X u0 {1,D}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 11,
+ label = "NX",
+ group =
+"""
+1 *1 N u0 {2,[D,T]}
+2 *2 X u0 {1,[D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 12,
+ label = "NTX",
+ group =
+"""
+1 *1 N u0 {2,T}
+2 *2 X u0 {1,T}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "N=X",
+ group =
+"""
+1 *1 N u0 {2,D}
+2 *2 X u0 {1,D}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "HN=X",
+ group =
+"""
+1 *1 N u0 {2,D} {3,S}
+2 *2 X u0 {1,D}
+3 H u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "N-N=X",
+ group =
+"""
+1 *1 N u0 {2,D} {3,S}
+2 *2 X u0 {1,D}
+3 N u0 {1,S}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Adsorbate
+ L2: CX
+ L3: CTX
+ L4: HCX
+ L3: C=X
+ L4: O=C=X
+ L4: H2C=X
+ L2: OX
+ L2: NX
+ L3: NTX
+ L3: N=X
+ L4: HN=X
+ L4: N-N=X
+
+L1: Proton
+"""
+)
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/rules.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/rules.py
new file mode 100644
index 0000000000..fa4c75e146
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/rules.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha/rules"
+shortDesc = u""
+longDesc = u"""
+Surface adsorption of a single radical forming a single bond to the surface site
+"""
+
+entry(
+ index = 1,
+ label = "Adsorbate;Proton",
+ kinetics = SurfaceChargeTransfer(
+ A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (15, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""https://doi.org/10.1021/jp4100608"""
+)
+
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/dictionary.txt b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/dictionary.txt
new file mode 100644
index 0000000000..462edf5626
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/dictionary.txt
@@ -0,0 +1,67 @@
+H
+1 *3 H u0 p0 c+1
+
+e
+1 * e u0 p0 c-1
+
+NX
+1 *1 N u0 p1 c0 {2,T}
+2 *2 X u0 p0 c0 {1,T}
+
+HNX
+1 *1 N u0 p1 c0 {2,D} {3,S}
+2 *2 X u0 p0 c0 {1,D}
+3 H u0 p0 c0 {1,S}
+
+HNX_p
+1 *1 N u0 p1 c0 {2,D} {3,S}
+2 *2 X u0 p0 c0 {1,D}
+3 *3 H u0 p0 c0 {1,S}
+
+H2NX
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *2 X u0 p0 c0 {1,S}
+3 *3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CX
+1 *1 C u0 p0 c0 {2,Q}
+2 *2 X u0 p0 c0 {1,Q}
+
+CHX
+1 *1 C u0 p0 c0 {2,T} {3,S}
+2 *2 X u0 p0 c0 {1,T}
+3 H u0 p0 c0 {1,S}
+
+CHX_p
+1 *1 C u0 p0 c0 {2,T} {3,S}
+2 *2 X u0 p0 c0 {1,T}
+3 *3 H u0 p0 c0 {1,S}
+
+CH2X
+1 *1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *2 X u0 p0 c0 {1,D}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH2X_p
+1 *1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 *2 X u0 p0 c0 {1,D}
+3 *3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CH3X
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *2 X u0 p0 c0 {1,S}
+3 *3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+OX
+1 *1 O u0 p2 c0 {2,D}
+2 *2 X u0 p0 c0 {1,D}
+
+HOX
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *2 X u0 p0 c0 {1,S}
+3 *3 H u0 p0 c0 {1,S}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/reactions.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/reactions.py
new file mode 100644
index 0000000000..e452db0d1e
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha/training/reactions.py
@@ -0,0 +1,516 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+# entry(
+# index = 1,
+# label = "CX + H <=> CHX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.20, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.24, 'V'), # reference potential
+# Ea = (0.61, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 2,
+ label = "CX + H <=> CHX_p",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.20, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.44, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 1,
+# label = "CX + H <=> CHX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.06, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.29, 'V'), # reference potential
+# Ea = (0.19, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 1,
+# label = "CX + H <=> CHX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.06, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.5, 'V'), # reference potential
+# Ea = (0.13, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 3,
+# label = "CHX + H <=> CH2X_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.31, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.32, 'V'), # reference potential
+# Ea = (0.77, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 3,
+ label = "CHX + H <=> CH2X_p",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.31, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.44, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 3,
+# label = "CHX + H <=> CH2X_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.05, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.30, 'V'), # reference potential
+# Ea = (0.59, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 4,
+# label = "CHX + H <=> CH2X_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.05, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.5, 'V'), # reference potential
+# Ea = (0.53, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 6,
+# label = "CH2X + H <=> CH3X",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.23, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.38, 'V'), # reference potential
+# Ea = (0.62, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 4,
+ label = "CH2X + H <=> CH3X",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.23, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.37, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 8,
+# label = "NX + H <=> HNX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.07, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.12, 'V'), # reference potential
+# Ea = (0.15, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2017.01.050""",
+# longDesc = u"""
+# """,
+# metal = "Cu",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 9,
+# label = "NX + H <=> HNX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.23, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.24, 'V'), # reference potential
+# Ea = (0.78, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 5,
+ label = "NX + H <=> HNX_p",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.23, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.59, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 10,
+# label = "NX + H <=> HNX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.07, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.3, 'V'), # reference potential
+# Ea = (0.17, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 4,
+# label = "NX + H <=> HNX_p",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.07, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.5, 'V'), # reference potential
+# Ea = (0.09, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 11,
+# label = "HNX + H <=> H2NX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.27, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.28, 'V'), # reference potential
+# Ea = (1.20, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 6,
+ label = "HNX + H <=> H2NX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.27, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.97, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 11,
+# label = "HNX + H <=> H2NX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.64, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.31, 'V'), # reference potential
+# Ea = (0.99, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 5,
+# label = "HNX + H <=> H2NX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.64, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.5, 'V'), # reference potential
+# Ea = (0.43, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 12,
+# label = "OX + H <=> HOX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.41, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.31, 'V'), # reference potential
+# Ea = (0.87, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Tafel""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 7,
+ label = "OX + H <=> HOX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.42, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.48, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""Tafel""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 12,
+# label = "OX + H <=> HOX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.02, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.57, 'V'), # reference potential
+# Ea = (0.06, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+# entry(
+# index = 6,
+# label = "OX + H <=> HOX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.02, # charge transfer coeff
+# A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (-0.5, 'V'), # reference potential
+# Ea = (0.03, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+# longDesc = u"""Heyrovsky""",
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/groups.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/groups.py
new file mode 100644
index 0000000000..5b0e8ad71d
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/groups.py
@@ -0,0 +1,96 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha_vdW/groups"
+shortDesc = u""
+longDesc = u"""
+
+ *1 *1-*3H
+ | + *3H+ + *e- ----> :
+ ~*2~ ~*2~~
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m3) * 1
+so k should be in (m3/mol/s).
+"""
+
+template(reactants=["Adsorbate", "Proton"], products=["Reduced"], ownReverse=False)
+
+reverse = "Surface_Proton_Electron_Oxidation_Alpha_vdW"
+
+reactantNum = 2
+productNum = 1
+allowChargedSpecies = True
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*3', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['FORM_BOND', '*1', 1, '*3'],
+])
+
+entry(
+ index = 1,
+ label = "Adsorbate",
+ group =
+"""
+1 *1 R u0 {2,S}
+2 *2 X u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Proton",
+ group =
+"""
+1 *3 H+ u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "CX",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 X u0 {1,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "OX",
+ group =
+"""
+1 *1 O u0 {2,S}
+2 *2 X u0 {1,S}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 6,
+ label = "NX",
+ group =
+"""
+1 *1 N u0 {2,S}
+2 *2 X u0 {1,S}
+""",
+ kinetics = None,
+)
+
+tree(
+"""
+L1: Adsorbate
+ L2: CX
+ L2: OX
+ L2: NX
+
+L1: Proton
+"""
+)
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/rules.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/rules.py
new file mode 100644
index 0000000000..fa4c75e146
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/rules.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha/rules"
+shortDesc = u""
+longDesc = u"""
+Surface adsorption of a single radical forming a single bond to the surface site
+"""
+
+entry(
+ index = 1,
+ label = "Adsorbate;Proton",
+ kinetics = SurfaceChargeTransfer(
+ A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (15, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""https://doi.org/10.1021/jp4100608"""
+)
+
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/dictionary.txt
new file mode 100644
index 0000000000..6b0dfad3c4
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/dictionary.txt
@@ -0,0 +1,44 @@
+H
+1 *3 H u0 p0 c+1
+
+e
+1 * e u0 p0 c-1
+
+CH3X
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 *2 X u0 p0 c0 {1,S}
+
+CH4X
+1 *1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 *3 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 *2 X u0 p0 c0
+
+HOX
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 *2 X u0 p0 c0 {1,S}
+
+H2OX
+1 *1 O u0 p2 c0 {2,S} {3,S}
+2 *3 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 *2 X u0 p0 c0
+
+NH2X
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 *2 X u0 p0 c0 {1,S}
+
+NH3X
+1 *1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 *3 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 *2 X u0 p0 c0
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/reactions.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/reactions.py
new file mode 100644
index 0000000000..3221fee5d5
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Alpha_vdW/training/reactions.py
@@ -0,0 +1,125 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Alpha/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+# entry(
+# index = 1,
+# label = "CH3X + H <=> CH4X",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.12, # charge transfer coeff
+# A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.51, 'V'), # reference potential
+# Ea = (0.89, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2017.01.050""",
+# longDesc = u"""
+# """,
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 1,
+ label = "CH3X + H <=> CH4X",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.23, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.53, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""
+""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+# entry(
+# index = 2,
+# label = "HOX + H <=> H2OX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# alpha = 0.07, # charge transfer coeff
+# A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+# n = 0, # temperature coeff
+# V0 = (0.39, 'V'), # reference potential
+# Ea = (0.14, 'eV/molecule'), # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""https://doi.org/10.1016/j.cattod.2017.01.050""",
+# longDesc = u"""
+# """,
+# metal = "Pt",
+# facet = "111",
+# site = "",
+# rank = 5,
+# )
+
+entry(
+ index = 2,
+ label = "HOX + H <=> H2OX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.11, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.12, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""
+""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+entry(
+ index = 3,
+ label = "NH2X + H <=> NH3X",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.35, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.5, 'V'), # reference potential
+ Ea = (0.23, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2018.03.048""",
+ longDesc = u"""
+""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/groups.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/groups.py
new file mode 100644
index 0000000000..94523a59dc
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/groups.py
@@ -0,0 +1,118 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta/groups"
+shortDesc = u""
+longDesc = u"""
+
+ *1 *1-*4H
+ || |
+ *2 + *4H+ + *e- ----> *2
+ | ||
+ ~*3~ ~*3~
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m3) * 1
+so k should be in (m3/mol/s).
+"""
+
+template(reactants=["Adsorbate", "Proton"], products=["Reduced"], ownReverse=False)
+
+reverse = "Surface_Proton_Electron_Oxidation_Beta"
+
+reactantNum = 2
+productNum = 1
+allowChargedSpecies = True
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*4', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['CHANGE_BOND', '*2', 1, '*3'],
+ ['FORM_BOND', '*1', 1, '*4'],
+])
+
+entry(
+ index = 1,
+ label = "Adsorbate",
+ group =
+"""
+1 *1 R!H u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Proton",
+ group =
+"""
+1 *4 H+ u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "CRX",
+ group =
+"""
+1 *1 C u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "NRX",
+ group =
+"""
+1 *1 N u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 6,
+ label = "ORX",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 R!H u0 {1,D} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "HN=N-X",
+ group =
+"""
+1 *1 N u0 {2,D} {4,S}
+2 *2 N u0 {1,D} {3,S}
+3 *3 X u0 {2,S}
+4 H u0 {1,S}
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: Adsorbate
+ L2: CRX
+ L2: ORX
+ L2: NRX
+ L3: HN=N-X
+
+L1: Proton
+"""
+)
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/rules.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/rules.py
new file mode 100644
index 0000000000..a1b690d2cf
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/rules.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta/rules"
+shortDesc = u""
+longDesc = u"""
+Surface adsorption of a single radical forming a single bond to the surface site
+"""
+
+entry(
+ index = 1,
+ label = "Adsorbate;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.50,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (50, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/dictionary.txt b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/dictionary.txt
new file mode 100644
index 0000000000..1e25da5418
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/dictionary.txt
@@ -0,0 +1,11 @@
+H
+1 *4 H u0 p0 c+1
+
+e
+1 *5 e u0 p0 c-1
+
+HNNX
+1 *1 N u0 p1 {2,D} {4,S}
+2 *2 N u0 p1 {1,D} {3,S}
+3 *3 X u0 p0 {2,S}
+4 H u0 p0 {1,S}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/reactions.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/reactions.py
new file mode 100644
index 0000000000..1e57cebbcb
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta/training/reactions.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+# entry(
+# index = 1,
+# label = "HNNX + H <=> H2NNX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# a = 0.5, # charge transfer coeff
+# A = (1.0e10, 'm^3/(mol*s)'), # pre-exponential factor
+# n = 0, # temperature coeff
+# V0 = (0, 'V') # reference potential
+# Ea = (40, 'kJ/mol') # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""Default""",
+# longDesc = u"""
+# David made it up as example
+# """,
+# metal = "Pt",
+# facet = "111",
+# site = ""
+# )
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/groups.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/groups.py
new file mode 100644
index 0000000000..f015fe7ea9
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/groups.py
@@ -0,0 +1,238 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta_Dissociation/groups"
+shortDesc = u""
+longDesc = u"""
+
+ *1
+ |
+ *2 + *4H+ + *e- ----> *2 + *1-*4
+ | ||
+ ~*3~ ~*3~
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m3) * 1
+so k should be in (m3/mol/s).
+"""
+
+template(reactants=["Adsorbate", "Proton"], products=["Reduced", "Adsorbate1"], ownReverse=False)
+
+reverse = "Surface_Proton_Electron_Oxidation_Beta_Dissociation"
+
+reactantNum = 2
+productNum = 2
+allowChargedSpecies = True
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*4', 1],
+ ['BREAK_BOND', '*1', 1, '*2'],
+ ['CHANGE_BOND', '*2', 1, '*3'],
+ ['FORM_BOND', '*1', 1, '*4'],
+])
+
+entry(
+ index = 1,
+ label = "Adsorbate",
+ group =
+"""
+1 *1 R!H u0 {2,S}
+2 *2 R!H u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Proton",
+ group =
+"""
+1 *4 H+ u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "CRX",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 R!H u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "CCX",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 C u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "COX",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 O u0 {1,S} {3,S}
+3 *3 X u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "CNX",
+ group =
+"""
+1 *1 C u0 {2,S}
+2 *2 N u0 {1,S} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+
+entry(
+ index = 8,
+ label = "NRX",
+ group =
+"""
+1 *1 N u0 {2,S}
+2 *2 R!H u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 9,
+ label = "NNX",
+ group =
+"""
+1 *1 N u0 {2,S}
+2 *2 N u0 {1,S} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 10,
+ label = "NOX",
+ group =
+"""
+1 *1 N u0 {2,S}
+2 *2 O u0 {1,S} {3,S}
+3 *3 X u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 11,
+ label = "NCX",
+ group =
+"""
+1 *1 N u0 {2,S}
+2 *2 C u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+
+
+entry(
+ index = 12,
+ label = "ORX",
+ group =
+"""
+1 *1 O u0 {2,S}
+2 *2 R!H u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 13,
+ label = "OCX",
+ group =
+"""
+1 *1 O u0 {2,S}
+2 *2 C u0 {1,S} {3,[S,D,T]}
+3 *3 X u0 {2,[S,D,T]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 14,
+ label = "OOX",
+ group =
+"""
+1 *1 O u0 {2,S}
+2 *2 O u0 {1,S} {3,S}
+3 *3 X u0 {2,S}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 15,
+ label = "ONX",
+ group =
+"""
+1 *1 O u0 {2,S}
+2 *2 N u0 {1,S} {3,[S,D]}
+3 *3 X u0 {2,[S,D]}
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 16,
+ label = "H2N-N-X",
+ group =
+"""
+1 *1 N u0 {2,S} {4,S} {5,S}
+2 *2 N u0 {1,S} {3,S}
+3 *3 X u0 {2,S}
+4 H u0 {1,S}
+5 H u0 {1,S}
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: Adsorbate
+ L2: CRX
+ L3: CCX
+ L3: COX
+ L3: CNX
+ L2: ORX
+ L3: OCX
+ L3: OOX
+ L3: ONX
+ L2: NRX
+ L3: NCX
+ L3: NOX
+ L3: NNX
+ L4: H2N-N-X
+
+L1: Proton
+"""
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/rules.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/rules.py
new file mode 100644
index 0000000000..e0833f7963
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/rules.py
@@ -0,0 +1,152 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton__Reduction_Beta/rules"
+shortDesc = u""
+longDesc = u"""
+Surface adsorption of a single radical forming a single bond to the surface site
+"""
+
+entry(
+ index = 0,
+ label = "Adsorbate;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (100, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 1,
+ label = "COX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (40, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 2,
+ label = "OCX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (20, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 3,
+ label = "OOX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (10, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 4,
+ label = "CCX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (40, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 5,
+ label = "NNX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (10, 'kJ/mol'), #
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 6,
+ label = "NOX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (20, 'kJ/mol'), #
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
+
+entry(
+ index = 7,
+ label = "ONX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (20, 'kJ/mol'), #
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u""""""
+)
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/dictionary.txt b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/dictionary.txt
new file mode 100644
index 0000000000..1e25da5418
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/dictionary.txt
@@ -0,0 +1,11 @@
+H
+1 *4 H u0 p0 c+1
+
+e
+1 *5 e u0 p0 c-1
+
+HNNX
+1 *1 N u0 p1 {2,D} {4,S}
+2 *2 N u0 p1 {1,D} {3,S}
+3 *3 X u0 p0 {2,S}
+4 H u0 p0 {1,S}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/reactions.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/reactions.py
new file mode 100644
index 0000000000..1e57cebbcb
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_Dissociation/training/reactions.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+# entry(
+# index = 1,
+# label = "HNNX + H <=> H2NNX",
+# degeneracy = 1,
+# kinetics = SurfaceChargeTransfer(
+# a = 0.5, # charge transfer coeff
+# A = (1.0e10, 'm^3/(mol*s)'), # pre-exponential factor
+# n = 0, # temperature coeff
+# V0 = (0, 'V') # reference potential
+# Ea = (40, 'kJ/mol') # activation energy
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# electrons = 1, # electron stochiometric coeff
+# ),
+# shortDesc = u"""Default""",
+# longDesc = u"""
+# David made it up as example
+# """,
+# metal = "Pt",
+# facet = "111",
+# site = ""
+# )
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/groups.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/groups.py
new file mode 100644
index 0000000000..a667fb5689
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/groups.py
@@ -0,0 +1,117 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta_vdW/groups"
+shortDesc = u""
+longDesc = u"""
+
+ *1 *1-*4H
+ || |
+ *2 + *4H+ + *e- ----> *2
+ : |
+ ~*3~ ~*3~
+
+The rate, which should be in mol/m2/s,
+will be given by k * (mol/m2) * (mol/m3) * 1
+so k should be in (m3/mol/s).
+"""
+
+template(reactants=["Adsorbate", "Proton"], products=["Reduced"], ownReverse=False)
+
+reverse = "Surface_Proton_Electron_Oxidation_vdW"
+
+reactantNum = 2
+productNum = 1
+allowChargedSpecies = True
+electrons = -1
+
+recipe(actions=[
+ ['LOSE_CHARGE', '*4', 1],
+ ['CHANGE_BOND', '*1', -1, '*2'],
+ ['CHANGE_BOND', '*2', 1, '*3'],
+ ['FORM_BOND', '*1', 1, '*4'],
+])
+
+entry(
+ index = 1,
+ label = "Adsorbate",
+ group =
+"""
+1 *1 R!H u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]}
+3 *3 Xv u0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 2,
+ label = "Proton",
+ group =
+"""
+1 *4 H+ u0 p0 c+1
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 4,
+ label = "CRX",
+ group =
+"""
+1 *1 C u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]}
+3 *3 Xv u0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 5,
+ label = "O=C=OX",
+ group =
+"""
+1 *1 C u0 {2,D} {3,D}
+2 *2 O u0 {1,D}
+3 O u0 {1,D}
+4 *3 Xv u0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 6,
+ label = "NRX",
+ group =
+"""
+1 *1 N u0 {2,[D,T]}
+2 *2 R!H u0 {1,[D,T]}
+3 *3 Xv u0
+""",
+ kinetics = None,
+)
+
+entry(
+ index = 7,
+ label = "ORX",
+ group =
+"""
+1 *1 O u0 {2,D}
+2 *2 R!H u0 {1,D}
+3 *3 Xv u0
+""",
+ kinetics = None,
+)
+
+
+tree(
+"""
+L1: Adsorbate
+ L2: CRX
+ L3: O=C=OX
+ L2: ORX
+ L2: NRX
+
+L1: Proton
+"""
+)
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/rules.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/rules.py
new file mode 100644
index 0000000000..676e02b23b
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/rules.py
@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta/rules"
+shortDesc = u""
+longDesc = u"""
+Surface adsorption of a single radical forming a single bond to the surface site
+"""
+
+entry(
+ index = 1,
+ label = "Adsorbate;Proton",
+ kinetics = SurfaceChargeTransfer(
+ A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (15, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""https://doi.org/10.1021/jp4100608"""
+)
+
+entry(
+ index = 2,
+ label = "O=C=OX;Proton",
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.25,
+ A = (2.5e14, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff, 0 default
+ V0 = None, # Reference potential
+ Ea = (50, 'kJ/mol'), # activation energy at the reversible potential
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ rank = 0,
+ shortDesc = u"""Default""",
+ longDesc = u"""https://doi.org/10.1021/jp4100608"""
+)
+
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/dictionary.txt b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/dictionary.txt
new file mode 100644
index 0000000000..07438b8829
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/dictionary.txt
@@ -0,0 +1,29 @@
+H
+1 *4 H u0 p0 c+1
+
+e
+1 * e u0 p0 c-1
+
+CO2X
+1 *1 O u0 p2 c0 {2,D}
+2 *2 C u0 p0 c0 {1,D} {3,D}
+3 O u0 p2 c0 {2,D}
+4 *3 X u0 p0 c0
+
+CO2HX
+1 *1 O u0 p2 c0 {2,S} {4,S}
+2 *2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 O u0 p2 c0 {2,D}
+4 *4 H u0 p0 c0 {1,S}
+5 *3 X u0 p0 c0 {2,S}
+
+N2X
+1 *1 N u0 p1 c0 {2,T}
+2 *2 N u0 p1 c0 {1,T}
+3 *3 X u0 p0 c0
+
+HNNX
+1 *1 N u0 p1 c0 {2,D} {3,S}
+2 *2 N u0 p1 c0 {1,D} {4,S}
+3 *4 H u0 p0 c0 {1,S}
+4 *3 X u0 p0 c0 {2,S}
\ No newline at end of file
diff --git a/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/reactions.py b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/reactions.py
new file mode 100644
index 0000000000..d5be1fb1bd
--- /dev/null
+++ b/input/kinetics/families/Surface_Proton_Electron_Reduction_Beta_vdW/training/reactions.py
@@ -0,0 +1,77 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Surface_Proton_Electron_Reduction_Beta_vdW/training"
+shortDesc = u"Reaction kinetics used to generate rate rules"
+longDesc = u"""
+Put kinetic parameters for specific reactions in this file to use as a
+training set for generating rate rules to populate this kinetics family.
+"""
+
+entry(
+ index = 1,
+ label = "CO2X + H <=> CO2HX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.29, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.19, 'V'), # reference potential
+ Ea = (1.00, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2017.01.050""",
+ longDesc = u"""
+""",
+ metal = "Cu",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+entry(
+ index = 2,
+ label = "CO2X + H <=> CO2HX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ alpha = 0.29, # charge transfer coeff
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (-0.50, 'V'), # reference potential
+ Ea = (0.90, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://doi.org/10.1016/j.cattod.2017.01.050""",
+ longDesc = u"""
+""",
+ metal = "Cu",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
+
+entry(
+ index = 3,
+ label = "N2X + H <=> HNNX",
+ degeneracy = 1,
+ kinetics = SurfaceChargeTransfer(
+ A = (2.5e10, 'm^3/(mol*s)'), # pre-exponential factor estimate 10^11 s^-1 * 2.5e5 m^2/mol / 1000 m^3/mol H+
+ n = 0, # temperature coeff
+ V0 = (0.0, 'V'), # reference potential
+ Ea = (1.46, 'eV/molecule'), # activation energy
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ electrons = 1, # electron stochiometric coeff
+ ),
+ shortDesc = u"""https://pubs.rsc.org/en/content/getauthorversionpdf/c8cy01845f Table 1""",
+ longDesc = u"""
+""",
+ metal = "Pt",
+ facet = "111",
+ site = "",
+ rank = 5,
+)
diff --git a/input/kinetics/families/Surface_vdW_to_Bidentate/rules.py b/input/kinetics/families/Surface_vdW_to_Bidentate/rules.py
index c41a59b831..07471ef41c 100644
--- a/input/kinetics/families/Surface_vdW_to_Bidentate/rules.py
+++ b/input/kinetics/families/Surface_vdW_to_Bidentate/rules.py
@@ -9,14 +9,20 @@
index = 1,
label = "Combined;VacantSite",
kinetics = SurfaceArrheniusBEP(
- A = (1.0e17, 'm^2/(mol*s)'),
+ A = (1.78e21, 'cm^2/(mol*s)'),
n = 0,
alpha = 0.0,
- E0 = (7, 'kcal/mol'),
+ E0 = (12, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 0,
shortDesc = u"""Default""",
- longDesc = u"""These values are made up."""
+ longDesc = u"""
+These values are based on training reaction 2.
+The other training reactions are barrierless.
+Details on the computational method to derive the rate constants for the BEP relation are provided in "Automatic mechanism generation involving
+kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+doi:10.1039/d3dd00184a
+"""
)
diff --git a/input/kinetics/families/Surface_vdW_to_Bidentate/template.cdx b/input/kinetics/families/Surface_vdW_to_Bidentate/template.cdx
new file mode 100644
index 0000000000..4c16497df2
Binary files /dev/null and b/input/kinetics/families/Surface_vdW_to_Bidentate/template.cdx differ
diff --git a/input/kinetics/families/Surface_vdW_to_Bidentate/template.eps b/input/kinetics/families/Surface_vdW_to_Bidentate/template.eps
new file mode 100644
index 0000000000..14cd6e7e44
--- /dev/null
+++ b/input/kinetics/families/Surface_vdW_to_Bidentate/template.eps
@@ -0,0 +1,693 @@
+%!PS-Adobe-2.0 EPSF-1.2
+%%Creator: ChemDraw
+%%CreationDate: 3/18/24
+%%BoundingBox: 0 0 214 46
+%%DocumentProcessColors: Cyan Magenta Yellow Black
+%%EndComments
+%%BeginProlog
+/ellipse {7 dict begin
+ /endangle exch def
+ /startangle exch def
+ /yradius exch def
+ /xradius exch def
+ /yC exch def
+ /xC exch def
+ /savematrix matrix currentmatrix def % save current transformation matrix
+ xC yC translate % translate to center of ellipse
+ xradius yradius scale % scale by radius values
+ 0 0 1 startangle endangle arc % add arc to path
+ savematrix setmatrix % restore the transformation matrix
+end
+} def
+
+/Encoding1252
+[
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /space
+ /exclam
+ /quotedbl
+ /numbersign
+ /dollar
+ /percent
+ /ampersand
+ /quotesingle
+ /parenleft
+ /parenright
+ /asterisk
+ /plus
+ /comma
+ /hyphen
+ /period
+ /slash
+ /zero
+ /one
+ /two
+ /three
+ /four
+ /five
+ /six
+ /seven
+ /eight
+ /nine
+ /colon
+ /semicolon
+ /less
+ /equal
+ /greater
+ /question
+ /at
+ /A
+ /B
+ /C
+ /D
+ /E
+ /F
+ /G
+ /H
+ /I
+ /J
+ /K
+ /L
+ /M
+ /N
+ /O
+ /P
+ /Q
+ /R
+ /S
+ /T
+ /U
+ /V
+ /W
+ /X
+ /Y
+ /Z
+ /bracketleft
+ /backslash
+ /bracketright
+ /asciicircum
+ /underscore
+ /grave
+ /a
+ /b
+ /c
+ /d
+ /e
+ /f
+ /g
+ /h
+ /i
+ /j
+ /k
+ /l
+ /m
+ /n
+ /o
+ /p
+ /q
+ /r
+ /s
+ /t
+ /u
+ /v
+ /w
+ /x
+ /y
+ /z
+ /braceleft
+ /bar
+ /braceright
+ /asciitilde
+ /.notdef
+ /.notdef
+ /.notdef
+ /quotesinglbase
+ /florin
+ /quotedblbase
+ /ellipsis
+ /dagger
+ /daggerdbl
+ /circumflex
+ /perthousand
+ /Scaron
+ /guilsinglleft
+ /OE
+ /.notdef
+ /.notdef
+ /.notdef
+ /.notdef
+ /quoteleft
+ /quoteright
+ /quotedblleft
+ /quotedblright
+ /bullet
+ /endash
+ /emdash
+ /tilde
+ /trademark
+ /scaron
+ /guilsinglright
+ /oe
+ /dotlessi
+ /.notdef
+ /Ydieresis
+ /.notdef
+ /exclamdown
+ /cent
+ /sterling
+ /currency
+ /yen
+ /brokenbar
+ /section
+ /dieresis
+ /copyright
+ /ordfeminine
+ /guillemotleft
+ /logicalnot
+ /guilsinglright
+ /registered
+ /macron
+ /ring
+ /plusminus
+ /twosuperior
+ /threesuperior
+ /acute
+ /mu
+ /paragraph
+ /periodcentered
+ /cedilla
+ /onesuperior
+ /ordmasculine
+ /guillemotright
+ /onequarter
+ /onehalf
+ /threequarters
+ /questiondown
+ /Agrave
+ /Aacute
+ /Acircumflex
+ /Atilde
+ /Adieresis
+ /Aring
+ /AE
+ /Ccedilla
+ /Egrave
+ /Eacute
+ /Ecircumflex
+ /Edieresis
+ /Igrave
+ /Iacute
+ /Icircumflex
+ /Idieresis
+ /Eth
+ /Ntilde
+ /Ograve
+ /Oacute
+ /Ocircumflex
+ /Otilde
+ /Odieresis
+ /multiply
+ /Oslash
+ /Ugrave
+ /Uacute
+ /Ucircumflex
+ /Udieresis
+ /Yacute
+ /Thorn
+ /germandbls
+ /agrave
+ /aacute
+ /acircumflex
+ /atilde
+ /adieresis
+ /aring
+ /ae
+ /ccedilla
+ /egrave
+ /eacute
+ /ecircumflex
+ /edieresis
+ /igrave
+ /iacute
+ /icircumflex
+ /idieresis
+ /eth
+ /ntilde
+ /ograve
+ /oacute
+ /ocircumflex
+ /otilde
+ /odieresis
+ /divide
+ /oslash
+ /ugrave
+ /uacute
+ /ucircumflex
+ /udieresis
+ /yacute
+ /thorn
+ /ydieresis
+]
+def
+
+ /reencode1252
+ {
+ findfont dup
+ length dict copy
+ dup /Encoding Encoding1252 put
+ definefont
+ } bind def
+%%EndProlog
+[1 0 0 -1 0 46] concat
+[1 0 0 1 -163 -338] concat
+[0.05 0 0 0.05 0 0] concat
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5862.21 7177.5 moveto
+5156.21 7177.5 lineto
+5156.21 7157.5 lineto
+5862.21 7157.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+5300.21 7217.5 moveto
+6006.21 7217.5 lineto
+6006.21 7237.5 lineto
+5300.21 7237.5 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+6036.21 7177.5 moveto
+6036.21 7177.5 5861.21 7177.5 5861.21 7177.5 curveto
+5861.21 7144.75 5836.21 7115.5 5836.21 7115.5 curveto
+5836.21 7115.5 6036.21 7177.5 6036.21 7177.5 curveto
+6036.21 7177.5 6036.21 7177.5 6036.21 7177.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+0 0 0 setrgbcolor
+1 setlinewidth
+[] 0 setdash
+newpath
+5126.21 7217.5 moveto
+5126.21 7217.5 5326.21 7279.5 5326.21 7279.5 curveto
+5326.21 7279.5 5301.21 7230.25 5301.21 7217.5 curveto
+5301.21 7217.5 5126.21 7217.5 5126.21 7217.5 curveto
+5126.21 7217.5 5126.21 7217.5 5126.21 7217.5 curveto
+fill
+stroke
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 /Helvetica reencode1252
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3297.52 7519.79] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3380.94 7591.42] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 4253.76 7519.79] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 4337.19 7591.42] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3298.36 6947.87] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3381.78 7019.51] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 3898.36 6947.87] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 3981.78 7019.51] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3563.69 6921.87 moveto
+3563.69 6901.87 lineto
+3862.75 6901.87 lineto
+3862.75 6921.87 lineto
+3563.69 6921.87 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3563.69 6993.87 moveto
+3563.69 6973.87 lineto
+3862.75 6973.87 lineto
+3862.75 6993.87 lineto
+3563.69 6993.87 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+240 scalefont
+setfont
+newpath
+[1 0 -0 1 3814.6 7560.96] concat
+0 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(+) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6673.36 6933.83] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(1) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6756.78 7005.46] concat
+1 0 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7273.36 6933.83] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(2) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7356.78 7005.46] concat
+0 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(R) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6938.69 6943.83 moveto
+6938.69 6923.83 lineto
+7237.75 6923.83 lineto
+7237.75 6943.83 lineto
+6938.69 6943.83 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 6678.66 7533.83] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(3) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 6762.08 7605.46] concat
+0 0.501961 0 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+6824.28 7063.63 moveto
+6844.28 7063.86 lineto
+6840.3 7403.89 lineto
+6820.31 7403.66 lineto
+6824.28 7063.63 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+150 scalefont
+setfont
+newpath
+[1 0 -0 1 7279.52 7533.83] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(4) show
+grestore
+grestore
+gsave
+[1 0 0 1 0 0] concat
+/Helvetica-1252 findfont
+200 scalefont
+setfont
+newpath
+[1 0 -0 1 7362.94 7605.46] concat
+1 0 1 setrgbcolor
+gsave
+[1 0 0 -1 0 0] concat
+0 0 moveto
+(X) show
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+7424.45 7063.65 moveto
+7444.45 7063.85 lineto
+7440.96 7404.65 lineto
+7420.96 7404.45 lineto
+7424.45 7063.65 lineto
+closepath
+fill
+grestore
+grestore
+gsave
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3448.03 7077.52 moveto
+3468.02 7077.98 lineto
+3466.59 7140.39 lineto
+3446.59 7139.93 lineto
+3448.03 7077.52 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3445.16 7202.34 moveto
+3465.15 7202.8 lineto
+3463.72 7265.2 lineto
+3443.72 7264.74 lineto
+3445.16 7202.34 lineto
+closepath
+fill
+grestore
+gsave
+[1 0 0 1 0 0] concat
+0 0 0 setrgbcolor
+newpath
+3442.29 7327.15 moveto
+3462.28 7327.61 lineto
+3460.85 7390.02 lineto
+3440.86 7389.56 lineto
+3442.29 7327.15 lineto
+closepath
+fill
+grestore
+grestore
+%%Trailer
+showpage
diff --git a/input/kinetics/families/Surface_vdW_to_Bidentate/training/reactions.py b/input/kinetics/families/Surface_vdW_to_Bidentate/training/reactions.py
index 13ec26a5b4..96a317934a 100644
--- a/input/kinetics/families/Surface_vdW_to_Bidentate/training/reactions.py
+++ b/input/kinetics/families/Surface_vdW_to_Bidentate/training/reactions.py
@@ -13,7 +13,7 @@
index = 1,
label = "HCCHX_vdW + X <=> HCCH_2X",
kinetics = SurfaceArrhenius(
- A = (5.0E17, 'm^2/(mol*s)'),
+ A = (1.0E21, 'cm^2/(mol*s)'),
n = 0,
Ea = (0, 'J/mol'),
Tmin = (200, 'K'),
@@ -22,7 +22,11 @@
rank = 8,
shortDesc = u"""Default""",
longDesc = u"""
- Barrierless according to DFT calculations by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.""",
+ Barrierless according to DFT calculations by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+ Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+ kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+ doi:10.1039/d3dd00184a
+ """,
metal = "Pt",
)
@@ -31,16 +35,20 @@
index = 2,
label = "H2CCH2X_vdW + X <=> H2CCH2_2X",
kinetics = SurfaceArrhenius(
- A = (9.122E16, 'm^2/(mol*s)'),
- n = 0.088,
- Ea = (11732.0, 'J/mol'),
+ A = (1.78E21, 'cm^2/(mol*s)'),
+ n = 0.0,
+ Ea = (12, 'kJ/mol'),
Tmin = (200, 'K'),
Tmax = (3000, 'K'),
),
rank = 8,
shortDesc = u"""Default""",
longDesc = u"""
- Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.""",
+ Calculated with DFT by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+ Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+ kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+ doi:10.1039/d3dd00184a
+ """,
metal = "Pt",
)
@@ -48,7 +56,7 @@
index = 3,
label = "H2COX_vdW + X <=> H2CO_2X",
kinetics = SurfaceArrhenius(
- A = (5.0E17, 'm^2/(mol*s)'),
+ A = (1.0E21, 'cm^2/(mol*s)'),
n = 0,
Ea = (0, 'J/mol'),
Tmin = (200, 'K'),
@@ -57,6 +65,10 @@
rank = 8,
shortDesc = u"""Default""",
longDesc = u"""
- Barrierless according to DFT calculations by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.""",
+ Barrierless according to DFT calculations by Katrín Blöndal at Brown University, using the vdW-DF-cx functional in Quantum ESPRESSO.
+ Details on the computational method to derive the rate constants are provided in "Automatic mechanism generation involving
+ kinetics of surface reactions with bidentate adsorbates" by B. Kreitz, K. Blöndal, K. Badger, R. H. West and C. F. Goldsmith, Digital Discovery, 2024, 3, 173
+ doi:10.1039/d3dd00184a
+ """,
metal = "Pt",
)
diff --git a/input/kinetics/families/recommended.py b/input/kinetics/families/recommended.py
index 75d463edeb..ae3e50700e 100644
--- a/input/kinetics/families/recommended.py
+++ b/input/kinetics/families/recommended.py
@@ -109,24 +109,26 @@
'Surface_Adsorption_Dissociative',
'Surface_Dissociation',
'Surface_Abstraction',
- 'Surface_EleyRideal_Addition_Multiple_Bond',
- 'Surface_Migration',
'Surface_Dissociation_Double_vdW',
- 'Surface_Addition_Single_vdW',
'Surface_Dissociation_vdW',
'Surface_Abstraction_vdW',
- 'Surface_Dual_Adsorption_vdW',
'Surface_Dissociation_Beta',
- 'Surface_Adsorption_Abstraction_vdW',
'Surface_Adsorption_Bidentate',
'Surface_Bidentate_Dissociation',
- 'Surface_DoubleBond_to_Bidentate',
+ 'Surface_Monodentate_to_Bidentate',
'Surface_Dissociation_to_Bidentate',
'Surface_vdW_to_Bidentate',
- 'Surface_Abstraction_Single_vdW',
'Surface_Adsorption_Dissociative_Double',
'Surface_Abstraction_Beta',
'Surface_Abstraction_Beta_double_vdW',
+ 'Surface_Dissociation_Double',
+ 'Surface_Dissociation_Beta_vdW',
+ 'Surface_Abstraction_Beta_vdW',
+ 'Surface_Abstraction_Single_vdW',
+ #'Surface_Carbonate_Deposition',
+ #'Surface_Carbonate_F_CO_Decomposition',
+ #'Surface_Carbonate_2F_Decomposition',
+ #'Surface_Carbonate_CO_Decomposition'
}
# reaction families for halogen chemistry only
@@ -146,4 +148,25 @@
# Surface chemistry families that are under development and not yet working well.
surface_development = {
#'Surface_Adsorption_Double',
+ 'Surface_EleyRideal_Addition_Multiple_Bond',
+ 'Surface_Migration',
+}
+
+# Electrochemical families!
+electrochem = {
+ 'Surface_Proton_Electron_Reduction_Alpha',
+ 'Surface_Proton_Electron_Reduction_Alpha_vdW',
+ 'Surface_Proton_Electron_Reduction_Beta',
+ 'Surface_Proton_Electron_Reduction_Beta_vdW',
+ 'Surface_Proton_Electron_Reduction_Beta_Dissociation',
+ '1,2_Elimination_LiR',
+ '1,2_Intra_Elimination_LiR',
+ 'Cation_Addition_MultipleBond',
+ 'Cation_NO_Substitution',
+ 'Cation_NO_Ring_Opening',
+ 'Cation_Li_Abstraction',
+ 'Cation_R_Recombination',
+ 'Cation_Addition_MultipleBond_Disprop',
+ 'Li_Abstraction',
+ 'R_Addition_MultipleBond_Disprop',
}
diff --git a/input/kinetics/libraries/C6H5_C4H4_Mebel/reactions.py b/input/kinetics/libraries/C6H5_C4H4_Mebel/reactions.py
index 9b75dd1ab0..16b309ceaa 100644
--- a/input/kinetics/libraries/C6H5_C4H4_Mebel/reactions.py
+++ b/input/kinetics/libraries/C6H5_C4H4_Mebel/reactions.py
@@ -88,7 +88,6 @@
],
),
],
- comment = 'fit btw. 500 and 1375 K with MAE of 1.9%, 4.6%\nfit btw. 500 and 1650 K with MAE of 2.8%, 6.0%\nfit btw. 500 and 1800 K with MAE of 2.5%, 4.6%\nfit btw. 500 and 2250 K with MAE of 3.7%, 12.1%',
),
longDesc =
u"""
@@ -156,7 +155,6 @@
],
),
],
- comment = 'fit btw. 500 and 800 K with MAE of 4.3%, 7.4%\nfit btw. 500 and 1000 K with MAE of 1.6%, 2.7%\nfit btw. 500 and 1250 K with MAE of 0.1%, 0.2%\nfit btw. 500 and 1650 K with MAE of 1.3%, 2.2%',
),
longDesc =
u"""
@@ -239,7 +237,6 @@
],
),
],
- comment = 'fit btw. 500 and 1250 K with MAE of 0.7%, 2.6%\nfit btw. 500 and 1375 K with MAE of 1.6%, 3.8%\nfit btw. 500 and 1650 K with MAE of 4.1%, 11.3%\nfit btw. 500 and 1800 K with MAE of 2.8%, 8.3%',
),
longDesc =
u"""
@@ -322,7 +319,6 @@
],
),
],
- comment = 'fit btw. 500 and 1250 K with MAE of 0.5%, 1.5%\nfit btw. 500 and 1500 K with MAE of 3.0%, 7.7%\nfit btw. 500 and 1650 K with MAE of 4.6%, 12.6%\nfit btw. 500 and 2000 K with MAE of 5.6%, 16.9%',
),
longDesc =
u"""
@@ -395,7 +391,6 @@
],
),
],
- comment = 'fit btw. 500 and 800 K with MAE of 7.9%, 13.7%\nfit btw. 500 and 1000 K with MAE of 2.4%, 5.5%\nfit btw. 500 and 1250 K with MAE of 0.6%, 1.5%\nfit btw. 500 and 1650 K with MAE of 0.4%, 0.6%',
),
longDesc =
u"""
@@ -478,7 +473,6 @@
],
),
],
- comment = 'fit btw. 500 and 1125 K with MAE of 1.1%, 2.5%\nfit btw. 500 and 1375 K with MAE of 3.1%, 6.3%\nfit btw. 500 and 1650 K with MAE of 7.5%, 24.6%\nfit btw. 500 and 2000 K with MAE of 8.9%, 35.7%',
),
longDesc =
u"""
@@ -561,7 +555,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 2.0%, 5.3%\nfit btw. 600 and 2500 K with MAE of 7.5%, 17.2%\nfit btw. 600 and 2500 K with MAE of 4.3%, 14.0%\nfit btw. 500 and 2500 K with MAE of 27.1%, 73.7%',
),
longDesc =
u"""
@@ -682,7 +675,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 0.9%, 2.7% from P2\nfit btw. 500 and 2500 K with MAE of 1.2%, 3.1% from P3\nfit btw. 500 and 2500 K with MAE of 2.1%, 4.1% from P2\nfit btw. 500 and 2500 K with MAE of 5.4%, 12.4% from P3\nfit btw. 500 and 2500 K with MAE of 5.9%, 10.9% from P2\nfit btw. 500 and 2500 K with MAE of 4.8%, 13.7% from P3\nfit btw. 500 and 2500 K with MAE of 6.6%, 19.7% from P2\nfit btw. 500 and 2500 K with MAE of 6.3%, 15.6% from P3',
),
longDesc =
u"""
@@ -769,7 +761,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 5.0%, 18.5%\nfit btw. 500 and 2500 K with MAE of 6.7%, 16.3%\nfit btw. 500 and 2500 K with MAE of 3.3%, 7.1%\nfit btw. 500 and 2500 K with MAE of 10.3%, 28.6%',
),
longDesc =
u"""
@@ -852,7 +843,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 2.8%, 10.3%\nfit btw. 500 and 2500 K with MAE of 8.8%, 18.5%\nfit btw. 500 and 2500 K with MAE of 5.5%, 12.4%\nfit btw. 500 and 2500 K with MAE of 8.4%, 14.5%',
),
longDesc =
u"""
@@ -925,7 +915,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 9.8%, 18.0%\nfit btw. 500 and 2500 K with MAE of 1.4%, 3.9%\nfit btw. 500 and 2500 K with MAE of 2.8%, 5.8%\nfit btw. 500 and 2500 K with MAE of 4.2%, 12.1%',
),
longDesc =
u"""
@@ -1056,7 +1045,6 @@
],
),
],
- comment = 'fit btw. 500 and 1125 K with MAE of 0.3%, 0.8% from P2\nfit btw. 500 and 1125 K with MAE of 0.7%, 1.3% from P3\nfit btw. 500 and 1375 K with MAE of 0.9%, 1.8% from P2\nfit btw. 500 and 1375 K with MAE of 0.9%, 1.6% from P3\nfit btw. 500 and 1650 K with MAE of 1.7%, 3.5% from P2\nfit btw. 500 and 1650 K with MAE of 1.7%, 3.7% from P3\nfit btw. 500 and 2000 K with MAE of 31.6%, 154.8% from P2\nfit btw. 500 and 2000 K with MAE of 29.8%, 142.2% from P3',
),
longDesc =
u"""
@@ -1191,7 +1179,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 1.5%, 2.7% from P2\nfit btw. 500 and 2500 K with MAE of 1.3%, 2.0% from P3\nfit btw. 500 and 2500 K with MAE of 6.5%, 17.4% from P2\nfit btw. 500 and 2500 K with MAE of 1.3%, 5.7% from P3\nfit btw. 500 and 2500 K with MAE of 3.7%, 9.9% from P2\nfit btw. 500 and 2500 K with MAE of 4.4%, 13.2% from P3\nfit btw. 500 and 2500 K with MAE of 22.8%, 76.6% from P2\nfit btw. 500 and 2500 K with MAE of 6.4%, 14.7% from P3',
),
longDesc =
u"""
@@ -1278,7 +1265,6 @@
],
),
],
- comment = 'fit btw. 500 and 1375 K with MAE of 2.2%, 6.2%\nfit btw. 500 and 1650 K with MAE of 3.2%, 8.6%\nfit btw. 500 and 1800 K with MAE of 2.2%, 4.4%\nfit btw. 500 and 2250 K with MAE of 2.5%, 4.4%',
),
longDesc =
u"""
@@ -1361,7 +1347,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 0.7%, 1.2%\nfit btw. 500 and 2500 K with MAE of 3.5%, 7.6%\nfit btw. 500 and 2500 K with MAE of 2.3%, 5.9%\nfit btw. 500 and 2500 K with MAE of 17.2%, 39.2%',
),
longDesc =
u"""
@@ -1439,7 +1424,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 1.1%, 2.6%\nfit btw. 500 and 2500 K with MAE of 1.7%, 3.3%\nfit btw. 500 and 2500 K with MAE of 16.8%, 45.7%\nfit btw. 500 and 2500 K with MAE of 6.1%, 18.2%',
),
longDesc =
u"""
@@ -1522,7 +1506,6 @@
],
),
],
- comment = 'fit btw. 500 and 1250 K with MAE of 0.8%, 1.3%\nfit btw. 500 and 1375 K with MAE of 1.6%, 3.1%\nfit btw. 500 and 1650 K with MAE of 4.0%, 10.0%\nfit btw. 500 and 1800 K with MAE of 2.4%, 4.7%',
),
longDesc =
u"""
@@ -1605,7 +1588,6 @@
],
),
],
- comment = 'fit btw. 500 and 1250 K with MAE of 1.1%, 2.4%\nfit btw. 500 and 1500 K with MAE of 5.1%, 20.8%\nfit btw. 500 and 1650 K with MAE of 3.6%, 6.4%\nfit btw. 500 and 2000 K with MAE of 1.1%, 1.8%',
),
longDesc =
u"""
@@ -1688,7 +1670,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 6.0%, 22.1%\nfit btw. 600 and 2500 K with MAE of 9.0%, 24.4%\nfit btw. 600 and 2500 K with MAE of 7.8%, 19.9%\nfit btw. 500 and 2500 K with MAE of 20.8%, 47.5%',
),
longDesc =
u"""
@@ -1814,7 +1795,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 6.8%, 24.2% from P3\nfit btw. 500 and 2500 K with MAE of 1.8%, 6.8% from P2\nfit btw. 500 and 2500 K with MAE of 12.0%, 26.5% from P3\nfit btw. 500 and 2500 K with MAE of 0.8%, 1.8% from P2\nfit btw. 500 and 2500 K with MAE of 33.5%, 126.4% from P3\nfit btw. 500 and 2500 K with MAE of 9.1%, 20.9% from P2\nfit btw. 500 and 2500 K with MAE of 8.8%, 21.0% from P3\nfit btw. 500 and 2500 K with MAE of 7.9%, 23.5% from P2',
),
longDesc =
u"""
@@ -1901,7 +1881,6 @@
],
),
],
- comment = 'fit btw. 500 and 2500 K with MAE of 2.6%, 9.1%\nfit btw. 500 and 2500 K with MAE of 11.0%, 21.9%\nfit btw. 500 and 2500 K with MAE of 6.7%, 14.9%\nfit btw. 500 and 2500 K with MAE of 6.8%, 12.3%',
),
longDesc =
u"""
@@ -1924,7 +1903,6 @@
n = 2.96,
Ea = (4436.3, 'cal/mol'),
T0 = (1, 'K'),
- comment = 'fit btw. 500 and 2500 K',
),
],
),
@@ -1947,7 +1925,6 @@
n = 2.88,
Ea = (8611.9, 'cal/mol'),
T0 = (1, 'K'),
- comment = 'fit btw. 500 and 2500 K',
),
],
),
diff --git a/input/kinetics/libraries/Chung_solvation_corrections/dictionary.txt b/input/kinetics/libraries/Chung_solvation_corrections/dictionary.txt
new file mode 100644
index 0000000000..4d3e2110f5
--- /dev/null
+++ b/input/kinetics/libraries/Chung_solvation_corrections/dictionary.txt
@@ -0,0 +1,4262 @@
+C=C=[C]C
+multiplicity 2
+1 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,D} {8,S} {9,S}
+3 C u1 p0 c0 {1,S} {4,D}
+4 C u0 p0 c0 {2,D} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+
+[CH2]C=C=C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {4,D} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,D} {8,S} {9,S}
+4 C u0 p0 c0 {1,D} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C=[C]C
+multiplicity 2
+1 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {3,D} {7,S} {8,S}
+3 C u1 p0 c0 {1,S} {2,D}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+[CH]=CC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {7,S}
+3 C u1 p0 c0 {2,D} {8,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+
+CC(=O)C(C)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {7,S} {12,S} {13,S} {14,S}
+7 C u0 p0 c0 {2,D} {4,S} {6,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+
+[CH2]C(OO)C(C)=O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {14,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {6,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {3,D} {4,S} {5,S}
+7 C u1 p0 c0 {4,S} {12,S} {13,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {2,S}
+
+CC(C)(C)O[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+
+[CH2]C(C)(C)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u1 p0 c0 {3,S} {13,S} {14,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+CC(C)(C=O)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {8,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u0 p0 c0 {4,S} {14,S} {15,S} {16,S}
+8 C u0 p0 c0 {2,D} {4,S} {17,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {8,S}
+
+CC(C)([C]=O)COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u0 p2 c0 {1,S} {17,S}
+3 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u0 p0 c0 {4,S} {14,S} {15,S} {16,S}
+8 C u1 p0 c0 {3,D} {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {2,S}
+
+CC(C)(C=O)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u0 p0 c0 {2,D} {4,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+
+CC(C)([C]=O)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {14,S}
+3 O u0 p2 c0 {7,D}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {3,D} {4,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {2,S}
+
+[CH2]C(C)(C=O)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {14,S}
+3 O u0 p2 c0 {7,D}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+6 C u1 p0 c0 {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {3,D} {4,S} {13,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {2,S}
+
+CC(C)(CO)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {16,S}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+
+CC(C)([CH]O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {2,S} {4,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(C)(CO)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(C)(COO)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {5,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 O u1 p2 c0 {2,S}
+5 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+6 C u0 p0 c0 {1,S} {5,S} {9,S} {10,S}
+7 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+8 C u0 p0 c0 {5,S} {14,S} {15,S} {16,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {3,S}
+
+[CH2]C(C)(COO)OO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u0 p2 c0 {2,S} {16,S}
+4 O u0 p2 c0 {1,S} {17,S}
+5 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+6 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+7 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+8 C u1 p0 c0 {5,S} {14,S} {15,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {4,S}
+
+CC(C)(CO[O])OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 O u1 p2 c0 {2,S}
+5 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+6 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+7 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+8 C u0 p0 c0 {5,S} {14,S} {15,S} {16,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {3,S}
+
+CC(C)(O)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {16,S}
+2 O u0 p2 c0 {3,S} {5,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+[CH2]C(C)(O)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(C)C(O)O[O]
+multiplicity 2
+1 O u0 p2 c0 {5,S} {16,S}
+2 O u0 p2 c0 {3,S} {5,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {2,S} {4,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+C[C](C)C(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {2,S} {7,S} {8,S}
+5 C u0 p0 c0 {7,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {7,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {4,S} {5,S} {6,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(C)C(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {2,S} {4,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(C)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+
+C[C](C)COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {6,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {6,S} {12,S} {13,S} {14,S}
+6 C u1 p0 c0 {3,S} {4,S} {5,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {2,S}
+
+[CH2]C(C)COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u1 p0 c0 {3,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+CC(C)O[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C[C](C)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u0 p2 c0 {1,S} {12,S}
+3 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {5,S} {9,S} {10,S} {11,S}
+5 C u1 p0 c0 {1,S} {3,S} {4,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {2,S}
+
+[CH2]C(C)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {12,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u1 p0 c0 {3,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+CC(CCO)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {6,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+
+CC(C[CH]O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {2,S} {5,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC([CH]CO)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {2,S} {7,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(CO)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {5,S} {16,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+CC([CH]O)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {2,S} {4,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C[C](CO)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {7,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {7,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {4,S} {5,S} {6,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(CO)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {6,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {11,S} {12,S}
+6 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(CO[O])COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {7,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 O u1 p2 c0 {2,S}
+5 C u0 p0 c0 {6,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {5,S} {12,S} {13,S}
+7 C u0 p0 c0 {2,S} {5,S} {10,S} {11,S}
+8 C u0 p0 c0 {5,S} {14,S} {15,S} {16,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {7,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {3,S}
+
+C[C](COO)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 O u0 p2 c0 {2,S} {17,S}
+5 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {8,S} {11,S} {12,S}
+7 C u0 p0 c0 {8,S} {13,S} {14,S} {15,S}
+8 C u1 p0 c0 {5,S} {6,S} {7,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {4,S}
+
+[CH2]C(COO)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {7,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 O u0 p2 c0 {2,S} {17,S}
+5 C u0 p0 c0 {6,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {5,S} {10,S} {11,S}
+7 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+8 C u1 p0 c0 {5,S} {14,S} {15,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {8,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {3,S}
+17 H u0 p0 c0 {4,S}
+
+CC(CO[O])OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {1,S} {14,S}
+4 O u1 p2 c0 {2,S}
+5 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+6 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+7 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {3,S}
+
+[CH2]C(COO)OO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u0 p2 c0 {2,S} {13,S}
+4 O u0 p2 c0 {1,S} {14,S}
+5 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+6 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+7 C u1 p0 c0 {5,S} {11,S} {12,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {4,S}
+
+CC(O)C(C)O[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {16,S}
+2 O u0 p2 c0 {3,S} {5,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {7,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+C[C](O)C(C)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {7,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {2,S} {4,S} {6,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(O)C(C)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {7,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(OO)C(C)O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {2,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {7,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CC(O)CCO[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {16,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {6,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+CC(O)[CH]COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {7,S} {12,S} {13,S}
+6 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+7 C u1 p0 c0 {4,S} {5,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C[C](O)CCOO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {7,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {2,S} {4,S} {6,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(O)CCOO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {4,S} {7,S} {8,S}
+6 C u0 p0 c0 {1,S} {4,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CCC(C)(O)O[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {16,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+5 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {7,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {1,S}
+
+C[CH]C(C)(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {7,S}
+5 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+6 C u0 p0 c0 {7,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]C(O)(CC)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {7,S}
+5 C u0 p0 c0 {4,S} {6,S} {8,S} {9,S}
+6 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]CC(C)(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+5 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CCC(C)O[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {7,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+
+C[CH]C(C)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u0 p0 c0 {3,S} {8,S} {9,S} {10,S}
+5 C u0 p0 c0 {6,S} {11,S} {12,S} {13,S}
+6 C u1 p0 c0 {3,S} {5,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+[CH2]C(CC)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u0 p0 c0 {3,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 C u1 p0 c0 {3,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+[CH2]CC(C)OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {7,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u1 p0 c0 {4,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+CCC(C)[O]
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {3,S} {12,S} {13,S} {14,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+[CH2]CC(C)O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {14,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 C u0 p0 c0 {2,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u1 p0 c0 {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+CCC(CO)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+
+CCC([CH]O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {10,S}
+5 C u0 p0 c0 {4,S} {6,S} {8,S} {9,S}
+6 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {2,S} {4,S} {14,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C[CH]C(CO)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {7,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]CC(CO)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {4,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CCC(O)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {16,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+CC[C](O)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {6,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {7,S} {13,S} {14,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u1 p0 c0 {2,S} {4,S} {5,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C[CH]C(O)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {2,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {7,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]CC(O)COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {2,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {4,S} {11,S} {12,S}
+7 C u1 p0 c0 {5,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CCCC(O)O[O]
+multiplicity 2
+1 O u0 p2 c0 {6,S} {16,S}
+2 O u0 p2 c0 {3,S} {6,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {5,S} {6,S} {10,S} {11,S}
+5 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {2,S} {4,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {1,S}
+
+CC[CH]C(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {6,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {7,S} {10,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {5,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C[CH]CC(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {4,S} {10,S}
+6 C u0 p0 c0 {7,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH2]CCC(O)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {4,S} {12,S}
+6 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+7 C u1 p0 c0 {6,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+CCCCO[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {4,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+
+CC[CH]COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {6,S} {12,S} {13,S}
+5 C u0 p0 c0 {3,S} {9,S} {10,S} {11,S}
+6 C u1 p0 c0 {3,S} {4,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+C[CH]CCOO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {6,S} {11,S} {12,S} {13,S}
+6 C u1 p0 c0 {3,S} {5,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+[CH2]CCCOO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {3,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+6 C u1 p0 c0 {4,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+CCCC[O]
+multiplicity 2
+1 O u1 p2 c0 {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u0 p0 c0 {1,S} {3,S} {13,S} {14,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+C[CH]CCO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {14,S}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {8,S} {9,S}
+4 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {2,S} {4,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+[CH2]CCCO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u1 p0 c0 {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+CCCO[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C[CH]COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {12,S}
+3 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {5,S} {8,S} {9,S} {10,S}
+5 C u1 p0 c0 {3,S} {4,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+[CH2]CCOO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {12,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u1 p0 c0 {3,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+COCO[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 O u1 p2 c0 {2,S}
+4 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+[CH2]OCOO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 O u0 p2 c0 {2,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+5 C u1 p0 c0 {1,S} {8,S} {9,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {3,S}
+
+CO[C]=O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,D}
+3 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+4 C u1 p0 c0 {1,S} {2,D}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[CH2]OC=O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,D}
+3 C u1 p0 c0 {1,S} {5,S} {6,S}
+4 C u0 p0 c0 {1,S} {2,D} {7,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+
+C[CH]O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u1 p0 c0 {1,S} {2,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+
+[CH2]CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {8,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u1 p0 c0 {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+
+[CH2]C(C)C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u1 p0 c0 {1,S} {12,S} {13,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+C[C](C)C
+multiplicity 2
+1 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+4 C u1 p0 c0 {1,S} {2,S} {3,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+
+[CH2]C=C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,D} {4,S}
+2 C u1 p0 c0 {1,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,D} {7,S} {8,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+CCC[CH]O
+multiplicity 2
+1 O u0 p2 c0 {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {1,S} {3,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+[CH2]COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {9,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u1 p0 c0 {3,S} {7,S} {8,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {2,S}
+
+CCO[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+[CH]=CC#C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,D} {5,S}
+2 C u0 p0 c0 {1,S} {4,T}
+3 C u1 p0 c0 {1,D} {6,S}
+4 C u0 p0 c0 {2,T} {7,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+
+C#C[C]=C
+multiplicity 2
+1 C u0 p0 c0 {2,D} {5,S} {6,S}
+2 C u1 p0 c0 {1,D} {3,S}
+3 C u0 p0 c0 {2,S} {4,T}
+4 C u0 p0 c0 {3,T} {7,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {4,S}
+
+[CH]=CC=C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,D} {5,S}
+2 C u0 p0 c0 {1,S} {4,D} {6,S}
+3 C u0 p0 c0 {1,D} {7,S} {8,S}
+4 C u1 p0 c0 {2,D} {9,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+
+C=[C]C=C
+multiplicity 2
+1 C u0 p0 c0 {2,D} {4,S} {5,S}
+2 C u0 p0 c0 {1,D} {6,S} {7,S}
+3 C u0 p0 c0 {4,D} {8,S} {9,S}
+4 C u1 p0 c0 {1,S} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+[O]COC=O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u1 p2 c0 {4,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {3,D} {8,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {5,S}
+
+O=[C]OCO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {8,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+5 C u1 p0 c0 {1,S} {3,D}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {2,S}
+
+[O]COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {7,S}
+3 O u1 p2 c0 {4,S}
+4 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+5 H u0 p0 c0 {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {2,S}
+
+[O]OCO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {7,S}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+5 H u0 p0 c0 {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {2,S}
+
+[O]OCC=O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {2,D} {4,S} {8,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {5,S}
+
+O=[C]COO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {8,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u1 p0 c0 {3,D} {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {2,S}
+
+[O]OCCCCO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {7,S} {16,S}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {5,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {4,S} {12,S} {13,S}
+7 C u0 p0 c0 {2,S} {5,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+
+OCC[CH]COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {5,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {7,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+OC[CH]CCOO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {6,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {2,S} {7,S} {12,S} {13,S}
+7 C u1 p0 c0 {4,S} {6,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+O[CH]CCCOO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {7,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {5,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {4,S} {12,S} {13,S}
+7 C u1 p0 c0 {2,S} {5,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+[CH]=CCC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+3 C u0 p0 c0 {1,S} {4,D} {10,S}
+4 C u1 p0 c0 {3,D} {11,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+
+C#C
+1 C u0 p0 c0 {2,T} {3,S}
+2 C u0 p0 c0 {1,T} {4,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
+C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+[CH3]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+[C]#C
+multiplicity 2
+1 C u0 p0 c0 {2,T} {3,S}
+2 C u1 p0 c0 {1,T}
+3 H u0 p0 c0 {1,S}
+
+[CH]=C
+multiplicity 2
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u1 p0 c0 {1,D} {5,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+
+[H]
+multiplicity 2
+1 H u1 p0 c0
+
+[CH]=CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {4,S}
+3 C u1 p0 c0 {2,D} {5,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+
+[OH]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+C#CC#C
+1 C u0 p0 c0 {2,S} {3,T}
+2 C u0 p0 c0 {1,S} {4,T}
+3 C u0 p0 c0 {1,T} {5,S}
+4 C u0 p0 c0 {2,T} {6,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {4,S}
+
+C[C]=CC
+multiplicity 2
+1 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {1,S} {4,D} {11,S}
+4 C u1 p0 c0 {2,S} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {3,S}
+
+C#CC
+1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,T}
+3 C u0 p0 c0 {2,T} {7,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+
+C#CC=C
+1 C u0 p0 c0 {2,D} {3,S} {5,S}
+2 C u0 p0 c0 {1,D} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {4,T}
+4 C u0 p0 c0 {3,T} {8,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+
+[CH2]C(C)(C)C=O
+multiplicity 2
+1 O u0 p2 c0 {6,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {2,S} {13,S} {14,S}
+6 C u0 p0 c0 {1,D} {2,S} {15,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {6,S}
+
+C=C(C)C
+1 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {1,S} {2,S} {4,D}
+4 C u0 p0 c0 {3,D} {11,S} {12,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+[CH]=O
+multiplicity 2
+1 O u0 p2 c0 {2,D}
+2 C u1 p0 c0 {1,D} {3,S}
+3 H u0 p0 c0 {2,S}
+
+C[C](C)CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {14,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {5,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+5 C u1 p0 c0 {2,S} {3,S} {4,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {1,S}
+
+[CH2]C(C)(C)O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {14,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u1 p0 c0 {2,S} {12,S} {13,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+[O]O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+C=C(C)C=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 C u0 p0 c0 {3,D} {9,S} {10,S}
+5 C u0 p0 c0 {1,D} {3,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+C[C](C)C=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+4 C u1 p0 c0 {2,S} {3,S} {5,S}
+5 C u0 p0 c0 {1,D} {4,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+
+C=C(C)CO
+1 O u0 p2 c0 {2,S} {13,S}
+2 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {3,S} {5,D}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+[CH2]C(C)CO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {2,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u1 p0 c0 {2,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+C=C(C)COO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {14,S}
+3 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {5,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {3,S} {4,S} {6,D}
+6 C u0 p0 c0 {5,D} {12,S} {13,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {2,S}
+
+C=C(C)O
+1 O u0 p2 c0 {3,S} {10,S}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {4,D}
+4 C u0 p0 c0 {3,D} {8,S} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {1,S}
+
+C[C](C)O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {11,S}
+2 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+4 C u1 p0 c0 {1,S} {2,S} {3,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {1,S}
+
+[CH2]C(C)O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {11,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 C u1 p0 c0 {2,S} {9,S} {10,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {1,S}
+
+CC[C](C)O
+multiplicity 2
+1 O u0 p2 c0 {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+5 C u1 p0 c0 {1,S} {2,S} {4,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {1,S}
+
+C=C(O)CC
+1 O u0 p2 c0 {4,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,D}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+[CH2]CC(C)=O
+multiplicity 2
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,D} {2,S} {3,S}
+5 C u1 p0 c0 {2,S} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C=C
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C[C]=O
+multiplicity 2
+1 O u0 p2 c0 {3,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u1 p0 c0 {1,D} {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[CH2]CCC=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,D} {3,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+
+[CH2]C=O
+multiplicity 2
+1 O u0 p2 c0 {3,D}
+2 C u1 p0 c0 {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,D} {2,S} {6,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+
+[CH2]CC=C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {4,D} {7,S}
+3 C u1 p0 c0 {1,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,D} {10,S} {11,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+[CH2]CC=O
+multiplicity 2
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,D} {2,S} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+
+[CH2]C(=C)CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {12,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,D}
+4 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,D} {10,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {1,S}
+
+C=C=C
+1 C u0 p0 c0 {3,D} {4,S} {5,S}
+2 C u0 p0 c0 {3,D} {6,S} {7,S}
+3 C u0 p0 c0 {1,D} {2,D}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+[CH2]O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 C u1 p0 c0 {1,S} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+C=[C]CC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+3 C u0 p0 c0 {4,D} {10,S} {11,S}
+4 C u1 p0 c0 {1,S} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+
+[CH2]C(=C)C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,D}
+3 C u1 p0 c0 {2,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,D} {10,S} {11,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+C=[C]CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {4,D} {7,S} {8,S}
+4 C u1 p0 c0 {2,S} {3,D}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+[CH2]C(=O)CC
+multiplicity 2
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,D} {2,S} {5,S}
+5 C u1 p0 c0 {4,S} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C=C=O
+1 O u0 p2 c0 {3,D}
+2 C u0 p0 c0 {3,D} {4,S} {5,S}
+3 C u0 p0 c0 {1,D} {2,D}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[CH2]C(C)=O
+multiplicity 2
+1 O u0 p2 c0 {3,D}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,D} {2,S} {4,S}
+4 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+C[CH]C(C)=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {5,S} {9,S} {10,S} {11,S}
+4 C u1 p0 c0 {2,S} {5,S} {12,S}
+5 C u0 p0 c0 {1,D} {3,S} {4,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+
+C=CC(C)=O
+1 O u0 p2 c0 {3,D}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,D} {2,S} {4,S}
+4 C u0 p0 c0 {3,S} {5,D} {9,S}
+5 C u0 p0 c0 {4,D} {10,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C=CC(C)O
+1 O u0 p2 c0 {2,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {5,D} {10,S}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+C=CC
+1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {7,S}
+3 C u0 p0 c0 {2,D} {8,S} {9,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C[CH]CC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+3 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+4 C u1 p0 c0 {1,S} {3,S} {13,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {4,S}
+
+C[CH]CC=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+4 C u1 p0 c0 {2,S} {3,S} {11,S}
+5 C u0 p0 c0 {1,D} {2,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+
+[CH2]C(C)C=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,D} {2,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+
+C[CH]CO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {11,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+4 C u1 p0 c0 {2,S} {3,S} {10,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {1,S}
+
+C=C[CH]C
+multiplicity 2
+1 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+2 C u1 p0 c0 {1,S} {3,S} {8,S}
+3 C u0 p0 c0 {2,S} {4,D} {9,S}
+4 C u0 p0 c0 {3,D} {10,S} {11,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+C=CC=C
+1 C u0 p0 c0 {2,S} {3,D} {5,S}
+2 C u0 p0 c0 {1,S} {4,D} {6,S}
+3 C u0 p0 c0 {1,D} {7,S} {8,S}
+4 C u0 p0 c0 {2,D} {9,S} {10,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+
+C[CH]C=CO
+multiplicity 2
+1 O u0 p2 c0 {5,S} {12,S}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u1 p0 c0 {2,S} {4,S} {9,S}
+4 C u0 p0 c0 {3,S} {5,D} {10,S}
+5 C u0 p0 c0 {1,S} {4,D} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {1,S}
+
+C=CC=CO
+1 O u0 p2 c0 {4,S} {11,S}
+2 C u0 p0 c0 {3,S} {4,D} {7,S}
+3 C u0 p0 c0 {2,S} {5,D} {6,S}
+4 C u0 p0 c0 {1,S} {2,D} {8,S}
+5 C u0 p0 c0 {3,D} {9,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {1,S}
+
+C=CC(C)[O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {5,D} {10,S}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C=CC=O
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,D} {4,S} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 C u0 p0 c0 {1,D} {2,S} {8,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+
+CC[CH]C=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u1 p0 c0 {2,S} {5,S} {11,S}
+5 C u0 p0 c0 {1,D} {4,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+
+C=CC[O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {4,D} {7,S}
+4 C u0 p0 c0 {3,D} {8,S} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+C=CCC
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+3 C u0 p0 c0 {1,S} {4,D} {10,S}
+4 C u0 p0 c0 {3,D} {11,S} {12,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+[CH2]CCC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u1 p0 c0 {2,S} {12,S} {13,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+CC[CH]CO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {14,S}
+2 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+5 C u1 p0 c0 {2,S} {3,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+C=CCCO
+1 O u0 p2 c0 {3,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {5,D} {10,S}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+[CH2]C(CCO)OO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {15,S}
+3 O u0 p2 c0 {1,S} {16,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {6,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+7 C u1 p0 c0 {4,S} {13,S} {14,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {2,S}
+16 H u0 p0 c0 {3,S}
+
+C=CCO
+1 O u0 p2 c0 {2,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {4,D} {7,S}
+4 C u0 p0 c0 {3,D} {8,S} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {1,S}
+
+C=CCOO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {11,S}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u0 p0 c0 {3,S} {5,D} {8,S}
+5 C u0 p0 c0 {4,D} {9,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {2,S}
+
+[CH2]OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {6,S}
+3 C u1 p0 c0 {1,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {2,S}
+
+OOC[CH]COO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {1,S} {13,S}
+4 O u0 p2 c0 {2,S} {14,S}
+5 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {2,S} {7,S} {10,S} {11,S}
+7 C u1 p0 c0 {5,S} {6,S} {12,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {4,S}
+
+C=CO
+1 O u0 p2 c0 {2,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,D} {4,S}
+3 C u0 p0 c0 {2,D} {5,S} {6,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {1,S}
+
+[CH2]C(O)CC
+multiplicity 2
+1 O u0 p2 c0 {2,S} {14,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {4,S} {7,S} {8,S}
+4 C u0 p0 c0 {3,S} {9,S} {10,S} {11,S}
+5 C u1 p0 c0 {2,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+C=COO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {8,S}
+3 C u0 p0 c0 {1,S} {4,D} {5,S}
+4 C u0 p0 c0 {3,D} {6,S} {7,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {2,S}
+
+CCC(O)C[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {15,S}
+2 O u1 p2 c0 {5,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {7,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+C=O
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+CC[CH]O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {11,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u1 p0 c0 {1,S} {2,S} {10,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {1,S}
+
+CC(C[O])CO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {15,S}
+2 O u1 p2 c0 {6,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {2,S} {3,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+[CH2]OC
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u1 p0 c0 {1,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+C[O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+CC(C)=C=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {2,S} {3,S} {5,D}
+5 C u0 p0 c0 {1,D} {4,D}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+
+CC(C)[CH]O
+multiplicity 2
+1 O u0 p2 c0 {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {1,S} {2,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+CC(C)=CO
+1 O u0 p2 c0 {5,S} {13,S}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {2,S} {3,S} {5,D}
+5 C u0 p0 c0 {1,S} {4,D} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+CC(C)([O])CO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {15,S}
+2 O u1 p2 c0 {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {1,S} {3,S} {7,S} {8,S}
+5 C u0 p0 c0 {3,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {3,S} {12,S} {13,S} {14,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+CC(C)=O
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,D} {2,S} {3,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+CC(C)(C)[O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+CC(C)([O])C=O
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 O u0 p2 c0 {6,D}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {2,D} {3,S} {13,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+
+CC(C)[O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+CC(C)C=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u0 p0 c0 {1,D} {2,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+
+CC=C(C)O
+1 O u0 p2 c0 {4,S} {13,S}
+2 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+3 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,D}
+5 C u0 p0 c0 {3,S} {4,D} {12,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+C[CH]C(C)O
+multiplicity 2
+1 O u0 p2 c0 {2,S} {14,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {2,S} {4,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+CC=C(C)[O]
+multiplicity 2
+1 O u1 p2 c0 {5,S}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {5,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {2,S} {5,D} {12,S}
+5 C u0 p0 c0 {1,S} {3,S} {4,D}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+
+CC=C=O
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {4,D} {8,S}
+4 C u0 p0 c0 {1,D} {3,D}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+
+CC=CC
+1 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {1,S} {4,D} {11,S}
+4 C u0 p0 c0 {2,S} {3,D} {12,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+
+CC=CC=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {4,D} {9,S}
+4 C u0 p0 c0 {3,D} {5,S} {10,S}
+5 C u0 p0 c0 {1,D} {4,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+CC=CCO
+1 O u0 p2 c0 {2,S} {13,S}
+2 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {5,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,D} {12,S}
+5 C u0 p0 c0 {3,S} {4,D} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+CC=CO
+1 O u0 p2 c0 {4,S} {10,S}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {4,D} {8,S}
+4 C u0 p0 c0 {1,S} {3,D} {9,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {1,S}
+
+CC([O])C(C)O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {15,S}
+2 O u1 p2 c0 {4,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {7,S}
+4 C u0 p0 c0 {2,S} {3,S} {6,S} {8,S}
+5 C u0 p0 c0 {3,S} {12,S} {13,S} {14,S}
+6 C u0 p0 c0 {4,S} {9,S} {10,S} {11,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+CC=O
+1 O u0 p2 c0 {3,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,D} {2,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+
+CC([O])CCO
+multiplicity 2
+1 O u0 p2 c0 {5,S} {15,S}
+2 O u1 p2 c0 {4,S}
+3 C u0 p0 c0 {4,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {3,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 C u0 p0 c0 {4,S} {12,S} {13,S} {14,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+CCC(C)=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {5,S} {11,S} {12,S} {13,S}
+5 C u0 p0 c0 {1,D} {2,S} {4,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+CCC=C=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,D} {11,S}
+5 C u0 p0 c0 {1,D} {4,D}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+
+CCC=CO
+1 O u0 p2 c0 {5,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,D} {11,S}
+5 C u0 p0 c0 {1,S} {4,D} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {1,S}
+
+CCC([O])CO
+multiplicity 2
+1 O u0 p2 c0 {5,S} {15,S}
+2 O u1 p2 c0 {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {9,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 C u0 p0 c0 {4,S} {12,S} {13,S} {14,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+CCC=O
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,D} {2,S} {10,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+
+CCC[O]
+multiplicity 2
+1 O u1 p2 c0 {4,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+CCCC=O
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u0 p0 c0 {1,D} {3,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+
+CCC[CH]OO
+multiplicity 2
+1 O u0 p2 c0 {2,S} {6,S}
+2 O u0 p2 c0 {1,S} {15,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {3,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {11,S} {12,S} {13,S}
+6 C u1 p0 c0 {1,S} {4,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {2,S}
+
+COC[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u1 p2 c0 {4,S}
+3 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {2,S} {8,S} {9,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+COC=O
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,D}
+3 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {2,D} {8,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+
+CC(C)C([O])O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {15,S}
+2 O u1 p2 c0 {4,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {2,S} {3,S} {8,S}
+5 C u0 p0 c0 {3,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {3,S} {12,S} {13,S} {14,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+O=CO
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {1,S}
+
+C[CH]C
+multiplicity 2
+1 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+3 C u1 p0 c0 {1,S} {2,S} {10,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+
+CCCC([O])O
+multiplicity 2
+1 O u0 p2 c0 {5,S} {15,S}
+2 O u1 p2 c0 {5,S}
+3 C u0 p0 c0 {4,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {2,S} {3,S} {11,S}
+6 C u0 p0 c0 {4,S} {12,S} {13,S} {14,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {1,S}
+
+[CH2]CC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u1 p0 c0 {1,S} {9,S} {10,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+[O]CO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u1 p2 c0 {3,S}
+3 C u0 p0 c0 {1,S} {2,S} {4,S} {5,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+
+O=C=O
+1 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,D} {2,D}
+
+C#C[CH2]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,T}
+3 C u0 p0 c0 {2,T} {6,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {3,S}
+
+C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+[CH]=C=C
+multiplicity 2
+1 C u0 p0 c0 {2,D} {4,S} {5,S}
+2 C u0 p0 c0 {1,D} {3,D}
+3 C u1 p0 c0 {2,D} {6,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {3,S}
+
+[H][H]
+1 H u0 p0 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+O
+1 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[O]
+multiplicity 3
+1 O u2 p2 c0
+
+[C]=O
+multiplicity 3
+1 O u0 p2 c0 {2,D}
+2 C u2 p0 c0 {1,D}
+
+[O][O]
+multiplicity 3
+1 O u1 p2 c0 {2,S}
+2 O u1 p2 c0 {1,S}
+
+CC(=O)O[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {2,D} {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+
+CC(=O)OO
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u0 p2 c0 {1,S} {9,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {3,D} {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {2,S}
+
+CC(C)OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {13,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {2,S}
+
+CCC(C)OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {16,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {7,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {2,S}
+
+CCCCOO
+1 O u0 p2 c0 {2,S} {5,S}
+2 O u0 p2 c0 {1,S} {16,S}
+3 C u0 p0 c0 {4,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {3,S} {11,S} {12,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {2,S}
+
+CCOO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {10,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+
+CO[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+COO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {7,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {2,S}
+
+[CH2]
+multiplicity 3
+1 C u2 p0 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {4,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
+C1CO1
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[CH]1CO1
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u1 p0 c0 {1,S} {2,S} {6,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+
+CO
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 O u0 p2 c0 {1,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+
+[O]OC=O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {2,D} {5,S}
+5 H u0 p0 c0 {4,S}
+
+O=COO
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {3,D} {5,S}
+5 H u0 p0 c0 {4,S}
+6 H u0 p0 c0 {2,S}
+
+C=C(C)[C]=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 C u0 p0 c0 {3,D} {9,S} {10,S}
+5 C u1 p0 c0 {1,D} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+
+C=C(C)C[O]
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {3,S} {5,D}
+5 C u0 p0 c0 {4,D} {11,S} {12,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+C=C(O)[CH]C
+multiplicity 2
+1 O u0 p2 c0 {4,S} {12,S}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u1 p0 c0 {2,S} {4,S} {9,S}
+4 C u0 p0 c0 {1,S} {3,S} {5,D}
+5 C u0 p0 c0 {4,D} {10,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {1,S}
+
+CC(C)(C)OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {16,S}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {2,S}
+
+CCCOO
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {13,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {2,S}
+
+C=C=CC
+1 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,D} {8,S}
+3 C u0 p0 c0 {4,D} {9,S} {10,S}
+4 C u0 p0 c0 {2,D} {3,D}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+[CH]=C=O
+multiplicity 2
+1 O u0 p2 c0 {3,D}
+2 C u1 p0 c0 {3,D} {4,S}
+3 C u0 p0 c0 {1,D} {2,D}
+4 H u0 p0 c0 {2,S}
+
+CC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+C=C[C]=O
+multiplicity 2
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,D} {4,S} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 C u1 p0 c0 {1,D} {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+C=C[O]
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 C u0 p0 c0 {3,D} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,D} {6,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+
+CC(=O)CO[O]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,D}
+3 O u1 p2 c0 {1,S}
+4 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {6,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {2,D} {4,S} {5,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+CC(=O)COO
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {12,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {6,S} {9,S} {10,S} {11,S}
+6 C u0 p0 c0 {3,D} {4,S} {5,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+CC(C)(C)O
+1 O u0 p2 c0 {2,S} {15,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+[CH2]C=CC
+multiplicity 2
+1 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,D} {8,S}
+3 C u0 p0 c0 {2,D} {4,S} {9,S}
+4 C u1 p0 c0 {3,S} {10,S} {11,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+CC[C]=O
+multiplicity 2
+1 O u0 p2 c0 {4,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u1 p0 c0 {1,D} {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+CCCC
+1 C u0 p0 c0 {2,S} {3,S} {5,S} {6,S}
+2 C u0 p0 c0 {1,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+
+CCC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+
+CC(C)(CO)OO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(C)(O)COO
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {4,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(C)C(O)OO
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {2,S} {4,S} {9,S}
+6 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(C)C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+
+CC(C)[C]=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {1,D} {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+CC(C)CO
+1 O u0 p2 c0 {3,S} {15,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {2,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {9,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+CC(C)C[O]
+multiplicity 2
+1 O u1 p2 c0 {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u0 p0 c0 {1,S} {2,S} {13,S} {14,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+CC(C)COO
+1 O u0 p2 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {16,S}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {3,S} {13,S} {14,S} {15,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {2,S}
+
+CC(CCO)OO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {6,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(CO)COO
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {5,S} {6,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {4,S} {11,S} {12,S}
+6 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {6,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(O)C(C)OO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {6,S} {8,S}
+6 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {6,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CC(O)CCOO
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {2,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {4,S} {6,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {5,S} {11,S} {12,S}
+7 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+[CH2]C(O)=CC
+multiplicity 2
+1 O u0 p2 c0 {3,S} {12,S}
+2 C u0 p0 c0 {4,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {4,D} {5,S}
+4 C u0 p0 c0 {2,S} {3,D} {9,S}
+5 C u1 p0 c0 {3,S} {10,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {1,S}
+
+CC=C[C]=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {4,D} {9,S}
+4 C u0 p0 c0 {3,D} {5,S} {10,S}
+5 C u1 p0 c0 {1,D} {4,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+
+[CH2]C=CC=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,D} {4,S} {6,S}
+3 C u0 p0 c0 {2,D} {5,S} {7,S}
+4 C u1 p0 c0 {2,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,D} {3,S} {10,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+CCC(C)(O)OO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+5 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 C u0 p0 c0 {5,S} {10,S} {11,S} {12,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {7,S}
+11 H u0 p0 c0 {7,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CCC(C)O
+1 O u0 p2 c0 {2,S} {15,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {6,S}
+3 C u0 p0 c0 {2,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {12,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {9,S} {10,S} {11,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {1,S}
+
+CCC(CO)OO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {1,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {2,S} {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CCC(O)COO
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {4,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {2,S} {5,S} {6,S} {8,S}
+5 C u0 p0 c0 {4,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {4,S} {11,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CCCC(O)OO
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {6,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {5,S} {6,S} {10,S} {11,S}
+5 C u0 p0 c0 {4,S} {7,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {2,S} {4,S} {12,S}
+7 C u0 p0 c0 {5,S} {13,S} {14,S} {15,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+CCC[C]=O
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {2,S} {10,S} {11,S} {12,S}
+5 C u1 p0 c0 {1,D} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+CCCCO
+1 O u0 p2 c0 {4,S} {15,S}
+2 C u0 p0 c0 {3,S} {4,S} {8,S} {9,S}
+3 C u0 p0 c0 {2,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {3,S} {12,S} {13,S} {14,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {1,S}
+
+CCO
+1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+CC[O]
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {2,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+COC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+COCOO
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 O u0 p2 c0 {2,S} {11,S}
+4 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+5 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {3,S}
+
+[O]C=O
+multiplicity 2
+1 O u1 p2 c0 {3,S}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,S} {2,D} {4,S}
+4 H u0 p0 c0 {3,S}
+
+O=CCCO
+1 O u0 p2 c0 {4,S} {11,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,D} {3,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {1,S}
+
+O=[C]CCO
+multiplicity 2
+1 O u0 p2 c0 {4,S} {10,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u1 p0 c0 {2,D} {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {1,S}
+
+O=CCO
+1 O u0 p2 c0 {3,S} {8,S}
+2 O u0 p2 c0 {4,D}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u0 p0 c0 {2,D} {3,S} {7,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {1,S}
+
+O=[C]CO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {7,S}
+2 O u0 p2 c0 {4,D}
+3 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+4 C u1 p0 c0 {2,D} {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {1,S}
+
+[C]=C
+multiplicity 3
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u2 p0 c0 {1,D}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+OCCCCOO
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {7,S} {16,S}
+3 O u0 p2 c0 {1,S} {17,S}
+4 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {6,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {5,S} {14,S} {15,S}
+7 C u0 p0 c0 {2,S} {4,S} {12,S} {13,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {7,S}
+13 H u0 p0 c0 {7,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {2,S}
+17 H u0 p0 c0 {3,S}
+
+OCOO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {7,S}
+3 O u0 p2 c0 {1,S} {8,S}
+4 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+5 H u0 p0 c0 {4,S}
+6 H u0 p0 c0 {4,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+
diff --git a/input/kinetics/libraries/Chung_solvation_corrections/reactions.py b/input/kinetics/libraries/Chung_solvation_corrections/reactions.py
new file mode 100644
index 0000000000..a5cfbd4eac
--- /dev/null
+++ b/input/kinetics/libraries/Chung_solvation_corrections/reactions.py
@@ -0,0 +1,14231 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "Chung_solvation_corrections"
+shortDesc = ""
+longDesc = """
+
+"""
+autoGenerated=False
+entry(
+ index = 0,
+ label = "C=C=[C]C <=> [CH2]C=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18225719551578953,B_g=0.23224359362632196,E_g=-0.05993383061324438,L_g=-0.04663637846886752,A_g=-0.01853139968080746,K_g=0.006853978916754342,S_h=0.20374277006659913,B_h=0.41532180052037515,E_h=-0.05137185481135232,L_h=-0.04131446542762296,A_h=-0.3006807563715825,K_h=0.09903449750304937,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.055, MAE_h(kcal/mol): 0.038)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.055, MAE_h(kcal/mol): 0.038)"""),
+)
+
+entry(
+ index = 1,
+ label = "C=[C]C <=> [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0158484517839817,B_g=0.025488005019844755,E_g=-0.03718741716010137,L_g=0.02194006299234839,A_g=-0.07499059285390045,K_g=-0.1339128201617843,S_h=-0.05441399518616842,B_h=0.1373727966844667,E_h=0.008488671214547088,L_h=0.005270599830103071,A_h=0.004464249369308443,K_h=-0.10271438778776666,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.034, MAE_h(kcal/mol): 0.026000000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.034, MAE_h(kcal/mol): 0.026000000000000002)"""),
+)
+
+entry(
+ index = 2,
+ label = "CC(=O)C(C)O[O] <=> [CH2]C(OO)C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34153340289893214,B_g=-0.027745786310069714,E_g=0.30334171289220474,L_g=0.0010189337640950304,A_g=-0.07360513615308058,K_g=0.21242203320824316,S_h=-0.37186684114227914,B_h=-0.15127867690380678,E_h=0.20191748584170943,L_h=-0.008004860938070311,A_h=0.4886483792415448,K_h=0.19872873629220342,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 3,
+ label = "CC(C)(C)O[O] <=> [CH2]C(C)(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.41478667703275685,B_g=0.027034731812823544,E_g=0.010724461128568558,L_g=0.10030999732285178,A_g=-0.34450956914513775,K_g=-0.23700839180374478,S_h=-0.5361424213823485,B_h=0.17815213862447143,E_h=0.07208040073630528,L_h=0.11063861367975752,A_h=-0.26526731022522926,K_h=-0.3148651940228334,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.149, MAE_h(kcal/mol): 0.11599999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.149, MAE_h(kcal/mol): 0.11599999999999999)"""),
+)
+
+entry(
+ index = 4,
+ label = "CC(C)(C=O)CO[O] <=> CC(C)([C]=O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3722406945377385,B_g=-0.2605684861764169,E_g=-0.14155848862186426,L_g=0.1571063915977316,A_g=0.015569894352070826,K_g=-0.17797620761484348,S_h=-0.5124797005873933,B_h=-0.2102815392577701,E_h=-0.07646401505953425,L_h=0.19501219371381368,A_h=0.13241007612121247,K_h=-0.40619537939592676,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 5,
+ label = "CC(C)(C=O)O[O] <=> CC(C)([C]=O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8444761766727453,B_g=-0.43971023673004533,E_g=-0.37094320334173253,L_g=0.3106208584155598,A_g=0.21098526329628176,K_g=-1.036878727077078,S_h=-0.9481068718023241,B_h=-0.48361235409094566,E_h=-0.42646409779681,L_h=0.323346534778646,A_h=0.6689703336514272,K_h=-1.2615426263719305,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 6,
+ label = "CC(C)(C=O)O[O] <=> [CH2]C(C)(C=O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9367666521400579,B_g=-0.4182026708030323,E_g=-0.0978909459404679,L_g=0.2488910654123638,A_g=0.000659741286104696,K_g=-0.7614147487521641,S_h=-0.9716303138813239,B_h=-0.5988911481496395,E_h=-0.2080164275088106,L_h=0.24474935622737323,A_h=0.49877907321261916,K_h=-0.8840313320040891,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.165)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.165)"""),
+)
+
+entry(
+ index = 7,
+ label = "CC(C)(CO)O[O] <=> CC(C)([CH]O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7427880531078083,B_g=1.9483186442894505,E_g=0.25290815679886797,L_g=-0.38738542228320855,A_g=0.35275633522144645,K_g=1.640190141843619,S_h=0.931114868455761,B_h=2.1795359736929427,E_h=0.1642755802400693,L_h=-0.3609224662516757,A_h=0.28308032495005603,K_h=1.9356369506787712,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.474, MAE_h(kcal/mol): 0.37799999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.474, MAE_h(kcal/mol): 0.37799999999999995)"""),
+)
+
+entry(
+ index = 8,
+ label = "CC(C)(CO)O[O] <=> [CH2]C(C)(CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12509427830418485,B_g=-0.868945247928495,E_g=0.44968699106769533,L_g=-0.05866566125217646,A_g=0.019777577665671887,K_g=-0.03003288943523266,S_h=0.45222332978983115,B_h=-1.3488923726521924,E_h=0.31243881218171504,L_h=-0.06368702548530665,A_h=0.3514075308142991,K_h=-0.16819737566302498,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.342, MAE_h(kcal/mol): 0.281)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.342, MAE_h(kcal/mol): 0.281)"""),
+)
+
+entry(
+ index = 9,
+ label = "CC(C)(COO)O[O] <=> [CH2]C(C)(COO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2632001208621012,B_g=2.467637662876129,E_g=-0.6657522622669833,L_g=-0.13989447448913353,A_g=-4.792969130339475,K_g=1.9121135085997714,S_h=-0.3198865582559636,B_h=2.874030964657887,E_h=-0.43924108737103756,L_h=-0.16374045675245102,A_h=-4.647811386478972,K_h=1.9237469466114174,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.761, MAE_g(kcal/mol): 1.3880000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.726, MAE_h(kcal/mol): 1.385)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.761, MAE_g(kcal/mol): 1.3880000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.726, MAE_h(kcal/mol): 1.385)"""),
+)
+
+entry(
+ index = 10,
+ label = "CC(C)(CO[O])OO <=> [CH2]C(C)(COO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07532779395568728,B_g=3.0308368074475047,E_g=-0.2026945144675661,L_g=-0.24988800780025536,A_g=-0.09602167896317125,K_g=1.2546300037853004,S_h=-0.2955274438812313,B_h=5.617792347145035,E_h=-0.11597518763847105,L_h=-0.38130114153357636,A_h=-0.8727497560116988,K_h=2.1664144525581936,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7759999999999999, MAE_h(kcal/mol): 0.609)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7759999999999999, MAE_h(kcal/mol): 0.609)"""),
+)
+
+entry(
+ index = 11,
+ label = "CC(C)(O)CO[O] <=> [CH2]C(C)(O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2899636257017484,B_g=2.4156940322834854,E_g=-0.056737750605003856,L_g=-0.26141881938961853,A_g=-0.615208749292629,K_g=1.036387586341867,S_h=-0.04294915772541571,B_h=4.855204724995351,E_h=0.15840388279373752,L_h=-0.4268232902748003,A_h=-1.989010020724641,K_h=1.7302521578556447,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6859999999999999, MAE_h(kcal/mol): 0.53)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6859999999999999, MAE_h(kcal/mol): 0.53)"""),
+)
+
+entry(
+ index = 12,
+ label = "CC(C)C(O)O[O] <=> C[C](C)C(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2464866749474489,B_g=1.96295757038224,E_g=0.3166025127429091,L_g=-0.34249369299315113,A_g=0.4845653137264302,K_g=1.3516632860538322,S_h=-0.22343238222745707,B_h=2.855030415618072,E_h=0.211652335041121,L_h=-0.32841921222291764,A_h=0.30784261455518563,K_h=2.054045850617095,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28800000000000003, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.684, MAE_h(kcal/mol): 0.56)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28800000000000003, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.684, MAE_h(kcal/mol): 0.56)"""),
+)
+
+entry(
+ index = 13,
+ label = "CC(C)C(O)O[O] <=> [CH2]C(C)C(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06082814657885297,B_g=1.8026990815286748,E_g=0.14643324368030453,L_g=-0.2065723271381148,A_g=0.39920212176321707,K_g=1.170813538615066,S_h=-0.6100774281784814,B_h=2.750131551127425,E_h=-0.005827714693924815,L_h=-0.12267522692180097,A_h=0.2090133698967022,K_h=1.4534100532886451,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.493)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.493)"""),
+)
+
+entry(
+ index = 14,
+ label = "CC(C)CO[O] <=> C[C](C)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.44737056610759435,B_g=-0.049766484348497564,E_g=0.20257722712781415,L_g=-0.15925421600693912,A_g=0.31411015677318027,K_g=0.4712825224995223,S_h=0.5722009478973373,B_h=-0.2697462205120067,E_h=0.18734453387753014,L_h=-0.17521995513067276,A_h=0.2626136841633415,K_h=0.6008263892555467,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.157)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.157)"""),
+)
+
+entry(
+ index = 15,
+ label = "CC(C)CO[O] <=> [CH2]C(C)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2515300305567826,B_g=-0.022218620424259265,E_g=0.08438824095152511,L_g=-0.08235037342333507,A_g=0.21624120220891588,K_g=0.5248681758486927,S_h=0.33003924360324144,B_h=-0.16222305179441024,E_h=0.03348553549918057,L_h=-0.060754841991508,A_h=0.10992755918251133,K_h=0.3665742499359726,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.098, MAE_h(kcal/mol): 0.08)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.098, MAE_h(kcal/mol): 0.08)"""),
+)
+
+entry(
+ index = 16,
+ label = "CC(C)O[O] <=> C[C](C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5347862865164665,B_g=0.08700521471974042,E_g=0.12193485058961682,L_g=-0.16961948465751736,A_g=0.1448058818412463,K_g=0.36141360698688696,S_h=0.6358953038413785,B_h=0.011758055810132584,E_h=0.13836973907235822,L_h=-0.16855656814101533,A_h=-0.16267754023594902,K_h=0.5529584937192837,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 17,
+ label = "CC(C)O[O] <=> [CH2]C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5561838955624622,B_g=0.013898549760605597,E_g=-0.03870482211814216,L_g=0.15511250682194852,A_g=-0.34493473575173855,K_g=-0.3573378719305068,S_h=-0.7176885624008917,B_h=0.2165857337694372,E_h=0.001634692297792747,L_h=0.18557056286378198,A_h=-0.19370004160033877,K_h=-0.4952531225613263,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 18,
+ label = "CC(CCO)O[O] <=> CC(C[CH]O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.0334260810131304,B_g=2.107316294240682,E_g=-0.14578816331166883,L_g=-0.34935500236864003,A_g=-1.0572060891478374,K_g=1.130737920713573,S_h=0.8804467376829203,B_h=4.783204959305126,E_h=0.3022421440820302,L_h=-0.6165942059934488,A_h=-2.9507955285255356,K_h=2.0970389910949176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.307, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.758, MAE_h(kcal/mol): 0.551)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.307, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.758, MAE_h(kcal/mol): 0.551)"""),
+)
+
+entry(
+ index = 19,
+ label = "CC(CCO)O[O] <=> CC([CH]CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25386844689308696,B_g=1.264929298307268,E_g=2.349749225507954,L_g=-0.49528244439626423,A_g=-2.3108684723801844,K_g=0.7818300763277373,S_h=-0.2389949461207934,B_h=2.692638763272768,E_h=2.6121723177441987,L_h=-0.6886013021424092,A_h=-3.022311483939285,K_h=1.290256033234954,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.991, MAE_g(kcal/mol): 0.578, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.0170000000000001, MAE_h(kcal/mol): 0.647)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.991, MAE_g(kcal/mol): 0.578, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.0170000000000001, MAE_h(kcal/mol): 0.647)"""),
+)
+
+entry(
+ index = 20,
+ label = "CC(CO)CO[O] <=> CC([CH]O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4565629613606531,B_g=3.586177700255499,E_g=0.03942320707412283,L_g=-0.41776284327896246,A_g=-0.6093003995526247,K_g=1.9130151550241146,S_h=0.060051117952996336,B_h=6.351285378577501,E_h=0.264717525820142,L_h=-0.5921984393250441,A_h=-2.044736168024284,K_h=2.911181729524316,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.318, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.871, MAE_h(kcal/mol): 0.698)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.318, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.871, MAE_h(kcal/mol): 0.698)"""),
+)
+
+entry(
+ index = 21,
+ label = "CC(CO)CO[O] <=> C[C](CO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9808227091343826,B_g=1.2388035433775224,E_g=-0.044906390207526306,L_g=-0.3184351274265333,A_g=-0.2020201122639924,K_g=0.7115383075226491,S_h=1.0933452507089059,B_h=3.060913679635144,E_h=0.1900787949854974,L_h=-0.5664831900844299,A_h=-1.5053390229638195,K_h=1.6705895542155769,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.44299999999999995, MAE_h(kcal/mol): 0.305)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.44299999999999995, MAE_h(kcal/mol): 0.305)"""),
+)
+
+entry(
+ index = 22,
+ label = "CC(CO)CO[O] <=> [CH2]C(CO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09045053032495383,B_g=2.5869408787800614,E_g=-0.014081811228968009,L_g=-0.23669318207816145,A_g=-0.39453261954934277,K_g=1.1316249062204469,S_h=-0.48032097811915664,B_h=5.130456120016964,E_h=0.1939932599497186,L_h=-0.3565461823871812,A_h=-1.5162174237258121,K_h=1.8721844998729684,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.687, MAE_h(kcal/mol): 0.5329999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.687, MAE_h(kcal/mol): 0.5329999999999999)"""),
+)
+
+entry(
+ index = 23,
+ label = "CC(CO[O])COO <=> C[C](COO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.32234226193202,B_g=0.1768253255935275,E_g=0.08800215710763196,L_g=-0.09864598319012104,A_g=-0.0028515484477191857,K_g=0.20210074731007188,S_h=0.3318571973693966,B_h=0.2127519038512955,E_h=0.16100619564448382,L_h=-0.09209988354021556,A_h=-0.18282164083834576,K_h=0.24835594192474555,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.091, MAE_h(kcal/mol): 0.068)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.091, MAE_h(kcal/mol): 0.068)"""),
+)
+
+entry(
+ index = 24,
+ label = "CC(CO[O])COO <=> [CH2]C(COO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15223896699802586,B_g=3.2346455516427137,E_g=-0.1818320289091887,L_g=-0.21877754093105167,A_g=-0.30485911785024555,K_g=0.8304969918660603,S_h=-0.636965550816615,B_h=5.871814733671547,E_h=-0.08196185911040672,L_h=-0.33119745608329193,A_h=-1.0150852732594198,K_h=1.5318093094540866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.645)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.645)"""),
+)
+
+entry(
+ index = 25,
+ label = "CC(CO[O])OO <=> [CH2]C(COO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10333014632146438,B_g=2.9301676176466622,E_g=-0.27098506803813666,L_g=-0.1928936911395441,A_g=-0.2758744840140459,K_g=0.8381133384912023,S_h=-0.5021730756066911,B_h=5.515891640276797,E_h=-0.1595107820626465,L_h=-0.3166318345778471,A_h=-1.0221811573144124,K_h=1.514384809042188,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.815, MAE_h(kcal/mol): 0.634)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.815, MAE_h(kcal/mol): 0.634)"""),
+)
+
+entry(
+ index = 26,
+ label = "CC(O)C(C)O[O] <=> C[C](O)C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7387196485101625,B_g=3.485831050638975,E_g=-0.07025511651141562,L_g=-0.4411836589356792,A_g=-0.596787306492839,K_g=1.4635773995533923,S_h=0.4354145879116304,B_h=6.332981223117463,E_h=0.19712336582934864,L_h=-0.6508127873660792,A_h=-2.1172857181195974,K_h=2.621819201438796,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.326, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.887, MAE_h(kcal/mol): 0.703)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.326, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.887, MAE_h(kcal/mol): 0.703)"""),
+)
+
+entry(
+ index = 27,
+ label = "CC(O)C(C)O[O] <=> [CH2]C(O)C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.44910788482767006,B_g=2.4736779608733537,E_g=-0.17810082541332992,L_g=-0.2710290507905436,A_g=-0.6510840143392554,K_g=1.1409712411069302,S_h=0.1824624483603554,B_h=4.99218900736689,E_h=0.05789596308505432,L_h=-0.4648903624830412,A_h=-2.1884864638077635,K_h=1.9988914790987424,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.524)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.524)"""),
+)
+
+entry(
+ index = 28,
+ label = "CC(O)C(C)O[O] <=> [CH2]C(OO)C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7293659831649449,B_g=1.1736650870627852,E_g=-0.20133837960168424,L_g=-0.22610799966554831,A_g=-0.3674465745253777,K_g=0.23016907380445942,S_h=0.7927231380071992,B_h=3.1764710311257485,E_h=0.07213904440618125,L_h=-0.49567828916792706,A_h=-1.3258674017671384,K_h=1.0910361562075392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.556, MAE_h(kcal/mol): 0.39799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.556, MAE_h(kcal/mol): 0.39799999999999996)"""),
+)
+
+entry(
+ index = 29,
+ label = "CC(O)CCO[O] <=> CC(O)[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20294375006453896,B_g=0.10589580687853818,E_g=-0.05308718215522454,L_g=0.06834919724044651,A_g=-0.03238596668900608,K_g=-0.054216072800337016,S_h=-0.38663771549228976,B_h=0.2962824811308845,E_h=0.020891807393315375,L_h=0.10072783347071809,A_h=-0.13463120511776494,K_h=-0.056855037944755805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 30,
+ label = "CC(O)CCO[O] <=> C[C](O)CCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5753163928594984,B_g=0.9308436414825846,E_g=-0.0,L_g=-0.1827776580859388,A_g=-0.10022203181803782,K_g=0.9445589297748278,S_h=0.5951306228188428,B_h=1.4308175794689266,E_h=0.0778934545127611,L_h=-0.18493281295388078,A_h=-0.9586334105450612,K_h=1.097010480076154,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.225)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.225)"""),
+)
+
+entry(
+ index = 31,
+ label = "CC(O)CCO[O] <=> [CH2]C(O)CCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.003716542578389787,B_g=-2.0218284844789824,E_g=-0.02968102741597682,L_g=0.19106840691465446,A_g=0.5886065145451408,K_g=-0.37041541031284886,S_h=0.3535700161409756,B_h=-4.171316907819223,E_h=-0.1722657802606706,L_h=0.4063346581118823,A_h=1.0080553633330374,K_h=-1.4042006838039693,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5720000000000001, MAE_h(kcal/mol): 0.441)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5720000000000001, MAE_h(kcal/mol): 0.441)"""),
+)
+
+entry(
+ index = 32,
+ label = "CCC(C)(O)O[O] <=> C[CH]C(C)(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5818258402157314,B_g=0.23449404445781244,E_g=0.2822299917368544,L_g=-0.1989999632653798,A_g=-0.5176916567476204,K_g=0.9924708080634977,S_h=0.8282392105758354,B_h=-0.0014587612881648278,E_h=0.40687711205823507,L_h=-0.21212148440012873,A_h=-0.4975915388976307,K_h=1.0371939368026617,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 33,
+ label = "CCC(C)(O)O[O] <=> [CH2]C(O)(CC)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11390066781660851,B_g=2.3572189629584064,E_g=0.11541074231591482,L_g=-0.26059047755262044,A_g=-0.6919219999491362,K_g=1.466502252588456,S_h=-0.11879008379251776,B_h=3.2559991779363027,E_h=0.08159533617368189,L_h=-0.2163218372549953,A_h=-0.9883510902547105,K_h=1.7841383600129295,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5539999999999999, MAE_h(kcal/mol): 0.46)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5539999999999999, MAE_h(kcal/mol): 0.46)"""),
+)
+
+entry(
+ index = 34,
+ label = "CCC(C)(O)O[O] <=> [CH2]CC(C)(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2936508464452002,B_g=0.9688667309384186,E_g=0.12728608546579936,L_g=-0.20830231539945598,A_g=0.583739089945435,K_g=1.0634223181546905,S_h=0.252761547624178,B_h=1.1586889598682086,E_h=-0.06436875814761484,L_h=-0.15629271067820247,A_h=0.4685262700153516,K_h=1.2132715556052702,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.387, MAE_h(kcal/mol): 0.32)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.387, MAE_h(kcal/mol): 0.32)"""),
+)
+
+entry(
+ index = 35,
+ label = "CCC(C)O[O] <=> C[CH]C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5289732327400108,B_g=0.04067671551772176,E_g=-0.030531360629178432,L_g=0.13403010750153624,A_g=-0.38244469309615775,K_g=-0.4766557487519083,S_h=-0.6691242732848516,B_h=0.22555088480172658,E_h=0.0071618581836032005,L_h=0.1340667597952087,A_h=-0.2196352046029878,K_h=-0.631357749884725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.139)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.139)"""),
+)
+
+entry(
+ index = 36,
+ label = "CCC(C)O[O] <=> [CH2]C(CC)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5200300730839249,B_g=0.05456793481959285,E_g=-0.05882693134433539,L_g=0.14679976661702934,A_g=-0.3369152138961993,K_g=-0.4075295228856052,S_h=-0.6806257630392768,B_h=0.27769243778020103,E_h=-0.006223559465587633,L_h=0.16783085272630016,A_h=-0.21640980275980926,K_h=-0.5533909907846191,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.153)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.153)"""),
+)
+
+entry(
+ index = 37,
+ label = "CCC(C)O[O] <=> [CH2]CC(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.33973744050898047,B_g=0.02811230924679455,E_g=0.07372242349283253,L_g=-0.10874002486752289,A_g=0.27701070511789283,K_g=0.5506860515115898,S_h=0.44353673618945266,B_h=-0.13450658731927853,E_h=0.02331085877569926,L_h=-0.08543649655055813,A_h=0.1499811857078009,K_h=0.41653865667030154,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 38,
+ label = "CCC(C)[O] <=> [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.009734849199411515,B_g=0.007557702955266017,E_g=0.08893312536691303,L_g=-0.02663155658242623,A_g=0.4791920874740441,K_g=0.3012378712354042,S_h=-0.021661505560437517,B_h=-0.049773814807232065,E_h=0.07697714717094903,L_h=0.0071618581836032005,A_h=0.9089548917013777,K_h=0.2715201915257549,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.071)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.071)"""),
+)
+
+entry(
+ index = 39,
+ label = "CCC(CO)O[O] <=> CCC([CH]O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.43833211048796006,B_g=4.890412918297139,E_g=0.06079149428518048,L_g=-0.5226177250172022,A_g=-0.7654465010561373,K_g=2.14979630260709,S_h=-0.035867934587891975,B_h=7.924262544284521,E_h=0.315759509988442,L_h=-0.6888285463631786,A_h=-1.8825644294410155,K_h=3.3172964738741633,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.46399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.121, MAE_h(kcal/mol): 0.9009999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.46399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.121, MAE_h(kcal/mol): 0.9009999999999999)"""),
+)
+
+entry(
+ index = 40,
+ label = "CCC(CO)O[O] <=> C[CH]C(CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19937381666083911,B_g=0.35110698200618473,E_g=0.14860305946571553,L_g=-0.013150842969686941,A_g=-0.407822741234985,K_g=-0.13548153833096657,S_h=-0.16357185620155762,B_h=0.9360555976428117,E_h=0.23082881509056413,L_h=-0.08388243929884484,A_h=-0.43901384315026815,K_h=0.04412936158166966,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.154, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.23199999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.154, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.23199999999999998)"""),
+)
+
+entry(
+ index = 41,
+ label = "CCC(CO)O[O] <=> [CH2]CC(CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6163742922314139,B_g=1.2316416851939191,E_g=-0.12700019757515396,L_g=-0.2278966315967655,A_g=-0.06455201961597726,K_g=0.7214637486491575,S_h=0.5628472825521196,B_h=3.0656564864363633,E_h=0.02825158796274998,L_h=-0.39983987167311824,A_h=-1.0280675156782133,K_h=1.309520478789211,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.185, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.44299999999999995, MAE_h(kcal/mol): 0.305)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.185, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.44299999999999995, MAE_h(kcal/mol): 0.305)"""),
+)
+
+entry(
+ index = 42,
+ label = "CCC(O)CO[O] <=> CC[C](O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9332920146999065,B_g=1.939639381147806,E_g=-0.11717738287092849,L_g=-0.35714728000340995,A_g=-0.32838255992924514,K_g=0.9530256096131713,S_h=0.8108880147512818,B_h=4.42104364552732,E_h=0.16021450610115817,L_h=-0.6119760169907159,A_h=-1.5099572119665525,K_h=1.9687852850761645,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.273, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.467)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.273, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.467)"""),
+)
+
+entry(
+ index = 43,
+ label = "CCC(O)CO[O] <=> C[CH]C(O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4001330900224981,B_g=2.8316609131724966,E_g=-0.004200352854866565,L_g=-0.3549334814655919,A_g=-0.3338364212277107,K_g=1.528334672013935,S_h=0.09775166722451245,B_h=5.207074074709923,E_h=0.15599949232882263,L_h=-0.5313409709112531,A_h=-1.3904487432180537,K_h=2.3787411898028883,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.539)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.539)"""),
+)
+
+entry(
+ index = 44,
+ label = "CCC(O)CO[O] <=> [CH2]CC(O)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3793292481339967,B_g=-0.08050309782224191,E_g=-0.011648098929115133,L_g=-0.10677546192667779,A_g=0.41996198089931147,K_g=0.5094228992951083,S_h=0.5623781331931118,B_h=-0.2188068627659897,E_h=-0.05274998105343769,L_h=-0.10067652025957662,A_h=0.3062299136335964,K_h=0.3797250929056596,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.102)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.102)"""),
+)
+
+entry(
+ index = 45,
+ label = "CCCC(O)O[O] <=> CC[CH]C(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08842732371423276,B_g=2.1364768590865095,E_g=0.23166448738629677,L_g=-0.24785747073079978,A_g=-0.7968501862747208,K_g=1.3853100916451715,S_h=-0.11822563846996152,B_h=2.850822732304471,E_h=0.3036056094066466,L_h=-0.20822901081211104,A_h=-0.9715936615876514,K_h=1.537776302863967,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48700000000000004, MAE_h(kcal/mol): 0.40299999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48700000000000004, MAE_h(kcal/mol): 0.40299999999999997)"""),
+)
+
+entry(
+ index = 46,
+ label = "CCCC(O)O[O] <=> C[CH]CC(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.264834813159894,B_g=0.8237089870779164,E_g=0.2445367729240728,L_g=-0.20897671760302972,A_g=0.7238241563616655,K_g=1.0517302364731682,S_h=0.1555889866396908,B_h=0.8434572429086503,E_h=0.138882871183773,L_h=-0.13500505851322428,A_h=0.847276411909323,K_h=1.0882212600534926,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39899999999999997, MAE_h(kcal/mol): 0.336)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39899999999999997, MAE_h(kcal/mol): 0.336)"""),
+)
+
+entry(
+ index = 47,
+ label = "CCCC(O)O[O] <=> [CH2]CCC(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.27959835705117014,B_g=-1.4795651300533292,E_g=0.32099345752487257,L_g=0.00037385339545932767,A_g=0.7877970697376174,K_g=0.40268408966210295,S_h=0.5938551229990403,B_h=-3.499099180948414,E_h=0.2111758552233787,L_h=0.2185356357928133,A_h=1.2685945276745165,K_h=-0.48493916712188956,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.231, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5770000000000001, MAE_h(kcal/mol): 0.44299999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.231, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5770000000000001, MAE_h(kcal/mol): 0.44299999999999995)"""),
+)
+
+entry(
+ index = 48,
+ label = "CCCCO[O] <=> CC[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6065514775271885,B_g=-0.05841642565520358,E_g=-0.050345590588522796,L_g=0.16669463162245318,A_g=-0.3223569228494889,K_g=-0.4911773875049462,S_h=-0.757382996448191,B_h=0.11632704965772689,E_h=-0.0318948259537948,L_h=0.17634151531705075,A_h=-0.10292697109106706,K_h=-0.6859476760805214,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 49,
+ label = "CCCCO[O] <=> C[CH]CCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.46884881019966945,B_g=-0.08352324682085452,E_g=0.15409357305785348,L_g=-0.16047107215686554,A_g=0.4585421852189672,K_g=0.7224533605783147,S_h=0.6114628848793012,B_h=-0.3706206631574147,E_h=0.06517510860840947,L_h=-0.13614861007580575,A_h=0.37341356793525793,K_h=0.590175232714323,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 50,
+ label = "CCCCO[O] <=> [CH2]CCCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2948677025951266,B_g=-0.1512640159863378,E_g=0.0778934545127611,L_g=-0.08624284701135276,A_g=0.3497068643878959,K_g=0.6037659032080798,S_h=0.3815503771305492,B_h=-0.38525225879146996,E_h=0.02414653107143187,L_h=-0.04429796213256309,A_h=0.2087641342997293,K_h=0.32182912982060524,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.095)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.095)"""),
+)
+
+entry(
+ index = 51,
+ label = "CCCC[O] <=> C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04470113736296039,B_g=-0.07650799781194124,E_g=0.16063967270775897,L_g=-0.02336950244557523,A_g=0.4927607665915975,K_g=0.27703269649409634,S_h=-0.14438071523464546,B_h=-0.1328499036452823,E_h=0.18941172324065822,L_h=0.002558330098339321,A_h=0.9423964444481513,K_h=0.2292161141689749,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.113, MAE_h(kcal/mol): 0.09)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.113, MAE_h(kcal/mol): 0.09)"""),
+)
+
+entry(
+ index = 52,
+ label = "CCCC[O] <=> [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.049810467100904546,B_g=-0.09109561069358953,E_g=0.11509553259033145,L_g=-0.008642610847971518,A_g=0.39573481478180017,K_g=0.3519133324669793,S_h=-0.15302332608261698,B_h=-0.1136954149720426,E_h=0.16875449052684674,L_h=0.033522187792853056,A_h=0.6469056528605924,K_h=0.1333850271329005,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.069)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.069)"""),
+)
+
+entry(
+ index = 53,
+ label = "CCCO[O] <=> C[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6198122773778928,B_g=-0.05392285445095715,E_g=-0.04445190176598752,L_g=0.1677428872214862,A_g=-0.33421027462317,K_g=-0.46442854358276797,S_h=-0.7644422282095111,B_h=0.11300635185099991,E_h=-0.02996691530662219,L_h=0.1727275991609439,A_h=-0.11845288269073093,K_h=-0.6292539082279246,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 54,
+ label = "CCCO[O] <=> [CH2]CCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3435272876747152,B_g=-0.0221379853781798,E_g=0.10077181622312507,L_g=-0.10739122046037551,A_g=0.286342379086907,K_g=0.6934833876595838,S_h=0.42465347448938934,B_h=-0.17398843806327732,E_h=0.06240419520676974,L_h=-0.0642368098903939,A_h=0.13471184016384444,K_h=0.5418088659841144,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.096)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.096)"""),
+)
+
+entry(
+ index = 55,
+ label = "COCO[O] <=> [CH2]OCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3024767187615341,B_g=0.06861309375488839,E_g=0.09410842923346763,L_g=-0.08844931509043623,A_g=0.14026099742585837,K_g=0.5691368161463177,S_h=0.31002709125806566,B_h=0.10102105182009793,E_h=0.11546938598579079,L_h=-0.061253313185453774,A_h=-0.017028655640235653,K_h=0.42022587741375333,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.077, MAE_h(kcal/mol): 0.061)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.077, MAE_h(kcal/mol): 0.061)"""),
+)
+
+entry(
+ index = 56,
+ label = "CO[C]=O <=> [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16078628188244892,B_g=0.03152097255833547,E_g=0.10956836670452101,L_g=-0.05679639427487982,A_g=0.03391803256451587,K_g=0.2178978858829121,S_h=0.16780153089136218,B_h=0.006685378365860919,E_h=0.13581140897401894,L_h=-0.03918130193588444,A_h=-0.037671227436578136,K_h=0.3068530026260286,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.053, MAE_h(kcal/mol): 0.040999999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.053, MAE_h(kcal/mol): 0.040999999999999995)"""),
+)
+
+entry(
+ index = 57,
+ label = "C[CH]O <=> [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8917576355102486,B_g=0.4964040045826423,E_g=0.09748777071007057,L_g=-0.2443315200795069,A_g=-0.4714584535091503,K_g=0.18164876744082628,S_h=0.966689584694273,B_h=0.835686956650084,E_h=0.4945054157704076,L_h=-0.3535333638473031,A_h=-0.9902790009018833,K_h=0.4397615499411869,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.305)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.305)"""),
+)
+
+entry(
+ index = 58,
+ label = "[CH2]C(C)C <=> C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11582124800504663,B_g=0.04318373240491961,E_g=-0.01707996885137713,L_g=-0.03273782870826192,A_g=0.023838651804583014,K_g=0.02133896537611967,S_h=0.16280948849316998,B_h=0.014353038202144387,E_h=-0.0038191690006727404,L_h=-0.04699557094685784,A_h=-0.0687890247645163,K_h=0.08899176903678899,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.042, MAE_h(kcal/mol): 0.034)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.042, MAE_h(kcal/mol): 0.034)"""),
+)
+
+entry(
+ index = 59,
+ label = "[CH2]C=C <=> C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.30359827894791214,B_g=0.11450909589157172,E_g=0.028017013283246087,L_g=-0.09943034227471219,A_g=0.1152641331412249,K_g=0.18631826965470064,S_h=0.3684655082894727,B_h=0.09714323914954924,E_h=-0.022240611800462752,L_h=-0.07427953835665427,A_h=-0.17154006484595546,K_h=0.24964610266201695,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.063)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.063)"""),
+)
+
+entry(
+ index = 60,
+ label = "[CH2]C=C <=> [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6666685696087953,B_g=0.5810708029660783,E_g=0.5044161959794471,L_g=-0.3691985541629224,A_g=3.252055391137143,K_g=1.4474503903374996,S_h=0.6111769969886559,B_h=0.5911355228085422,E_h=0.3913658613760401,L_h=-0.212656607887747,A_h=4.947150668902143,K_h=1.579002802786776,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40299999999999997, MAE_g(kcal/mol): 0.3, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48200000000000004, MAE_h(kcal/mol): 0.377)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40299999999999997, MAE_g(kcal/mol): 0.3, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48200000000000004, MAE_h(kcal/mol): 0.377)"""),
+)
+
+entry(
+ index = 61,
+ label = "[CH2]CCCO <=> CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5607141190603812,B_g=1.6936878296879756,E_g=-0.39843975405482934,L_g=-0.14711497634261272,A_g=-1.333754975365457,K_g=0.3012012189417317,S_h=0.4733423814039159,B_h=4.215629530869256,E_h=0.015100744993063043,L_h=-0.44289898627955143,A_h=-3.0609503319288165,K_h=1.070870064228939,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.58)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.58)"""),
+)
+
+entry(
+ index = 62,
+ label = "[CH2]COO <=> CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.297294084436245,B_g=-1.8839278947656317,E_g=0.3068676635434976,L_g=0.1905259529683017,A_g=0.11125437221345524,K_g=-0.6108251349694,S_h=-0.13088534070443716,B_h=-4.245823690396647,E_h=0.25102422890410236,L_h=0.4181366966744219,A_h=0.9558771580608905,K_h=-1.741709664857663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.602, MAE_h(kcal/mol): 0.45799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.602, MAE_h(kcal/mol): 0.45799999999999996)"""),
+)
+
+entry(
+ index = 63,
+ label = "[CH]=CC#C <=> C#C[C]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01271834590435164,B_g=0.05961129042892653,E_g=-0.006868639834223335,L_g=0.0007623677083876488,A_g=-0.028566797688333336,K_g=0.023626068501282613,S_h=0.003225401843178514,B_h=0.129140691525627,E_h=-0.004127048267521598,L_h=-0.006348177264074074,A_h=-0.04706887553420281,K_h=0.07709443451070097,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.013000000000000001, MAE_g(kcal/mol): 0.011000000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.018000000000000002, MAE_h(kcal/mol): 0.015)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.013000000000000001, MAE_g(kcal/mol): 0.011000000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.018000000000000002, MAE_h(kcal/mol): 0.015)"""),
+)
+
+entry(
+ index = 64,
+ label = "[CH]=CC=C <=> C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.051181262884255424,B_g=0.03248859311128903,E_g=-0.045360878649065094,L_g=-0.00618690717191515,A_g=0.061795767131806525,K_g=-0.031630929439352924,S_h=0.09673273346041743,B_h=0.04660705663392952,E_h=-0.07115676293575872,L_h=-0.005072677444271662,A_h=-0.11846754360819992,K_h=0.05691368161463178,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.024, MAE_h(kcal/mol): 0.017)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.024, MAE_h(kcal/mol): 0.017)"""),
+)
+
+entry(
+ index = 65,
+ label = "[O]COC=O <=> O=[C]OCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7252022826037507,B_g=-0.10409251402985202,E_g=-0.07091485779752031,L_g=0.17117354190923062,A_g=-0.13644915888392012,K_g=-0.40052160433542644,S_h=-0.7700426986826667,B_h=-0.40358573608644605,E_h=-0.15917358096085965,L_h=0.21906342882169705,A_h=0.3528149788913224,K_h=-0.7002860533651968,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.122)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.122)"""),
+)
+
+entry(
+ index = 66,
+ label = "[O]COO <=> [O]OCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1273512487782356,B_g=-2.37442354960827,E_g=0.28511086201951163,L_g=0.38103724501913444,A_g=0.04177628432789625,K_g=-0.9838941713441367,S_h=-0.7765814678738376,B_h=-5.451017080476502,E_h=0.053160486742569506,L_h=0.5760714301091515,A_h=1.364308327370839,K_h=-2.107983365985521,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.284, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.736, MAE_h(kcal/mol): 0.598)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.284, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.736, MAE_h(kcal/mol): 0.598)"""),
+)
+
+entry(
+ index = 67,
+ label = "[O]OCC=O <=> O=[C]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16425358886386582,B_g=0.05744147464351553,E_g=0.06891364256300274,L_g=0.014118463522640493,A_g=0.035039592750893855,K_g=0.09220250996249851,S_h=-0.20501826988640157,B_h=-0.014902822607231633,E_h=0.024359114374732278,L_h=0.029395139525331453,A_h=0.30222015270582675,K_h=-0.04121183900534001,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.062, MAE_h(kcal/mol): 0.05)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.062, MAE_h(kcal/mol): 0.05)"""),
+)
+
+entry(
+ index = 68,
+ label = "[O]OCCCCO <=> OCC[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.151857783143832,B_g=-0.11074857056077496,E_g=1.0172404281273617,L_g=-0.6840197654333489,A_g=-4.480955484764361,K_g=3.188727558129827,S_h=0.5198248202393589,B_h=-0.36573124718150546,E_h=0.9969937011026822,L_h=-0.721734975622334,A_h=-4.339367674307558,K_h=3.0182724011765774,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.214, MAE_g(kcal/mol): 1.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.168, MAE_h(kcal/mol): 1.014)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.214, MAE_g(kcal/mol): 1.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.168, MAE_h(kcal/mol): 1.014)"""),
+)
+
+entry(
+ index = 69,
+ label = "[O]OCCCCO <=> OC[CH]CCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.2341413716223821,B_g=-1.166400602456899,E_g=0.07072426587042341,L_g=-0.18475688194425285,A_g=0.5750085135926496,K_g=0.6163742922314139,S_h=1.968066900120184,B_h=-1.798080892525942,E_h=0.019117836379567193,L_h=-0.22824849361602131,A_h=0.1445346548680699,K_h=0.5373885993672128,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39299999999999996, MAE_h(kcal/mol): 0.273)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39299999999999996, MAE_h(kcal/mol): 0.273)"""),
+)
+
+entry(
+ index = 70,
+ label = "[O]OCCCCO <=> O[CH]CCCOO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6810216078109396,B_g=-2.198433896310475,E_g=0.19719667041669361,L_g=0.026932105390540587,A_g=-0.11256652432693014,K_g=0.06258012621639766,S_h=1.3671672062772926,B_h=-4.271934784408924,E_h=0.27874802383796854,L_h=0.10467162026987727,A_h=-0.5347789560577321,K_h=-0.7525009109310162,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.47200000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.47200000000000003)"""),
+)
+
+entry(
+ index = 71,
+ label = "[CH]=CCC <=> C#C + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.291920858183859,B_g=0.22477385617586992,E_g=-0.0570749517067907,L_g=-0.0755257163415187,A_g=-0.1258859678475105,K_g=0.20785515741665173,S_h=0.3258095689134369,B_h=0.44750984482354983,E_h=0.015342650131301431,L_h=-0.1319189353860012,A_h=-0.37526084353635103,K_h=0.42274755521842017,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07, MAE_h(kcal/mol): 0.053)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07, MAE_h(kcal/mol): 0.053)"""),
+)
+
+entry(
+ index = 72,
+ label = "[CH]=CC <=> C#C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2909752290071089,B_g=0.30156041141972206,E_g=-0.08668267453542255,L_g=-0.0612093304330468,A_g=-0.2144452398189642,K_g=0.19018875186651488,S_h=0.29733073672991744,B_h=0.6366210192560936,E_h=0.013751940585915662,L_h=-0.13398612474912927,A_h=-0.39819784891659105,K_h=0.46337295752500046,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09, MAE_h(kcal/mol): 0.07400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09, MAE_h(kcal/mol): 0.07400000000000001)"""),
+)
+
+entry(
+ index = 73,
+ label = "[CH]=CC#C <=> C#C + [C]#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.1083946824908273,B_g=0.2717181139115863,E_g=0.11824762984616499,L_g=-0.27936378237166626,A_g=0.008525323508219572,K_g=1.206593507698144,S_h=1.1279156941007917,B_h=0.6956751948211984,E_h=0.32919624084877436,L_h=-0.3777678604235489,A_h=-0.5831233314117372,K_h=1.8431632137430962,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.161)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.161)"""),
+)
+
+entry(
+ index = 74,
+ label = "[CH]=C <=> C#C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.43342803359458176,B_g=0.34346864400483923,E_g=-0.10928247881387564,L_g=-0.07502724514757292,A_g=-0.11846754360819992,K_g=0.5666004774241818,S_h=0.41094551665588064,B_h=0.8085349374975083,E_h=0.0006157585336977163,L_h=-0.13632454108543368,A_h=-0.39000972651015825,K_h=0.9273470126662298,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08199999999999999, MAE_h(kcal/mol): 0.067)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08199999999999999, MAE_h(kcal/mol): 0.067)"""),
+)
+
+entry(
+ index = 75,
+ label = "[CH]=CO <=> C#C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7587391313140729,B_g=-1.5064166003977901,E_g=0.660877507208543,L_g=-0.16637942189686983,A_g=2.632492349356223,K_g=0.5900726062920401,S_h=1.0782738275507806,B_h=-2.683226454257675,E_h=0.7229005185611189,L_h=-0.18156813239474684,A_h=4.330351210064128,K_h=0.7389175708959941,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.632)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.632)"""),
+)
+
+entry(
+ index = 76,
+ label = "C#C[C]=C <=> C#CC#C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12270454875673896,B_g=0.39904818212979265,E_g=-0.050675461231575146,L_g=-0.03890274450397358,A_g=-0.18587844213063082,K_g=0.27563990933454197,S_h=0.08193986773420324,B_h=0.7191326627715877,E_h=-0.003064131751019588,L_h=-0.09542791180567702,A_h=-0.27771442915640454,K_h=0.48019636032067015,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.064)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.064)"""),
+)
+
+entry(
+ index = 77,
+ label = "[CH]=CC#C <=> C#CC#C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06712501063178557,B_g=0.4049858537047349,E_g=0.03308969072751775,L_g=-0.03942320707412283,A_g=-0.18006538835417502,K_g=0.5287606494367103,S_h=0.05038224288219528,B_h=0.608948537533369,E_h=0.02825158796274998,L_h=-0.08162465800861989,A_h=-0.13183096988118725,K_h=0.7256787624214931,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.092, MAE_h(kcal/mol): 0.07200000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.092, MAE_h(kcal/mol): 0.07200000000000001)"""),
+)
+
+entry(
+ index = 78,
+ label = "C[C]=CC <=> C#CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2747455933689334,B_g=0.21451854440630916,E_g=-0.006678047907126423,L_g=-0.07729968735526688,A_g=-0.15893167582262127,K_g=0.26073708672731033,S_h=0.2725244643723809,B_h=0.3859413219125127,E_h=0.0410065861607741,L_h=-0.053776245276267225,A_h=-0.45852752430149823,K_h=0.3118597059416898,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.107)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.107)"""),
+)
+
+entry(
+ index = 79,
+ label = "C=[C]C <=> C#CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4916538673226884,B_g=0.22962661985810667,E_g=0.010885731220727484,L_g=-0.09361728849825636,A_g=-0.1504136827731362,K_g=0.7588930709474974,S_h=0.46351223624095594,B_h=0.5340605711017514,E_h=0.13527628548640067,L_h=-0.07501991468883844,A_h=-0.3891154105445497,K_h=0.992786017789081,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.12)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.12)"""),
+)
+
+entry(
+ index = 80,
+ label = "[CH]=CC <=> C#CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3528369702675259,B_g=0.22428271544065867,E_g=-0.024835594192474556,L_g=-0.06333516346605082,A_g=-0.14440270661084895,K_g=0.5616817396133347,S_h=0.33102885553239847,B_h=0.4855989084079942,E_h=0.08086962075896674,L_h=-0.07235895816821616,A_h=-0.2617340291152019,K_h=0.7894244315766757,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.075)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.075)"""),
+)
+
+entry(
+ index = 81,
+ label = "C=[C]C=C <=> C#CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3664936148898931,B_g=0.2782788744789607,E_g=0.004911407352112737,L_g=-0.08781156518053504,A_g=-0.15407158168165,K_g=0.4629551213771341,S_h=0.3516934187049444,B_h=0.558573625109908,E_h=0.08541450517435464,L_h=-0.12053473297132795,A_h=-0.3469432814449906,K_h=0.6694761353041075,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.057999999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.057999999999999996)"""),
+)
+
+entry(
+ index = 82,
+ label = "[CH]=CC=C <=> C#CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19499753279634463,B_g=0.224583264248773,E_g=-0.017461152705570953,L_g=-0.03764923606037465,A_g=-0.08782622609800401,K_g=0.4688708015758729,S_h=0.21559612184028015,B_h=0.41454477189451855,E_h=0.0070005880914442735,L_h=-0.07823798607328245,A_h=-0.13532026823880763,K_h=0.7476188254138414,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.025, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.05)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.025, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.05)"""),
+)
+
+entry(
+ index = 83,
+ label = "[CH2]C(C)(C)C=O <=> C=C(C)C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3194833830255663,B_g=0.10947307074097255,E_g=-0.12512360013912285,L_g=0.10953904486958303,A_g=-0.45762587787715514,K_g=-0.5232188226334309,S_h=-0.4605140786185468,B_h=0.3924727606449491,E_h=-0.015335319672566931,L_h=0.08991540683733557,A_h=-0.5018285440461697,K_h=-0.6581579070180447,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.149)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.149)"""),
+)
+
+entry(
+ index = 84,
+ label = "[CH2]C(C)C <=> C=C(C)C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.31908753825390346,B_g=0.0790003537816701,E_g=0.02909459071721709,L_g=-0.07208040073630528,A_g=-0.07303336037178984,K_g=0.48457997464389924,S_h=0.39135853091730566,B_h=0.05215621389594347,E_h=0.10813159679255968,L_h=-0.1069880452299782,A_h=-0.10628432119146652,K_h=0.7652192568353678,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.081, MAE_h(kcal/mol): 0.066)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.081, MAE_h(kcal/mol): 0.066)"""),
+)
+
+entry(
+ index = 85,
+ label = "C[C](C)CO <=> C=C(C)C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6512746062663524,B_g=-0.8260180815792829,E_g=0.9294288629468267,L_g=-0.3089568442828291,A_g=2.902106621611009,K_g=0.9280360757872723,S_h=0.9269365069770978,B_h=-2.166047929621469,E_h=1.2013302383267754,L_h=-0.24396499714278208,A_h=4.466587785644747,K_h=0.8706532448136329,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.366, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47600000000000003, MAE_h(kcal/mol): 0.38)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.366, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47600000000000003, MAE_h(kcal/mol): 0.38)"""),
+)
+
+entry(
+ index = 86,
+ label = "[CH2]C(C)(C)O <=> C=C(C)C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15111007635291338,B_g=-0.6372587691659948,E_g=0.7892118482733754,L_g=-0.1653678185915093,A_g=2.400981801603351,K_g=0.7467758226593744,S_h=-0.002477695052259858,B_h=-1.5588073889732377,E_h=1.065987978711764,L_h=-0.04204751130107263,A_h=3.9670976579348824,K_h=0.6381530851316035,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.321)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.321)"""),
+)
+
+entry(
+ index = 87,
+ label = "C[C](C)COO <=> C=C(C)C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.945416593446764,B_g=-0.7189494013032253,E_g=0.19891199776056584,L_g=-0.21520760752735182,A_g=0.5815766046187585,K_g=0.6932121606864076,S_h=1.4328701079145858,B_h=-1.1601917039087803,E_h=0.08674131820529853,L_h=-0.26262834508081045,A_h=0.5177869527111689,K_h=0.8722879371114256,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.305, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.305, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 88,
+ label = "[CH2]C(C)(C)OO <=> C=C(C)C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2593516300264905,B_g=0.829030900119161,E_g=-0.012601058564599693,L_g=-0.017453822246836455,A_g=0.017153273438722097,K_g=0.3534893810948961,S_h=-0.44196801802027036,B_h=1.1713486621026843,E_h=-0.03456311293315157,L_h=-0.003716542578389787,A_h=0.28412125009035455,K_h=0.5453787993878141,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.221, MAE_h(kcal/mol): 0.172)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.221, MAE_h(kcal/mol): 0.172)"""),
+)
+
+entry(
+ index = 89,
+ label = "[CH2]C(C)(C)C=O <=> C=C(C)C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11319694377809685,B_g=0.07120074568816569,E_g=0.08023920130780002,L_g=-0.05557220766621889,A_g=0.17379784613618043,K_g=0.22147514974534646,S_h=0.16574900244570312,B_h=0.022247942259197247,E_h=0.02764315988778676,L_h=-0.045404861401472076,A_h=0.26501074416952186,K_h=0.2949703290174096,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.063)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.063)"""),
+)
+
+entry(
+ index = 90,
+ label = "C[C](C)C=O <=> C=C(C)C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2645489252692486,B_g=0.07965276460904029,E_g=-0.2771133315401758,L_g=0.13490976254967585,A_g=-0.7841538317465727,K_g=-0.6071745665196207,S_h=-0.36797436755426144,B_h=0.39841776267862594,E_h=-0.14807526643683178,L_h=0.12075464673336285,A_h=-1.2263784158225506,K_h=-0.7684886414309533,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 91,
+ label = "[CH2]C(C)(C=O)OO <=> C=C(C)C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.37475504188367087,B_g=-2.5539611449335613,E_g=0.0005937671574942264,L_g=0.1673030596974164,A_g=0.22184900314080577,K_g=-0.6534077697580909,S_h=0.8881730411890798,B_h=-4.161046935132194,E_h=0.07625876221496836,L_h=0.18059318138305877,A_h=0.4703149019465688,K_h=-1.010217848659714,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.535)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.535)"""),
+)
+
+entry(
+ index = 92,
+ label = "C[C](C)CO <=> C=C(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.717087464784663,B_g=-0.7876504605629275,E_g=-0.12592262014118297,L_g=-0.028361544843767426,A_g=-0.3670360688362459,K_g=0.1044150542141699,S_h=1.309769714386184,B_h=-1.5538886511623904,E_h=-0.05036025150599179,L_h=-0.03481234853012446,A_h=-1.0425964848899856,K_h=0.08173461488963733,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.324, MAE_h(kcal/mol): 0.261)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.324, MAE_h(kcal/mol): 0.261)"""),
+)
+
+entry(
+ index = 93,
+ label = "[CH2]C(C)CO <=> C=C(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03094919677704474,B_g=0.3411228972098003,E_g=-0.059310741620812166,L_g=-0.008276087911246687,A_g=-0.3354051393968929,K_g=0.16703183272424002,S_h=-0.1729914956753858,B_h=0.8398653181287471,E_h=0.04564676653971047,L_h=-0.0338447279771709,A_h=-0.7913156899301759,K_h=0.4723307780985553,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.139, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.139, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 94,
+ label = "C[C](CO)COO <=> C=C(C)CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0820571550739552,B_g=0.28165821595556373,E_g=-0.12658969188602218,L_g=-0.029541748700021388,A_g=0.6019039666895177,K_g=-0.4263834627507306,S_h=0.24239627897359978,B_h=0.3497728385165063,E_h=-0.2801554719149919,L_h=-0.03484900082379694,A_h=1.0185745716170402,K_h=0.06764547320193483,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 95,
+ label = "[CH2]C(C)(CO)OO <=> C=C(C)CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5492859338933008,B_g=0.4630724087168861,E_g=0.13857499191692416,L_g=0.040999255702039605,A_g=0.15132999011494827,K_g=0.34372521006054657,S_h=-0.8077652393303861,B_h=-0.29184755359651404,E_h=-0.07570897780988112,L_h=0.21956190001564282,A_h=0.8123247846632432,K_h=0.12656770050981866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.335)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.335)"""),
+)
+
+entry(
+ index = 96,
+ label = "C[C](COO)COO <=> C=C(C)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02163218372549953,B_g=-3.407966917961152,E_g=0.18561454561618895,L_g=0.2695922808785823,A_g=0.12079129902703532,K_g=-1.5657566638535403,S_h=0.3596762882668113,B_h=-5.999291411064443,E_h=0.18053453771318284,L_h=0.424382247516213,A_h=0.7351277237302593,K_h=-2.051384894096473,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.408, MAE_g(kcal/mol): 0.314, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.852, MAE_h(kcal/mol): 0.664)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.408, MAE_g(kcal/mol): 0.314, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.852, MAE_h(kcal/mol): 0.664)"""),
+)
+
+entry(
+ index = 97,
+ label = "[CH2]C(C)(COO)OO <=> C=C(C)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12497699096443292,B_g=-3.6055887549844465,E_g=-0.015137397286735526,L_g=0.32927687589485377,A_g=0.27001011702644856,K_g=-1.7091184453240909,S_h=0.4573179986103063,B_h=-5.930707639144493,E_h=0.06863508513109187,L_h=0.4491445371213426,A_h=0.5725454794578587,K_h=-2.1210389129916596,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.461, MAE_g(kcal/mol): 0.35200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.889, MAE_h(kcal/mol): 0.69)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.461, MAE_g(kcal/mol): 0.35200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.889, MAE_h(kcal/mol): 0.69)"""),
+)
+
+entry(
+ index = 98,
+ label = "[CH2]C(C)(C)O <=> C=C(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17916374192983192,B_g=1.1053745334922147,E_g=-0.26722454270733986,L_g=-0.04376283864494484,A_g=-1.1262003667569196,K_g=0.3254943591878535,S_h=0.14548761450355446,B_h=1.9697895579227906,E_h=-0.19801035133622275,L_h=-0.07823065561454796,A_h=-2.369453498586281,K_h=0.5460971843437948,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.402, MAE_h(kcal/mol): 0.321)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.402, MAE_h(kcal/mol): 0.321)"""),
+)
+
+entry(
+ index = 99,
+ label = "C[C](C)O <=> C=C(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.46166496063986273,B_g=0.8683734721472043,E_g=-0.10904790413437175,L_g=-0.0798800088298097,A_g=-0.6255960093194107,K_g=0.5673408537563661,S_h=0.32558232469266746,B_h=1.474543765820199,E_h=0.22222285653626508,L_h=-0.060285692632500214,A_h=-1.1248808841847102,K_h=0.7484691586270431,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16699999999999998, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.337)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16699999999999998, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.337)"""),
+)
+
+entry(
+ index = 100,
+ label = "[CH2]C(C)O <=> C=C(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6532758215008699,B_g=1.319629181384082,E_g=-0.2775091763118386,L_g=-0.14309055449737407,A_g=-1.1911482311445596,K_g=0.8774705714367146,S_h=0.8362074192202332,B_h=2.116721272797041,E_h=-0.11149627735169364,L_h=-0.22102799176254212,A_h=-2.621078825106612,K_h=1.3202449399177798,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.479, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.479, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 101,
+ label = "CC[C](C)O <=> C=C(O)CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3937189386298136,B_g=0.9499174951097448,E_g=-0.07971873873765077,L_g=-0.0827168963600599,A_g=-0.6256839748242247,K_g=0.6193211366426816,S_h=0.2213725233230635,B_h=1.5268905716432395,E_h=0.25511462487795145,L_h=-0.06277071814349457,A_h=-1.073853560933879,K_h=0.8296613195703276,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.33299999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.33299999999999996)"""),
+)
+
+entry(
+ index = 102,
+ label = "[CH2]C(O)(CC)OO <=> C=C(O)CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5295303476038324,B_g=0.8321316841638531,E_g=-0.030355429619550515,L_g=-0.1601338710550787,A_g=0.11456773956144771,K_g=0.7551618674516385,S_h=0.435084717268578,B_h=1.64935321526174,E_h=0.10996421147618383,L_h=-0.198486831153965,A_h=0.04308110598263665,K_h=1.1416309823930348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.348, MAE_h(kcal/mol): 0.287)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.348, MAE_h(kcal/mol): 0.287)"""),
+)
+
+entry(
+ index = 103,
+ label = "[CH2]CC(C)=O <=> C=C + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4697064738716056,B_g=0.1859810685529138,E_g=-0.14185170697124413,L_g=0.15308930021122746,A_g=-0.7439316046703898,K_g=-0.41043238454446584,S_h=-0.7105560260522267,B_h=0.5956950681413989,E_h=0.013920541136809085,L_h=0.15331654443199685,A_h=-0.9589339593531756,K_h=-0.6494859743351352,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.305, MAE_h(kcal/mol): 0.221)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.305, MAE_h(kcal/mol): 0.221)"""),
+)
+
+entry(
+ index = 104,
+ label = "[CH2]CCC=O <=> C=C + [CH2]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.28964841597616503,B_g=0.04289051405553974,E_g=0.34184861262451544,L_g=-0.17712587440164188,A_g=0.8432446596053498,K_g=0.6328458330078279,S_h=0.42496868421497264,B_h=-0.20241595703565526,E_h=0.18412646249308617,L_h=-0.1660202294188795,A_h=1.434438826083768,K_h=0.7458375239413588,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.151, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.258, MAE_h(kcal/mol): 0.19899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.151, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.258, MAE_h(kcal/mol): 0.19899999999999998)"""),
+)
+
+entry(
+ index = 105,
+ label = "[CH2]CCCO <=> C=C + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06704437558570611,B_g=0.12093790820172526,E_g=-0.013788592879588146,L_g=-0.019858212711751345,A_g=-0.2185429662515478,K_g=-0.013854567008198615,S_h=0.09107361931738603,B_h=0.1580007075633402,E_h=0.02188141932247242,L_h=-0.030773265767416822,A_h=-0.4317200367094441,K_h=0.2073346948465025,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.024, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.039)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.024, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.039)"""),
+)
+
+entry(
+ index = 106,
+ label = "[CH2]CC=C <=> C=C + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04247267790767343,B_g=0.12412665775123131,E_g=0.013290121685642376,L_g=-0.030230811821064067,A_g=-0.13942532513012576,K_g=0.020781850512297924,S_h=0.06960270568404543,B_h=0.1751319896258588,E_h=0.015518581140929348,L_h=-0.041270482675215985,A_h=-0.26177068140887433,K_h=0.06039564951351766,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.043)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.043)"""),
+)
+
+entry(
+ index = 107,
+ label = "[CH2]CC=O <=> C=C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5739309361586785,B_g=-0.018656017479293904,E_g=-0.20762058273714787,L_g=0.186530852958001,A_g=-0.49486460824839795,K_g=-0.8603466198329305,S_h=-0.7321735488602572,B_h=0.24920627513794716,E_h=-0.14478389046504278,L_h=0.16253826151999362,A_h=-0.40420149462014376,K_h=-1.1128809232363392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 108,
+ label = "C[CH2] <=> C=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1820592731299581,B_g=0.13572344346920495,E_g=0.012791650491696605,L_g=-0.031960800082405275,A_g=-0.15226828883296384,K_g=0.3994440269014554,S_h=0.15138863378482423,B_h=0.2749874985071718,E_h=0.06919219999491362,L_h=0.011259584616186811,A_h=-0.22130654919445303,K_h=0.44760514078709823,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.111)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.111)"""),
+)
+
+entry(
+ index = 109,
+ label = "[CH2]CO <=> C=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.456856179710033,B_g=-0.7755038904398667,E_g=0.5876095721572492,L_g=-0.1829389281780977,A_g=1.9829110790575397,K_g=0.6539428932457091,S_h=0.5196049064773242,B_h=-1.6465676409426313,E_h=0.7711642588690447,L_h=-0.10415115769972799,A_h=3.4190505715677104,K_h=0.5876535549096562,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.314)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.314)"""),
+)
+
+entry(
+ index = 110,
+ label = "[CH2]COO <=> C=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23788071639314987,B_g=0.9818929561096191,E_g=-0.0655343010863998,L_g=-0.018912583535001286,A_g=-0.1341620557587572,K_g=0.2606491212224964,S_h=-0.37494563381076773,B_h=1.4046551722455083,E_h=-0.1006545288833731,L_h=-0.01883927894765632,A_h=-0.019125166838301687,K_h=0.39184967165251694,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.225, MAE_h(kcal/mol): 0.177)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.225, MAE_h(kcal/mol): 0.177)"""),
+)
+
+entry(
+ index = 111,
+ label = "[CH2]C(=C)CO <=> C=C=C + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09769302355463648,B_g=1.8135261690795264,E_g=-0.13680102090317597,L_g=-0.08333998535249211,A_g=-1.0834051486649283,K_g=0.49592752476489993,S_h=-0.2587138801165893,B_h=2.648971220591372,E_h=0.024322462081059794,L_h=-0.08715182389443035,A_h=-1.9018875186651487,K_h=0.6120713129542645,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 112,
+ label = "C=[C]CC <=> C=C=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07056299577826448,B_g=0.1425700919272248,E_g=-0.04391677827836927,L_g=0.017856997477233773,A_g=-0.23038165710775985,K_g=-0.11813767296514756,S_h=-0.06955872293163845,B_h=0.2841872242189651,E_h=-0.035809290918016,L_h=-0.0013707957833508683,A_h=-0.23079949325562615,K_h=-0.05149647260983878,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.055)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.055)"""),
+)
+
+entry(
+ index = 113,
+ label = "[CH2]C(=C)C <=> C=C=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04168831882308229,B_g=0.1251895742677333,E_g=0.003958447716628176,L_g=-0.01803292848686169,A_g=-0.14615468624839364,K_g=-0.004141709184990591,S_h=0.01644954940021042,B_h=0.24076891713454157,E_h=0.025993806672525026,L_h=0.02394127822686597,A_h=-0.3271510428618497,K_h=-0.05367361885398427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.10400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.10400000000000001)"""),
+)
+
+entry(
+ index = 114,
+ label = "C=[C]C <=> C=C=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08376515195909291,B_g=0.1861643300212762,E_g=-0.042333399191717996,L_g=0.012483771224847747,A_g=-0.21138843852667907,K_g=0.30411874151806134,S_h=0.03177753861404286,B_h=0.4588720558620195,E_h=0.012740337280555129,L_h=0.04028087074605894,A_h=-0.23092411105411256,K_h=0.42466813540685827,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 115,
+ label = "[CH2]C=C <=> C=C=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20424124126054488,B_g=0.17324073127235867,E_g=0.0052559389126340785,L_g=-0.039459859367795315,A_g=-0.12469110307378754,K_g=0.38362489695241175,S_h=0.2016829111622056,B_h=0.32867577827862504,E_h=0.039980321937944575,L_h=-0.00713986680739971,A_h=-0.26289957205398684,K_h=0.49073755998087637,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.135, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.135, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 116,
+ label = "C=[C]CO <=> C=C=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10868871165638143,B_g=-1.020700404650044,E_g=0.8722366239002839,L_g=-0.14221089944923448,A_g=3.129688043482192,K_g=0.6427859350518054,S_h=-0.15810333398562315,B_h=-1.8818240531088315,E_h=1.0891375673953045,L_h=-0.013678635998570696,A_h=5.392050870416211,K_h=0.5613372080528133,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.31, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.51)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.31, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.51)"""),
+)
+
+entry(
+ index = 117,
+ label = "[CH2]C(=O)CC <=> C=C=O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11582124800504663,B_g=0.20542144511679886,E_g=-0.23051360536498078,L_g=0.11107844120382732,A_g=-0.8689599088459642,K_g=-0.006260211759260116,S_h=-0.31729157586395174,B_h=0.6977277232668576,E_h=-0.02818561383413951,L_h=0.162736183905825,A_h=-1.6069685028588805,K_h=-0.1664747178604183,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.266)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.266)"""),
+)
+
+entry(
+ index = 118,
+ label = "[CH2]C(C)=O <=> C=C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.40536703755892867,B_g=0.273382128044317,E_g=-0.37669761344831243,L_g=0.204006666581041,A_g=-1.102339723576133,K_g=-0.5539774274833786,S_h=-0.6955139247290395,B_h=0.9400433671943778,E_h=-0.1672810683212129,L_h=0.23409086922741515,A_h=-1.7918646635190887,K_h=-0.795376764069087,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.327)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.327)"""),
+)
+
+entry(
+ index = 119,
+ label = "C[C]=O <=> C=C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1955986304125734,B_g=0.14524570936531608,E_g=-0.05682571610981782,L_g=0.002719600190498247,A_g=0.002507016887197845,K_g=0.28266981926092427,S_h=0.18739584708867169,B_h=0.36038734276405743,E_h=0.11329223974164529,L_h=-0.0473107806724412,A_h=-0.06020505758642075,K_h=0.7251876216862818,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.078, MAE_h(kcal/mol): 0.053)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.078, MAE_h(kcal/mol): 0.053)"""),
+)
+
+entry(
+ index = 120,
+ label = "O=[C]COO <=> C=C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.033536848710322045,B_g=1.236347839701466,E_g=0.2876545312003819,L_g=-0.22371093965936792,A_g=1.0425525021375786,K_g=1.042559832596313,S_h=-0.2187335581786447,B_h=2.002505395254849,E_h=0.008210113782636216,L_h=-0.24832662008980758,A_h=1.1809588935036093,K_h=1.8089592932879348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.583, MAE_h(kcal/mol): 0.46399999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.583, MAE_h(kcal/mol): 0.46399999999999997)"""),
+)
+
+entry(
+ index = 121,
+ label = "C[CH]C(C)=O <=> C=CC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31575217952970747,B_g=0.1549219148948516,E_g=-0.3210667621122175,L_g=0.15677652095467923,A_g=-0.9131039313451027,K_g=-0.6529972640689591,S_h=-0.43829545819428756,B_h=0.5037344633171389,E_h=-0.2610596269116282,L_h=0.14462995083161836,A_h=-1.458072225043785,K_h=-0.7453683745823511,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.172)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.172)"""),
+)
+
+entry(
+ index = 122,
+ label = "[CH2]C(OO)C(C)=O <=> C=CC(C)=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30112791435438674,B_g=-0.036307762111961774,E_g=-0.1362585669568232,L_g=0.10639427807248399,A_g=-0.05571881684090883,K_g=-0.3927146657831876,S_h=-0.35576915376132456,B_h=0.02141960042219913,E_h=-0.11426719075333334,L_h=0.0892043523400894,A_h=0.13353896676632496,K_h=-0.2968762482883787,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.053)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.053)"""),
+)
+
+entry(
+ index = 123,
+ label = "[CH2]C(OO)C(C)O <=> C=CC(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08166864076102687,B_g=-0.07252022826037507,E_g=-0.02962238374610085,L_g=-0.012476440766113251,A_g=-0.12422195371477976,K_g=-0.06454468915724276,S_h=0.15665190315619282,B_h=-0.18739584708867169,E_h=-0.09024527748038791,L_h=-0.020693885007483967,A_h=-0.10072050301198358,K_h=0.0774756183648948,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.051)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.051)"""),
+)
+
+entry(
+ index = 124,
+ label = "C[CH]CCO <=> C=CC + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3641258767186507,B_g=0.9426383495863898,E_g=-0.27480423703880935,L_g=-0.06960270568404543,A_g=-1.3600493308460964,K_g=-0.015635868480681298,S_h=0.44495884518394496,B_h=2.2792302124820965,E_h=0.10799231807660424,L_h=-0.2849569223860872,A_h=-2.6316566770604912,K_h=0.41563701024595845,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.544, MAE_h(kcal/mol): 0.442)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.544, MAE_h(kcal/mol): 0.442)"""),
+)
+
+entry(
+ index = 125,
+ label = "C[CH]CC <=> C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10901125184069925,B_g=0.10469361164608076,E_g=0.013224147557031907,L_g=-0.04073535918759773,A_g=-0.15137397286735524,K_g=0.023823990887114024,S_h=0.10794100486546275,B_h=0.16626213455711789,E_h=0.050675461231575146,L_h=-0.03651301495652767,A_h=-0.2599014144315777,K_h=0.01896389674614276,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.067)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.067)"""),
+)
+
+entry(
+ index = 126,
+ label = "[CH2]C(C)C <=> C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08704919747214739,B_g=0.08389710021631384,E_g=0.017197256191129075,L_g=-0.034841670365062444,A_g=-0.0900620160120255,K_g=0.1193471986563395,S_h=0.12153167535921951,B_h=0.0954645640993495,E_h=0.031191101915283126,L_h=-0.03550874210990163,A_h=-0.19526875976952102,K_h=0.17944229936174283,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027999999999999997, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.065, MAE_h(kcal/mol): 0.044000000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027999999999999997, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.065, MAE_h(kcal/mol): 0.044000000000000004)"""),
+)
+
+entry(
+ index = 127,
+ label = "C[CH]CC=O <=> C=CC + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3639206238740848,B_g=-0.0077702862585664195,E_g=-0.2025332443754072,L_g=0.1278432003296211,A_g=-0.3747183895899983,K_g=-0.7394820162185503,S_h=-0.46641509789981656,B_h=0.2014043537302947,E_h=-0.14485719505238773,L_h=0.10604974651196263,A_h=-0.45283908832352887,K_h=-0.9610158096337725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 128,
+ label = "[CH2]C(C)C=O <=> C=CC + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.40683312930582805,B_g=0.07800341139377855,E_g=-0.14736421193958557,L_g=0.13749741448295316,A_g=-0.4617895784383493,K_g=-0.5804990271847875,S_h=-0.5612125902543269,B_h=0.3694331288424263,E_h=-0.059963152448182365,L_h=0.12071799443969036,A_h=-0.4405825613194505,K_h=-0.7309200404166581,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 129,
+ label = "C[CH]CO <=> C=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5010295240441096,B_g=-0.6481884831391292,E_g=0.7998923266495368,L_g=-0.25595029717368406,A_g=2.4639797639676155,K_g=0.8337077327917699,S_h=0.5082646868150579,B_h=-1.5482075456431557,E_h=1.0822249448086743,L_h=-0.17280823420702338,A_h=3.9750438752030766,K_h=0.801944855095196,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41100000000000003, MAE_h(kcal/mol): 0.33899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41100000000000003, MAE_h(kcal/mol): 0.33899999999999997)"""),
+)
+
+entry(
+ index = 130,
+ label = "C[CH]COO <=> C=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.022255272717931745,B_g=0.7652265872941024,E_g=0.04616722910985972,L_g=-0.09432101253676804,A_g=0.254931363409589,K_g=0.5490147069201246,S_h=0.01697001197035968,B_h=0.9623279617472474,E_h=-0.09812552061997176,L_h=-0.08081097708909077,A_h=0.3794905182261556,K_h=0.8098617505284522,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.19399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.19399999999999998)"""),
+)
+
+entry(
+ index = 131,
+ label = "[CH2]C(C)OO <=> C=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23055025765865328,B_g=0.8182038125683095,E_g=-0.02882336374404072,L_g=-0.011714073057725602,A_g=-0.08343528131604055,K_g=0.4041868337026747,S_h=-0.3474270917214674,B_h=1.129411107682629,E_h=-0.053527009679294336,L_h=-0.014675578386462237,A_h=0.07971873873765077,K_h=0.6447578284513849,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.157)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.157)"""),
+)
+
+entry(
+ index = 132,
+ label = "C=C[CH]C <=> C=CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15601415324629161,B_g=0.20559004566769226,E_g=0.02198404574475537,L_g=-0.03793512395102002,A_g=-0.21427663926807078,K_g=0.3083557466666004,S_h=0.1319262658447357,B_h=0.3685901260879591,E_h=0.057720032075426406,L_h=0.003503959275089385,A_h=-0.35765308165609017,K_h=0.32769349680820253,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 133,
+ label = "[CH2]CC=C <=> C=CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1792370465171769,B_g=0.1753592338466282,E_g=0.012754998198024121,L_g=-0.03826499459407237,A_g=-0.17439894375240914,K_g=0.3703494361842383,S_h=0.1751393200845933,B_h=0.30930870630208496,E_h=0.06529239594816143,L_h=-0.03132305017250407,A_h=-0.21889482827080362,K_h=0.47567346728148585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.07)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.07)"""),
+)
+
+entry(
+ index = 134,
+ label = "C[CH]C=CO <=> C=CC=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0789563710292631,B_g=2.344874470449514,E_g=0.10063986796590413,L_g=-0.19297432618562357,A_g=-0.4111141172067741,K_g=1.1575307473881582,S_h=-0.5125823270096763,B_h=3.342132068066638,E_h=0.11763920177120178,L_h=-0.1265530395923497,A_h=-0.8193253727546874,K_h=1.5245448248482005,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.273, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.67, MAE_h(kcal/mol): 0.53)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.273, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.67, MAE_h(kcal/mol): 0.53)"""),
+)
+
+entry(
+ index = 135,
+ label = "C=CC(C)[O] <=> C=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4290884020237598,B_g=0.06801932659739415,E_g=0.3952363435878543,L_g=-0.23022771747433537,A_g=1.1933327078474396,K_g=1.0613404678740934,S_h=0.5955557894254435,B_h=-0.24211039108295446,E_h=0.2287029820575601,L_h=-0.2070268155796536,A_h=1.9285630579999817,K_h=1.2970586989405668,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.256)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.256)"""),
+)
+
+entry(
+ index = 136,
+ label = "CC[CH]C=O <=> C=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12852493299192927,B_g=0.26696797665163247,E_g=0.08928498738616886,L_g=-0.075972874324323,A_g=-0.09066311362825422,K_g=0.08992273729607006,S_h=0.142144925320624,B_h=0.37658032610856046,E_h=0.08496734719155033,L_h=-0.07659596331675521,A_h=-0.16308804592508086,K_h=0.1028829883386601,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.076)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.076)"""),
+)
+
+entry(
+ index = 137,
+ label = "[CH2]C(C)C=O <=> C=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13352430584885597,B_g=0.029175225763296557,E_g=0.10580784137372425,L_g=-0.07021113375900864,A_g=0.22677507141038747,K_g=0.3209421443137311,S_h=0.23398824280513217,B_h=-0.07711642588690447,E_h=0.018685339314231893,L_h=-0.06484523796535711,A_h=0.34471482198970366,K_h=0.4164653520829566,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.081)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.081)"""),
+)
+
+entry(
+ index = 138,
+ label = "C=CC[O] <=> C=CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.161643945554385,B_g=-0.18082775606256268,E_g=0.24900835275211575,L_g=-0.10085978172793904,A_g=0.5329756632090459,K_g=0.544770371312851,S_h=0.3043020029864238,B_h=-0.603208788344258,E_h=0.0865800481131396,L_h=-0.08487205122800189,A_h=0.9313787649702029,K_h=0.6384756253159213,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.177)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.177)"""),
+)
+
+entry(
+ index = 139,
+ label = "C[CH]CC <=> C=CCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.35790231725306304,B_g=0.11725801791700796,E_g=0.058504391160017544,L_g=-0.0798800088298097,A_g=-0.10335213769766788,K_g=0.5163135305055351,S_h=0.3256776206562159,B_h=0.2120261884365803,E_h=0.17447957879848858,L_h=-0.03394735439945386,A_h=-0.25492403295085453,K_h=0.5904684510637029,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 140,
+ label = "[CH2]CCC <=> C=CCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2599380667252502,B_g=0.0998041956701715,E_g=0.02402924373167993,L_g=-0.054831831334034735,A_g=-0.0570822821655252,K_g=0.4696478302017296,S_h=0.2800894977863814,B_h=0.1369256387016624,E_h=0.08950490114820375,L_h=-0.02790705640222864,A_h=-0.1972553140865696,K_h=0.6052979690835896,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.079)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.079)"""),
+)
+
+entry(
+ index = 141,
+ label = "CC[CH]CO <=> C=CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.484975819415562,B_g=-0.7060771157654492,E_g=0.6584071426150175,L_g=-0.21149839540769655,A_g=1.971475563431725,K_g=0.5223171762090878,S_h=0.5767531627714597,B_h=-1.731938163364579,E_h=0.9214753152198979,L_h=-0.1456268932195099,A_h=3.3242090964607938,K_h=0.3801649204297293,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36700000000000005, MAE_h(kcal/mol): 0.293)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36700000000000005, MAE_h(kcal/mol): 0.293)"""),
+)
+
+entry(
+ index = 142,
+ label = "CC[CH]COO <=> C=CCC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.547900477192481,B_g=1.5846692473885415,E_g=-0.1705431224580639,L_g=-0.24622277843300705,A_g=-0.23274206482026777,K_g=0.6027103171503123,S_h=0.48922748548157,B_h=3.7425070632273743,E_h=-0.06296864052932599,L_h=-0.47836374563704603,A_h=-0.8162539105449333,K_h=1.4751888461888347,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.414)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.414)"""),
+)
+
+entry(
+ index = 143,
+ label = "[CH2]C(CC)OO <=> C=CCC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23365104170334536,B_g=0.8294120839733549,E_g=-0.05853371299495553,L_g=0.0012241866086609358,A_g=-0.10403387035997608,K_g=0.310415605570994,S_h=-0.3492670368638261,B_h=1.172008403388789,E_h=-0.07699913854715253,L_h=0.011875343149884527,A_h=0.09544990318188051,K_h=0.4457358738098016,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.145)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.145)"""),
+)
+
+entry(
+ index = 144,
+ label = "C[CH]CCO <=> C=CCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.015386632883708411,B_g=-0.2749581766722338,E_g=0.08721046756430632,L_g=0.027635829429052263,A_g=-0.1278138784946831,K_g=0.20369878731419214,S_h=-0.10052991108488668,B_h=-0.9168791175933685,E_h=0.024461740797015227,L_h=0.18850274635758063,A_h=0.044188005251545634,K_h=-0.046929596818247384,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.212)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.212)"""),
+)
+
+entry(
+ index = 145,
+ label = "OCC[CH]COO <=> C=CCCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.46263258119281636,B_g=-1.0585475630962502,E_g=0.09860200043771405,L_g=0.19197738379773205,A_g=0.006406820933950049,K_g=-0.9345528536022397,S_h=-0.5345737032131661,B_h=-2.7640520922642344,E_h=-0.04677565718482295,L_h=0.42413301191924,A_h=0.5333275252283017,K_h=-1.1476786108489945,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.478, MAE_h(kcal/mol): 0.33)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.478, MAE_h(kcal/mol): 0.33)"""),
+)
+
+entry(
+ index = 146,
+ label = "[CH2]C(CCO)OO <=> C=CCCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4590626477891165,B_g=-1.9272142535928343,E_g=0.32706307735703577,L_g=0.2422276784227064,A_g=-0.22803591031272094,K_g=-0.31429341824154267,S_h=-0.5147887950887597,B_h=-4.526418989835709,E_h=0.2896264245999615,L_h=0.5493299166457078,A_h=0.30252070151394106,K_h=-1.2288854327097483,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.737, MAE_h(kcal/mol): 0.508)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.737, MAE_h(kcal/mol): 0.508)"""),
+)
+
+entry(
+ index = 147,
+ label = "CC[CH]CO <=> C=CCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1987947104208139,B_g=0.3292182322249778,E_g=-0.13599467044238134,L_g=-0.03179219953151185,A_g=-0.5633824060397379,K_g=-0.1419909856871996,S_h=0.3306989848893461,B_h=0.5420141188286802,E_h=-0.06884033797565778,L_h=-0.08443222370393208,A_h=-1.0761479945177768,K_h=-0.08357456003199598,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.145)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.145)"""),
+)
+
+entry(
+ index = 148,
+ label = "[CH2]C(COO)COO <=> C=CCOO + [CH2]OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6921639050873745,B_g=-2.47388321371792,E_g=0.02392661730939697,L_g=0.3959327371676315,A_g=-0.27174743574652427,K_g=-1.5571213834643034,S_h=-0.5602669610775768,B_h=-4.722501430524759,E_h=0.03204876558721923,L_h=0.5943316028167827,A_h=0.428663235417159,K_h=-2.2349469112670026,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.306, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.509)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.306, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.509)"""),
+)
+
+entry(
+ index = 149,
+ label = "OOC[CH]COO <=> C=CCOO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5044675091905886,B_g=1.1414183990897344,E_g=-0.3193514347683453,L_g=-0.12246264361850055,A_g=-0.42873654000450395,K_g=-0.07866315267988325,S_h=0.5236073369463592,B_h=3.230027362639981,E_h=-0.00012461779848644256,L_h=-0.3791753085005723,A_h=-1.0859488178457988,K_h=0.9936656728372205,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.45799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.45799999999999996)"""),
+)
+
+entry(
+ index = 150,
+ label = "[CH2]C(COO)OO <=> C=CCOO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08308341929678473,B_g=-0.19113438104326494,E_g=0.029974245765356684,L_g=-0.0077702862585664195,A_g=0.11800572470792661,K_g=0.2122900849510222,S_h=0.11887071883859722,B_h=-0.43361129506294416,E_h=-0.05984586510843043,L_h=0.02024672702467967,A_h=0.3013624890338907,K_h=0.38673301145583827,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.129, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.129, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 151,
+ label = "CCC[CH]O <=> C=CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4678811896467159,B_g=-0.6056058483504385,E_g=-0.020796511429766917,L_g=-0.04677565718482295,A_g=-0.11324825698923832,K_g=-0.06281470089590156,S_h=0.7120221177991259,B_h=-0.6971559474855668,E_h=0.031242415126424603,L_h=-0.09671074208421393,A_h=-0.4185325414460846,K_h=-0.04918004764973784,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.223, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.223, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 152,
+ label = "[CH2]C(O)CC <=> C=CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.31052556245201146,B_g=0.7180404244201476,E_g=-0.19792971629014328,L_g=-0.06975664531746986,A_g=-0.899645209108567,K_g=0.4387206248008883,S_h=0.5472627272825799,B_h=1.150339567369617,E_h=-0.1501937690111013,L_h=-0.14313453724978104,A_h=-1.953112764301811,K_h=0.6939158847249194,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.302, MAE_h(kcal/mol): 0.267)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.302, MAE_h(kcal/mol): 0.267)"""),
+)
+
+entry(
+ index = 153,
+ label = "[CH2]C(C)O <=> C=CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2881969851467347,B_g=1.0066918980084212,E_g=-0.25012258247975927,L_g=-0.06650192163935337,A_g=-1.1995562673130273,K_g=0.3180246217374014,S_h=0.41474269428034993,B_h=1.6987238548385746,E_h=-0.15287671690792706,L_h=-0.11723602654080446,A_h=-2.524448718068478,K_h=0.4777773089382863,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.439, MAE_h(kcal/mol): 0.35200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.439, MAE_h(kcal/mol): 0.35200000000000004)"""),
+)
+
+entry(
+ index = 154,
+ label = "C[CH]O <=> C=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6624022426253182,B_g=0.3486952610825353,E_g=-0.09684269034143486,L_g=-0.09360995803952187,A_g=-0.4756294845290788,K_g=0.5170172545440468,S_h=0.7096763710040871,B_h=0.7466805266958259,E_h=0.17681066467605852,L_h=-0.10066918980084212,A_h=-0.8946238448754368,K_h=0.6625635127174773,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41200000000000003, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41200000000000003, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 155,
+ label = "[CH2]CO <=> C=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.633498243835198,B_g=1.4675578386462236,E_g=-0.2721579414356561,L_g=-0.15748757545192543,A_g=-1.1367635577933293,K_g=0.9348020891992126,S_h=0.78317155027615,B_h=2.367664866655064,E_h=-0.061341278690267724,L_h=-0.22991250774875208,A_h=-2.303384074012263,K_h=1.341078103641219,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23800000000000002, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.436)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23800000000000002, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.436)"""),
+)
+
+entry(
+ index = 156,
+ label = "[CH2]C(C)OO <=> C=COO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3668088246154765,B_g=1.3965330239676859,E_g=-0.16569035877582716,L_g=0.028676754569350787,A_g=-0.5347203123878561,K_g=0.08335464626996109,S_h=-0.6058184316537388,B_h=2.1527284861008886,E_h=-0.06971999302379737,L_h=0.04453253681206698,A_h=-0.6133101604803944,K_h=0.16387973546840648,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.139, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.365, MAE_h(kcal/mol): 0.282)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.139, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.365, MAE_h(kcal/mol): 0.282)"""),
+)
+
+entry(
+ index = 157,
+ label = "CCC(O)C[O] <=> C=O + CC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06914088678377214,B_g=-0.2059125858520101,E_g=0.36474896571108295,L_g=-0.07925691983737748,A_g=0.7680121616132112,K_g=0.5890096897755381,S_h=0.02141960042219913,B_h=-0.7413512831958468,E_h=0.33925363023250366,L_h=-0.008759898187723464,A_h=1.4459989595080693,K_h=0.6136473615821812,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.204)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.204)"""),
+)
+
+entry(
+ index = 158,
+ label = "CC(C[O])CO <=> C=O + C[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.010658486999958089,B_g=-1.031886684678886,E_g=0.44698938225340057,L_g=-0.03575797770687453,A_g=0.5823316418684117,K_g=0.4099119219743166,S_h=0.20737134714017497,B_h=-3.1094046641638395,E_h=0.21780258991936363,L_h=0.16364516078890262,A_h=1.5588073889732377,K_h=-0.002059858904393551,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5870000000000001, MAE_h(kcal/mol): 0.462)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5870000000000001, MAE_h(kcal/mol): 0.462)"""),
+)
+
+entry(
+ index = 159,
+ label = "[CH2]OC <=> C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.009236378005465744,B_g=-0.06604743319781456,E_g=0.06925084366478959,L_g=-0.0377591929413921,A_g=0.1510514326830374,K_g=0.23686178262905483,S_h=0.14945339267891714,B_h=-0.2837473966948953,E_h=-0.031330380631238566,L_h=-0.10044194558007272,A_h=0.3804508083203747,K_h=0.427570997065719,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 160,
+ label = "[CH2]OC=O <=> C=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04781658232512146,B_g=0.08864723747626765,E_g=-0.023574755290141136,L_g=0.012967581501324526,A_g=-0.21562544367521816,K_g=-0.06390693924734155,S_h=-0.08627949930502524,B_h=0.15435746957229535,E_h=0.013832575631995124,L_h=0.0028515484477191857,A_h=-0.211564369536307,K_h=-0.1210918478351497,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.065, MAE_h(kcal/mol): 0.046)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.065, MAE_h(kcal/mol): 0.046)"""),
+)
+
+entry(
+ index = 161,
+ label = "C[O] <=> C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1634252470268677,B_g=-0.1128230903826375,E_g=0.1141645643310504,L_g=-0.05189964784023609,A_g=0.1319995704320807,K_g=0.31711564485432386,S_h=0.2464646835712454,B_h=-0.3240649197346267,E_h=0.08025386222526902,L_h=-0.02687346172066462,A_h=0.14055421577523824,K_h=0.40430412104242663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.059000000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.059000000000000004)"""),
+)
+
+entry(
+ index = 162,
+ label = "[CH2]O <=> C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2529448090925404,B_g=-3.3068872224711785,E_g=0.37093587288299806,L_g=0.2911804818516748,A_g=0.26613230435589985,K_g=-1.0025355279059616,S_h=0.15857248334463092,B_h=-6.279600822612859,E_h=0.2701860480360765,L_h=0.4576771910882966,A_h=1.293606052876619,K_h=-1.9443821879490255,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6970000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6970000000000001)"""),
+)
+
+entry(
+ index = 163,
+ label = "C[C](C)C=O <=> CC(C)=C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5173324642696301,B_g=0.15529576829031094,E_g=-0.3676225055350056,L_g=0.2505844013800326,A_g=-1.240130356408466,K_g=-1.0424498757152956,S_h=-0.8037261565676788,B_h=0.7446573200851048,E_h=-0.077035790840825,L_h=0.23134194720197887,A_h=-1.6376538031214836,K_h=-1.3067715567637748,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.495, MAE_h(kcal/mol): 0.363)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.495, MAE_h(kcal/mol): 0.363)"""),
+)
+
+entry(
+ index = 164,
+ label = "CC(C)[CH]O <=> CC(C)=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6212123949961817,B_g=0.9728691614074538,E_g=0.1449818128508742,L_g=-0.1944624093087264,A_g=-0.24450012063040033,K_g=1.159077474181137,S_h=0.6733246261397182,B_h=1.1786717903784463,E_h=0.39398283514425547,L_h=-0.2222448479124686,A_h=-0.5438027507598974,K_h=1.60566368120414,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.258)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.258)"""),
+)
+
+entry(
+ index = 165,
+ label = "C[C](C)CO <=> CC(C)=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.37111180389262605,B_g=1.4807966471207246,E_g=-0.2213871842405325,L_g=-0.09989949163371996,A_g=-1.1842649303928672,K_g=0.6447211761577124,S_h=0.36691878149649393,B_h=2.360305086085629,E_h=0.05351234876182534,L_h=-0.1731820876024827,A_h=-2.414440523839887,K_h=1.132482569892383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.16699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.505, MAE_h(kcal/mol): 0.39299999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.16699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.505, MAE_h(kcal/mol): 0.39299999999999996)"""),
+)
+
+entry(
+ index = 166,
+ label = "CC(C)([CH]O)OO <=> CC(C)=CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04770662544410401,B_g=0.9391490512287693,E_g=0.31995253238457405,L_g=-0.20582462034719617,A_g=1.0727466616649703,K_g=0.9058907599503581,S_h=-0.062294238325752295,B_h=1.189381590589546,E_h=0.06131928731406425,L_h=-0.22255272717931743,A_h=1.938957648485498,K_h=1.4299159330445836,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.354)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.354)"""),
+)
+
+entry(
+ index = 167,
+ label = "C[C](C)C(O)OO <=> CC(C)=CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39978855846197675,B_g=0.12152434490048498,E_g=0.12944124033374135,L_g=0.01688204646554572,A_g=0.9275229436758576,K_g=0.3191461819237794,S_h=-0.481772408948587,B_h=-1.120167399218429,E_h=-0.3084950253825558,L_h=0.22575613764629246,A_h=1.965721153325145,K_h=0.16409231877170688,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.654, MAE_h(kcal/mol): 0.508)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.654, MAE_h(kcal/mol): 0.508)"""),
+)
+
+entry(
+ index = 168,
+ label = "CC(C)([O])CO <=> CC(C)=O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3776725644600005,B_g=0.7203275275453106,E_g=0.32978267754753404,L_g=-0.23951540869094265,A_g=1.2067254559553648,K_g=0.7518558305623806,S_h=0.26830945060004535,B_h=1.558411544201575,E_h=0.604330348530636,L_h=-0.34139412418297665,A_h=2.1219039071223307,K_h=1.26796410822335,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.158, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.295, MAE_h(kcal/mol): 0.23800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.158, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.295, MAE_h(kcal/mol): 0.23800000000000002)"""),
+)
+
+entry(
+ index = 169,
+ label = "CC(C)(C)[O] <=> CC(C)=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.48899291080206614,B_g=0.11391532873407752,E_g=0.42914704569363576,L_g=-0.2579735037844051,A_g=1.367115893066151,K_g=0.9392003644399106,S_h=0.621674213896455,B_h=-0.10299294521967756,E_h=0.4013792680073625,L_h=-0.2461054910932551,A_h=2.2312890123584888,K_h=1.223600171962176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.215)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.215)"""),
+)
+
+entry(
+ index = 170,
+ label = "CC(C)([O])C=O <=> CC(C)=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1364784807188581,B_g=0.1864502179119216,E_g=0.33588894967336974,L_g=-0.14650654826764947,A_g=1.1365216526550908,K_g=0.4812299550022343,S_h=0.19386864215123215,B_h=0.13378820236329783,E_h=0.23163516555135877,L_h=-0.17395911622833934,A_h=2.152208023530739,K_h=0.6694394830104349,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.195)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.195)"""),
+)
+
+entry(
+ index = 171,
+ label = "CC(C)[O] <=> CC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3404411645474921,B_g=-0.011963308654698485,E_g=0.20740799943384744,L_g=-0.14012904916863742,A_g=0.49416088420988624,K_g=0.630456103460382,S_h=0.4858847962986396,B_h=-0.23713300960223122,E_h=0.12963916271957276,L_h=-0.12744735555795828,A_h=0.7616859757253406,K_h=0.8309661412250681,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.099, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.099, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 172,
+ label = "C[C](C)O <=> CC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04499435571234026,B_g=-2.1750497329474308,E_g=0.4775134124238445,L_g=0.12057138526500043,A_g=0.10421713182833847,K_g=-0.06312258016275042,S_h=0.22967793306924816,B_h=-4.648485788682547,E_h=0.5324478701801622,L_h=0.3628210550639103,A_h=0.8052142396907814,K_h=-0.8933776668905723,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.332, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.489)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.332, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.489)"""),
+)
+
+entry(
+ index = 173,
+ label = "CC(C)[CH]O <=> CC(C)C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05501509280239715,B_g=-3.2754615458763916,E_g=0.43174935854438207,L_g=0.2080530798024831,A_g=0.4345276024047563,K_g=-0.5484356006800993,S_h=0.5069305433253793,B_h=-6.1868118759516,E_h=0.3578729954181251,L_h=0.38962854265596447,A_h=1.2360692822695547,K_h=-1.442172460048662,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.82, MAE_h(kcal/mol): 0.64)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.82, MAE_h(kcal/mol): 0.64)"""),
+)
+
+entry(
+ index = 174,
+ label = "CC[C](C)O <=> CC=C(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.685764414612159,B_g=1.0954930751181131,E_g=0.11818165571755454,L_g=-0.1983622133554786,A_g=-0.6481958135978638,K_g=1.098366614942036,S_h=0.6051660208263686,B_h=1.5544604269436813,E_h=0.4946007117339561,L_h=-0.21132246439806865,A_h=-1.1614378818936448,K_h=1.4673012725905166,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46399999999999997, MAE_h(kcal/mol): 0.34700000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46399999999999997, MAE_h(kcal/mol): 0.34700000000000003)"""),
+)
+
+entry(
+ index = 175,
+ label = "C[CH]C(C)O <=> CC=C(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5194436363851652,B_g=1.3918268694601392,E_g=-0.19257848141396075,L_g=-0.11553536011440126,A_g=-1.1396517585347208,K_g=0.8247352513007459,S_h=0.5135059648102229,B_h=2.396906066546971,E_h=0.07243226275556112,L_h=-0.19272509058865067,A_h=-2.4558576156897924,K_h=1.3870547408239817,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.39299999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.39299999999999996)"""),
+)
+
+entry(
+ index = 176,
+ label = "C[CH]C(C)(O)OO <=> CC=C(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6213076909597303,B_g=-0.07858251763380379,E_g=0.0989538624569699,L_g=-0.17021325181501157,A_g=0.8368964823412758,K_g=0.7590909933333286,S_h=0.9693725325910988,B_h=-0.42197785705129803,E_h=-0.0033500196416649565,L_h=-0.19605311885411217,A_h=1.5270371808179295,K_h=1.005526355069636,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 177,
+ label = "C[C](O)C(C)OO <=> CC=C(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1708216798899748,B_g=1.9910185664178932,E_g=0.31018103089149,L_g=-0.3300465740619759,A_g=0.7738911895182774,K_g=1.5766350646155334,S_h=-0.23020572609813192,B_h=3.159156487594868,E_h=0.07729235689653238,L_h=-0.32812599387353775,A_h=1.420137101092765,K_h=2.387244521934904,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.5)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.5)"""),
+)
+
+entry(
+ index = 178,
+ label = "CC=C(C)[O] <=> CC=C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4499875398758097,B_g=0.2547481019412266,E_g=-0.4110481430781636,L_g=0.22217887378385814,A_g=-1.236201230526776,K_g=-0.7009604555687704,S_h=-0.6447138456989778,B_h=0.8316625348048451,E_h=-0.2035448476807677,L_h=0.19474096674063726,A_h=-1.971094379577531,K_h=-0.8847717083362733,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.318)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.318)"""),
+)
+
+entry(
+ index = 179,
+ label = "C[CH]CC <=> CC=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.39674641808716066,B_g=0.07909564974521854,E_g=0.061231321809250276,L_g=-0.09052383491229879,A_g=-0.0965714633682585,K_g=0.5859382275657841,S_h=0.4373278376413339,B_h=0.0785531957988658,E_h=0.18001407514303353,L_h=-0.09671074208421393,A_h=-0.20779651374677574,K_h=0.8358702181184464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 180,
+ label = "C[CH]C(C)O <=> CC=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5045701356128715,B_g=-0.7021773117186969,E_g=0.8906140839476671,L_g=-0.28192944292874006,A_g=2.5455091260126865,K_g=0.9679724149728098,S_h=0.5549010652839252,B_h=-1.7852599201993073,E_h=1.1908989955475868,L_h=-0.18570251112100292,A_h=4.141694524073123,K_h=0.9343549312164086,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.319)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.319)"""),
+)
+
+entry(
+ index = 181,
+ label = "C[CH]C(C)OO <=> CC=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6678414430063148,B_g=-0.5037784460695458,E_g=0.13892685393617998,L_g=-0.1506189356177021,A_g=0.3693305024201433,K_g=0.6007750760444052,S_h=1.0803556778313776,B_h=-0.8323882502195605,E_h=0.03954049441387478,L_h=-0.20016550620416473,A_h=0.33662199554681943,K_h=0.8233278032237226,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.15, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.159)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.15, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.159)"""),
+)
+
+entry(
+ index = 182,
+ label = "C[CH]CC=O <=> CC=CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2793271300779938,B_g=0.06672916586012276,E_g=0.17154739530468993,L_g=-0.10689274926642975,A_g=0.1694802059415619,K_g=0.6171293294810672,S_h=0.35033728383906254,B_h=0.0045668757915913955,E_h=0.11600450947340904,L_h=-0.08103822130986016,A_h=0.19173547865949367,K_h=0.6981968726258654,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10099999999999999, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10099999999999999, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 183,
+ label = "C[CH]CCO <=> CC=CCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12722744179592338,B_g=0.5336500654126195,E_g=-0.11744127938537037,L_g=-0.02076718959482893,A_g=-0.5644966357673814,K_g=0.1525908290172817,S_h=-0.10667283550439485,B_h=1.434482808836175,E_h=0.060183066210217274,L_h=-0.06940478329821402,A_h=-1.257796761958603,K_h=0.5323452437578792,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.158)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.158)"""),
+)
+
+entry(
+ index = 184,
+ label = "CC([CH]CO)OO <=> CC=CCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11422320800092638,B_g=0.21393210770754942,E_g=0.03904935367866351,L_g=-0.049084751686189386,A_g=0.08277554002993587,K_g=0.006919953045364811,S_h=0.03561869899091908,B_h=0.35338675467261316,E_h=0.05060215664423018,L_h=-0.03816969863052391,A_h=0.2239748361738098,K_h=0.4890295630957386,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.079)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.079)"""),
+)
+
+entry(
+ index = 185,
+ label = "C[CH]C(CO)OO <=> CC=CCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6167041628744663,B_g=0.7458595153175622,E_g=0.3043533161975652,L_g=-0.008474010297078095,A_g=0.6212783691247922,K_g=0.675032623024856,S_h=-0.8192007549562009,B_h=-0.2782275612678193,E_h=-0.07934488534219145,L_h=0.23818126520126423,A_h=1.696158194281501,K_h=0.43483548167160513,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5820000000000001, MAE_h(kcal/mol): 0.461)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5820000000000001, MAE_h(kcal/mol): 0.461)"""),
+)
+
+entry(
+ index = 186,
+ label = "CC(C)[CH]O <=> CC=CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8216711195497264,B_g=-1.729079284458125,E_g=-0.020415327575573093,L_g=0.006707369742064409,A_g=-0.11721403516460098,K_g=-0.3337411252641622,S_h=1.395396802863839,B_h=-2.5118989727150196,E_h=0.20413128437952743,L_h=-0.06669251356645026,A_h=-0.21820576514976095,K_h=-0.5452615120480623,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.581, MAE_h(kcal/mol): 0.415)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.581, MAE_h(kcal/mol): 0.415)"""),
+)
+
+entry(
+ index = 187,
+ label = "C[CH]C(C)O <=> CC=CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1918454355405111,B_g=1.3208387070752738,E_g=-0.2119822056841733,L_g=-0.07207307027757079,A_g=-1.0433002089284973,K_g=0.4384567282864465,S_h=0.15001783800147336,B_h=2.30452029511611,E_h=-0.11030141257797067,L_h=-0.10922383514399966,A_h=-2.2332902275930064,K_h=0.7076824862283039,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.36200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.36200000000000004)"""),
+)
+
+entry(
+ index = 188,
+ label = "CC[CH]O <=> CC=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.32999445003466,B_g=-1.3615154225929957,E_g=-0.056554489136641434,L_g=-0.08681462279264349,A_g=-0.2960698978275841,K_g=0.2629655461825973,S_h=1.8216996305684898,B_h=-1.7610913977516718,E_h=0.37180086701366866,L_h=-0.1771332048603764,A_h=-0.5183880503273977,K_h=0.35743316789405527,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.589, MAE_h(kcal/mol): 0.419)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.589, MAE_h(kcal/mol): 0.419)"""),
+)
+
+entry(
+ index = 189,
+ label = "CC([O])C(C)O <=> CC=O + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10654088724717391,B_g=-0.2782495526440228,E_g=0.44491486243153794,L_g=-0.10085245126920453,A_g=0.8952249424916654,K_g=0.7968281948985173,S_h=0.01120094094631084,B_h=-0.9772307843544792,E_h=0.5119445770997751,L_h=-0.019513681151230006,A_h=1.7282656035385962,K_h=0.8817222375027227,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.252)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.252)"""),
+)
+
+entry(
+ index = 190,
+ label = "CC([O])CCO <=> CC=O + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15840388279373752,B_g=2.522418180999022,E_g=0.12646507408753574,L_g=-0.31436672282888767,A_g=0.48222689739012575,K_g=1.480166227669558,S_h=-0.26550188490473314,B_h=4.863473482447864,E_h=0.22182701176460226,L_h=-0.4668036122127449,A_h=0.11892936250847319,K_h=2.7363282973303678,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.5)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.5)"""),
+)
+
+entry(
+ index = 191,
+ label = "C=CC(C)[O] <=> CC=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3969003577205851,B_g=0.2607957303971863,E_g=0.29738938039979346,L_g=-0.21304512220067534,A_g=1.009228236730557,K_g=1.1051546197301798,S_h=0.5810341506724058,B_h=0.05343904417448038,E_h=0.14419745376628304,L_h=-0.22396017525634077,A_h=1.716544200022136,K_h=1.4726451770079643,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34700000000000003, MAE_h(kcal/mol): 0.255)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34700000000000003, MAE_h(kcal/mol): 0.255)"""),
+)
+
+entry(
+ index = 192,
+ label = "C[CH]O <=> CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09978220429396802,B_g=-2.9413832195104423,E_g=0.421933874298891,L_g=0.19047463975716025,A_g=0.11721403516460098,K_g=-0.5661313280651741,S_h=0.45949514485445175,B_h=-5.675996189496938,E_h=0.4615330123826418,L_h=0.3953389700101374,A_h=0.8273302336927579,K_h=-1.5321318496384044,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 193,
+ label = "CC[C](C)O <=> CCC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0037825167070002575,B_g=-2.136586815967527,E_g=0.4799397942649628,L_g=0.1251895742677333,A_g=-0.056620463265251914,K_g=-0.1447618990888393,S_h=0.19127365975922037,B_h=-4.601614835534176,E_h=0.571812433584409,L_h=0.34078569610801346,A_h=0.5933419908876256,K_h=-0.9271197684454603,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.662, MAE_h(kcal/mol): 0.475)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.662, MAE_h(kcal/mol): 0.475)"""),
+)
+
+entry(
+ index = 194,
+ label = "CC[CH]C=O <=> CCC=C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7296078883031833,B_g=0.36279173322897235,E_g=-0.46008891201194596,L_g=0.3108114503426568,A_g=-1.2803452530259143,K_g=-1.2156906069876543,S_h=-1.1313096964948637,B_h=1.1727194578860352,E_h=-0.19175013957696266,L_h=0.31783402981030456,A_h=-1.6412603888188557,K_h=-1.5609552133824451,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.424)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.424)"""),
+)
+
+entry(
+ index = 195,
+ label = "CCC[CH]O <=> CCC=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.1374746122905754,B_g=-1.9677736817708043,E_g=0.1091505305566547,L_g=-0.039562485790078275,A_g=-0.04566142745717946,K_g=0.08989341546113207,S_h=1.7656216212495908,B_h=-3.13662998790376,E_h=0.504577466071606,L_h=-0.08177859764204432,A_h=-0.13382485465697033,K_h=-0.034555782474417075,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.304, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.47)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.304, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.47)"""),
+)
+
+entry(
+ index = 196,
+ label = "CCC([CH]O)OO <=> CCC=CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2936801682801382,B_g=0.046079263605045766,E_g=0.21946660405209437,L_g=-0.12974178914185572,A_g=0.6337034966797639,K_g=0.49855182899184974,S_h=0.3645803651601895,B_h=0.10572720632764478,E_h=0.17327738356603115,L_h=-0.15362442369884569,A_h=1.1590408218874644,K_h=0.8122148277822258,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 197,
+ label = "CC[CH]C(O)OO <=> CCC=CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9327862130472261,B_g=-0.013634653246163716,E_g=0.0985360263091036,L_g=-0.23708169639108975,A_g=0.5648924805390442,K_g=1.0016778642340254,S_h=1.3167703024776283,B_h=-0.1651845571231469,E_h=0.05873896583952143,L_h=-0.2805806385215927,A_h=0.970098248005814,K_h=1.3084502318139746,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 198,
+ label = "CCC([O])CO <=> CCC=O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2541689957012014,B_g=0.17376852430124243,E_g=0.1955986304125734,L_g=-0.12534351390115775,A_g=0.38822842503767563,K_g=0.7012316825419469,S_h=0.32223230505100253,B_h=0.24552638485322986,E_h=0.26064179076376187,L_h=-0.16281681895190447,A_h=0.7199463436911168,K_h=0.9774213762815762,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 199,
+ label = "CCC[O] <=> CCC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21391011633134593,B_g=-0.19308428306664105,E_g=0.17741176229228725,L_g=-0.08649208260832565,A_g=0.4434487706846386,K_g=0.5916706462961603,S_h=0.36098110992155164,B_h=-0.5223464980440258,E_h=0.08388243929884484,L_h=-0.07460940899970661,A_h=0.6194384239824337,K_h=0.7818667286214097,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 200,
+ label = "CC[CH]O <=> CCC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07498326239516594,B_g=-3.07989956775749,E_g=0.4456918910573946,L_g=0.1913909470989723,A_g=0.25140541275829614,K_g=-0.5693420689908837,S_h=0.467719919554557,B_h=-5.905813401282142,E_h=0.40742689646332225,L_h=0.39651917386639124,A_h=1.0529690839992982,K_h=-1.5189663457512486,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.366, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7909999999999999, MAE_h(kcal/mol): 0.609)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.366, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7909999999999999, MAE_h(kcal/mol): 0.609)"""),
+)
+
+entry(
+ index = 201,
+ label = "CCC[CH]O <=> CCCC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15650529398150287,B_g=-3.1732163074476323,E_g=0.4342930277252524,L_g=0.1796475522063087,A_g=0.37526817399508555,K_g=-0.5960322692431859,S_h=0.5930634334557147,B_h=-6.025072634433667,E_h=0.3837568452096327,L_h=0.3802089031821363,A_h=1.1092963289151705,K_h=-1.5256077413647027,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.799, MAE_h(kcal/mol): 0.617)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.799, MAE_h(kcal/mol): 0.617)"""),
+)
+
+entry(
+ index = 202,
+ label = "CCC[CH]OO <=> CCCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7822699038518071,B_g=-1.5481415715145452,E_g=0.2221275605727166,L_g=-0.10809494449888718,A_g=0.6517364251666257,K_g=0.17185527457153882,S_h=1.267744194461315,B_h=-2.410130214104003,E_h=0.14357436477385083,L_h=-0.14948271451385514,A_h=0.6171953036096777,K_h=0.15661525086252034,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43700000000000006, MAE_h(kcal/mol): 0.324)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43700000000000006, MAE_h(kcal/mol): 0.324)"""),
+)
+
+entry(
+ index = 203,
+ label = "COC[O] <=> COC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.743301185219223,B_g=-0.33876981995602684,E_g=-0.3254943591878535,L_g=0.2577022768112287,A_g=-0.16914300483977507,K_g=-0.7595601426923365,S_h=-0.8067169837313533,B_h=-0.4985151766981773,E_h=-0.38488573585474517,L_h=0.30220549178835776,A_h=0.09215119675135702,K_h=-1.0455066770075807,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 204,
+ label = "[CH2]CCC <=> C[CH2] + C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10161481897759217,B_g=0.06603277228034557,E_g=0.040310192580996926,L_g=-0.04933398728316227,A_g=-0.027797099521211194,K_g=0.138912193018711,S_h=0.16139470995741212,B_h=0.02339149382177872,E_h=0.021060407944208798,L_h=-0.04668769168000898,A_h=-0.18505010029363272,K_h=0.19631701536855403,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.052000000000000005, MAE_h(kcal/mol): 0.040999999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.052000000000000005, MAE_h(kcal/mol): 0.040999999999999995)"""),
+)
+
+entry(
+ index = 205,
+ label = "CCC[O] <=> C[CH2] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.38216613566424684,B_g=-0.08020987947286204,E_g=0.3697043558156026,L_g=-0.20694618053357414,A_g=1.1281722601564992,K_g=0.8693630840763615,S_h=0.5794727629619579,B_h=-0.547797850770198,E_h=0.18874465149581907,L_h=-0.20007754069935083,A_h=1.9046950843604606,K_h=1.1104398804777518,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.154, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.285)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.154, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.285)"""),
+)
+
+entry(
+ index = 206,
+ label = "CCC(C)[O] <=> C[CH2] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4454646468366252,B_g=0.0681219530196771,E_g=0.42271823338348224,L_g=-0.24839992467715252,A_g=1.426294686429742,K_g=1.215038196160284,S_h=0.6184781338882146,B_h=-0.26658679279743863,E_h=0.32129400633298694,L_h=-0.2507823237658639,A_h=2.488639427150462,K_h=1.585028439866532,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.276)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.276)"""),
+)
+
+entry(
+ index = 207,
+ label = "[CH2]CC(C)O <=> C[CH]O + C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.047508703058272615,B_g=3.0776564473847343,E_g=-0.11648098929115133,L_g=-0.22499376993790485,A_g=-1.3742704207910197,K_g=0.9600995022919605,S_h=-0.5375278780831684,B_h=5.247882738484867,E_h=0.019704273078326923,L_h=-0.3308675854402396,A_h=-2.843184394303125,K_h=1.666697080627559,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.302, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.767, MAE_h(kcal/mol): 0.629)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.302, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.767, MAE_h(kcal/mol): 0.629)"""),
+)
+
+entry(
+ index = 208,
+ label = "COC[O] <=> C[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5184466939972736,B_g=-0.2374335584103456,E_g=-0.2183010611133094,L_g=0.1584185437112065,A_g=-0.15112473727038234,K_g=-0.501271429182348,S_h=-0.5609267023636815,B_h=-0.4284286607376551,E_h=-0.2920088236886729,L_h=0.19850882253016852,A_h=0.12595927243485544,K_h=-0.8316552043461107,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 209,
+ label = "CC(C)C([O])O <=> O=CO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3863444971429099,B_g=-0.25102422890410236,E_g=0.31751882008472115,L_g=-0.1803879285384929,A_g=0.6863141990172462,K_g=0.8092313310772855,S_h=0.7372902090569358,B_h=-0.7399951483299649,E_h=0.18882528654189848,L_h=-0.20146299740017068,A_h=1.0063693578241033,K_h=0.9086616733519979,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 210,
+ label = "CCCC([O])O <=> O=CO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04026620982858994,B_g=0.1794276384442738,E_g=0.1788485322042486,L_g=-0.08696123196733342,A_g=0.4592092569638064,K_g=0.5927628846476004,S_h=0.15759020187420839,B_h=0.02352344207899966,E_h=0.07427220789791979,L_h=-0.07276946385734798,A_h=0.7620744900382689,K_h=0.6549838183860077,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 211,
+ label = "[O]CO <=> O=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3136043551205,B_g=0.6615152571184443,E_g=-0.04684163131343341,L_g=0.013334104438049357,A_g=-0.2933429671783513,K_g=0.3083117639141934,S_h=-0.25701321369018604,B_h=0.5747739389131457,E_h=-0.11424519937712985,L_h=0.027826421356149177,A_h=-0.06818059668955308,K_h=0.32535508047189804,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 212,
+ label = "CCCC[O] <=> [CH2]CC + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21695225670616203,B_g=0.06676581815379523,E_g=0.3014431240799701,L_g=-0.13813516439285434,A_g=0.570881465325128,K_g=0.5977842488807306,S_h=0.261411488930884,B_h=-0.09613163584418871,E_h=0.28011881962131946,L_h=-0.1386409660455346,A_h=1.0701516792729584,K_h=0.8045178461110042,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 213,
+ label = "[CH2]C(C)CO <=> [CH2]O + C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05817452051696519,B_g=0.5323012610054721,E_g=-0.16559506281227868,L_g=-6.597412861046961e-05,A_g=-1.0703422712000552,K_g=-0.0638116432837931,S_h=0.02845684080731589,B_h=1.2090418809154662,E_h=0.08951956206567276,L_h=-0.10247248264952828,A_h=-2.0999125309188402,K_h=0.16086691692852836,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.266)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.266)"""),
+)
+
+entry(
+ index = 214,
+ label = "O=[C]OCO <=> [CH2]O + O=C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.343923132446378,B_g=0.7458595153175622,E_g=-0.041270482675215985,L_g=-0.12597393335232446,A_g=-0.24201509511940597,K_g=0.5019824836795942,S_h=0.23578420519508383,B_h=1.337090334089653,E_h=0.02330352831696476,L_h=-0.1732480617310932,A_h=-0.36383265836927087,K_h=0.7917115347018385,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.156)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.156)"""),
+)
+
+entry(
+ index = 215,
+ label = "CC[C](C)O <=> [CH3] + C=C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0729160730320379,B_g=0.5949766831854183,E_g=-0.14199831614593406,L_g=-0.01612700921589257,A_g=-0.615399341219726,K_g=-0.038440925603700285,S_h=0.0036798902847173043,B_h=1.040829844334972,E_h=0.034555782474417075,L_h=-0.04750137259953811,A_h=-0.9658685733160094,K_h=-0.0009163073418120778,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.289, MAE_h(kcal/mol): 0.205)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.289, MAE_h(kcal/mol): 0.205)"""),
+)
+
+entry(
+ index = 216,
+ label = "[CH2]C(C)CO <=> [CH3] + C=CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12290980160130487,B_g=1.1366096181599048,E_g=-0.09486346648312079,L_g=-0.09948165548585365,A_g=-0.4238764458635327,K_g=0.3747257200487328,S_h=-0.1256587236267411,B_h=2.3375146898800794,E_h=-0.02339149382177872,L_h=-0.15811799490309214,A_h=-1.0925022479544386,K_h=0.8601926801995062,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.267)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.267)"""),
+)
+
+entry(
+ index = 217,
+ label = "CC[CH]O <=> [CH3] + C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4613204290793414,B_g=-0.27606507594114277,E_g=-0.09058980904090926,L_g=-0.037942454409754515,A_g=-0.3955075705610307,K_g=-0.04345495937809597,S_h=0.6191818579267262,B_h=-0.1323807542862745,E_h=0.04706887553420281,L_h=-0.08081097708909077,A_h=-0.8027145532623181,K_h=-0.04833704489527073,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.298, MAE_h(kcal/mol): 0.228)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.298, MAE_h(kcal/mol): 0.228)"""),
+)
+
+entry(
+ index = 218,
+ label = "[CH2]CC <=> [CH3] + C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09588240024721582,B_g=0.1080802835814182,E_g=0.00919972571179326,L_g=-0.03720207807757036,A_g=-0.13831842586121676,K_g=0.064031557045828,S_h=0.12779921757721413,B_h=0.1467264620296844,E_h=0.02031270115329014,L_h=-0.04472312873916389,A_h=-0.2371110182260277,K_h=0.11121771991978274,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.049)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.073, MAE_h(kcal/mol): 0.049)"""),
+)
+
+entry(
+ index = 219,
+ label = "CC(C)[O] <=> [CH3] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4046999658140895,B_g=0.12596660289358996,E_g=0.3158474754932559,L_g=-0.20084723886647296,A_g=0.943408047753512,K_g=0.9986943675290852,S_h=0.5187252514291845,B_h=-0.04937797003556925,E_h=0.24705112027000514,L_h=-0.18282164083834576,A_h=1.507670108841389,K_h=1.240335609253032,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.19399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.19399999999999998)"""),
+)
+
+entry(
+ index = 220,
+ label = "CCC(C)[O] <=> [CH3] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.40464132214421356,B_g=0.12075464673336285,E_g=0.2864376750504555,L_g=-0.19051862250956722,A_g=0.7855979321172685,K_g=0.998349835968564,S_h=0.5649437937501857,B_h=-0.10405586173617955,E_h=0.19557663903636988,L_h=-0.18800427516363485,A_h=1.2450417637605788,K_h=1.3015596006035477,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.256, MAE_h(kcal/mol): 0.198)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.256, MAE_h(kcal/mol): 0.198)"""),
+)
+
+entry(
+ index = 221,
+ label = "[CH]=CC=C <=> [CH]=C + C#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4396369321427004,B_g=0.2537658204708041,E_g=-0.037092121196552905,L_g=-0.10343277274374733,A_g=-0.12274120105041145,K_g=0.37405131784515916,S_h=0.4797052195854589,B_h=0.5441326214029497,E_h=0.07630274496737535,L_h=-0.17462618797317853,A_h=-0.4241476728367091,K_h=0.7258180411374485,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.071)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.071)"""),
+)
+
+entry(
+ index = 222,
+ label = "C=CC[O] <=> [CH]=C + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17716985715404887,B_g=0.1430099194512946,E_g=0.23826190024734373,L_g=-0.13763669319890856,A_g=0.6332783300731631,K_g=0.5963621398862381,S_h=0.3196959663288667,B_h=-0.1407887904547421,E_h=0.06874504201210932,L_h=-0.15074355341618856,A_h=1.1296530128208675,K_h=0.7732314482321727,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 223,
+ label = "[CH2]C(O)CC <=> [H] + C=C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.655269706276653,B_g=1.338556425836552,E_g=-0.22168040258991237,L_g=-0.1588290494003383,A_g=-1.0761040117653695,K_g=0.9967517959644436,S_h=0.8903501874332252,B_h=2.0182585510752826,E_h=-0.06318855429136089,L_h=-0.23582818794749083,A_h=-2.310443305773583,K_h=1.4868735974116225,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.382)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.382)"""),
+)
+
+entry(
+ index = 224,
+ label = "[CH2]CCCO <=> [H] + C=CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3377215643569939,B_g=0.3132524931012442,E_g=-0.04327902836846805,L_g=-0.06245550841791122,A_g=-0.27786836878982896,K_g=0.23314524005066506,S_h=0.3953463004688718,B_h=0.6873917764512173,E_h=0.08222575562484861,L_h=-0.08273888773626337,A_h=-0.8170529305469936,K_h=0.5571002029042743,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 225,
+ label = "C[CH]CO <=> [H] + C=CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6222020069253388,B_g=-0.5627299952123677,E_g=-0.15177714809775256,L_g=-0.013414739484128819,A_g=-0.39791929148468014,K_g=0.1397551957731781,S_h=1.0925169088719076,B_h=-0.9885196908056041,E_h=-0.05063147847916817,L_h=-0.0095442572723146,A_h=-1.1077935848745986,K_h=0.12693422344654348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.253)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.253)"""),
+)
+
+entry(
+ index = 226,
+ label = "C[CH]C <=> [H] + C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.33090423773391203,B_g=0.1310759326315341,E_g=0.04824907939045677,L_g=-0.07353183156573562,A_g=-0.1527081163570336,K_g=0.5181021624367522,S_h=0.318889615868072,B_h=0.22854904242413568,E_h=0.15594817911768113,L_h=-0.046731674432415965,A_h=-0.27730392346727273,K_h=0.642529368996098,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 227,
+ label = "[CH2]CC <=> [H] + C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.25853061864822685,B_g=0.1021865947588829,E_g=0.020488632162918057,L_g=-0.05420141188286802,A_g=-0.10349874687235781,K_g=0.47735947279042,S_h=0.28967040735236854,B_h=0.14357436477385083,E_h=0.08828071453954282,L_h=-0.05478784858162775,A_h=-0.14185903742997863,K_h=0.667269667225024,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.057999999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.057999999999999996)"""),
+)
+
+entry(
+ index = 228,
+ label = "CC[CH]CO <=> [H] + CC=CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5233214490557139,B_g=-1.084475395640165,E_g=-0.14552426679722694,L_g=0.04838102764767771,A_g=-0.376382403722729,K_g=-0.12632579537158029,S_h=1.1134013858064886,B_h=-2.3529672968923983,E_h=-0.1110931021212963,L_h=0.07689651212486956,A_h=-0.7895637102926312,K_h=-0.302784598028383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.29100000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.29100000000000004)"""),
+)
+
+entry(
+ index = 229,
+ label = "C[CH]CO <=> [H] + CC=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.28302168128018007,B_g=1.6390905730334449,E_g=-0.25559843515442826,L_g=-0.08388243929884484,A_g=-1.1631312178613136,K_g=0.7224533605783147,S_h=0.23354108482232788,B_h=2.6364141447791787,E_h=0.001304821654740399,L_h=-0.14136789669476735,A_h=-2.304923470346507,K_h=1.1767145578963358,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.18600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.41700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.18600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.41700000000000004)"""),
+)
+
+entry(
+ index = 230,
+ label = "CC[CH]CO <=> [H] + CCC=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.4165744981477997,B_g=0.10402653990124155,E_g=-0.30601733033029604,L_g=-0.1835620171705299,A_g=-1.1908916650888521,K_g=0.5002671563357219,S_h=2.05630363190732,B_h=0.33620415939895304,E_h=0.10849811972928451,L_h=-0.3431534342792559,A_h=-2.3889305274438386,K_h=0.7377007147460676,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.486)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.486)"""),
+)
+
+entry(
+ index = 231,
+ label = "CCCC[O] <=> [H] + CCCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04529490452045463,B_g=-0.05342438325701138,E_g=0.082452999845618,L_g=-0.015789808114105724,A_g=-0.0345044692632756,K_g=0.20675558860647725,S_h=0.04262661754109786,B_h=-0.0991811066777393,E_h=0.08468145930090498,L_h=0.00700791855017877,A_h=-0.12152434490048498,K_h=0.2737779728159799,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.024, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.052000000000000005, MAE_h(kcal/mol): 0.039)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.024, MAE_g(kcal/mol): 0.017, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.052000000000000005, MAE_h(kcal/mol): 0.039)"""),
+)
+
+entry(
+ index = 232,
+ label = "[CH2]C(O)CC <=> [OH] + C=CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.30628122684473785,B_g=-0.7503384256043397,E_g=0.6217841707774725,L_g=-0.14726158551730265,A_g=2.0628057488048186,K_g=0.6874724114972967,S_h=0.29291780057175054,B_h=-1.6874276179287155,E_h=0.8358775485771808,L_h=-0.04899678618137542,A_h=3.4089491994315746,K_h=0.6328018502554209,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38799999999999996, MAE_h(kcal/mol): 0.317)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38799999999999996, MAE_h(kcal/mol): 0.317)"""),
+)
+
+entry(
+ index = 233,
+ label = "C#CC + [CH2]C=C <=> C=CC + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08671932682909504,B_g=-0.08293681012209479,E_g=-0.2272442207693953,L_g=0.09717989144322171,A_g=0.31968863587013224,K_g=-0.05110795829691045,S_h=0.023398824280513215,B_h=-0.06540235282917886,E_h=-0.07383238037384998,L_h=0.10816824908623215,A_h=0.3764410473926051,K_h=-1.0791974653513272,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.07200000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.07200000000000001)"""),
+)
+
+entry(
+ index = 234,
+ label = "C#CC + [CH3] <=> C + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16435621528614877,B_g=-0.07848722167025533,E_g=-0.18408247974067915,L_g=0.12278518380281843,A_g=0.192036027467608,K_g=0.3660684482832923,S_h=-0.03629310119449278,B_h=-0.06043230180719015,E_h=-0.020569267208997523,L_h=0.10289764925612908,A_h=0.3621979660714781,K_h=-0.5861801327040224,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.057999999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.076, MAE_h(kcal/mol): 0.057999999999999996)"""),
+)
+
+entry(
+ index = 235,
+ label = "C#CC + [CH]=C=C <=> C=C=C + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3771740932660547,B_g=-0.1820592731299581,E_g=-0.2594615869075079,L_g=0.1933481795810829,A_g=0.24360580466479176,K_g=-0.18501344799996025,S_h=-0.2454310888896814,B_h=-0.23233155913113593,E_h=-0.1362439060393542,L_h=0.2004587245535446,A_h=0.4864492416211958,K_h=-1.1395711234886414,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.096)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.096)"""),
+)
+
+entry(
+ index = 236,
+ label = "C#CC + [CH]=C <=> C=C + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3053062758330498,B_g=-0.12501364325810538,E_g=-0.22251607488564495,L_g=0.171459429799876,A_g=0.3035029829843637,K_g=0.22117460093723207,S_h=-0.19390529444490462,B_h=-0.14228420403657943,E_h=-0.08262160039651142,L_h=0.16747166024830984,A_h=0.5449243109462754,K_h=-0.694502321423679,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.08)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.08)"""),
+)
+
+entry(
+ index = 237,
+ label = "C#CC + [H] <=> [H][H] + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18567318928606497,B_g=0.21088996733273332,E_g=-0.1556622912270358,L_g=0.1299690333626251,A_g=-0.051914308757705085,K_g=1.0887637139998454,S_h=-0.12573202821408608,B_h=0.47134849662813283,E_h=0.03531815018280472,L_h=0.15723100939621806,A_h=-0.04585934984301087,K_h=-0.08750368591368618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.15)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.15)"""),
+)
+
+entry(
+ index = 238,
+ label = "C#CC + [OH] <=> O + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2998963972869913,B_g=-1.9707718393932134,E_g=0.4525458699741489,L_g=0.06079149428518048,A_g=1.5644151899051275,K_g=0.4505226633634279,S_h=1.0806782180156955,B_h=-3.506070447204921,E_h=0.6058111011950043,L_h=0.04249466928387692,A_h=2.412615239614997,K_h=-0.6934613962833804,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.395, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.733, MAE_h(kcal/mol): 0.522)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.395, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.733, MAE_h(kcal/mol): 0.522)"""),
+)
+
+entry(
+ index = 239,
+ label = "C#CC + [O] <=> [OH] + C#C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3316959272772376,B_g=0.5033166271692726,E_g=-0.03304570797511078,L_g=-0.060908781624932434,A_g=0.37023947930322093,K_g=1.567552626243492,S_h=0.55446856821859,B_h=0.6933294480261596,E_h=0.09620494043153366,L_h=-0.08913837821147892,A_h=0.2485025510994355,K_h=0.8715768826141793,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 240,
+ label = "C#CC=C + [H] <=> [H][H] + C#C[C]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2790925553984899,B_g=0.13057013097885384,E_g=-0.11225131460134677,L_g=0.1337002368584839,A_g=0.008474010297078095,K_g=1.0455726511361911,S_h=-0.18589310304809983,B_h=0.25017389569090076,E_h=0.04389478690216577,L_h=0.1419909856871996,A_h=0.09666675933180696,K_h=-0.15267879452209565,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 241,
+ label = "C#CC=C + [H] <=> [H][H] + [CH]=CC#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19457969664847835,B_g=0.09903449750304937,E_g=-0.1571943571025456,L_g=0.1267509619781811,A_g=0.015899764995123175,K_g=1.0104157710455453,S_h=-0.10276570099890815,B_h=0.2685953384906907,E_h=0.02579588428669361,L_h=0.13823046035640282,A_h=0.018194198579020614,K_h=-0.16623281272217988,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.191, MAE_h(kcal/mol): 0.11599999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.191, MAE_h(kcal/mol): 0.11599999999999999)"""),
+)
+
+entry(
+ index = 242,
+ label = "C#CC=C + [OH] <=> O + C#C[C]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07578228239722608,B_g=-1.1927389406899453,E_g=0.24735166907811953,L_g=0.10212795108900694,A_g=1.2621290630706903,K_g=0.4168831882308229,S_h=0.08103089085112566,B_h=-1.8821539237518836,E_h=0.34467083923729663,L_h=0.08478408572318792,A_h=1.983768742729476,K_h=-0.525095420069462,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45, MAE_h(kcal/mol): 0.368)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45, MAE_h(kcal/mol): 0.368)"""),
+)
+
+entry(
+ index = 243,
+ label = "C#CC=C + [OH] <=> O + [CH]=CC#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1391174458632769,B_g=-2.7819750638700786,E_g=0.2830510031151181,L_g=0.20928459686987855,A_g=1.3786320437380453,K_g=0.2674884392217817,S_h=0.8525470117394263,B_h=-5.648851500803097,E_h=0.22101333084507316,L_h=0.3771814237247892,A_h=2.427048912863221,K_h=-1.3544195385380027,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42700000000000005, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.868, MAE_h(kcal/mol): 0.654)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42700000000000005, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.868, MAE_h(kcal/mol): 0.654)"""),
+)
+
+entry(
+ index = 244,
+ label = "C#C[CH2] + [CH]=O <=> C#CC + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5796120416779135,B_g=0.19153022581492776,E_g=0.1056685626577688,L_g=-0.11406193790876742,A_g=0.2912904387326923,K_g=1.4528089556724164,S_h=0.7786046744845586,B_h=0.15615343196224704,E_h=0.3338950648975866,L_h=-0.10830752780218758,A_h=0.09464355272108589,K_h=0.8443075761218519,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.155, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.155, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 245,
+ label = "C#C[CH2] + [O]O <=> C#CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6841223918556318,B_g=-4.914383518358943,E_g=0.24837793330094907,L_g=0.5776768005720063,A_g=0.8060865642801865,K_g=-1.7073151524754049,S_h=-0.19668353830527885,B_h=-8.170302061249165,E_h=0.27808828255186385,L_h=0.7467831531181088,A_h=2.081175878393467,K_h=-3.8725933839297517,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5870000000000001, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.185, MAE_h(kcal/mol): 0.9520000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5870000000000001, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.185, MAE_h(kcal/mol): 0.9520000000000001)"""),
+)
+
+entry(
+ index = 246,
+ label = "C + CC(=O)O[O] <=> CC(=O)OO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3871141953100321,B_g=0.09702595180979727,E_g=0.13923473320302884,L_g=-0.12377479573197546,A_g=-0.06656789576796383,K_g=1.1409272583545234,S_h=0.6920392872888881,B_h=-0.24630341347908652,E_h=0.25286417404646094,L_h=-0.07418424239310581,A_h=-0.20090588253634892,K_h=0.24110611823632838,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.324, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.368, MAE_h(kcal/mol): 0.28600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.324, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.368, MAE_h(kcal/mol): 0.28600000000000003)"""),
+)
+
+entry(
+ index = 247,
+ label = "C + CC(C)O[O] <=> CC(C)OO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06738157668749295,B_g=-0.08805347031877343,E_g=-0.11225131460134677,L_g=0.06535837007677188,A_g=0.18711728965676078,K_g=0.38393277621926064,S_h=0.06392160016481055,B_h=-0.11082920560685444,E_h=0.045038338464747245,L_h=0.14347906881030237,A_h=0.055388946197856476,K_h=-0.6544633558158585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24100000000000002, MAE_h(kcal/mol): 0.16)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24100000000000002, MAE_h(kcal/mol): 0.16)"""),
+)
+
+entry(
+ index = 248,
+ label = "C + CCC(C)O[O] <=> CCC(C)OO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07696248625348004,B_g=-0.01944037656388504,E_g=-0.1771332048603764,L_g=0.08039314094122446,A_g=0.21163767412365195,K_g=0.18672144488509795,S_h=0.017519796375446928,B_h=0.035406115687618686,E_h=-0.009844806080428965,L_h=0.16397503143195494,A_h=0.06676581815379523,K_h=-0.9165565774090506,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.165)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.165)"""),
+)
+
+entry(
+ index = 249,
+ label = "C + CCCCO[O] <=> CCCCOO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07791544588896461,B_g=-0.017549118210384913,E_g=0.11475100102981013,L_g=0.0034599765226824056,A_g=-0.018546060598276452,K_g=0.6114482239618323,S_h=0.048886829300357974,B_h=-0.03978239955211317,E_h=0.28667958018869394,L_h=0.09292822537721368,A_h=-0.18548992781770252,K_h=-0.4594365011845758,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.198)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.198)"""),
+)
+
+entry(
+ index = 250,
+ label = "C + CCO[O] <=> CCOO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04794120012360791,B_g=-0.13027691262947397,E_g=-0.16503061748972248,L_g=0.062272246949548804,A_g=0.09079506188547515,K_g=0.4707400685531696,S_h=0.0924737369356749,B_h=-0.18821685846693526,E_h=-0.022944335838974428,L_h=0.13773931962119154,A_h=-0.013180164804624927,K_h=-0.6080542215677602,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.138, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.183)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.138, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.183)"""),
+)
+
+entry(
+ index = 251,
+ label = "C + CO[O] <=> COO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14259941376216279,B_g=-0.18500611754122576,E_g=-0.07815002056846848,L_g=0.08184457177065478,A_g=0.14309788495610856,K_g=0.3990335212123236,S_h=0.013795923338322642,B_h=-0.3150924382436028,E_h=0.06298330144679498,L_h=0.12752066014530325,A_h=0.14465194220782185,K_h=-0.6764180797256758,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 252,
+ label = "C + [CH2] <=> [CH3] + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12383343940185143,B_g=-0.15358044094643872,E_g=-0.13989447448913353,L_g=0.12897942143346805,A_g=0.20144100602396717,K_g=0.7883468541427047,S_h=-0.033808075683498424,B_h=-0.17401775989821533,E_h=0.024095217860290393,L_h=0.21355092385335558,A_h=0.2645122729755761,K_h=-0.3426476326265756,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.175)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.175)"""),
+)
+
+entry(
+ index = 253,
+ label = "C + [H] <=> [H][H] + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.006546099649905484,B_g=0.11719937424713199,E_g=-0.08371383874795142,L_g=0.08794351343775599,A_g=-0.025297413092747842,K_g=1.3960492136912093,S_h=0.031938808706201784,B_h=0.32301666413559366,E_h=0.13573810438667394,L_h=0.20455645098612826,A_h=-0.18110631349447354,K_h=0.06521176090208194,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45399999999999996, MAE_h(kcal/mol): 0.276)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45399999999999996, MAE_h(kcal/mol): 0.276)"""),
+)
+
+entry(
+ index = 254,
+ label = "C + [OH] <=> O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1879383010350244,B_g=-1.0994735142109449,E_g=0.40533771572399074,L_g=0.003196080008240527,A_g=0.9283146332191831,K_g=1.1410518761530097,S_h=0.3216971815633843,B_h=-1.7895115862653153,E_h=0.5660067102666877,L_h=0.1135194839624147,A_h=1.3860724593535594,K_h=0.00944163085003165,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.311)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.311)"""),
+)
+
+entry(
+ index = 255,
+ label = "C + [O]O <=> OO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.007411093780576084,B_g=-1.508996921872333,E_g=0.25627283735800194,L_g=0.09658612428572748,A_g=0.2895457895538821,K_g=0.30349565252562916,S_h=0.11963308654698489,B_h=-1.9065276990440847,E_h=0.42326801778856954,L_h=0.16154131913210204,A_h=0.2773698975958832,K_h=-0.8547314884423061,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.314)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.314)"""),
+)
+
+entry(
+ index = 256,
+ label = "C + [O] <=> [OH] + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5981874241111279,B_g=0.2002021584978372,E_g=0.03747330505074673,L_g=-0.11073390964330597,A_g=0.2966636649850783,K_g=1.9381293066485001,S_h=0.819098128533918,B_h=0.2074739735624579,E_h=0.23188440114833164,L_h=-0.020217405189741685,A_h=-0.08320070663653667,K_h=0.9833297260215803,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.214)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.214)"""),
+)
+
+entry(
+ index = 257,
+ label = "C1CO1 + CCO[O] <=> CCOO + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5037564546933424,B_g=-0.08600094187311437,E_g=-0.33832999243195705,L_g=0.2195912218505808,A_g=0.1443220715647695,K_g=-0.5094082383776393,S_h=-0.4313022005615777,B_h=0.030963857694513732,E_h=-0.17351195824553503,L_h=0.19582587463334275,A_h=0.2906306974465876,K_h=-1.4767502338992826,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 258,
+ label = "C1CO1 + CO[O] <=> COO + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3538339126554174,B_g=-0.04712751920407878,E_g=-0.21081666274538838,L_g=0.16846127217746687,A_g=-0.003973108634097169,K_g=-0.14772340441757592,S_h=-0.31878698944578915,B_h=0.11335821387025577,E_h=0.005138651572882132,L_h=0.1508021970860645,A_h=0.07845789983531734,K_h=-1.1109676735066356,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 259,
+ label = "C1CO1 + C[O] <=> CO + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4102784449110414,B_g=0.008730576352785476,E_g=-0.17921505514097344,L_g=0.15896099765755925,A_g=0.721383113603078,K_g=0.1943817742626469,S_h=-0.35581313651373153,B_h=0.04270725258717732,E_h=-0.16930427493193398,L_h=0.1788558626629831,A_h=1.735984576586021,K_h=-0.7974659448084185,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 260,
+ label = "C1CO1 + [CH3] <=> C + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2438916925554371,B_g=-0.05230282307063339,E_g=-0.23776342905339795,L_g=0.16034645435837913,A_g=-0.005065346985537166,K_g=0.2411720923649389,S_h=-0.2101495910005492,B_h=0.11539608139844583,E_h=-0.011288906451124799,L_h=0.15613877104477805,A_h=0.05993383061324438,K_h=-0.8325128680180468,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18100000000000002, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 261,
+ label = "C1CO1 + [H] <=> [H][H] + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15119071139899282,B_g=0.2845903994493624,E_g=-0.19630968490981954,L_g=0.15234159342030879,A_g=-0.35731588055430336,K_g=1.0132966413282025,S_h=-0.23562293510292492,B_h=0.7778056544824987,E_h=0.1453849880812715,L_h=0.21121983797578567,A_h=-0.5098260745255055,K_h=-0.3036056094066466,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.484, MAE_h(kcal/mol): 0.28600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.484, MAE_h(kcal/mol): 0.28600000000000003)"""),
+)
+
+entry(
+ index = 262,
+ label = "C1CO1 + [OH] <=> O + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.009822814704225474,B_g=-0.8826385448445347,E_g=0.5983193723683488,L_g=0.023288867399495768,A_g=1.0645805306347411,K_g=0.8185630050462998,S_h=-0.08204249415648619,B_h=-1.25536304965875,E_h=0.9475497569385024,L_h=0.08605958554299034,A_h=1.8617312657175762,K_h=-0.31451333200357756,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.318)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.318)"""),
+)
+
+entry(
+ index = 263,
+ label = "C1CO1 + [O]O <=> OO + [CH]1CO1",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.34058044326344755,B_g=-2.7721889014595256,E_g=0.20328095116632583,L_g=0.16945088410662393,A_g=0.1884147808527667,K_g=-0.5273678622771559,S_h=0.6330437553936592,B_h=-3.233978479897875,E_h=0.48248346344583315,L_h=0.11699412140256608,A_h=0.08366252553680995,K_h=-1.684260859755413,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6859999999999999, MAE_h(kcal/mol): 0.529)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6859999999999999, MAE_h(kcal/mol): 0.529)"""),
+)
+
+entry(
+ index = 264,
+ label = "C=C(C)C + C=[C]CO <=> C=CCO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0627185941161787,B_g=-1.6316428269591963,E_g=2.865307718763836,L_g=-0.34109357537486235,A_g=-0.6129143157087317,K_g=0.6384682948571868,S_h=-0.6765280366066933,B_h=-4.1754806083804175,E_h=2.7873776119574027,L_h=-0.09984817842257848,A_h=0.7972313701289147,K_h=-1.190077984169323,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.2229999999999999, MAE_g(kcal/mol): 0.69, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.46, MAE_h(kcal/mol): 0.88)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.2229999999999999, MAE_g(kcal/mol): 0.69, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.46, MAE_h(kcal/mol): 0.88)"""),
+)
+
+entry(
+ index = 265,
+ label = "C=C(C)C + C=[C]C <=> C=CC + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19889000638436236,B_g=-0.15062626607643662,E_g=-0.2551512771716239,L_g=0.1418810288061821,A_g=0.3648222702984279,K_g=-0.1775730323844462,S_h=-0.11992630489636473,B_h=-0.08187389360559279,E_h=-0.061913054471558475,L_h=0.13613394915833676,A_h=0.5644966357673814,K_h=-1.1596492499624276,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10300000000000001, MAE_h(kcal/mol): 0.078)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10300000000000001, MAE_h(kcal/mol): 0.078)"""),
+)
+
+entry(
+ index = 266,
+ label = "C=C(C)C + CO[O] <=> COO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03339756999436661,B_g=-0.3359769151781837,E_g=-0.1267363010607121,L_g=0.024813602816271065,A_g=0.04349161167176845,K_g=0.258222739381378,S_h=0.2857779337643508,B_h=-0.6086626496427235,E_h=-0.06822457944196006,L_h=0.02042265803430759,A_h=0.26450494251684165,K_h=-0.682355751300618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.23600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.23600000000000002)"""),
+)
+
+entry(
+ index = 267,
+ label = "C=C(C)C + [CH2]C=C <=> C=CC + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03283312467181037,B_g=-0.1462939649643491,E_g=-0.24145064979684974,L_g=0.06739623760496194,A_g=0.5306005945790689,K_g=-0.1384063913660307,S_h=0.12055672434753144,B_h=-0.13051881776771238,E_h=-0.09094900151889959,L_h=0.14832450203380468,A_h=0.3770861277612408,K_h=-1.3571757910221736,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18899999999999997, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18899999999999997, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 268,
+ label = "C=C(C)C + [CH3] <=> C + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08304676700311224,B_g=-0.10175409769354761,E_g=-0.18568051974479946,L_g=0.10513343917015054,A_g=0.2535165848738312,K_g=0.3702761315968934,S_h=0.01837746004738303,B_h=-0.06538769191170987,E_h=-0.010225989934622788,L_h=0.13188228309232872,A_h=0.3035469657367706,K_h=-0.6750399534835905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.095)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.049, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.095)"""),
+)
+
+entry(
+ index = 269,
+ label = "C=C(C)C + [CH]=CC <=> C=CC + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2130891049530823,B_g=-0.1835913390054679,E_g=-0.23969133970057055,L_g=0.15110274589417888,A_g=0.3703494361842383,K_g=0.016354253436661963,S_h=-0.12279984472028742,B_h=-0.16043441986319307,E_h=-0.0594573507955021,L_h=0.1664673874016838,A_h=0.5718490858780815,K_h=-0.8947851149675956,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 270,
+ label = "C=C(C)C + [H] <=> [H][H] + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0065900824023124634,B_g=0.11933253773887052,E_g=-0.10360137329464075,L_g=0.08835401912688778,A_g=-0.03893939679764606,K_g=1.2543807681883277,S_h=0.06325452841997134,B_h=0.34214916143262986,E_h=0.13862630512806562,L_h=0.14121395706134293,A_h=-0.09323610464406254,K_h=0.05192896967517407,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.336, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.336, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 271,
+ label = "C=C(C)C + [OH] <=> O + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.37695417950401977,B_g=-1.976980737941332,E_g=0.7748954623649034,L_g=-0.049597883797604145,A_g=1.843353805670193,K_g=0.8096051844727449,S_h=0.8791052637345074,B_h=-3.679061942880306,E_h=1.0007908787271513,L_h=0.03237130577153709,A_h=2.9072672645600948,K_h=-0.43063512881673854,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.424, MAE_g(kcal/mol): 0.325, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.541)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.424, MAE_g(kcal/mol): 0.325, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.541)"""),
+)
+
+entry(
+ index = 272,
+ label = "C=C(C)C + [O]OC=O <=> O=COO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6724083187979061,B_g=0.8837674354896473,E_g=1.0301420355000757,L_g=-0.3376849120633214,A_g=-1.4120809269435532,K_g=1.45516203292619,S_h=1.0134285895854236,B_h=0.4162381078621872,E_h=1.1262736713442645,L_h=-0.2704426140917839,A_h=-1.6601143286839808,K_h=0.48188969628833894,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.847, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8740000000000001, MAE_h(kcal/mol): 0.5870000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.847, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8740000000000001, MAE_h(kcal/mol): 0.5870000000000001)"""),
+)
+
+entry(
+ index = 273,
+ label = "C=C(C)C + [O]O <=> OO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4798958115125559,B_g=-2.622215046210459,E_g=0.36357609231356347,L_g=0.041468405061047396,A_g=0.6201788003146177,K_g=-0.13554751245957702,S_h=0.9561044022816599,B_h=-3.469931285643852,E_h=0.4552141569535057,L_h=0.01612700921589257,A_h=0.6784486167951315,K_h=-1.20759778054477,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47200000000000003, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.642, MAE_h(kcal/mol): 0.525)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47200000000000003, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.642, MAE_h(kcal/mol): 0.525)"""),
+)
+
+entry(
+ index = 274,
+ label = "C=C(C)C + [O][O] <=> [O]O + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.47774798710334837,B_g=0.24474935622737323,E_g=-0.12421462325604525,L_g=-0.03396934577565735,A_g=0.12946323170994484,K_g=0.9890548142932223,S_h=0.46708950010339023,B_h=0.5690855029351762,E_h=0.17896581954400054,L_h=0.1343306563096506,A_h=-0.2686466517018322,K_h=-0.25641211607395736,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.568, MAE_h(kcal/mol): 0.34700000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.568, MAE_h(kcal/mol): 0.34700000000000003)"""),
+)
+
+entry(
+ index = 275,
+ label = "C=C(C)C + [O] <=> [OH] + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7081809574222496,B_g=0.19621438894627105,E_g=0.14524570936531608,L_g=-0.15913692866718718,A_g=0.6352428930140082,K_g=1.9212839124766266,S_h=0.9352419167232826,B_h=0.16873982960937775,E_h=0.2888933787265119,L_h=-0.09879992282354547,A_h=0.6258085926227112,K_h=1.143566223498942,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.168, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.282, MAE_h(kcal/mol): 0.228)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.168, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.282, MAE_h(kcal/mol): 0.228)"""),
+)
+
+entry(
+ index = 276,
+ label = "C=C(C)C=O + [CH3] <=> C + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.35966162734934226,B_g=-0.08532653966954068,E_g=-0.2524390074398602,L_g=0.19583320509207724,A_g=-0.15993594866924732,K_g=0.15492924535358613,S_h=-0.3770348145500992,B_h=0.11837224764465144,E_h=0.045287574061720126,L_h=0.18903786984519888,A_h=-0.16524320079302285,K_h=-0.8969036175418652,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.235, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.235, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 277,
+ label = "C=C(C)C=O + [H] <=> [H][H] + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3138022775063314,B_g=0.17319674851995168,E_g=-0.3080038846473446,L_g=0.23064555362220174,A_g=-0.4523845998819901,K_g=0.7686425810643778,S_h=-0.4586448116412501,B_h=0.6847014980956571,E_h=0.11274978579529255,L_h=0.27575719667429394,A_h=-0.6170413639762532,K_h=-0.5944855424502071,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.314)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.314)"""),
+)
+
+entry(
+ index = 278,
+ label = "C=C(C)C=O + [OH] <=> O + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4483381866605479,B_g=-1.6127449043416635,E_g=0.21866758405003425,L_g=0.2898023556095895,A_g=1.2803159311909766,K_g=-0.17112222869808916,S_h=-0.7496933452357041,B_h=-2.1689068085279226,E_h=0.7724544196063161,L_h=0.3671680170934668,A_h=2.262098930419578,K_h=-1.4675431777287549,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.263, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.364)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.263, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.364)"""),
+)
+
+entry(
+ index = 279,
+ label = "C=C(C)C=O + [O]O <=> OO + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25812011295909504,B_g=-2.0428669010469878,E_g=-0.18667746213269099,L_g=0.33714245811696864,A_g=0.3562163117441288,K_g=-0.9199505798031227,S_h=-0.28613712624234117,B_h=-2.2231961859156044,E_h=0.13243206749741596,L_h=0.32676252854892146,A_h=0.47101129552634596,K_h=-2.0522059054747364,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.491, MAE_h(kcal/mol): 0.39799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.491, MAE_h(kcal/mol): 0.39799999999999996)"""),
+)
+
+entry(
+ index = 280,
+ label = "C=C(C)C=O + [O][O] <=> [O]O + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22527965782855017,B_g=0.3040161150957784,E_g=-0.3630556297434142,L_g=0.2139394381662839,A_g=-0.3947598637701121,K_g=0.27661486034623006,S_h=-0.46797648561026434,B_h=0.9549828420952821,E_h=0.08128012644809854,L_h=0.3418046298721085,A_h=-0.6737497927463191,K_h=-1.0603508559449364,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 281,
+ label = "C=C(C)C=O + [O] <=> [OH] + C=C(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17217781475585667,B_g=0.34643014933357585,E_g=-0.14024633650838939,L_g=0.05918612382232572,A_g=0.12698553665768497,K_g=1.0612964851216864,S_h=0.0989538624569699,B_h=0.7591349760857357,E_h=0.22047087689872039,L_h=0.115000236626783,A_h=0.15657859856884784,K_h=0.10897459954702678,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.185)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.185)"""),
+)
+
+entry(
+ index = 282,
+ label = "C=C(C)CO + [CH]=O <=> C=O + C=C(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26363261792743653,B_g=-1.6215561157405287,E_g=-0.1452310484478471,L_g=0.3193660956858143,A_g=0.6637730384086691,K_g=-0.15012046442375632,S_h=-0.011208271405045335,B_h=-3.604709099936307,E_h=0.04379216047988282,L_h=0.5285334052159409,A_h=1.284142430650384,K_h=-1.7485709742331517,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.547, MAE_h(kcal/mol): 0.39799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.547, MAE_h(kcal/mol): 0.39799999999999996)"""),
+)
+
+entry(
+ index = 283,
+ label = "C=C(C)CO + [O][O] <=> [O]O + [CH2]C(=C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2554151736860658,B_g=-1.3488630508172543,E_g=-0.2680455540856035,L_g=0.20797244475640367,A_g=0.2887541000105564,K_g=0.09017197289304295,S_h=0.5742168240493238,B_h=-2.9222140699197334,E_h=-0.10297828430220854,L_h=0.4947839732023185,A_h=0.3618974172633637,K_h=-1.7589875560948713,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.601, MAE_h(kcal/mol): 0.47600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.601, MAE_h(kcal/mol): 0.47600000000000003)"""),
+)
+
+entry(
+ index = 284,
+ label = "C=C(O)CC + [CH3] <=> C + C=C(O)[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05458259573706185,B_g=0.01774704059621632,E_g=-0.17629020210590926,L_g=0.08539251379815116,A_g=0.147562134325417,K_g=0.32495190524150075,S_h=0.07150862495501455,B_h=0.07275480293987897,E_h=0.0073377891932311185,L_h=0.0809429253463117,A_h=0.1641143101479104,K_h=-0.6785145909237419,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.08)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.08)"""),
+)
+
+entry(
+ index = 285,
+ label = "C=C(O)CC + [H] <=> [H][H] + C=C(O)[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11401795515636047,B_g=0.43382387836624464,E_g=-0.1482218756115217,L_g=0.04988377168824951,A_g=-0.08183724131192029,K_g=1.311081866499659,S_h=0.17963289128883972,B_h=0.7618692371937029,E_h=0.11299902139226543,L_h=0.09132285491435892,A_h=-0.27375598143977636,K_h=0.10099906044389445,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.22399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.22399999999999998)"""),
+)
+
+entry(
+ index = 286,
+ label = "C=C(O)CC + [OH] <=> O + C=C(O)[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0692361827473206,B_g=-0.8827485017255523,E_g=2.585262203729862,L_g=-0.5342731544050517,A_g=0.24844390742955952,K_g=2.4782008539125386,S_h=0.48289396913496496,B_h=-3.510893889052219,E_h=2.7828547189182182,L_h=-0.36023340313063296,A_h=1.9418385187681553,K_h=0.9443096941778548,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.812, MAE_g(kcal/mol): 0.561, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.047, MAE_h(kcal/mol): 0.81)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.812, MAE_g(kcal/mol): 0.561, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.047, MAE_h(kcal/mol): 0.81)"""),
+)
+
+entry(
+ index = 287,
+ label = "C=C(O)CC + [O][O] <=> [O]O + C=C(O)[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5597245071312241,B_g=0.8352104768323416,E_g=-0.2863790313805795,L_g=-0.04898945572264093,A_g=-0.15396162480063258,K_g=0.9436719442679535,S_h=0.5654715867790694,B_h=1.4522884931022673,E_h=0.09021595564544993,L_h=0.04736209388358267,A_h=-0.6785439127586798,K_h=-0.20797244475640367,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.38)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.38)"""),
+)
+
+entry(
+ index = 288,
+ label = "C=C(O)CC + [O] <=> [OH] + C=C(O)[CH]C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06944876605062099,B_g=-2.2981061437234254,E_g=0.10459098522379781,L_g=0.2595642133297909,A_g=0.45601317695556587,K_g=3.131571971376957,S_h=0.4568268578750949,B_h=-4.560065795427048,E_h=0.31246080355791855,L_h=0.4452300721571213,A_h=1.0599843330082115,K_h=1.437818167560371,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7020000000000001, MAE_h(kcal/mol): 0.522)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7020000000000001, MAE_h(kcal/mol): 0.522)"""),
+)
+
+entry(
+ index = 289,
+ label = "C=C + CC(=O)O[O] <=> CC(=O)OO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2701860480360765,B_g=-0.18758643901576857,E_g=-0.10267040503535968,L_g=-0.012241866086609359,A_g=0.5744147464351553,K_g=0.5465223509503957,S_h=0.5473067100349868,B_h=-0.41542442694265813,E_h=0.007931556350725346,L_h=-0.00221379853781798,A_h=0.5320593558672339,K_h=-0.21160102182997947,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.095)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.095)"""),
+)
+
+entry(
+ index = 290,
+ label = "C=C + CC(C)(C)O[O] <=> CC(C)(C)OO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08013657488551708,B_g=-0.06153187061736465,E_g=-0.25941760415510096,L_g=0.10190803732697204,A_g=0.4421439490298983,K_g=0.011977969572167482,S_h=0.05952332492411257,B_h=-0.022460525562497648,E_h=-0.11535942910477336,L_h=0.1356134865881875,A_h=0.3604753082688714,K_h=-0.8909879373431264,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.079)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.079)"""),
+)
+
+entry(
+ index = 291,
+ label = "C=C + CC(C)O[O] <=> CC(C)OO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13227079740525707,B_g=-0.04695891865318536,E_g=-0.2369570785926033,L_g=0.11576993479390514,A_g=0.36311427341329017,K_g=0.07230764495707467,S_h=0.001297491196005902,B_h=0.002946844411267642,E_h=-0.09391783730637072,L_h=0.13813516439285434,A_h=0.3396861272978389,K_h=-0.8000462662829613,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10400000000000001, MAE_h(kcal/mol): 0.075)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10400000000000001, MAE_h(kcal/mol): 0.075)"""),
+)
+
+entry(
+ index = 292,
+ label = "C=C + CCC(C)O[O] <=> CCC(C)OO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09632955823002011,B_g=-0.007073892678789241,E_g=-0.26275296287929695,L_g=0.08666068315921907,A_g=0.28711940771276373,K_g=-0.21300113944826835,S_h=0.0702990992638226,B_h=0.04659239571646053,E_h=-0.1326299898832474,L_h=0.0777028625856642,A_h=0.22991250774875208,K_h=-1.102750229265265,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.055)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.055)"""),
+)
+
+entry(
+ index = 293,
+ label = "C=C + CCCCO[O] <=> CCCCOO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03990701735059961,B_g=-0.16915033529850956,E_g=-0.23067487545713972,L_g=0.09710658685587675,A_g=0.535072174407112,K_g=0.1534631536066868,S_h=0.07446279982501668,B_h=-0.15052363965415366,E_h=-0.0915647600525973,L_h=0.1662108213459764,A_h=0.43765037782565186,K_h=-0.8332019311390896,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 294,
+ label = "C=C + CCCO[O] <=> CCCOO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19579655279840477,B_g=-0.05784464987391285,E_g=-0.24285809787387308,L_g=0.13048216547403987,A_g=0.3208028655977757,K_g=-0.023230223729619793,S_h=-0.06038831905478317,B_h=-0.020605919502670007,E_h=-0.11590188305112609,L_h=0.14589812019268625,A_h=0.3479695456678201,K_h=-0.921981116872578,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.078)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.078)"""),
+)
+
+entry(
+ index = 295,
+ label = "C=C + CCO[O] <=> CCOO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16524320079302285,B_g=-0.09363927987445987,E_g=-0.226767740951653,L_g=0.1239140744479309,A_g=0.3289909880042084,K_g=0.05562352087736036,S_h=-0.030648647968930378,B_h=-0.07228565358087119,E_h=-0.09230513638478147,L_h=0.14423410605995554,A_h=0.33854257573525753,K_h=-0.8648401910371769,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.079)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.079)"""),
+)
+
+entry(
+ index = 296,
+ label = "C=C + CO[O] <=> COO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17209717970977717,B_g=-0.21103657650742327,E_g=-0.21624120220891588,L_g=0.12914802198436148,A_g=0.377635912166328,K_g=0.1332604093344141,S_h=-0.015819129949043713,B_h=-0.277809725119953,E_h=-0.09126421124448295,L_h=0.13696962145406938,A_h=0.44105904113719274,K_h=-0.8130285087017549,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.067)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.067)"""),
+)
+
+entry(
+ index = 297,
+ label = "C=C + C[O] <=> CO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07676456386764863,B_g=-0.18521137038579166,E_g=-0.16272152298835602,L_g=0.08326668076514714,A_g=0.7286989114201058,K_g=0.4803502999540946,S_h=0.15805202077448166,B_h=-0.3983737799262189,E_h=-0.20014351482796128,L_h=0.11765386268867079,A_h=1.1943589720702692,K_h=-0.4771175676521816,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.129, MAE_h(kcal/mol): 0.09699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.129, MAE_h(kcal/mol): 0.09699999999999999)"""),
+)
+
+entry(
+ index = 298,
+ label = "C=C + [CH3] <=> C + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10327883311032292,B_g=-0.07809870735732702,E_g=-0.16452481583704218,L_g=0.11105644982762382,A_g=0.21028886971650457,K_g=0.5887311323436272,S_h=0.004720815425015825,B_h=-0.05123990655413139,E_h=0.007191180018541186,L_h=0.13522497227525918,A_h=0.2867015715648974,K_h=-0.43360396460420975,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.095)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.095)"""),
+)
+
+entry(
+ index = 299,
+ label = "C=C + [H] <=> [H][H] + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0308172485198238,B_g=0.17326272264856216,E_g=-0.10514810008761956,L_g=0.08578102811107947,A_g=-0.03747330505074673,K_g=1.2408194195295088,S_h=0.025400039515030795,B_h=0.41400964840690024,E_h=0.09018663381051194,L_h=0.15388098975455308,A_h=-0.1534484926892178,K_h=-0.029453783195207427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 300,
+ label = "C=C + [OH] <=> O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18285829313201823,B_g=-1.1929148716995732,E_g=0.25125880358360625,L_g=0.05560152950115688,A_g=1.1813254164403342,K_g=0.7022945990584488,S_h=0.33716444949317215,B_h=-1.8233123314900792,E_h=0.39102132981551885,L_h=0.11994829627256823,A_h=1.6846347131508723,K_h=-0.36175080808867377,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.377, MAE_h(kcal/mol): 0.302)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.377, MAE_h(kcal/mol): 0.302)"""),
+)
+
+entry(
+ index = 301,
+ label = "C=C + [O][O] <=> [O]O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.41325461115724704,B_g=0.4457651956447396,E_g=-0.1059031373372727,L_g=-0.037348687252260294,A_g=0.003137436338364554,K_g=1.227360697292973,S_h=0.4472972615202494,B_h=0.832989347835789,E_h=0.17543986889270766,L_h=0.09435766483044052,A_h=-0.43152211432361265,K_h=0.16454680721324566,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.31)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.31)"""),
+)
+
+entry(
+ index = 302,
+ label = "C=C=C + [CH2]C=C <=> C=CC + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01219788333420238,B_g=-0.12952187537982082,E_g=-0.22583677269237196,L_g=0.07883175323077668,A_g=0.3600721330384741,K_g=0.08390443067504832,S_h=0.12608389023334188,B_h=-0.12078396856830084,E_h=-0.026118424471011467,L_h=0.08789220022661451,A_h=0.37256323472205627,K_h=-0.9090795094998642,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.068)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.068)"""),
+)
+
+entry(
+ index = 303,
+ label = "C=C=C + [CH3] <=> C + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10000211805600293,B_g=-0.10422446228707298,E_g=-0.16500862611351896,L_g=0.10630631256767002,A_g=0.22768404829346509,K_g=0.5578992229063344,S_h=0.06140725281887821,B_h=-0.14368432165486827,E_h=-0.0012461779848644257,L_h=0.08193986773420324,A_h=0.3633121957991216,K_h=-0.32460004322224495,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.059000000000000004, MAE_h(kcal/mol): 0.047)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.059000000000000004, MAE_h(kcal/mol): 0.047)"""),
+)
+
+entry(
+ index = 304,
+ label = "C=C=C + [OH] <=> O + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.25081164560080194,B_g=-1.3828543879691153,E_g=0.5959662951145753,L_g=-0.022489847397435637,A_g=1.8738705053819027,K_g=0.9063379179331623,S_h=0.3794098831800762,B_h=-2.2397263703618946,E_h=0.7909198451585131,L_h=0.006326185887870585,A_h=2.730178042452126,K_h=0.0013707957833508683,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.349, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.449)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.349, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.449)"""),
+)
+
+entry(
+ index = 305,
+ label = "C=C=C + [O]O <=> OO + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4129980451015397,B_g=-1.9054867739037862,E_g=0.09698196905739032,L_g=0.07166989504717348,A_g=0.8246472857959319,K_g=0.047787260490183475,S_h=0.787745756526476,B_h=-2.473780587295637,E_h=0.18693402818839838,L_h=0.020789180971032422,A_h=0.8622672000213687,K_h=-0.8623405046087136,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.456, MAE_h(kcal/mol): 0.36200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.456, MAE_h(kcal/mol): 0.36200000000000004)"""),
+)
+
+entry(
+ index = 306,
+ label = "C=C=CC + [CH3] <=> C + [CH2]C=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10720062853327861,B_g=-0.085729714899938,E_g=-0.1974605669311355,L_g=0.11030874303670517,A_g=0.22183434222333678,K_g=0.3696310512282576,S_h=0.01265237177574117,B_h=-0.04722281516762725,E_h=-0.013495374530208281,L_h=0.11961109517078139,A_h=0.2727223867582123,K_h=-0.6244891100505018,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.138, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.138, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 307,
+ label = "C=C=CC + [H] <=> [H][H] + [CH2]C=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01929376738919511,B_g=0.17692062155707597,E_g=-0.10392391347895862,L_g=0.07651532827067574,A_g=-0.03335358724195963,K_g=1.331497194075232,S_h=0.07990933066474767,B_h=0.41598154180647984,E_h=0.1311345763014101,L_h=0.15333853580820034,A_h=-0.20624245649506245,K_h=0.11015480340328075,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 308,
+ label = "C=C=CC + [O] <=> [OH] + [CH2]C=C=C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.807464690522272,B_g=0.32863912598495254,E_g=0.18426574120904157,L_g=-0.20976107668762084,A_g=0.7585265480107726,K_g=2.297805594915311,S_h=1.0674100877062567,B_h=0.3324143122332183,E_h=0.3163606076046707,L_h=-0.14940940992651014,A_h=0.6177157661798269,K_h=1.5967351824655232,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.311, MAE_h(kcal/mol): 0.255)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.195, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.311, MAE_h(kcal/mol): 0.255)"""),
+)
+
+entry(
+ index = 309,
+ label = "C=C=O + [H] <=> [H][H] + [CH]=C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05428204692894749,B_g=0.014213759486188951,E_g=-0.06707369742064409,L_g=0.08943159656085879,A_g=0.04218679001702806,K_g=1.1873730448962938,S_h=0.05993383061324438,B_h=0.03728271312364982,E_h=0.14685107982817083,L_h=0.10107236503123943,A_h=0.09404978556359166,K_h=0.05713359537666667,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 310,
+ label = "C=C=O + [OH] <=> O + [CH]=C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.003914464964221196,B_g=-1.390038237528922,E_g=0.3851569628279215,L_g=0.08618420334147679,A_g=1.297117342610443,K_g=0.5331589246774083,S_h=0.16719310281639896,B_h=-2.3108758028389187,E_h=0.5751697836848085,L_h=0.08269490498385638,A_h=2.1202838757420066,K_h=-0.4184519064000052,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.375)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.375)"""),
+)
+
+entry(
+ index = 311,
+ label = "C=C=O + [O] <=> [OH] + [CH]=C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.30933069767828847,B_g=0.3242775030379271,E_g=0.027159349611309985,L_g=-0.04302979277149517,A_g=0.2803460638420888,K_g=1.3534445875263148,S_h=0.48886829300357976,B_h=0.40979463463456467,E_h=0.2449912613656116,L_h=-0.07004253320811522,A_h=0.21058208806588444,K_h=0.6374127087994192,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 312,
+ label = "C=CC + CC(=O)O[O] <=> CC(=O)OO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.776750068424731,B_g=0.3149971422800544,E_g=0.5164234873865525,L_g=-0.2536778549659901,A_g=-0.1645101549195732,K_g=1.1461025622210779,S_h=1.1725655182526107,B_h=-0.18958765425028615,E_h=0.5814446563615375,L_h=-0.23356307619853134,A_h=-0.23236821142480843,K_h=0.39434935808098026,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.684, MAE_g(kcal/mol): 0.518, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.723, MAE_h(kcal/mol): 0.545)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.684, MAE_g(kcal/mol): 0.518, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.723, MAE_h(kcal/mol): 0.545)"""),
+)
+
+entry(
+ index = 313,
+ label = "C=CC + CC(C)O[O] <=> CC(C)OO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02811230924679455,B_g=-0.07838459524797238,E_g=0.028464171266050386,L_g=-0.00700791855017877,A_g=0.4610565325648996,K_g=0.09732650061791165,S_h=0.15492924535358613,B_h=-0.17343865365819008,E_h=0.09884390557595246,L_h=0.035823951835484986,A_h=0.5467276037949615,K_h=-0.8058153373070102,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 314,
+ label = "C=CC + CCO[O] <=> CCOO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0928622512486032,B_g=0.0075943552489385,E_g=0.11252987203325764,L_g=-0.04485507699638483,A_g=0.25319404468951334,K_g=0.4868230950166552,S_h=0.16410697968917587,B_h=-0.2262106260878313,E_h=0.14059086806891072,L_h=-0.01037259910931272,A_h=0.369073936364436,K_h=-0.39946601827765893,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.183, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.215)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.183, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.215)"""),
+)
+
+entry(
+ index = 315,
+ label = "C=CC + CO[O] <=> COO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08980544995631812,B_g=-0.08924100463376189,E_g=0.2607664085622483,L_g=-0.03158694668694594,A_g=0.24687518926037727,K_g=0.3030118422491524,S_h=0.16497930427858096,B_h=-0.35170074916367894,E_h=0.2874126260621436,L_h=-0.015826460407778208,A_h=0.4105130195905453,K_h=-0.6290120030896861,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.262, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.265, MAE_h(kcal/mol): 0.18600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.262, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.265, MAE_h(kcal/mol): 0.18600000000000003)"""),
+)
+
+entry(
+ index = 316,
+ label = "C=CC + C[CH2] <=> CC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0561879661999166,B_g=-0.10773575202089687,E_g=-0.2118062746745454,L_g=0.09570646923758788,A_g=0.31493849861017836,K_g=0.10519208284002651,S_h=0.02499686428463348,B_h=-0.019762916748202894,E_h=-0.030699961180071855,L_h=0.12700752803388848,A_h=0.35082109411553936,K_h=-0.9927640264128775,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 317,
+ label = "C=CC + [CH3] <=> C + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06400956566962451,B_g=-0.11145962505802114,E_g=-0.188803295165695,L_g=0.09459223950994443,A_g=0.24883975220122231,K_g=0.42320204365995895,S_h=0.091132262987262,B_h=-0.1379665638419609,E_h=-0.02959306191116286,L_h=0.07441148661387521,A_h=0.3598595497351737,K_h=-0.5366775448699667,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.049)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.063, MAE_h(kcal/mol): 0.049)"""),
+)
+
+entry(
+ index = 318,
+ label = "C=CC + [CH3] <=> C + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08982744133252162,B_g=-0.08817075765852538,E_g=-0.18676542763750495,L_g=0.10505280412407109,A_g=0.22928941875631986,K_g=0.4109161948209427,S_h=0.027481889795627833,B_h=-0.06500650805751604,E_h=-0.01620764426197203,L_h=0.12320301995068472,A_h=0.27418847850511163,K_h=-0.6206406192148911,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.145, MAE_h(kcal/mol): 0.09)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.145, MAE_h(kcal/mol): 0.09)"""),
+)
+
+entry(
+ index = 319,
+ label = "C=CC + [CH3] <=> C + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07850921304645882,B_g=-0.10440039329670088,E_g=-0.17181129181913182,L_g=0.11240525423477121,A_g=0.23670051253689595,K_g=0.5596292111676756,S_h=0.020642571796342487,B_h=-0.07194845247908435,E_h=0.017607761880260885,L_h=0.1310832630902686,A_h=0.3736481426147618,K_h=-0.4049858537047349,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.136, MAE_h(kcal/mol): 0.08900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.136, MAE_h(kcal/mol): 0.08900000000000001)"""),
+)
+
+entry(
+ index = 320,
+ label = "C=CC + [H] <=> [H][H] + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02435178391599778,B_g=0.1380105465943679,E_g=-0.09378588904914978,L_g=0.07422822514551279,A_g=-0.041343787262560945,K_g=1.2121060126664855,S_h=0.09977487383523351,B_h=0.332055119755228,E_h=0.13968922164456762,L_h=0.1115475905628351,A_h=-0.08155868388000942,K_h=-0.006678047907126423,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.18100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.18100000000000002)"""),
+)
+
+entry(
+ index = 321,
+ label = "C=CC + [H] <=> [H][H] + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.015437946094849886,B_g=0.14782603083985887,E_g=-0.09391050684763623,L_g=0.08105288222732915,A_g=-0.04632116874328415,K_g=1.2920080128724987,S_h=0.07521050661593534,B_h=0.37319365417322303,E_h=0.14281932752419768,L_h=0.13961591705722265,A_h=-0.12439788472440767,K_h=0.07825997744948593,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.349, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.349, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 322,
+ label = "C=CC + [H] <=> [H][H] + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02702007089535455,B_g=0.14427075835362801,E_g=-0.09810352924376829,L_g=0.09042120849001584,A_g=-0.038807448540425116,K_g=1.2441694391711735,S_h=0.02853747585339535,B_h=0.37079659416704264,E_h=0.12382610894311695,L_h=0.14579549377040332,A_h=-0.07972606919638525,K_h=0.019433046105150547,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.192)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.192)"""),
+)
+
+entry(
+ index = 323,
+ label = "C=CC + [OH] <=> O + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.260451198836665,B_g=-1.368325418757343,E_g=0.30743943932478834,L_g=0.020627910878873494,A_g=1.2618211838038416,K_g=0.6256399920718176,S_h=0.49052497667757605,B_h=-2.198184660713502,E_h=0.4866838163006997,L_h=0.039980321937944575,A_h=1.9357908903121956,K_h=-0.40162850360433544,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27899999999999997, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.425, MAE_h(kcal/mol): 0.349)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27899999999999997, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.425, MAE_h(kcal/mol): 0.349)"""),
+)
+
+entry(
+ index = 324,
+ label = "C=CC + [OH] <=> O + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5182780934463802,B_g=-1.9834535330038927,E_g=0.7873719031310168,L_g=-0.08207914645015868,A_g=1.860404452686632,K_g=0.9660371738669028,S_h=1.1218094219749561,B_h=-3.7125914611318938,E_h=0.9938269429293796,L_h=-0.003753194872062271,A_h=2.7823415868068038,K_h=-0.24486664356712518,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.431, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.667, MAE_h(kcal/mol): 0.531)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.431, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.667, MAE_h(kcal/mol): 0.531)"""),
+)
+
+entry(
+ index = 325,
+ label = "C=CC + [OH] <=> O + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1278432003296211,B_g=-1.2321914695990062,E_g=0.25812011295909504,L_g=0.0711787543119622,A_g=0.9987969939513682,K_g=0.6440614348716077,S_h=0.25013724339722826,B_h=-1.8811496509052577,E_h=0.4442697820629023,L_h=0.11581391754631215,A_h=1.5859740690432824,K_h=-0.3823493971326093,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.315)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.315)"""),
+)
+
+entry(
+ index = 326,
+ label = "C=CC + [O]O <=> OO + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09965025603674708,B_g=-1.6635889661241325,E_g=0.07458008716476863,L_g=0.12371615206209949,A_g=0.652110278562085,K_g=-0.03086123127223078,S_h=0.30109859251944876,B_h=-2.1504193915995224,E_h=0.21882885414219316,L_h=0.10868138119764692,A_h=0.7935074970917902,K_h=-0.9802289419768883,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.397, MAE_h(kcal/mol): 0.314)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.397, MAE_h(kcal/mol): 0.314)"""),
+)
+
+entry(
+ index = 327,
+ label = "C=CC + [O]O <=> OO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6636264292339792,B_g=-2.9814075242007934,E_g=0.3242994944141306,L_g=0.0583797733615311,A_g=0.6522788791129784,K_g=-0.154115564434057,S_h=1.1711580701755875,B_h=-3.83853607264928,E_h=0.5152359530715641,L_h=0.023626068501282613,A_h=0.6360639043922719,K_h=-1.2560081300273855,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.503, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.5660000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.503, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.5660000000000001)"""),
+)
+
+entry(
+ index = 328,
+ label = "C=CC + [O]O <=> OO + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.049385300494303744,B_g=-1.5593938256719972,E_g=0.09800090282148534,L_g=0.1325933375895749,A_g=0.5857256442624836,K_g=0.1156453169954187,S_h=0.2311000420637405,B_h=-1.9807705851070665,E_h=0.2501079215622902,L_h=0.13401544658406725,A_h=0.7319536350982222,K_h=-0.8136809195291251,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.373, MAE_h(kcal/mol): 0.287)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.373, MAE_h(kcal/mol): 0.287)"""),
+)
+
+entry(
+ index = 329,
+ label = "C=CC + [O][O] <=> [O]O + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5538014964737509,B_g=0.3016557073832705,E_g=-0.09472418776716535,L_g=-0.06658988714416732,A_g=0.052815955182048166,K_g=1.140142899269932,S_h=0.6098428534989775,B_h=0.595651085388992,E_h=0.2157940442261116,L_h=0.060894120707463445,A_h=-0.3670800515886528,K_h=0.06625268604238047,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.518, MAE_h(kcal/mol): 0.321)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.518, MAE_h(kcal/mol): 0.321)"""),
+)
+
+entry(
+ index = 330,
+ label = "C=CC + [O][O] <=> [O]O + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.48974794805171934,B_g=0.28121838843149394,E_g=-0.11733132250435292,L_g=-0.034746374401513985,A_g=0.09604367033937473,K_g=1.132922397416453,S_h=0.49657260513353574,B_h=0.6104806034088787,E_h=0.19087048452882305,L_h=0.1256587236267411,A_h=-0.29939792609304555,K_h=-0.03620513568967881,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.563, MAE_h(kcal/mol): 0.34600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.563, MAE_h(kcal/mol): 0.34600000000000003)"""),
+)
+
+entry(
+ index = 331,
+ label = "C=CC + [O][O] <=> [O]O + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5514557496787119,B_g=0.35087240732668085,E_g=-0.05541826803279446,L_g=-0.07196311339655334,A_g=-0.013407409025394322,K_g=1.219890959842521,S_h=0.6063755465175606,B_h=0.6832793891011646,E_h=0.2612795406736631,L_h=0.039137319183477466,A_h=-0.41846656731747417,K_h=0.2245466119551005,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.311)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.311)"""),
+)
+
+entry(
+ index = 332,
+ label = "C=CC + [O] <=> [OH] + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7679315265671317,B_g=0.23661254703208198,E_g=0.10925315697893766,L_g=-0.18375260909762683,A_g=0.42672066385251733,K_g=2.5258634966042357,S_h=1.076345916903608,B_h=0.19002015131562144,E_h=0.24142865842064623,L_h=-0.16292677583292192,A_h=0.20885209980454325,K_h=1.731051177857705,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.193)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.193)"""),
+)
+
+entry(
+ index = 333,
+ label = "C=CC + [O] <=> [OH] + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8075306646508824,B_g=0.2692404188593264,E_g=0.16605688171255198,L_g=-0.19227060214711192,A_g=0.5988544958559671,K_g=2.1244475763032007,S_h=1.0625133412716128,B_h=0.24815801953891414,E_h=0.3194027479794868,L_h=-0.13766601503384657,A_h=0.48355371042106965,K_h=1.3742850817084886,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.244)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.244)"""),
+)
+
+entry(
+ index = 334,
+ label = "C=CC=C + [CH2]C=C <=> C=CC + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15904896316237319,B_g=-0.16384308317473398,E_g=-0.22725888168686426,L_g=0.11977236526294031,A_g=0.3513855394380956,K_g=-0.22121858368963906,S_h=-0.04962720563254213,B_h=-0.16888643878406767,E_h=-0.045925323971621336,L_h=0.11725068745827348,A_h=0.44187272205672184,K_h=-1.1992337271287095,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09, MAE_h(kcal/mol): 0.067)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09, MAE_h(kcal/mol): 0.067)"""),
+)
+
+entry(
+ index = 335,
+ label = "C=CC=C + [CH3] <=> C + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10497949953672613,B_g=-0.12796781812810754,E_g=-0.17187726594774227,L_g=0.10482555990330168,A_g=0.30979251657856177,K_g=0.4179900874997319,S_h=0.03376409293109144,B_h=-0.1641216406066449,E_h=-0.015643198939415792,L_h=0.0946288918036169,A_h=0.43303218882291894,K_h=-0.5463024371883607,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.068, MAE_h(kcal/mol): 0.054000000000000006)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.068, MAE_h(kcal/mol): 0.054000000000000006)"""),
+)
+
+entry(
+ index = 336,
+ label = "C=CC=C + [CH3] <=> C + [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1100155246873253,B_g=-0.10023669273550681,E_g=-0.1766860468775721,L_g=0.11357812763229068,A_g=0.22623261746403475,K_g=0.5182634325289112,S_h=0.03607318743245788,B_h=-0.10926781789640665,E_h=-0.016456879858944916,L_h=0.11134966817700369,A_h=0.3473831089690604,K_h=-0.38124982832243476,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.064)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.064)"""),
+)
+
+entry(
+ index = 337,
+ label = "C=CC=C + [CH]=C=C <=> C=C=C + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23527840354240356,B_g=-0.19608244068905015,E_g=-0.1417197587140232,L_g=0.13339968805036953,A_g=0.35549792678814823,K_g=0.10602775513575916,S_h=-0.12952187537982082,B_h=-0.329855982134879,E_h=-0.000718384955980669,L_h=0.19864810124612398,A_h=0.5283648046650475,K_h=-0.9449254527115526,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.106)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.106)"""),
+)
+
+entry(
+ index = 338,
+ label = "C=CC=C + [CH]=C <=> C=C + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23652458152726802,B_g=-0.21547150404179374,E_g=-0.20641838750469038,L_g=0.14616934716586263,A_g=0.3805461042839231,K_g=0.02271709161820503,S_h=-0.11875343149884528,B_h=-0.2942226222264909,E_h=-0.058387103820265594,L_h=0.14883763414521942,A_h=0.5590720963038538,K_h=-0.9813285107870628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09300000000000001, MAE_h(kcal/mol): 0.07200000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09300000000000001, MAE_h(kcal/mol): 0.07200000000000001)"""),
+)
+
+entry(
+ index = 339,
+ label = "C=CC=C + [CH]=C <=> C=C + [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23326985784915152,B_g=-0.20523085318970194,E_g=-0.19574523958726334,L_g=0.1523929066314503,A_g=0.361354963317011,K_g=0.217010900376038,S_h=-0.11609247497822302,B_h=-0.2660589997685549,E_h=-0.050176990037629376,L_h=0.17630486302337825,A_h=0.5292957729243286,K_h=-0.72696159270003,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 340,
+ label = "C=CC=C + [H] <=> [H][H] + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0961462967616577,B_g=0.11483163607588959,E_g=-0.10069118117704559,L_g=0.09742179658146011,A_g=0.01763708371519887,K_g=1.0983153017308944,S_h=-0.002939513952533146,B_h=0.26896186142741557,E_h=0.07319463046394876,L_h=0.13440396089699558,A_h=-0.01743183087063297,K_h=-0.1445199939506009,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 341,
+ label = "C=CC=C + [OH] <=> O + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08937295289098282,B_g=-1.178078023220952,E_g=0.17365123696149048,L_g=0.07236628862695066,A_g=0.8740472472077048,K_g=0.37429322298339757,S_h=0.30252070151394106,B_h=-1.8484851267843407,E_h=0.3306256803020012,L_h=0.0676967864130763,A_h=1.3186175780787215,K_h=-0.6404621796329699,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.375, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 342,
+ label = "C=CC=C + [OH] <=> O + [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04857895003350912,B_g=-1.153704247928751,E_g=0.19482893224545123,L_g=0.09658612428572748,A_g=0.9927347045779396,K_g=0.5046874229526235,S_h=0.1900934559029664,B_h=-1.7495166034099021,E_h=0.34711188199588405,L_h=0.14314919816725005,A_h=1.5011899833200943,K_h=-0.5355193323899162,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.369, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.369, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 343,
+ label = "C=CC=C + [O] <=> [OH] + C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.651963669387395,B_g=0.1436330084437268,E_g=0.16899639566508515,L_g=-0.1553470815014524,A_g=0.9626505019315654,K_g=2.170145656054052,S_h=0.9800750023434638,B_h=-0.06832720586424301,E_h=0.17318941806121718,L_h=-0.06258745667513216,A_h=1.0248347833763003,K_h=1.450631809428271,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.261, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.25)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.261, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.25)"""),
+)
+
+entry(
+ index = 344,
+ label = "C=CC=C + [O] <=> [OH] + [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8368671605063378,B_g=0.43509937818604705,E_g=0.2118722488031559,L_g=-0.2283071372858973,A_g=0.6676215292442799,K_g=3.0328820054344288,S_h=1.1243384302383574,B_h=0.4650369716577312,E_h=0.29964716169001837,L_h=-0.19188208783418356,A_h=0.5307618646712279,K_h=2.3856244905545805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.23800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.23800000000000002)"""),
+)
+
+entry(
+ index = 345,
+ label = "C=CC=O + CC(C)O[O] <=> CC(C)OO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7548906404784622,B_g=-0.15122003323393082,E_g=-0.6883960492978433,L_g=0.38619055750948555,A_g=-0.11581391754631215,K_g=-1.2918833950740123,S_h=-0.9010526571855902,B_h=0.25616288047698443,E_h=-0.32578757753723336,L_h=0.3820195264895569,A_h=-0.06795335246878369,K_h=-2.3651358583916626,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38299999999999995, MAE_h(kcal/mol): 0.307)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38299999999999995, MAE_h(kcal/mol): 0.307)"""),
+)
+
+entry(
+ index = 346,
+ label = "C=CC=O + CCCO[O] <=> CCCOO + C=C[C]=O",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7946583791131063,B_g=-0.1762022366010953,E_g=-0.6930288992180452,L_g=0.39665112212361225,A_g=-0.03023814227979857,K_g=-1.2634045628904929,S_h=-0.9033470907694878,B_h=0.16388706592714097,E_h=-0.3628137246051758,L_h=0.3923774646814007,A_h=0.019630968490981955,K_h=-2.3346558109736257,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.365, MAE_h(kcal/mol): 0.295)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.365, MAE_h(kcal/mol): 0.295)"""),
+)
+
+entry(
+ index = 347,
+ label = "C=CC=O + CO[O] <=> COO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8600827233184887,B_g=-0.2872806778049226,E_g=-0.6432477539520786,L_g=0.4168685273133539,A_g=-0.1111297544149688,K_g=-1.173899661742289,S_h=-0.975354186918448,B_h=-0.005739749189110855,E_h=-0.31864771072983367,L_h=0.3822027879579193,A_h=0.06697840145709565,K_h=-2.270111121816383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.335, MAE_h(kcal/mol): 0.28)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.335, MAE_h(kcal/mol): 0.28)"""),
+)
+
+entry(
+ index = 348,
+ label = "C=CC=O + C[O] <=> CO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8327034599451438,B_g=-0.10069118117704559,E_g=-0.49005582731856817,L_g=0.35945637450477635,A_g=0.44289898627955143,K_g=-0.5661973021937845,S_h=-0.9599235712823327,B_h=0.12614986436195239,E_h=-0.24168522447635363,L_h=0.34410639391474046,A_h=1.307423967591145,K_h=-1.5771115444332757,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24600000000000002, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24600000000000002, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 349,
+ label = "C=CC=O + [CH3] <=> C + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39033959715321065,B_g=-0.11795441149678515,E_g=-0.3686561002165697,L_g=0.24110611823632838,A_g=-0.0952739721722526,K_g=-0.011692081681522111,S_h=-0.45169553676094737,B_h=0.12447851977048713,E_h=-0.06520443044334745,L_h=0.24993932101139682,A_h=-0.09912979346659781,K_h=-1.145706717449415,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 350,
+ label = "C=CC=O + [CH]=C <=> C=C + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5236953024511731,B_g=-0.1308486884107647,E_g=-0.4274317183497635,L_g=0.2878011403750719,A_g=-0.10440039329670088,K_g=-0.31220423750221116,S_h=-0.5820017712253593,B_h=0.0855391229728411,E_h=-0.1349830671370208,L_h=0.2685586861970182,A_h=0.03678424192970405,K_h=-1.35635477964391,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.138, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.207)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.138, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.207)"""),
+)
+
+entry(
+ index = 351,
+ label = "C=CC=O + [OH] <=> O + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5906003993209239,B_g=-1.567340042940192,E_g=0.07155993816615602,L_g=0.35489682917191945,A_g=1.201308246950572,K_g=-0.4362575906660975,S_h=-0.9220764128361266,B_h=-2.0246580415504978,E_h=0.5969925593374049,L_h=0.4199986331929839,A_h=2.201754594117202,K_h=-1.7283828908783478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.348)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.348)"""),
+)
+
+entry(
+ index = 352,
+ label = "C=CC=O + [O]O <=> OO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4054769944399461,B_g=-1.9833582370403442,E_g=-0.2938560992897661,L_g=0.3963432428567634,A_g=0.27860141466327865,K_g=-1.127446544741784,S_h=-0.48993853997881626,B_h=-2.0339017500146985,E_h=0.02833222300882944,L_h=0.38366887970481867,A_h=0.40532305480652175,K_h=-2.2948734114215124,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33899999999999997, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.413)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33899999999999997, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.413)"""),
+)
+
+entry(
+ index = 353,
+ label = "C=CC=O + [O][O] <=> [O]O + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18907452213887138,B_g=0.6517364251666257,E_g=-0.26597836472247544,L_g=0.07301869945432085,A_g=-0.585747635638687,K_g=0.7134075744999457,S_h=-0.05531564161051151,B_h=1.4346220875521305,E_h=0.22704629838356388,L_h=0.17868726211208966,A_h=-0.9676205529535542,K_h=-0.5218626877675491,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.682, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.682, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 354,
+ label = "C=CC=O + [O] <=> [OH] + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.031806860448980845,B_g=0.4613717422904829,E_g=-0.24546041072461938,L_g=0.10856409385789498,A_g=0.01742450041189847,K_g=1.0791094998465132,S_h=-0.061605175204709615,B_h=0.9688813918558875,E_h=0.11865080507656232,L_h=0.1430319108274981,A_h=0.01861936518562142,K_h=0.16178322427034045,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.179)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.179)"""),
+)
+
+entry(
+ index = 355,
+ label = "C=CCC + CC(C)O[O] <=> CC(C)OO + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5647312104468852,B_g=1.1608880974885576,E_g=2.4509975215488216,L_g=-0.8563002066114884,A_g=-3.176969502319695,K_g=2.7273338244631407,S_h=-0.274503688230695,B_h=0.9202877809049093,E_h=2.5053602035238485,L_h=-0.8441096537360205,A_h=-3.063816541294005,K_h=1.9246412625770262,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.548, MAE_g(kcal/mol): 1.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5659999999999998, MAE_h(kcal/mol): 1.101)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.548, MAE_g(kcal/mol): 1.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5659999999999998, MAE_h(kcal/mol): 1.101)"""),
+)
+
+entry(
+ index = 356,
+ label = "C=CCC + CO[O] <=> COO + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16137271858120864,B_g=-0.20252591391667268,E_g=-0.11924457223405656,L_g=0.09987016979878198,A_g=0.6614272916136302,K_g=-0.030509369252974938,S_h=0.1119727571694359,B_h=-0.521818705015142,E_h=-0.0870345365546784,L_h=0.09847005218049312,A_h=0.8596722176293567,K_h=-0.9083904463788215,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 357,
+ label = "C=CCC + CO[O] <=> COO + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2519405362459144,B_g=-0.08943892701959329,E_g=-0.18075445147521774,L_g=0.11375405864191857,A_g=0.3872241521910495,K_g=0.3041773851879373,S_h=0.0014074480770233514,B_h=-0.3049324224375905,E_h=-0.06268275263868062,L_h=0.1039532353138966,A_h=0.4576845215470311,K_h=-0.44298695178436537,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.267)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.267)"""),
+)
+
+entry(
+ index = 358,
+ label = "C=CCC + C[O] <=> CO + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0015393963342442906,B_g=-0.2695556285849098,E_g=0.06889898164553375,L_g=0.006047628455959714,A_g=1.0518915065653274,K_g=0.5950793096077013,S_h=0.14638193046916306,B_h=-0.5124503787524554,E_h=0.16780153089136218,L_h=0.04283920084439826,A_h=1.7845122134083886,K_h=-0.28154092861581176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.153)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.153)"""),
+)
+
+entry(
+ index = 359,
+ label = "C=CCC + C[O] <=> CO + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08600827233184886,B_g=-0.1759749923803259,E_g=-0.05898820143649432,L_g=0.0663992952170704,A_g=0.7748588100712309,K_g=0.33636542949111203,S_h=0.00974217965814601,B_h=-0.32512050579239415,E_h=0.028962642459996156,L_h=0.12354755151120607,A_h=1.2834606979880754,K_h=-0.64563015304079,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 360,
+ label = "C=CCC + [CH2]C=C <=> C=CC + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03379341476602943,B_g=-0.04411470066420067,E_g=-0.2752367341041447,L_g=0.06503582989245403,A_g=0.4813179205070482,K_g=-0.014609604257851768,S_h=0.1282463755600184,B_h=-0.0392765978994329,E_h=-0.11549870782072875,L_h=0.14509176973189164,A_h=0.3257289338673574,K_h=-1.1754390580765333,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16399999999999998, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.182, MAE_h(kcal/mol): 0.11900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16399999999999998, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.182, MAE_h(kcal/mol): 0.11900000000000001)"""),
+)
+
+entry(
+ index = 361,
+ label = "C=CCC + [CH3] <=> C + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.019044531792222225,B_g=-0.10606440742943163,E_g=-0.18893524342291595,L_g=0.08937295289098282,A_g=0.3197399490812737,K_g=0.46174559568594226,S_h=0.11367342359583912,B_h=-0.10641626944868746,E_h=-0.02995958484788769,L_h=0.12005092269485118,A_h=0.3280087065337859,K_h=-0.5521594737172235,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 362,
+ label = "C=CCC + [CH3] <=> C + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0009676205529535541,B_g=-0.11964041700571937,E_g=-0.1954960039902904,L_g=0.09515668483250064,A_g=0.37069396774475966,K_g=0.5228522996967061,S_h=0.1061083901818386,B_h=-0.10446636742531136,E_h=-0.02202802849716235,L_h=0.1447472381713703,A_h=0.3749163119758297,K_h=-0.511101574345308,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 363,
+ label = "C=CCC + [H] <=> [H][H] + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08565641031259302,B_g=0.12210345114051023,E_g=-0.1030662498070225,L_g=0.06628933833605295,A_g=0.012183222416733386,K_g=1.3156340813737812,S_h=0.16484002556262553,B_h=0.3063691923495518,E_h=0.15025974313971177,L_h=0.11356346671482168,A_h=-0.0872324589405098,K_h=0.1447545686301048,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.307, MAE_h(kcal/mol): 0.188)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.307, MAE_h(kcal/mol): 0.188)"""),
+)
+
+entry(
+ index = 364,
+ label = "C=CCC + [H] <=> [H][H] + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0460059590177008,B_g=0.10736922908417204,E_g=-0.10050058924994869,L_g=0.07397898954853992,A_g=0.01933041968286759,K_g=1.31157300723487,S_h=0.144314741106035,B_h=0.26229114397902364,E_h=0.11819631663502356,L_h=0.1386922792566761,A_h=-0.11445778268043026,K_h=0.14062752036258322,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.325, MAE_h(kcal/mol): 0.2)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.325, MAE_h(kcal/mol): 0.2)"""),
+)
+
+entry(
+ index = 365,
+ label = "C=CCC + [OH] <=> O + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6331976950270837,B_g=-2.2583384050887814,E_g=0.5357465766106856,L_g=-0.02766515126399025,A_g=2.1291097480583403,K_g=0.7597727259956368,S_h=1.3196365118428164,B_h=-4.186534940152038,E_h=0.7481539489014598,L_h=0.042575304329956376,A_h=3.0884908653943204,K_h=-0.45847621109035674,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.445, MAE_g(kcal/mol): 0.322, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.706, MAE_h(kcal/mol): 0.55)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.445, MAE_g(kcal/mol): 0.322, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.706, MAE_h(kcal/mol): 0.55)"""),
+)
+
+entry(
+ index = 366,
+ label = "C=CCC + [OH] <=> O + C=[C]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.33099953369746044,B_g=-1.5798971187523845,E_g=0.27231188106908055,L_g=0.025524657313517236,A_g=1.1668330995222345,K_g=0.5410758201106647,S_h=0.7235895816821616,B_h=-2.6455112440686896,E_h=0.44913720666260804,L_h=0.017094629768846122,A_h=1.7797180933960282,K_h=-0.48766609777112235,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.376)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.376)"""),
+)
+
+entry(
+ index = 367,
+ label = "C=CCC + [OH] <=> O + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.37419792701984905,B_g=-2.7688168904416575,E_g=0.8979078903884913,L_g=-0.02367005125368959,A_g=1.2895816310313801,K_g=0.9206029906304928,S_h=1.1111582654337326,B_h=-5.849852679302995,E_h=0.8912518338575685,L_h=0.19954974767046701,A_h=2.60043625331027,K_h=-0.6883007533342949,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5579999999999999, MAE_g(kcal/mol): 0.44, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.965, MAE_h(kcal/mol): 0.7709999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5579999999999999, MAE_g(kcal/mol): 0.44, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.965, MAE_h(kcal/mol): 0.7709999999999999)"""),
+)
+
+entry(
+ index = 368,
+ label = "C=CCC + [OH] <=> O + [CH]=CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11801305516666113,B_g=-1.2011176550234748,E_g=0.2659563733462719,L_g=0.06608408549148705,A_g=1.0438353324161156,K_g=0.6294591610724904,S_h=0.24465406026382475,B_h=-1.8576848524961338,E_h=0.4614597077952969,L_h=0.10742787275404801,A_h=1.6629658771317002,K_h=-0.3700708787523274,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.324)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.324)"""),
+)
+
+entry(
+ index = 369,
+ label = "C=CCC + [O]O <=> OO + [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17205319695737023,B_g=-4.156340780624647,E_g=2.4517232369635367,L_g=-0.3365340300420054,A_g=-1.472828438476327,K_g=1.1009689277927823,S_h=0.8702060868308286,B_h=-7.499227885940939,E_h=2.48808231228664,L_h=-0.14204229889834105,A_h=-0.7934488534219144,K_h=-0.7270129059111715,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.25, MAE_g(kcal/mol): 0.948, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.71, MAE_h(kcal/mol): 1.3119999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.25, MAE_g(kcal/mol): 0.948, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.71, MAE_h(kcal/mol): 1.3119999999999998)"""),
+)
+
+entry(
+ index = 370,
+ label = "C=CCC + [O][O] <=> [O]O + C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5489633937089831,B_g=0.2523583723937807,E_g=-0.11077789239571295,L_g=-0.050653469855371655,A_g=0.1942571564641605,K_g=1.1317495240189335,S_h=0.5789449699330742,B_h=0.5410684896519302,E_h=0.19143492985137928,L_h=0.10511877825268157,A_h=-0.21665903835678216,K_h=-0.009859466997897956,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.511, MAE_h(kcal/mol): 0.316)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.511, MAE_h(kcal/mol): 0.316)"""),
+)
+
+entry(
+ index = 371,
+ label = "C=CCC + [O] <=> [OH] + C=C[CH]C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8183944044954065,B_g=0.21039882659752204,E_g=0.1579420638934642,L_g=-0.19565727408244932,A_g=0.733602988313484,K_g=2.1383461260638064,S_h=1.1025229850444955,B_h=0.11052132634000558,E_h=0.27115366858903006,L_h=-0.14746683836186855,A_h=0.7394013811724709,K_h=1.4256789278960447,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.306, MAE_h(kcal/mol): 0.252)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.306, MAE_h(kcal/mol): 0.252)"""),
+)
+
+entry(
+ index = 372,
+ label = "C=CCO + [CH3] <=> C + C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13201423134954968,B_g=0.0785458653401313,E_g=-0.28566797688333334,L_g=0.11826229076363401,A_g=0.17933234248072535,K_g=0.336321446738705,S_h=-0.005431869922261997,B_h=0.17344598411692458,E_h=-0.11528612451742837,L_h=0.08452018920874606,A_h=0.2328520217012852,K_h=-0.5731612379915564,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.091, MAE_h(kcal/mol): 0.071)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.091, MAE_h(kcal/mol): 0.071)"""),
+)
+
+entry(
+ index = 373,
+ label = "C=CCO + [H] <=> [H][H] + C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17733112724620778,B_g=0.6049094547706613,E_g=-0.27511211630565824,L_g=0.12031481920929306,A_g=-0.3356763663700693,K_g=1.0346575980805257,S_h=-0.18779902231906898,B_h=1.0889249840920041,E_h=-0.026448295114063814,L_h=0.13727017026218374,A_h=-0.6500650805751604,K_h=-0.14075946861980412,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.222)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.222)"""),
+)
+
+entry(
+ index = 374,
+ label = "C=CCO + [OH] <=> O + C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09075107913306818,B_g=-1.7146749330448392,E_g=0.3761038462908182,L_g=0.17777828522901207,A_g=1.2916194985595704,K_g=0.20183685079563002,S_h=0.3242481812029891,B_h=-4.014459751818464,E_h=0.4838029460180425,L_h=0.3526537087991635,A_h=2.2805423645955716,K_h=-1.4309641886436166,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.212, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.627, MAE_h(kcal/mol): 0.47200000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.212, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.627, MAE_h(kcal/mol): 0.47200000000000003)"""),
+)
+
+entry(
+ index = 375,
+ label = "C=CCO + [O][O] <=> [O]O + C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1829022758844252,B_g=1.322964540108278,E_g=-0.27829353539642976,L_g=-0.016332262060458475,A_g=-0.5120398730633237,K_g=1.0634369790721594,S_h=0.07744629652995681,B_h=2.100147105598344,E_h=0.09890254924582843,L_h=0.06334249392478532,A_h=-1.249931179736488,K_h=0.11791042874437817,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.39799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.39799999999999996)"""),
+)
+
+entry(
+ index = 376,
+ label = "C=CO + CO[O] <=> COO + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5820824062714388,B_g=-3.0351177953484503,E_g=0.012982242418793517,L_g=0.4304738587245796,A_g=0.9185138098911613,K_g=-1.2521816305679785,S_h=-0.09124955032701394,B_h=-5.949862127817732,E_h=-0.006656056530922933,L_h=0.5889363851881931,A_h=2.1129094342551027,K_h=-3.163525441000628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.843, MAE_h(kcal/mol): 0.6509999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.843, MAE_h(kcal/mol): 0.6509999999999999)"""),
+)
+
+entry(
+ index = 377,
+ label = "C=CO + [CH3] <=> C + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5126336402208177,B_g=-2.94105334886739,E_g=0.18041725037343084,L_g=0.36642764076128265,A_g=0.5901972240905266,K_g=-0.5199421075791109,S_h=0.011809369021274057,B_h=-5.855665733079451,E_h=0.17997742284936105,L_h=0.5144809158219109,A_h=1.7568177403094603,K_h=-2.4097050474974018,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8240000000000001, MAE_h(kcal/mol): 0.643)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8240000000000001, MAE_h(kcal/mol): 0.643)"""),
+)
+
+entry(
+ index = 378,
+ label = "C=CO + [H] <=> [H][H] + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6121886002940163,B_g=-2.727986235290511,E_g=0.1436549998199303,L_g=0.42587766109805025,A_g=0.29613587195619456,K_g=-0.022805057123018994,S_h=-0.20433653722409334,B_h=-5.357399791978246,E_h=0.22860768609401164,L_h=0.5999100819137345,A_h=1.3539137368853227,K_h=-2.1616496543807706,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.748, MAE_h(kcal/mol): 0.565)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.748, MAE_h(kcal/mol): 0.565)"""),
+)
+
+entry(
+ index = 379,
+ label = "C=CO + [H] <=> [H][H] + [CH]=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16961215419878287,B_g=0.42449953485596487,E_g=-0.18480086469665985,L_g=0.11624641461164743,A_g=-0.0790223451578736,K_g=1.1119939377294652,S_h=-0.12569537592041358,B_h=0.6947442265619174,E_h=0.03175554723783937,L_h=0.12463978986264605,A_h=0.010577851953878626,K_h=-0.05522034564696305,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.245, MAE_h(kcal/mol): 0.153)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.245, MAE_h(kcal/mol): 0.153)"""),
+)
+
+entry(
+ index = 380,
+ label = "C=CO + [OH] <=> O + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29002959983035886,B_g=-4.681326243813092,E_g=0.9498515209811343,L_g=0.329811999382472,A_g=2.6429162616766777,K_g=-0.9562730028325535,S_h=0.08585433269842443,B_h=-8.632208927027266,E_h=1.1581904886742629,L_h=0.5639761731972321,A_h=4.766704096693774,K_h=-2.9412805930881594,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6709999999999999, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.328, MAE_h(kcal/mol): 1.028)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6709999999999999, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.328, MAE_h(kcal/mol): 1.028)"""),
+)
+
+entry(
+ index = 381,
+ label = "C=CO + [O][O] <=> [O]O + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2239528447976063,B_g=-2.6554586765714014,E_g=0.022585143360984092,L_g=0.3618021212998153,A_g=0.5852858167384137,K_g=-0.2902715049685972,S_h=0.14770141304137244,B_h=-5.187076583282217,E_h=0.14637460001042854,L_h=0.6338574363131884,A_h=1.3557976647800885,K_h=-2.290350518382328,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.569)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.569)"""),
+)
+
+entry(
+ index = 382,
+ label = "C=CO + [O] <=> [OH] + C=C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10277303145764263,B_g=-2.471684076097571,E_g=0.2510462202803058,L_g=0.2230731897494667,A_g=0.8989121632351172,K_g=0.6668811529120957,S_h=0.6205013404989356,B_h=-5.10364863242491,E_h=0.32844120359912116,L_h=0.43943900975686895,A_h=1.6509365943483911,K_h=-0.9877060098860748,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7929999999999999, MAE_h(kcal/mol): 0.612)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7929999999999999, MAE_h(kcal/mol): 0.612)"""),
+)
+
+entry(
+ index = 383,
+ label = "C=O + CC(=O)CO[O] <=> CC(=O)COO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.41044704546193483,B_g=0.08611089875413182,E_g=-0.2712489645525785,L_g=0.21294982623712685,A_g=-0.03644704082791721,K_g=-0.007652998918814474,S_h=-0.4098239564695026,B_h=0.29244132075400825,E_h=-0.14531168349392654,L_h=0.20347154309342272,A_h=0.45392399621623436,K_h=-0.9802509333530918,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 384,
+ label = "C=O + CC(=O)O[O] <=> CC(=O)OO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11919325902291507,B_g=-0.10045660649754172,E_g=-0.33668796967542985,L_g=0.10968565404427294,A_g=0.6562739791232792,K_g=0.09871195731873152,S_h=0.2996691530662219,B_h=0.0917920042733667,E_h=-0.17080701897250578,L_h=0.033529518251587544,A_h=0.7099695893534669,K_h=-0.5366922057874357,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 385,
+ label = "C=O + C[O] <=> CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7038999695213036,B_g=0.1475694647841515,E_g=-0.345235284559853,L_g=0.291920858183859,A_g=0.7187001657062523,K_g=-0.12693422344654348,S_h=-0.7710103192356202,B_h=0.4656820520263669,E_h=-0.22477385617586992,L_h=0.2756472397932765,A_h=1.5836283222482435,K_h=-1.0112367824238089,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14300000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14300000000000002)"""),
+)
+
+entry(
+ index = 386,
+ label = "C=O + [CH3] <=> C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.46156233421757986,B_g=-0.08103822130986016,E_g=-0.28313896861993204,L_g=0.2311440248161475,A_g=-0.024564367219298184,K_g=0.15915892004339063,S_h=-0.45014147950923405,B_h=0.09025260793912242,E_h=-0.086821953251378,L_h=0.21568408734509412,A_h=0.2324341855534189,K_h=-0.896280528549433,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 387,
+ label = "C=O + [OH] <=> O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.023728694923565562,B_g=-1.4010192647131978,E_g=0.3374943201362245,L_g=0.16883512557292618,A_g=2.202538953201793,K_g=0.18708063736308828,S_h=-0.027327950162203407,B_h=-1.7979122919750483,E_h=0.7131729998204418,L_h=0.17785892027509156,A_h=3.1705626813857446,K_h=-0.7663994606916219,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.373, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.349)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.373, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.349)"""),
+)
+
+entry(
+ index = 388,
+ label = "C=O + [O]OC=O <=> O=COO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3403825208776161,B_g=-0.13721152659230776,E_g=-0.31663916503658157,L_g=0.08743038132634122,A_g=0.5716511634922501,K_g=0.44451168720114065,S_h=0.45780913934551754,B_h=0.2039113706174925,E_h=-0.08150737066886794,L_h=0.04721548470889275,A_h=0.46499298890532426,K_h=-0.23722830556577965,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 389,
+ label = "C=O + [O]O <=> OO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17844535697385128,B_g=-1.7980295793148005,E_g=-0.13294519960883072,L_g=0.2963631161769639,A_g=0.6460040064362493,K_g=-0.6184488120532765,S_h=-0.1361192882408678,B_h=-1.817697200099455,E_h=0.06974931485873535,L_h=0.2621811870980062,A_h=0.903984840679389,K_h=-1.624700882537628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.306)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.306)"""),
+)
+
+entry(
+ index = 390,
+ label = "C=O + [O][O] <=> [O]O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.23157652188148276,B_g=0.8797356831856741,E_g=-0.2152809121146968,L_g=0.02528275217527885,A_g=-0.35200129797179325,K_g=0.9630610076206971,S_h=0.092195179503764,B_h=1.6722975511007143,E_h=0.16396770097322044,L_h=0.09868263548379354,A_h=-0.5986932257638081,K_h=-0.0785312044226623,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.545, MAE_h(kcal/mol): 0.324)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.545, MAE_h(kcal/mol): 0.324)"""),
+)
+
+entry(
+ index = 391,
+ label = "C=[C]C + [CH]=O <=> C=CC + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4880179597903781,B_g=-0.3722700163726764,E_g=-0.15725300077242152,L_g=0.215904001107129,A_g=0.3020662130724023,K_g=-0.012762328656758618,S_h=-0.3963065905630909,B_h=-0.4821902450964533,E_h=-0.03990701735059961,L_h=0.20411662346205842,A_h=0.7203568493802486,K_h=-1.1123384692899865,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 392,
+ label = "C=[C]C=C + OO <=> C=CC=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4858408135462326,B_g=-1.8530300111997287,E_g=-0.09513469345629717,L_g=0.2962238374610085,A_g=0.27509745538818925,K_g=-0.47584939829111367,S_h=0.15723833985495253,B_h=-4.6193472152129225,E_h=-0.14546562312735098,L_h=0.4172130588738753,A_h=1.2660361975761774,K_h=-2.368119355096603,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.494)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.494)"""),
+)
+
+entry(
+ index = 393,
+ label = "C=[C]C=C + [CH]=O <=> C=CC=C + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5174717429855855,B_g=-0.4453033767444663,E_g=-0.16067632500143145,L_g=0.21470180587467155,A_g=0.3511802865935297,K_g=-0.11788110690944016,S_h=-0.40829922105272737,B_h=-0.6398170992643342,E_h=-0.05934006345575015,L_h=0.19143492985137928,A_h=0.7592376025080185,K_h=-1.1927682625248834,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.113)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.113)"""),
+)
+
+entry(
+ index = 394,
+ label = "C=[C]C=C + [O]O <=> C=CC=C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11043336083519162,B_g=-4.782061407742544,E_g=0.5314729191684741,L_g=0.29905339453252416,A_g=1.0794540314070347,K_g=-0.591252810148294,S_h=0.7698374458381008,B_h=-8.239501591702812,E_h=0.5493372471044423,L_h=0.49982732881165215,A_h=1.9483992793355296,K_h=-2.725420574733437,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6759999999999999, MAE_g(kcal/mol): 0.539, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.239, MAE_h(kcal/mol): 0.985)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6759999999999999, MAE_g(kcal/mol): 0.539, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.239, MAE_h(kcal/mol): 0.985)"""),
+)
+
+entry(
+ index = 395,
+ label = "C=[C]CO + OO <=> C=CCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.51558781509082,B_g=-4.741883163418768,E_g=0.1933115272874104,L_g=0.5449609632399478,A_g=0.37745265069796563,K_g=-1.4413147963767259,S_h=0.35391454770149694,B_h=-9.921753905764975,E_h=0.1577514719663673,L_h=0.8513081642132962,A_h=1.862039144984425,K_h=-4.210505540213842,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.39799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.35, MAE_h(kcal/mol): 1.058)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.39799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.35, MAE_h(kcal/mol): 1.058)"""),
+)
+
+entry(
+ index = 396,
+ label = "CC(=O)O[O] + [O]O <=> CC(=O)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6526527325084377,B_g=-5.181080268037399,E_g=0.14180039376010267,L_g=0.5941336804309513,A_g=1.0083192598474795,K_g=-2.0010612948841535,S_h=-0.06442007135875631,B_h=-8.564805358963572,E_h=0.11527146359995938,L_h=0.6897961669161321,A_h=2.3551884258889504,K_h=-3.985460457064796,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.618, MAE_g(kcal/mol): 0.49700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2590000000000001, MAE_h(kcal/mol): 1.0270000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.618, MAE_g(kcal/mol): 0.49700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2590000000000001, MAE_h(kcal/mol): 1.0270000000000001)"""),
+)
+
+entry(
+ index = 397,
+ label = "CC(C)(C)O + CO[O] <=> COO + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.996018750090994,B_g=-1.7242705035282953,E_g=-0.4608952624727406,L_g=0.5563891484070281,A_g=-0.4816771129850385,K_g=-1.81012483622672,S_h=-0.8212899356955325,B_h=-3.5721472022376726,E_h=-0.3426769544615136,L_h=0.7209799383726807,A_h=-0.36780576700336803,K_h=-3.6434139220544495,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5329999999999999, MAE_h(kcal/mol): 0.41700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5329999999999999, MAE_h(kcal/mol): 0.41700000000000004)"""),
+)
+
+entry(
+ index = 398,
+ label = "CC(C)(C)O + CO[O] <=> COO + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6309179223606551,B_g=-1.7931988070087672,E_g=-0.21119784659958216,L_g=0.3669334424139629,A_g=0.1551564895743555,K_g=-0.9858074210738402,S_h=-0.21210682348265975,B_h=-4.000260653249745,E_h=-0.2699368124391036,L_h=0.5548497520727839,A_h=0.7069787621897922,K_h=-2.649667614171149,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.409)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.409)"""),
+)
+
+entry(
+ index = 399,
+ label = "CC(C)(C)O + C[CH2] <=> CC + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21863093175636175,B_g=-1.7365050391561703,E_g=0.006905292127895818,L_g=0.24046103786769274,A_g=-0.23530772537734157,K_g=-0.3216092160585703,S_h=0.14665315744233942,B_h=-3.837531799802654,E_h=0.19673485151642034,L_h=0.3999791503890737,A_h=-0.09414508152714011,K_h=-1.9477102162144868,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.405)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.405)"""),
+)
+
+entry(
+ index = 400,
+ label = "CC(C)(C)O + C[CH2] <=> CC + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25707185736006205,B_g=0.052618032796216754,E_g=-0.3348187026981332,L_g=0.19617773665259858,A_g=-0.7321222356491156,K_g=-0.21648310734715423,S_h=-0.2638525316894714,B_h=0.32254018431785136,E_h=0.020884476934580874,L_h=0.1705577833755329,A_h=-1.3005846495918598,K_h=-1.189161676827511,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.212)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.212)"""),
+)
+
+entry(
+ index = 401,
+ label = "CC(C)(C)O + C[O] <=> CO + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9582668876083364,B_g=-1.870762390878476,E_g=-0.39309584963738137,L_g=0.5452908338830003,A_g=-0.8275428169960583,K_g=-1.4221749686209553,S_h=-0.7025291737379528,B_h=-3.846841482395465,E_h=-0.27052324913786335,L_h=0.6738744105448053,A_h=-0.9249792744949873,K_h=-3.2807687980001665,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.57, MAE_h(kcal/mol): 0.444)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.57, MAE_h(kcal/mol): 0.444)"""),
+)
+
+entry(
+ index = 402,
+ label = "CC(C)(C)O + C[O] <=> CO + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.669380839340559,B_g=-1.8037400066689733,E_g=-0.19065790122552265,L_g=0.39797060469582163,A_g=0.18634759148963861,K_g=-0.8500326643934937,S_h=-0.3386012194051335,B_h=-3.935393423908184,E_h=-0.1969181129847828,L_h=0.5747006343258007,A_h=1.1027062465128576,K_h=-2.525350364492821,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.525, MAE_h(kcal/mol): 0.382)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.525, MAE_h(kcal/mol): 0.382)"""),
+)
+
+entry(
+ index = 403,
+ label = "CC(C)(C)O + [CH2]O <=> CO + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4029699775527483,B_g=-1.2891418035073103,E_g=0.11958910379457789,L_g=0.25274688670670903,A_g=0.16796280098352112,K_g=-0.32951145057435766,S_h=-0.1221620948103862,B_h=-3.197890631547948,E_h=0.3831264257584659,L_h=0.41731568529615815,A_h=0.6147176085574176,K_h=-1.9761597265630684,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.509, MAE_h(kcal/mol): 0.39399999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.509, MAE_h(kcal/mol): 0.39399999999999996)"""),
+)
+
+entry(
+ index = 404,
+ label = "CC(C)(C)O + [CH2]O <=> CO + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.568594362199965,B_g=-2.9862309660480926,E_g=0.029409800442800445,L_g=0.44930580721350144,A_g=-0.05289659022812763,K_g=-1.1382369799989631,S_h=-0.07762222753958474,B_h=-5.651725040627019,E_h=0.0016420227565272431,L_h=0.6155752722293538,A_h=0.5177942831699034,K_h=-3.100615444141177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.349, MAE_g(kcal/mol): 0.273, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.804, MAE_h(kcal/mol): 0.638)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.349, MAE_g(kcal/mol): 0.273, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.804, MAE_h(kcal/mol): 0.638)"""),
+)
+
+entry(
+ index = 405,
+ label = "CC(C)(C)O + [CH3] <=> C + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30790125822506165,B_g=-1.730464741158945,E_g=-0.06092344254240143,L_g=0.27547130878364856,A_g=0.09031125160899839,K_g=-0.08196918956914123,S_h=0.15056029194782614,B_h=-3.9995276073762946,E_h=-0.08370650828921694,L_h=0.45258985272655594,A_h=0.5434288973644381,K_h=-1.749150080473177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.158, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.523, MAE_h(kcal/mol): 0.389)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.158, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.523, MAE_h(kcal/mol): 0.389)"""),
+)
+
+entry(
+ index = 406,
+ label = "CC(C)(C)O + [CH3] <=> C + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14380893945335474,B_g=-1.4004694803081106,E_g=-0.17779294614648108,L_g=0.24031442869300276,A_g=0.37679290941186094,K_g=0.02640431236165683,S_h=0.2904181141432872,B_h=-3.1621326538410734,E_h=-0.12388475261299292,L_h=0.39665112212361225,A_h=0.8254096535043196,K_h=-1.506783123334515,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.325)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.325)"""),
+)
+
+entry(
+ index = 407,
+ label = "CC(C)(C)O + [CH]=O <=> C=O + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38310443438226244,B_g=-1.5019156987348095,E_g=-0.20611783869657604,L_g=0.360350690470385,A_g=0.3181199177009499,K_g=-0.42952822954782954,S_h=-0.20188816400677145,B_h=-3.3059562542118974,E_h=0.011714073057725602,L_h=0.5779260361689791,A_h=0.516328191423004,K_h=-1.9680155869090425,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5489999999999999, MAE_h(kcal/mol): 0.43200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5489999999999999, MAE_h(kcal/mol): 0.43200000000000005)"""),
+)
+
+entry(
+ index = 408,
+ label = "CC(C)(C)O + [CH]=O <=> C=O + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1882021975494663,B_g=-1.8104986896221793,E_g=-0.06194237630649646,L_g=0.2604145465429925,A_g=0.8952909166202759,K_g=0.13615594053454028,S_h=0.23139326041312036,B_h=-4.107175393892378,E_h=-0.10324951127538493,L_h=0.5126556315970213,A_h=1.8529053934012423,K_h=-1.505097117825581,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.38799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.38799999999999996)"""),
+)
+
+entry(
+ index = 409,
+ label = "CC(C)(C)O + [H] <=> [H][H] + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.487160296118442,B_g=-1.5885030773066837,E_g=-0.15253218534740573,L_g=0.3835369314475978,A_g=-0.6602544182161107,K_g=0.027855743191087162,S_h=-0.22221552607753062,B_h=-3.507360607942192,E_h=-0.01679408096073176,L_h=0.5851978512335999,A_h=-0.9093360755555714,K_h=-1.9774425568416054,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.452)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.452)"""),
+)
+
+entry(
+ index = 410,
+ label = "CC(C)(C)O + [H] <=> [H][H] + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0727034897287375,B_g=-0.7957872697582188,E_g=-0.3010032965559003,L_g=0.2027238363025041,A_g=-0.15069224020504704,K_g=0.694648930598369,S_h=0.4464102760133753,B_h=-1.3657157754478622,E_h=-0.1018127413634236,L_h=0.271270955928782,A_h=-0.518893851980078,K_h=-0.7487916988113609,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.26899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.26899999999999996)"""),
+)
+
+entry(
+ index = 411,
+ label = "CC(C)(C)O + [OH] <=> O + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6776935795454782,B_g=-2.926927554886015,E_g=-0.02046664078671457,L_g=0.5134473211403469,A_g=-0.5647825236580267,K_g=-1.055871945658159,S_h=-0.4445849917884856,B_h=-5.453707358832062,E_h=0.2042852240129519,L_h=0.6804718234058523,A_h=-0.6727895026520999,K_h=-3.056793961826357,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.613)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.613)"""),
+)
+
+entry(
+ index = 412,
+ label = "CC(C)(C)O + [OH] <=> O + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02747455933689334,B_g=-2.020655611081463,E_g=0.6536643358137983,L_g=0.11599717901467456,A_g=0.2813943194411218,K_g=0.5712406578031183,S_h=0.567208905499145,B_h=-4.485778926611659,E_h=0.779051832467363,L_h=0.29258059946996373,A_h=0.6368555939355974,K_h=-1.0666990332090105,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.5539999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.5539999999999999)"""),
+)
+
+entry(
+ index = 413,
+ label = "CC(C)(C)O + [O]O <=> OO + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8144506176962473,B_g=-2.1867051623352807,E_g=-0.2773259148434762,L_g=0.5259530837413982,A_g=-0.38161635125915966,K_g=-1.500053762216247,S_h=-0.578453829197863,B_h=-4.26266908456852,E_h=-0.1601118796788752,L_h=0.6958071430784194,A_h=-0.36876605709758714,K_h=-3.349293926250241,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.507)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.507)"""),
+)
+
+entry(
+ index = 414,
+ label = "CC(C)(C)O + [O]O <=> OO + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6667125523612023,B_g=-2.4303036365413377,E_g=0.11188479166462194,L_g=0.3691619018692499,A_g=0.5595412456628617,K_g=-0.7110178449524999,S_h=-0.26034857241438203,B_h=-4.879497865241473,E_h=0.04520693901564067,L_h=0.5883939312418404,A_h=1.3096011138352905,K_h=-2.4847029708100368,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.555)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.555)"""),
+)
+
+entry(
+ index = 415,
+ label = "CC(C)(C)O + [O][O] <=> [O]O + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29959584847887694,B_g=-1.4059453329827796,E_g=-0.2934016108482273,L_g=0.36310694295455564,A_g=-0.627949086573184,K_g=-0.5423733113066705,S_h=-0.13922740274429435,B_h=-3.0870247736474212,E_h=-0.09436499528917501,L_h=0.6371781341199154,A_h=-1.002762772126731,K_h=-2.4750560871154392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.49200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.49200000000000005)"""),
+)
+
+entry(
+ index = 416,
+ label = "CC(C)(C)O + [O][O] <=> [O]O + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7319756264744257,B_g=-0.4990209783508575,E_g=-0.45489161676918793,L_g=0.07463140037591011,A_g=-0.3476763273184403,K_g=0.48759279318377735,S_h=1.262033767107142,B_h=-0.8813044013548564,E_h=-0.13120788088875504,L_h=0.17484610173521342,A_h=-1.259424123797661,K_h=-0.7272181587557374,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.551, MAE_h(kcal/mol): 0.39899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.551, MAE_h(kcal/mol): 0.39899999999999997)"""),
+)
+
+entry(
+ index = 417,
+ label = "CC(C)(C)O + [O] <=> [OH] + CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2725757775835224,B_g=-1.3358588170222574,E_g=-0.11706009553117656,L_g=0.3454991810742948,A_g=-1.1505448202141828,K_g=4.184467750788911,S_h=-0.12019753186954112,B_h=-2.9175152458709213,E_h=0.1697587633734728,L_h=0.5495131781140703,A_h=-1.8093111553071908,K_h=2.2875942658981576,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.501)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.501)"""),
+)
+
+entry(
+ index = 418,
+ label = "CC(C)(C)O + [O] <=> [OH] + [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21199686660164233,B_g=-1.4441443534482414,E_g=-0.15896832811629374,L_g=0.20133837960168424,A_g=0.04081599423367719,K_g=0.6088898938634929,S_h=0.6790936971637671,B_h=-3.397535675181963,E_h=-0.13542289466109061,L_h=0.42250565008018176,A_h=-0.042538652036283896,K_h=-0.9186530886071167,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.39899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.243, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.39899999999999997)"""),
+)
+
+entry(
+ index = 419,
+ label = "CC(C)(C)O[O] + C=C(C)C <=> CC(C)(C)OO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32207836541757806,B_g=0.15616809287971603,E_g=0.2567199953408062,L_g=-0.03425523366630272,A_g=0.0981108597025028,K_g=-0.08276087911246686,S_h=-0.16246495693264865,B_h=0.10599110284208665,E_h=0.3521332462290142,L_h=0.005123990655413139,A_h=0.18543128414782656,K_h=-1.0382275314842255,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.331, MAE_h(kcal/mol): 0.249)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.331, MAE_h(kcal/mol): 0.249)"""),
+)
+
+entry(
+ index = 420,
+ label = "CC(C)(C)O[O] + C=CC=O <=> CC(C)(C)OO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7299450894049702,B_g=-0.10625499935652853,E_g=-0.7021259985075555,L_g=0.37268052206180824,A_g=-0.03978973001084766,K_g=-1.3480347089802565,S_h=-0.8441682974058964,B_h=0.28664292789502144,E_h=-0.38363222741114616,L_h=0.36886868351987,A_h=-0.014763543891276197,K_h=-2.4012823504114653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.289)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.289)"""),
+)
+
+entry(
+ index = 421,
+ label = "CC(C)(C)O[O] + C=CC <=> CC(C)(C)OO + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0027562524841707303,B_g=-0.01611967875715807,E_g=0.07518851523973186,L_g=-0.026440964655329316,A_g=0.32650596249321406,K_g=0.0878775393091455,S_h=0.17892183679159357,B_h=-0.09594104391709178,E_h=0.15174049580408008,L_h=0.02606711125986999,A_h=0.3641112158011817,K_h=-0.804334584642642,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 422,
+ label = "CC(C)(C)O[O] + C=O <=> CC(C)(C)OO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4732837377340399,B_g=0.09034790390267086,E_g=-0.5034632363439625,L_g=0.2561482195595155,A_g=0.21229741540975666,K_g=-0.5685137271538855,S_h=-0.4461537099576679,B_h=0.38725347402598753,E_h=-0.35909718202678603,L_h=0.2321776194977115,A_h=0.4251299543071316,K_h=-1.43346387507208,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 423,
+ label = "CC(C)(C)O[O] + CC=CC <=> CC(C)(C)OO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08036381910628647,B_g=0.021712818771578993,E_g=0.19016676049031137,L_g=-0.06914088678377214,A_g=0.44468028775203405,K_g=-0.1069733843125092,S_h=0.13899282806479046,B_h=-0.13558416475324953,E_h=0.22276531048261786,L_h=-0.014946805359638615,A_h=0.46876084469485546,K_h=-1.0981833534736736,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.218)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.218)"""),
+)
+
+entry(
+ index = 424,
+ label = "CC(C)(C)O[O] + CC=O <=> CC(C)(C)OO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.535856533491703,B_g=-0.05671575922880037,E_g=-0.6322300744741303,L_g=0.3053355976679878,A_g=0.06241152566550424,K_g=-0.9903962882416352,S_h=-0.5824342682906946,B_h=0.29719878847269654,E_h=-0.3675418704889261,L_h=0.30344433931448767,A_h=0.047230145626361734,K_h=-1.9980777981792133,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.171, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.287, MAE_h(kcal/mol): 0.22899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.171, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.287, MAE_h(kcal/mol): 0.22899999999999998)"""),
+)
+
+entry(
+ index = 425,
+ label = "CC(C)(C)O[O] + CCC=O <=> CC(C)(C)OO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.444812236009255,B_g=-0.03235664485406809,E_g=-0.6115361894666462,L_g=0.27002477794391755,A_g=0.1393886728364533,K_g=-0.9745111841639809,S_h=-0.44492952334900704,B_h=0.2892525712045022,E_h=-0.35032995338032813,L_h=0.256140889100781,A_h=0.10119698282972588,K_h=-1.8518717987196782,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.198)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.121, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.198)"""),
+)
+
+entry(
+ index = 426,
+ label = "CC(C)(C)O[O] + CCCC <=> CC(C)(C)OO + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09304551271696561,B_g=0.25858926231810286,E_g=0.4938383440255685,L_g=-0.17329204448350014,A_g=-0.2328813435362232,K_g=0.3039501409671679,S_h=0.1737831852187114,B_h=0.06562959704994825,E_h=0.641143912295278,L_h=-0.18089373019117314,A_h=-0.31136856520647854,K_h=-0.43820016223073904,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.389, MAE_h(kcal/mol): 0.298)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.389, MAE_h(kcal/mol): 0.298)"""),
+)
+
+entry(
+ index = 427,
+ label = "CC(C)(C)O[O] + CCCC <=> CC(C)(C)OO + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07090019688005134,B_g=0.19426448692289497,E_g=0.6568017721521628,L_g=-0.20511356584995,A_g=-0.2876545312003819,K_g=0.617510513335261,S_h=0.17782959844015356,B_h=0.0007037240385116757,E_h=0.7684886414309533,L_h=-0.16934825768434095,A_h=-0.37654367381488796,K_h=-0.0885006283015777,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.409, MAE_h(kcal/mol): 0.307)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.409, MAE_h(kcal/mol): 0.307)"""),
+)
+
+entry(
+ index = 428,
+ label = "CC(C)(C)O[O] + CCC <=> CC(C)(C)OO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15981866132949535,B_g=-0.08998871142468053,E_g=-0.004559545332856899,L_g=-0.05736083959743607,A_g=0.48881697979243827,K_g=0.1979443772076123,S_h=0.47692697572508475,B_h=-0.36042399505772993,E_h=0.07955013818675735,L_h=-0.059083497400042775,A_h=0.43178601083805457,K_h=-0.47296119754972205,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.205, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.205, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 429,
+ label = "CC(C)(C)O[O] + CCC <=> CC(C)(C)OO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.004354292488290994,B_g=-0.07430152973285777,E_g=-0.07403763321841589,L_g=0.011574794341770167,A_g=0.3541564528397353,K_g=-0.07361979707054957,S_h=0.23164249601009326,B_h=-0.19613375390019158,E_h=0.06757216861458987,L_h=0.024901568321085026,A_h=0.24730768632571254,K_h=-0.832644816275268,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 430,
+ label = "CC(C)(C)O[O] + CC <=> CC(C)(C)OO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10251646540193526,B_g=-0.0967473943778864,E_g=-0.07249823688417159,L_g=-0.009881458374101447,A_g=0.4618702134844287,K_g=0.2860198389025892,S_h=0.34313144290305236,B_h=-0.27440106180841206,E_h=0.025634614194534687,L_h=0.025165464835526903,A_h=0.38407938539395053,K_h=-0.5278956553060398,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.106)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.106)"""),
+)
+
+entry(
+ index = 431,
+ label = "CC(C)(C)O[O] + CO <=> CC(C)(C)OO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.025825206121631604,B_g=-1.4079832005109696,E_g=-0.5241717822689155,L_g=0.2944571969059948,A_g=-0.590233876384199,K_g=-1.077658069017083,S_h=0.7601099270974238,B_h=-2.474843503812139,E_h=-0.167134459146523,L_h=0.258281383051254,A_h=-1.1458313352479015,K_h=-2.451144130723512,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.609, MAE_h(kcal/mol): 0.498)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.609, MAE_h(kcal/mol): 0.498)"""),
+)
+
+entry(
+ index = 432,
+ label = "CC(C)(C)O[O] + C <=> CC(C)(C)OO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04874755058440254,B_g=-0.053717601606391246,E_g=-0.1165029806673548,L_g=0.0572728740926221,A_g=0.21305978311814433,K_g=0.31941007843822133,S_h=0.08907973454160295,B_h=-0.07188980880920838,E_h=0.0356040380734501,L_h=0.13031356492314647,A_h=0.07540842900176675,K_h=-0.7026757829126428,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 433,
+ label = "CC(C)(C)O[O] + OO <=> CC(C)(C)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8217370936783368,B_g=-1.302153367761042,E_g=-0.4074122355458533,L_g=0.40103473644684123,A_g=0.09539858997073905,K_g=-1.0307724549512425,S_h=-0.1861643300212762,B_h=-3.844950224041965,E_h=-0.44710666959315243,L_h=0.5290538677860902,A_h=1.1186280028841846,K_h=-2.9529726747696814,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.4)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.506, MAE_h(kcal/mol): 0.4)"""),
+)
+
+entry(
+ index = 434,
+ label = "CC(C)(C)O[O] + [O]O <=> CC(C)(C)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0768004053451468,B_g=-5.057290811387954,E_g=0.007990200020601319,L_g=0.7257007537976966,A_g=0.8039607312471826,K_g=-2.5171769030038567,S_h=-0.6080395606502913,B_h=-8.252674426048705,E_h=0.032056096045953726,L_h=0.8555085170681628,A_h=2.172462081014153,K_h=-4.678958505641849,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.478, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.219, MAE_h(kcal/mol): 0.992)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.478, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.219, MAE_h(kcal/mol): 0.992)"""),
+)
+
+entry(
+ index = 435,
+ label = "CC(C)(CO)O[O] + OO <=> CC(C)(CO)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3034663306906912,B_g=-4.399653366940059,E_g=0.24768887017990637,L_g=0.4436027103180631,A_g=0.3835442619063323,K_g=-1.067827923854123,S_h=0.7494367791799966,B_h=-9.660027207108506,E_h=0.1588510407765418,L_h=0.7559388960774951,A_h=1.9898750148553115,K_h=-3.956871668000259,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48200000000000004, MAE_g(kcal/mol): 0.366, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2770000000000001, MAE_h(kcal/mol): 0.996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48200000000000004, MAE_g(kcal/mol): 0.366, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2770000000000001, MAE_h(kcal/mol): 0.996)"""),
+)
+
+entry(
+ index = 436,
+ label = "CC(C)(CO)O[O] + [O]O <=> CC(C)(CO)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7287722160074508,B_g=-7.947712681776175,E_g=0.21640980275980926,L_g=0.8359361922470568,A_g=1.8212378116682169,K_g=-3.135911602947779,S_h=0.3923628037639317,B_h=-13.97550491640034,E_h=-0.11405460745003294,L_h=1.1643407435525055,A_h=4.230437057512939,K_h=-6.118711914308126,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9309999999999999, MAE_g(kcal/mol): 0.7340000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.963, MAE_h(kcal/mol): 1.5530000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9309999999999999, MAE_g(kcal/mol): 0.7340000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.963, MAE_h(kcal/mol): 1.5530000000000002)"""),
+)
+
+entry(
+ index = 437,
+ label = "CC(C)(O)CO[O] + OO <=> CC(C)(O)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03361015329766701,B_g=-2.4873639273306596,E_g=0.025751901534286633,L_g=0.28490560917494573,A_g=-0.8109100061274853,K_g=-0.5863414027961813,S_h=0.6192918148077438,B_h=-4.9030066464030035,E_h=0.37517287803153715,L_h=0.34371054914307764,A_h=-0.6448531244149334,K_h=-2.5240602037555493,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.778, MAE_h(kcal/mol): 0.606)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.778, MAE_h(kcal/mol): 0.606)"""),
+)
+
+entry(
+ index = 438,
+ label = "CC(C)(O)CO[O] + [O]O <=> CC(C)(O)COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1121112250692171,B_g=-5.111352944554867,E_g=0.07642736276586178,L_g=0.7199390132323823,A_g=0.6831547713026782,K_g=-2.524734605959123,S_h=-0.6446771934053054,B_h=-8.411554788660183,E_h=0.08935096151477934,L_h=0.8738346639044045,A_h=1.9785934388629214,K_h=-4.62927265633943,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.224, MAE_h(kcal/mol): 1.001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.224, MAE_h(kcal/mol): 1.001)"""),
+)
+
+entry(
+ index = 439,
+ label = "CC(C)=O + CO[O] <=> COO + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7007258808892667,B_g=-0.2469338329302532,E_g=-0.7141846031258025,L_g=0.35044724072008,A_g=-0.053658957936515275,K_g=-1.165337685940397,S_h=-0.6949128271128108,B_h=-0.0911249325285275,E_h=-0.532858375869294,L_h=0.3484826777792349,A_h=-0.028097648329325556,K_h=-2.3118360929331376,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.213)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.213)"""),
+)
+
+entry(
+ index = 440,
+ label = "CC(C)=O + C[O] <=> CO + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5708228216552519,B_g=-0.17565978265474255,E_g=-0.5715851893636396,L_g=0.3151070991610718,A_g=0.0598898478608374,K_g=-0.7324007930810266,S_h=-0.5502535544462545,B_h=-0.04308110598263665,E_h=-0.3728051398602947,L_h=0.32731964341274317,A_h=-0.02427847932865281,K_h=-1.8473928884329005,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 441,
+ label = "CC(C)=O + [CH3] <=> C + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.025077499330712946,B_g=-0.15251019397120225,E_g=-0.00501403377439569,L_g=0.034673069814169025,A_g=0.703210906400261,K_g=0.6148202349797007,S_h=0.1228438274726944,B_h=-0.2684120770223283,E_h=0.10534602247345096,L_h=0.07051168256712301,A_h=1.117645721413762,K_h=-0.4030359516813588,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.087, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.087, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 442,
+ label = "CC(C)=O + [H] <=> [H][H] + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09812552061997176,B_g=0.00021991376203489864,E_g=-0.1923512371931914,L_g=0.12578334142522754,A_g=0.1449451605572017,K_g=0.9586554019212649,S_h=-0.0060036457035527345,B_h=0.11382736322926355,E_h=0.006025637079756224,L_h=0.15725300077242152,A_h=0.08599361141437988,K_h=-0.21947393451082886,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 443,
+ label = "CC(C)=O + [OH] <=> O + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05027961645991233,B_g=-2.3996843104073453,E_g=0.4205484175980712,L_g=0.23238287234227742,A_g=0.6955285856465085,K_g=0.08603759416678686,S_h=0.4151312085932783,B_h=-4.862967680795183,E_h=0.5645772708134609,L_h=0.4556393235601065,A_h=1.524288258792493,K_h=-1.6636182879590704,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.293, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7879999999999999, MAE_h(kcal/mol): 0.575)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.293, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7879999999999999, MAE_h(kcal/mol): 0.575)"""),
+)
+
+entry(
+ index = 444,
+ label = "CC(C)=O + [O]O <=> OO + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07505656698251091,B_g=-3.1842926305954564,E_g=-0.32393297147740574,L_g=0.3895698989860884,A_g=0.35015402237070015,K_g=-1.6223917880362615,S_h=0.4129907146428052,B_h=-3.745857082869039,E_h=-0.04983245847710804,L_h=0.33627746398629804,A_h=0.3757959670239694,K_h=-2.911966088608907,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.511, MAE_g(kcal/mol): 0.429, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.789, MAE_h(kcal/mol): 0.609)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.511, MAE_g(kcal/mol): 0.429, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.789, MAE_h(kcal/mol): 0.609)"""),
+)
+
+entry(
+ index = 445,
+ label = "CC(C)=O + [O][O] <=> [O]O + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3953463004688718,B_g=0.4204971043869297,E_g=-0.2795543742987632,L_g=0.008290748828715678,A_g=0.06370168640277565,K_g=0.6905731955419888,S_h=0.42040913888211584,B_h=0.8378347810592913,E_h=0.013722618750977677,L_h=0.10799231807660424,A_h=-0.4745885593887803,K_h=-0.359199808449069,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.445, MAE_h(kcal/mol): 0.266)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.445, MAE_h(kcal/mol): 0.266)"""),
+)
+
+entry(
+ index = 446,
+ label = "CC(C)=O + [O] <=> [OH] + [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07345852697839066,B_g=0.44446037398999916,E_g=-0.41127538729893304,L_g=0.13565013888185998,A_g=-0.3969590013904611,K_g=0.7475748426614346,S_h=0.031975460999874264,B_h=1.0278109496225059,E_h=0.010247981310826278,L_h=0.16434888482741428,A_h=-1.1904811593997204,K_h=-0.21596264477700497,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.248)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.4, MAE_h(kcal/mol): 0.248)"""),
+)
+
+entry(
+ index = 447,
+ label = "CC(C)C(O)O[O] + OO <=> CC(C)C(O)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7586951485616658,B_g=-3.7350593171531257,E_g=-0.05798392858986828,L_g=0.5551869531745707,A_g=0.16108683069056326,K_g=-1.6049452962481596,S_h=-0.2912244646040818,B_h=-7.806799273522947,E_h=-0.1391247763220114,L_h=0.8552226291775175,A_h=1.7119699937718103,K_h=-4.185406049506925,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.016, MAE_h(kcal/mol): 0.777)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.016, MAE_h(kcal/mol): 0.777)"""),
+)
+
+entry(
+ index = 448,
+ label = "CC(C)C(O)O[O] + [O]O <=> CC(C)C(O)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1255113036358768,B_g=-5.298550869257707,E_g=0.06021971850388975,L_g=0.7455369751332445,A_g=0.8611896225873977,K_g=-2.552025903827654,S_h=-0.5821850326937218,B_h=-9.341254878580187,E_h=-0.05868765262837996,L_h=0.9308729633175226,A_h=2.512873923726708,K_h=-4.700158192302013,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.612, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3359999999999999, MAE_h(kcal/mol): 1.054)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.612, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3359999999999999, MAE_h(kcal/mol): 1.054)"""),
+)
+
+entry(
+ index = 449,
+ label = "CC(C)C + CC(C)(C)O[O] <=> CC(C)(C)OO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14377228715968224,B_g=0.08858126334765719,E_g=0.41916296089725136,L_g=-0.19587718784448424,A_g=0.03978239955211317,K_g=0.3845118824592858,S_h=0.4733350509451814,B_h=-0.212685929722685,E_h=0.48936676419752556,L_h=-0.19514414197103458,A_h=-0.020224735648476176,K_h=-0.29443520552979136,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.221, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.337, MAE_h(kcal/mol): 0.25)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.221, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.337, MAE_h(kcal/mol): 0.25)"""),
+)
+
+entry(
+ index = 450,
+ label = "CC(C)C + CC(C)(C)O[O] <=> CC(C)(C)OO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.005417209004793005,B_g=-0.09919576759520829,E_g=-0.15855049196842744,L_g=0.022841709416691478,A_g=0.4026327764509615,K_g=-0.17240505897662606,S_h=0.2449766004481426,B_h=-0.23257346426937434,E_h=-0.019865543170485844,L_h=0.033075029810048756,A_h=0.3217851470681982,K_h=-0.878760732173986,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.078)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.078)"""),
+)
+
+entry(
+ index = 451,
+ label = "CC(C)C + CC(C)O[O] <=> CC(C)OO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04868890691452657,B_g=0.24785747073079978,E_g=1.0318207105502755,L_g=-0.3234491612009289,A_g=-0.916959752639448,K_g=0.9463842139997173,S_h=0.38651309769380343,B_h=-0.07259353284772005,E_h=1.090178492535603,L_h=-0.33801478270637375,A_h=-0.9045712773781486,K_h=0.22656981856582162,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.617, MAE_g(kcal/mol): 0.47200000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.642, MAE_h(kcal/mol): 0.503)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.617, MAE_g(kcal/mol): 0.47200000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.642, MAE_h(kcal/mol): 0.503)"""),
+)
+
+entry(
+ index = 452,
+ label = "CC(C)C + CC(C)O[O] <=> CC(C)OO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.00038851431292832097,B_g=-0.22599804278453087,E_g=0.10225256888749339,L_g=0.018450764634727997,A_g=0.47872293811503647,K_g=-0.05055084343308871,S_h=0.24669925825074931,B_h=-0.40669385058987256,E_h=0.21779525946062914,L_h=0.026426303737860323,A_h=0.4099119219743166,K_h=-0.8276820957120136,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.225, MAE_h(kcal/mol): 0.155)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.225, MAE_h(kcal/mol): 0.155)"""),
+)
+
+entry(
+ index = 453,
+ label = "CC(C)C + CCO[O] <=> CCOO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13681568182064496,B_g=0.05516903243582158,E_g=0.16314668959495682,L_g=-0.041424422308640414,A_g=0.24710243348114663,K_g=0.24136268429203578,S_h=0.11704543461370757,B_h=-0.16211309491339282,E_h=0.26425570691986877,L_h=-0.027973030530839108,A_h=0.19467499261202678,K_h=-0.5752430882721534,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.231, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.231, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21899999999999997, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 454,
+ label = "CC(C)C + CO[O] <=> COO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5830646877418613,B_g=1.456093001185471,E_g=2.3248916399392763,L_g=-0.5844721358188847,A_g=-2.424835114325403,K_g=1.8432878315415826,S_h=-0.1967934951862963,B_h=0.9770988360972582,E_h=2.371154165012684,L_h=-0.6126650801117587,A_h=-2.3372507933656372,K_h=1.0746525809359393,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.055, MAE_g(kcal/mol): 0.7140000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.088, MAE_h(kcal/mol): 0.743)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.055, MAE_g(kcal/mol): 0.7140000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.088, MAE_h(kcal/mol): 0.743)"""),
+)
+
+entry(
+ index = 455,
+ label = "CC(C)C + CO[O] <=> COO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05472187445301728,B_g=-0.09437965620664401,E_g=0.19337017095728642,L_g=-0.040632732765314775,A_g=0.13140580327458645,K_g=0.3621979660714781,S_h=0.2230951811256702,B_h=-0.3977653518512557,E_h=0.295124268650834,L_h=-0.05520568472949406,A_h=0.1770672307317659,K_h=-0.43407311396321746,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.17300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.17300000000000001)"""),
+)
+
+entry(
+ index = 456,
+ label = "CC(C)C + C[CH2] <=> CC + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.010680478376161578,B_g=-0.14207162073327903,E_g=-0.2501958870671042,L_g=0.08386044792264136,A_g=0.3979339524021492,K_g=-0.026888122638133612,S_h=0.0880827921537114,B_h=-0.06370901686151015,E_h=-0.04799251333474939,L_h=0.10269972687029767,A_h=0.4266107069714999,K_h=-1.1224984850959987,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.132, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.132, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 457,
+ label = "CC(C)C + C[CH2] <=> CC + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.00056444532255624,B_g=-0.12364284747475454,E_g=-0.22457593379003848,L_g=0.09249572831187837,A_g=0.3881477899915961,K_g=0.19367071976540076,S_h=0.06128996547912626,B_h=-0.022387220975152684,E_h=-0.012798980950431102,L_h=0.1454436317511475,A_h=0.400309021032126,K_h=-0.857077235237345,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 458,
+ label = "CC(C)C + C[O] <=> CO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1217076063688474,B_g=-0.3079379105187341,E_g=0.05038957334092978,L_g=-0.039437867991591824,A_g=0.9257416422033751,K_g=0.5205651965715431,S_h=0.38439459511953394,B_h=-0.711758221284684,E_h=0.14251877871608334,L_h=-0.05607067886016467,A_h=1.5837089572943228,K_h=-0.28978769469212046,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.226, MAE_h(kcal/mol): 0.171)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.226, MAE_h(kcal/mol): 0.171)"""),
+)
+
+entry(
+ index = 459,
+ label = "CC(C)C + C[O] <=> CO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1811942789992875,B_g=-0.19572324821105982,E_g=-0.05291125114559662,L_g=0.07493927964275897,A_g=0.8230419153330772,K_g=0.2738879296969973,S_h=-0.06884033797565778,B_h=-0.39780200414492817,E_h=0.006780674329409375,L_h=0.11164288652638354,A_h=1.4909053497155955,K_h=-0.6686038107147024,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.124, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.124, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 460,
+ label = "CC(C)C + [CH2]C(C)C <=> CC(C)C + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10604974651196263,B_g=-0.14360368660878883,E_g=-0.26986350785175867,L_g=0.06716166292545805,A_g=0.5389426566189262,K_g=-0.13097330620925116,S_h=0.14876432955787447,B_h=-0.02046664078671457,E_h=-0.03090521402463776,L_h=0.13175766529384228,A_h=0.4618628830256942,K_h=-1.2387522301663807,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.12)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.12)"""),
+)
+
+entry(
+ index = 461,
+ label = "CC(C)C + [CH3] <=> C + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.009075107913306818,B_g=-0.1304161913454294,E_g=-0.19317224857145496,L_g=0.07455809578856515,A_g=0.3090154879527051,K_g=0.28453175577948636,S_h=0.13234410199260202,B_h=-0.14164645412667823,E_h=-0.011977969572167482,L_h=0.08361854278440298,A_h=0.33193050195674156,K_h=-0.7832448548634949,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.073)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.073)"""),
+)
+
+entry(
+ index = 462,
+ label = "CC(C)C + [CH3] <=> C + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.011926656361026003,B_g=-0.12047608930145198,E_g=-0.17849667018499274,L_g=0.09045786078368831,A_g=0.32937217185840223,K_g=0.5068718996555035,S_h=0.1035060773310923,B_h=-0.10871803349131941,E_h=0.002404390464914892,L_h=0.12732273775947184,A_h=0.3362994553625015,K_h=-0.5014913429443829,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.096)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.096)"""),
+)
+
+entry(
+ index = 463,
+ label = "CC(C)C + [H] <=> [H][H] + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2534432802864862,B_g=0.0926643288627718,E_g=-0.04327169790973356,L_g=-0.004720815425015825,A_g=0.037443983215808746,K_g=1.3514360418330629,S_h=0.4151458695107472,B_h=0.1275866342739137,E_h=0.21609459303422593,L_h=0.004354292488290994,A_h=-0.13459455282409247,K_h=0.24461740797015227,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.252, MAE_h(kcal/mol): 0.159)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.252, MAE_h(kcal/mol): 0.159)"""),
+)
+
+entry(
+ index = 464,
+ label = "CC(C)C + [H] <=> [H][H] + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09478283143704132,B_g=0.08669733545289154,E_g=-0.06340846805339578,L_g=0.052354136281774884,A_g=0.029783653838259774,K_g=1.3841518791651213,S_h=0.19452838343733686,B_h=0.20465174694967672,E_h=0.17286687787689933,L_h=0.11513218488400392,A_h=-0.10744986413025148,K_h=0.20568534163124072,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32299999999999995, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32299999999999995, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 465,
+ label = "CC(C)C + [OH] <=> O + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8428268234574837,B_g=-2.192987365470744,E_g=0.42381047173492226,L_g=-0.09585307841227782,A_g=1.5884444336368073,K_g=0.8564468157861783,S_h=1.6610746187782,B_h=-4.083087506490822,E_h=0.5987958521860911,L_h=-0.107413211836579,A_h=2.221011709212725,K_h=-0.21086064549779535,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.52)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.52)"""),
+)
+
+entry(
+ index = 466,
+ label = "CC(C)C + [OH] <=> O + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.29949322205659396,B_g=-1.354390216703065,E_g=0.5012201159712065,L_g=-0.04025887936985545,A_g=1.1627060512547125,K_g=0.910274374273587,S_h=0.5893542213360594,B_h=-2.396876744712033,E_h=0.7013782917166368,L_h=0.011186280028841845,A_h=1.9128099021795486,K_h=-0.13415472530002268,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.337, MAE_g(kcal/mol): 0.263, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.40399999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.337, MAE_g(kcal/mol): 0.263, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.40399999999999997)"""),
+)
+
+entry(
+ index = 467,
+ label = "CC(C)C + [O]OC=O <=> O=COO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4266473592651724,B_g=0.379805727951739,E_g=1.336679828400521,L_g=-0.4903856979616205,A_g=-1.2305567773012136,K_g=2.1343803478884436,S_h=0.880945208876866,B_h=-0.232155628121508,E_h=1.440992256192408,L_h=-0.47513834379386755,A_h=-1.4522591712673292,K_h=1.4301065249716804,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.75, MAE_g(kcal/mol): 0.557, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.591)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.75, MAE_g(kcal/mol): 0.557, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.591)"""),
+)
+
+entry(
+ index = 468,
+ label = "CC(C)C + [O]OC=O <=> O=COO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3287417524072355,B_g=0.4000891072700911,E_g=0.37700549271516126,L_g=-0.34653277575585884,A_g=-0.6007530846682017,K_g=1.8297338133414984,S_h=0.7380379158478544,B_h=-0.11241991515224019,E_h=0.5082426954388543,L_h=-0.3022861268344372,A_h=-0.876678881893389,K_h=1.0952438395211403,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.623, MAE_g(kcal/mol): 0.42200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.612, MAE_h(kcal/mol): 0.429)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.623, MAE_g(kcal/mol): 0.42200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.612, MAE_h(kcal/mol): 0.429)"""),
+)
+
+entry(
+ index = 469,
+ label = "CC(C)C + [O]O <=> OO + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20866150787744636,B_g=-1.276526084025242,E_g=0.906096012794924,L_g=-0.15668122499113082,A_g=-0.2072027465892815,K_g=0.518849869227671,S_h=0.6249729203269786,B_h=-2.154846988675158,E_h=0.9737561469143279,L_h=-0.18433904579638655,A_h=-0.14852975487837056,K_h=-0.41587158492546233,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.616, MAE_g(kcal/mol): 0.45299999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.736, MAE_h(kcal/mol): 0.561)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.616, MAE_g(kcal/mol): 0.45299999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.736, MAE_h(kcal/mol): 0.561)"""),
+)
+
+entry(
+ index = 470,
+ label = "CC(C)C + [O]O <=> OO + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.039613799001219745,B_g=-1.5595184434704839,E_g=0.25210913679680785,L_g=0.07213904440618125,A_g=0.43984951544600087,K_g=0.03616115293727184,S_h=0.24345919549010178,B_h=-2.1627345622734766,E_h=0.3879571980644992,L_h=0.09004735509455651,A_h=0.46969181295413653,K_h=-0.9388411719619204,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.354)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.354)"""),
+)
+
+entry(
+ index = 471,
+ label = "CC(C)C + [O][O] <=> [O]O + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7410947171401395,B_g=0.18504276983489826,E_g=-0.006575421484843471,L_g=-0.13835507815488926,A_g=0.23434010482438802,K_g=1.2643941748196499,S_h=0.8655072627820163,B_h=0.2741005130002977,E_h=0.28140164989985633,L_h=-0.0151960409566115,A_h=-0.26948965445629935,K_h=0.19053328342703618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16399999999999998, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.29)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16399999999999998, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45799999999999996, MAE_h(kcal/mol): 0.29)"""),
+)
+
+entry(
+ index = 472,
+ label = "CC(C)C + [O][O] <=> [O]O + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6040664520161941,B_g=0.20327362070759133,E_g=-0.047098197369140796,L_g=-0.08364786461934094,A_g=0.18710995919802625,K_g=1.268895076482631,S_h=0.6915847988473492,B_h=0.37224802499647297,E_h=0.26140415847214954,L_h=0.05747812693718802,A_h=-0.2863790313805795,K_h=0.2533553147816722,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.312)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.312)"""),
+)
+
+entry(
+ index = 473,
+ label = "CC(C)C + [O] <=> [OH] + C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9301179260678694,B_g=0.06726428934774101,E_g=0.13529094640386966,L_g=-0.2350145070279617,A_g=0.6096815834068186,K_g=2.0292395782595585,S_h=1.316425770917107,B_h=-0.21011293870687667,E_h=0.27119032088270256,L_h=-0.22690701966760843,A_h=0.42196319613382904,K_h=1.3211978995532643,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.307, MAE_h(kcal/mol): 0.255)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.307, MAE_h(kcal/mol): 0.255)"""),
+)
+
+entry(
+ index = 474,
+ label = "CC(C)C + [O] <=> [OH] + [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6891510865474965,B_g=0.14223289082543797,E_g=0.07889772735938713,L_g=-0.14029764971953085,A_g=0.4721548470889274,K_g=1.867558980411501,S_h=0.9479162798752272,B_h=0.051694394995670176,E_h=0.26340537370666717,L_h=-0.08847130646663974,A_h=0.21478977137948552,K_h=1.0963800606249872,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20199999999999999, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.256, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20199999999999999, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.256, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 475,
+ label = "CC(C)C=O + CO[O] <=> COO + [CH2]C(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9877646535559509,B_g=0.7646694724302806,E_g=2.04851135427255,L_g=-0.4995341104622723,A_g=-2.356317316534063,K_g=1.490568148613809,S_h=-0.81390083329116,B_h=0.7347245484998619,E_h=2.2558167272841145,L_h=-0.5053618251561971,A_h=-2.482342563097529,K_h=0.5839516732487354,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.187, MAE_g(kcal/mol): 0.797, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.177, MAE_h(kcal/mol): 0.812)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.187, MAE_g(kcal/mol): 0.797, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.177, MAE_h(kcal/mol): 0.812)"""),
+)
+
+entry(
+ index = 476,
+ label = "CC(C)C=O + [CH3] <=> C + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3541491223810008,B_g=-0.05560885995989137,E_g=-0.2746942801577919,L_g=0.19757052381215295,A_g=-0.17821078229434736,K_g=0.08327401122388163,S_h=-0.38342697456658037,B_h=0.20603720365049655,E_h=0.029849627966870244,L_h=0.19885335409068983,A_h=-0.22845374646058722,K_h=-1.0198354105193734,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 477,
+ label = "CC(C)C=O + [H] <=> [H][H] + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23242685509468436,B_g=0.19599447518423618,E_g=-0.29937593471684204,L_g=0.2059712295218861,A_g=-0.45359412557318196,K_g=0.8570332524849381,S_h=-0.3318352059931931,B_h=0.6817546536843893,E_h=0.12170027591011293,L_h=0.23144457362426185,A_h=-0.6682006354843051,K_h=-0.4064226236166962,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.467, MAE_h(kcal/mol): 0.29)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.467, MAE_h(kcal/mol): 0.29)"""),
+)
+
+entry(
+ index = 478,
+ label = "CC(C)C=O + [OH] <=> O + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.37517287803153715,B_g=-1.569509858725603,E_g=0.25222642413655977,L_g=0.2558550012101356,A_g=1.7755543928348336,K_g=-0.1288621340937161,S_h=-0.6074531239515316,B_h=-2.1686868947658873,E_h=0.7796089473311848,L_h=0.3246220345984484,A_h=2.920403446612313,K_h=-1.3416058966701028,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.371)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.501, MAE_h(kcal/mol): 0.371)"""),
+)
+
+entry(
+ index = 479,
+ label = "CC(C)C=O + [OH] <=> O + C[C](C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.46971380433034005,B_g=-1.786704020570003,E_g=-0.09547189455808403,L_g=0.11754390580765332,A_g=0.9922142420077903,K_g=-0.12268988783926996,S_h=1.0431169474601347,B_h=-2.6650029338437156,E_h=0.20160227611612608,L_h=0.0540401417907091,A_h=1.177337646888768,K_h=-1.1870871570056485,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49700000000000005, MAE_h(kcal/mol): 0.358)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49700000000000005, MAE_h(kcal/mol): 0.358)"""),
+)
+
+entry(
+ index = 480,
+ label = "CC(C)C=O + [OH] <=> O + [CH2]C(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04700290140559235,B_g=-0.8741278822537842,E_g=0.15768549783775684,L_g=0.11309431735581389,A_g=1.0167346264746815,K_g=0.4394610011330725,S_h=-0.08042246277616243,B_h=-1.339941882537372,E_h=0.5425052595638915,L_h=0.19056993572070868,A_h=1.5554940216252453,K_h=-0.6201714698558833,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.369, MAE_h(kcal/mol): 0.285)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.369, MAE_h(kcal/mol): 0.285)"""),
+)
+
+entry(
+ index = 481,
+ label = "CC(C)C=O + [O]O <=> OO + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5552969100555881,B_g=-1.500112405886123,E_g=-0.20679224090014972,L_g=0.35651686055224324,A_g=0.27325751024583056,K_g=-0.8183504217429994,S_h=-0.5980628063126414,B_h=-1.6495657985650405,E_h=0.07884641414824566,L_h=0.3455431638267018,A_h=0.43045186734837615,K_h=-1.9148404392490042,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.419, MAE_h(kcal/mol): 0.337)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.419, MAE_h(kcal/mol): 0.337)"""),
+)
+
+entry(
+ index = 482,
+ label = "CC(C)C=O + [O][O] <=> [O]O + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11859949186542086,B_g=0.3037375576638675,E_g=-0.43920443507736506,L_g=0.19923453794488372,A_g=-0.3509457119140258,K_g=0.20990035540357627,S_h=-0.30910345345751905,B_h=0.9827139674878826,E_h=0.010203998558419297,L_h=0.31242415126424605,A_h=-0.7467391703657019,K_h=-1.0613258069566245,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.657, MAE_h(kcal/mol): 0.40299999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.657, MAE_h(kcal/mol): 0.40299999999999997)"""),
+)
+
+entry(
+ index = 483,
+ label = "CC(C)C=O + [O] <=> [OH] + CC(C)[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1590123108687007,B_g=0.2931963580036614,E_g=-0.23272740390279878,L_g=0.08331066351755412,A_g=0.1004712674150107,K_g=1.2959004864605164,S_h=0.17031587823729452,B_h=0.703152262730385,E_h=0.09311148684557609,L_h=0.10760380376367591,A_h=0.05538161573912198,K_h=0.456680248700405,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 484,
+ label = "CC(C)CO + CO[O] <=> COO + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8684027939821424,B_g=-1.4035262816003957,E_g=-0.26268698875068647,L_g=0.43103097358840137,A_g=-0.19194073150405958,K_g=-1.2033094621850895,S_h=-0.7566132982810688,B_h=-3.182899843435902,E_h=-0.10238451714471433,L_h=0.5965234099783971,A_h=0.10001677897347191,K_h=-2.906072399786372,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.146, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.35200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.146, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.35200000000000004)"""),
+)
+
+entry(
+ index = 485,
+ label = "CC(C)CO + C[CH2] <=> CC + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4001330900224981,B_g=-1.3627689310365947,E_g=0.20878612567593277,L_g=0.16586628978545503,A_g=0.12037346287916903,K_g=0.010812426633382517,S_h=-0.28736864330973655,B_h=-3.2167152495781357,E_h=0.3595516704683248,L_h=0.3705840108637422,A_h=0.6785292518412108,K_h=-1.6137271858120865,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.565, MAE_h(kcal/mol): 0.406)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.565, MAE_h(kcal/mol): 0.406)"""),
+)
+
+entry(
+ index = 486,
+ label = "CC(C)CO + C[CH2] <=> CC + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.36234457524616803,B_g=1.1561452906873382,E_g=-0.21675433432033062,L_g=0.05270599830103072,A_g=-0.51077903416099,K_g=0.36258648038440644,S_h=-0.5725014967054517,B_h=1.969393713151128,E_h=0.030003567600294673,L_h=0.06417816622051793,A_h=-0.9087716302330153,K_h=-0.47631121719138697,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.27899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.27899999999999997)"""),
+)
+
+entry(
+ index = 487,
+ label = "CC(C)CO + C[CH2] <=> CC + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31292262245819186,B_g=-0.8663575959952179,E_g=0.21886550643586564,L_g=0.0963442191474891,A_g=0.20133104914294972,K_g=0.014448334165692842,S_h=-0.06816593577208409,B_h=-2.26345506528546,E_h=0.28492760055114924,L_h=0.2617853423263434,A_h=0.8116943652120764,K_h=-1.5659619166981067,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.424, MAE_h(kcal/mol): 0.311)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.424, MAE_h(kcal/mol): 0.311)"""),
+)
+
+entry(
+ index = 488,
+ label = "CC(C)CO + C[CH2] <=> CC + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4248294054990172,B_g=-1.42989394166838,E_g=-0.05456793481959285,L_g=0.24515253145777055,A_g=0.6842250182779147,K_g=-0.22460525562497652,S_h=-0.20104516125230437,B_h=-3.3834685248704646,E_h=-0.08207914645015868,L_h=0.4775793865524549,A_h=1.6112201689248884,K_h=-1.8485071181605441,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.354)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.354)"""),
+)
+
+entry(
+ index = 489,
+ label = "CC(C)CO + C[O] <=> CO + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0430143210378517,B_g=-1.6160582716896563,E_g=-0.2739978865780147,L_g=0.4945493985228146,A_g=-0.4133645680382645,K_g=-1.2537503487371606,S_h=-0.944324355095324,B_h=-3.4222099992822796,E_h=-0.10826354504978063,L_h=0.6449557508372162,A_h=-0.15276676002690961,K_h=-3.0673351614865627,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.391)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.391)"""),
+)
+
+entry(
+ index = 490,
+ label = "CC(C)CO + C[O] <=> CO + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06739623760496194,B_g=0.6194970676523095,E_g=0.08192520681673424,L_g=-0.061231321809250276,A_g=-0.4481256033572475,K_g=0.5652663339345035,S_h=0.34395978474005046,B_h=0.8985529707571268,E_h=0.5141437147201241,L_h=-0.14227687357784494,A_h=-0.2013017273080117,K_h=-0.30881756556687373,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36, MAE_h(kcal/mol): 0.32299999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36, MAE_h(kcal/mol): 0.32299999999999995)"""),
+)
+
+entry(
+ index = 491,
+ label = "CC(C)CO + C[O] <=> CO + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6681200004382256,B_g=-1.4533807314537073,E_g=0.17788091165129502,L_g=0.2624157617775101,A_g=0.3893939679764606,K_g=-0.547959120862357,S_h=-0.44668883344528615,B_h=-3.5346812276456605,E_h=0.1319189353860012,L_h=0.44869004867980367,A_h=1.6574167198696863,K_h=-2.19785479007045,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6, MAE_h(kcal/mol): 0.419)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6, MAE_h(kcal/mol): 0.419)"""),
+)
+
+entry(
+ index = 492,
+ label = "CC(C)CO + C[O] <=> CO + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.58366578535809,B_g=-1.3570291818474838,E_g=0.5539774274833786,L_g=0.13973320439697462,A_g=0.163857744092203,K_g=0.05895887960155633,S_h=-0.377635912166328,B_h=-3.4797394394306083,E_h=0.5858136097672976,L_h=0.34615892236039947,A_h=1.6463257358043928,K_h=-1.6160875935245944,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.43700000000000006)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.43700000000000006)"""),
+)
+
+entry(
+ index = 493,
+ label = "CC(C)CO + [CH2]O <=> CO + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8380986775737334,B_g=-3.2263328114377945,E_g=1.7037452190717048,L_g=0.11759521901879481,A_g=-0.8747436407874819,K_g=0.0748293227617415,S_h=-0.4486020831749898,B_h=-7.45521581169902,E_h=1.8944104507559618,L_h=0.46925198543006674,A_h=0.5145908727029284,K_h=-2.210807710654305,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.867, MAE_g(kcal/mol): 0.643, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.44, MAE_h(kcal/mol): 1.068)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.867, MAE_g(kcal/mol): 0.643, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.44, MAE_h(kcal/mol): 1.068)"""),
+)
+
+entry(
+ index = 494,
+ label = "CC(C)CO + [CH2]O <=> CO + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.152950021495272,B_g=-1.4818009199673507,E_g=0.2802727592547439,L_g=0.26623493077818283,A_g=-0.3709212119655291,K_g=-1.0821516402213294,S_h=0.5210270154718164,B_h=-2.8043476239277623,E_h=0.5151406571080156,L_h=0.19590650967942222,A_h=-0.3081651547395035,K_h=-2.347366826419243,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.41700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.853, MAE_h(kcal/mol): 0.6709999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.41700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.853, MAE_h(kcal/mol): 0.6709999999999999)"""),
+)
+
+entry(
+ index = 495,
+ label = "CC(C)CO + [CH2]O <=> CO + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.702118668048821,B_g=-2.489130567885673,E_g=0.5909669222576487,L_g=0.2910778554293919,A_g=0.2509362633992883,K_g=-0.9772087929782756,S_h=-0.19405190361959454,B_h=-5.144442635282385,E_h=0.5406946362564709,L_h=0.43740114222867893,A_h=1.2472628927571312,K_h=-2.9195091306467043,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.505, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.902, MAE_h(kcal/mol): 0.7490000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.505, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.902, MAE_h(kcal/mol): 0.7490000000000001)"""),
+)
+
+entry(
+ index = 496,
+ label = "CC(C)CO + [CH2]O <=> CO + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5056330521293735,B_g=-2.783976279104596,E_g=-0.07827463836695493,L_g=0.4106083155540938,A_g=0.11295503863985845,K_g=-0.7547147094688342,S_h=0.14196899431099608,B_h=-5.376737542119847,E_h=0.08291481874589128,L_h=0.5300801320089197,A_h=0.9760725718744286,K_h=-2.6364507970728517,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.56, MAE_g(kcal/mol): 0.44, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.953, MAE_h(kcal/mol): 0.775)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.56, MAE_g(kcal/mol): 0.44, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.953, MAE_h(kcal/mol): 0.775)"""),
+)
+
+entry(
+ index = 497,
+ label = "CC(C)CO + [CH3] <=> C + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4987644122951502,B_g=-1.4453685400569025,E_g=0.03263520228597896,L_g=0.2558843230450736,A_g=0.1412726007312189,K_g=-0.05639321904448251,S_h=-0.23749953253895606,B_h=-3.4802085887896164,E_h=0.028295570715156964,L_h=0.4401500642541152,A_h=0.6537156490249397,K_h=-1.697946826212718,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.515, MAE_h(kcal/mol): 0.366)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.515, MAE_h(kcal/mol): 0.366)"""),
+)
+
+entry(
+ index = 498,
+ label = "CC(C)CO + [CH3] <=> C + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1755718171499286,B_g=0.8086229030023223,E_g=-0.24705845072873966,L_g=0.0418935716676482,A_g=-0.34497138804541105,K_g=0.5808508892040434,S_h=-0.17019859089754258,B_h=1.3481959790724152,E_h=-0.04647510837670858,L_h=0.008320070663653667,A_h=-0.897299462313528,K_h=-0.21369753302804553,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.297, MAE_h(kcal/mol): 0.23199999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.297, MAE_h(kcal/mol): 0.23199999999999998)"""),
+)
+
+entry(
+ index = 499,
+ label = "CC(C)CO + [CH3] <=> C + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24338589090275684,B_g=-1.0535335293218546,E_g=-0.05651783684296896,L_g=0.17766832834799462,A_g=0.46216343183380854,K_g=0.027929047778432133,S_h=0.04876221150187154,B_h=-2.613880314629337,E_h=-0.041035907995712086,L_h=0.3358303060034938,A_h=1.074205422953135,K_h=-1.523415934203088,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.14, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.14, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 500,
+ label = "CC(C)CO + [CH3] <=> C + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4471799741804975,B_g=0.8057347022609308,E_g=-0.07808404643985802,L_g=0.07059231761320246,A_g=0.26722454270733986,K_g=0.6718878562277569,S_h=-0.7435724121923993,B_h=1.3149156964178006,E_h=0.08567107123006203,L_h=0.1454289708336785,A_h=0.49199839888320973,K_h=-0.22446597690902106,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.237)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.237)"""),
+)
+
+entry(
+ index = 501,
+ label = "CC(C)CO + [CH]=O <=> C=O + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42329733962350746,B_g=-1.1234514447314832,E_g=-0.10535335293218547,L_g=0.29653904718659185,A_g=0.6275972245539283,K_g=0.0668024704474677,S_h=-0.32391831055993675,B_h=-2.8295424105982274,E_h=0.07536444624935976,L_h=0.5228156474030335,A_h=1.1361624601771003,K_h=-1.3566553284520242,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.35700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.35700000000000004)"""),
+)
+
+entry(
+ index = 502,
+ label = "CC(C)CO + [CH]=O <=> C=O + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3783689580397777,B_g=-1.502172264790517,E_g=-0.2468018846730323,L_g=0.33028847920021426,A_g=0.12940458804006885,K_g=-0.3145719756734536,S_h=-0.11482430561715509,B_h=-3.2378489621096893,E_h=-0.13134715960471047,L_h=0.4961840908206074,A_h=0.13958659522228467,K_h=-1.7653210724414765,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.461, MAE_h(kcal/mol): 0.331)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.461, MAE_h(kcal/mol): 0.331)"""),
+)
+
+entry(
+ index = 503,
+ label = "CC(C)CO + [CH]=O <=> C=O + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3644630778204375,B_g=-1.6749291857863988,E_g=-0.036271109818289286,L_g=0.25982810984423277,A_g=1.12204399665446,K_g=-0.03452646063947909,S_h=-0.09996546576233042,B_h=-3.870768099704862,E_h=-0.1340667597952087,L_h=0.5056330521293735,A_h=2.2926229605900224,K_h=-1.6801191505704223,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.235, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.382)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.235, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.382)"""),
+)
+
+entry(
+ index = 504,
+ label = "CC(C)CO + [CH]=O <=> C=O + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3634734658912805,B_g=-1.7079675633027749,E_g=-0.07957212956296082,L_g=0.28115241430288346,A_g=1.15714223307523,K_g=0.05537428528038748,S_h=-0.07922759800243949,B_h=-3.8918138467316017,E_h=-0.1751539810020623,L_h=0.5549303871188633,A_h=2.3333289979426817,K_h=-1.5184165613461613,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5479999999999999, MAE_h(kcal/mol): 0.376)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5479999999999999, MAE_h(kcal/mol): 0.376)"""),
+)
+
+entry(
+ index = 505,
+ label = "CC(C)CO + [H] <=> [H][H] + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6671597103440066,B_g=-1.3026958217073947,E_g=-0.07574563010355359,L_g=0.36921321508039134,A_g=-0.41361380363523736,K_g=0.1900934559029664,S_h=-0.5633897364984723,B_h=-3.015523479151141,E_h=0.12317369811574673,L_h=0.57711235524945,A_h=-0.3813817765796558,K_h=-1.807588497504584,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.546, MAE_h(kcal/mol): 0.415)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.17300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.546, MAE_h(kcal/mol): 0.415)"""),
+)
+
+entry(
+ index = 506,
+ label = "CC(C)CO + [H] <=> [H][H] + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5039250552442357,B_g=0.3791166648306963,E_g=-0.3549114900893885,L_g=0.05133520251767984,A_g=-0.8163931892608888,K_g=1.323836864697683,S_h=0.6981895421671308,B_h=1.037186606343927,E_h=0.23019839563939745,L_h=-0.018656017479293904,A_h=-1.7928542754482457,K_h=0.3598522192764392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 507,
+ label = "CC(C)CO + [H] <=> [H][H] + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13611195778213328,B_g=0.5128975367352596,E_g=-0.2784548054885887,L_g=0.04962720563254213,A_g=-0.2625550404934655,K_g=1.1415283559707519,S_h=0.20235731336577928,B_h=0.9849937401543111,E_h=-0.015115405910532034,L_h=0.04289784451427423,A_h=-0.8057347022609308,K_h=0.08176393672457534,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.324, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.324, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 508,
+ label = "CC(C)CO + [H] <=> [H][H] + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30794524097746856,B_g=1.120255364723243,E_g=-0.12646507408753574,L_g=0.06734492439382048,A_g=-0.12487436454214997,K_g=1.4723372977411155,S_h=-0.6197389727905479,B_h=1.8342860282156206,E_h=0.10515543054635404,L_h=0.16021450610115817,A_h=-0.27525139502161367,K_h=0.4350334040574365,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.478, MAE_h(kcal/mol): 0.34)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.478, MAE_h(kcal/mol): 0.34)"""),
+)
+
+entry(
+ index = 509,
+ label = "CC(C)CO + [OH] <=> O + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6442666877161736,B_g=-2.782041037998689,E_g=0.10644559128362543,L_g=0.427483031560905,A_g=0.09149878592398683,K_g=-0.8365226289458165,S_h=-0.361384285151949,B_h=-5.342797518179128,E_h=0.33456946710116037,L_h=0.5693713908258216,A_h=0.5928288587762108,K_h=-2.6843186926091143,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.555)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.555)"""),
+)
+
+entry(
+ index = 510,
+ label = "CC(C)CO + [OH] <=> O + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11693547773269011,B_g=0.014360368660878883,E_g=0.3455065115330293,L_g=0.047809251866386966,A_g=1.387025418989044,K_g=0.6257059662004282,S_h=0.11352681442114919,B_h=-0.798638818205938,E_h=0.793353557458366,L_h=0.10635029532007699,A_h=1.748365721388586,K_h=-0.4705714680022761,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.271)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.271)"""),
+)
+
+entry(
+ index = 511,
+ label = "CC(C)CO + [OH] <=> O + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0355893771559811,B_g=-3.049155623825011,E_g=0.21294982623712685,L_g=0.2732355188696271,A_g=1.0568395662111125,K_g=-0.3072781692326294,S_h=0.5782485763532971,B_h=-6.097666167281387,E_h=0.2755299524535245,L_h=0.42537185944537,A_h=2.161832915849133,K_h=-2.0132738391358247,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39899999999999997, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.846, MAE_h(kcal/mol): 0.633)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39899999999999997, MAE_g(kcal/mol): 0.29, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.846, MAE_h(kcal/mol): 0.633)"""),
+)
+
+entry(
+ index = 512,
+ label = "CC(C)CO + [OH] <=> O + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06809996164347362,B_g=-1.7011868889733657,E_g=1.7355667404381547,L_g=-0.16972944153853478,A_g=0.1949535500439377,K_g=1.4772487050932284,S_h=0.5451149028733723,B_h=-4.209361988651262,E_h=1.9436931248279827,L_h=0.021602861890561546,A_h=1.1095748863470811,K_h=-0.10091842539781501,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.55, MAE_g(kcal/mol): 0.431, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.841, MAE_h(kcal/mol): 0.675)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.55, MAE_g(kcal/mol): 0.431, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.841, MAE_h(kcal/mol): 0.675)"""),
+)
+
+entry(
+ index = 513,
+ label = "CC(C)CO + [O]O <=> OO + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.32376437092651233,B_g=-3.7329994582487327,E_g=-0.043169071487450604,L_g=0.34511799722010095,A_g=0.007616346625141991,K_g=-1.101027571462658,S_h=0.8734974628026175,B_h=-6.086963697529023,E_h=0.2790119203524104,L_h=0.42089294915859254,A_h=0.40669385058987256,K_h=-2.884022379913006,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46799999999999997, MAE_g(kcal/mol): 0.368, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.96, MAE_h(kcal/mol): 0.725)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46799999999999997, MAE_g(kcal/mol): 0.368, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.96, MAE_h(kcal/mol): 0.725)"""),
+)
+
+entry(
+ index = 514,
+ label = "CC(C)CO + [O][O] <=> [O]O + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.37490898151709523,B_g=-1.158813577666695,E_g=-0.20450513777498677,L_g=0.32783277552415796,A_g=-0.14383826128829272,K_g=-0.09604367033937473,S_h=-0.3398180755550599,B_h=-2.6811446039770774,E_h=0.020884476934580874,L_h=0.6228910700463813,A_h=-0.2039700142873685,K_h=-1.8668259345380513,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.45399999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.45399999999999996)"""),
+)
+
+entry(
+ index = 515,
+ label = "CC(C)CO + [O][O] <=> [O]O + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2554298346035348,B_g=-0.48455798326769567,E_g=-0.3401039634457053,L_g=0.1707776971375678,A_g=-0.6714260373274836,K_g=0.353650651187055,S_h=0.4752702920510885,B_h=-1.0444217691148754,E_h=0.12023418416321359,L_h=0.31921948651112436,A_h=-1.6290551750259186,K_h=-1.0650790018286866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6509999999999999, MAE_h(kcal/mol): 0.462)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6509999999999999, MAE_h(kcal/mol): 0.462)"""),
+)
+
+entry(
+ index = 516,
+ label = "CC(C)CO + [O][O] <=> [O]O + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.133494984013918,B_g=1.5547683062105302,E_g=-0.2024672702467967,L_g=-0.056767072439941835,A_g=-0.4880032988729091,K_g=1.0998620285238732,S_h=-0.26922575794185744,B_h=2.5605878796295465,E_h=0.17915641147109745,L_h=0.06267542217994612,A_h=-1.3970901388315078,K_h=0.19416919095934654,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6940000000000001, MAE_h(kcal/mol): 0.489)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6940000000000001, MAE_h(kcal/mol): 0.489)"""),
+)
+
+entry(
+ index = 517,
+ label = "CC(C)CO + [O][O] <=> [O]O + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10706134981732318,B_g=-1.1822124019472082,E_g=-0.09555252960416347,L_g=0.16310270684254985,A_g=0.6271720579473276,K_g=0.48517374180139344,S_h=0.3122188984196801,B_h=-2.948002623747693,E_h=-0.040823324692411685,L_h=0.5130734677448876,A_h=0.9365760602129609,K_h=-1.227155444448407,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.451)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.451)"""),
+)
+
+entry(
+ index = 518,
+ label = "CC(C)CO + [O] <=> [OH] + CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2528128608353195,B_g=0.6418183144988517,E_g=-0.27480423703880935,L_g=0.15069224020504704,A_g=-0.35229451632117315,K_g=0.8626337229580935,S_h=-0.6494419915827282,B_h=1.3950376103858486,E_h=0.09957695144940212,L_h=0.19957173904667053,A_h=-1.162933295475482,K_h=0.11227330597755025,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.306)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.306)"""),
+)
+
+entry(
+ index = 519,
+ label = "CC(C)CO + [O] <=> [OH] + CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.1007123617370749,B_g=0.8069662193283261,E_g=-0.24550439347702635,L_g=-0.15579423948425672,A_g=-0.3336604902180827,K_g=1.8063716413546576,S_h=1.3719539958309188,B_h=1.5673620343163952,E_h=0.27264908217086736,L_h=-0.2206834602020208,A_h=-1.2060510537517912,K_h=1.213931296891375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.446, MAE_h(kcal/mol): 0.34700000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.446, MAE_h(kcal/mol): 0.34700000000000003)"""),
+)
+
+entry(
+ index = 520,
+ label = "CC(C)CO + [O] <=> [OH] + C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19559129995383887,B_g=-1.212809736704997,E_g=-0.03435052962985117,L_g=0.12466911169758405,A_g=0.4911040829176012,K_g=0.6245330928029088,S_h=0.5519102381202506,B_h=-3.104529909105399,E_h=-0.03409396357414379,L_h=0.32915958855510186,A_h=0.8343528131604055,K_h=-0.836427332982268,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.39899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.39899999999999997)"""),
+)
+
+entry(
+ index = 521,
+ label = "CC(C)CO + [O] <=> [OH] + [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1065702090821119,B_g=-1.2114902541327877,E_g=-0.05920811519852922,L_g=0.15920290279579766,A_g=0.6059210580760218,K_g=0.8404590852862411,S_h=0.43483548167160513,B_h=-3.079884906840021,E_h=-0.06892830348047173,L_h=0.40487589682371744,A_h=0.9667995415752904,K_h=-0.6243938140869533,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5539999999999999, MAE_h(kcal/mol): 0.387)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5539999999999999, MAE_h(kcal/mol): 0.387)"""),
+)
+
+entry(
+ index = 522,
+ label = "CC(C)CO[O] + C=CC=O <=> CC(C)COO + C=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.788038974875856,B_g=-0.19606044931284664,E_g=-0.7392840938327189,L_g=0.4054989858161496,A_g=-0.04972250159609059,K_g=-1.3915263206520248,S_h=-0.9413335279316493,B_h=0.21684229982514458,E_h=-0.37913132574816527,L_h=0.4104617063794039,A_h=-0.056679106935127885,K_h=-2.516414535295469,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.406, MAE_h(kcal/mol): 0.326)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.406, MAE_h(kcal/mol): 0.326)"""),
+)
+
+entry(
+ index = 523,
+ label = "CC(C)CO[O] + C=C <=> CC(C)COO + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17934700339819434,B_g=-0.1764148199043957,E_g=-0.23544700409329702,L_g=0.13377354144582887,A_g=0.3646536697475345,K_g=0.12203014655316527,S_h=-0.0746680526695826,B_h=-0.13359027997746645,E_h=-0.06213296823359337,L_h=0.17795421623864,A_h=0.29472109342043673,K_h=-0.7840512053242897,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.106)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.106)"""),
+)
+
+entry(
+ index = 524,
+ label = "CC(C)CO[O] + C=O <=> CC(C)COO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5724208616593722,B_g=0.033184986691066204,E_g=-0.5128388930653837,L_g=0.2834908306391879,A_g=0.23284469124255072,K_g=-0.5095108647999222,S_h=-0.515382562246254,B_h=0.2816142332031567,E_h=-0.3808466530920375,L_h=0.2556497483655697,A_h=0.4719202724094235,K_h=-1.3635166378275132,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 525,
+ label = "CC(C)CO[O] + CC=O <=> CC(C)COO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6280370520779981,B_g=-0.13530560732133864,E_g=-0.6979183151939543,L_g=0.3516054532001305,A_g=0.010687808834896076,K_g=-1.0919671244668203,S_h=-0.7048675900742573,B_h=0.27127828638751644,E_h=-0.403644379756322,L_h=0.35886993780601667,A_h=-0.06104072988215338,K_h=-2.161576349793426,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.146, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.281)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.146, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35600000000000004, MAE_h(kcal/mol): 0.281)"""),
+)
+
+entry(
+ index = 526,
+ label = "CC(C)CO[O] + CCC=O <=> CC(C)COO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5043135695571641,B_g=-0.1284956111569913,E_g=-0.5210123545543474,L_g=0.27457699281803993,A_g=0.10141689659176077,K_g=-0.8687913082950706,S_h=-0.5592480273134819,B_h=0.20173422437334704,E_h=-0.21536887761951076,L_h=0.26402113224036483,A_h=0.10434908008555942,K_h=-1.800675874917954,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26899999999999996, MAE_h(kcal/mol): 0.214)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.107, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26899999999999996, MAE_h(kcal/mol): 0.214)"""),
+)
+
+entry(
+ index = 527,
+ label = "CC(C)CO[O] + OO <=> CC(C)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9402339591214748,B_g=-1.2644674794069948,E_g=-0.4397615499411869,L_g=0.4429576299494274,A_g=-0.029431791819003936,K_g=-1.0358597933129832,S_h=-0.3089788356590326,B_h=-3.7193574745438345,E_h=-0.4617236043097387,L_h=0.5455473999387076,A_h=1.0026234934107756,K_h=-2.8500970168897553,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.387)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.387)"""),
+)
+
+entry(
+ index = 528,
+ label = "CC(C)CO[O] + [O]O <=> CC(C)COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1507647339762177,B_g=-5.102915586551461,E_g=-0.006575421484843471,L_g=0.7572437177322355,A_g=0.7609529298518909,K_g=-2.4879283726532155,S_h=-0.6851193342435233,B_h=-8.276417781889739,E_h=0.020429988493042086,L_h=0.888590877336946,A_h=2.1195801517034947,K_h=-4.5958970777212675,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.215, MAE_h(kcal/mol): 0.988)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.215, MAE_h(kcal/mol): 0.988)"""),
+)
+
+entry(
+ index = 529,
+ label = "CC(C)O[O] + C=C(C)C <=> CC(C)OO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3622859315762921,B_g=0.18070313826407622,E_g=0.9189169851215586,L_g=-0.19306229169043754,A_g=-0.401415920301035,K_g=0.3789480642798029,S_h=-0.18112097441194255,B_h=0.07157459908362503,E_h=0.9893993458537436,L_h=-0.15193841818991147,A_h=-0.3000503369204157,K_h=-0.5833432451737722,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.498, MAE_g(kcal/mol): 0.364, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.364)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.498, MAE_g(kcal/mol): 0.364, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5, MAE_h(kcal/mol): 0.364)"""),
+)
+
+entry(
+ index = 530,
+ label = "CC(C)O[O] + C=O <=> CC(C)OO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5315242323796155,B_g=0.12496233004696393,E_g=-0.49176382420370585,L_g=0.26962160271352026,A_g=0.2065136834682388,K_g=-0.572933993770787,S_h=-0.5016672739540109,B_h=0.42150870769229026,E_h=-0.34448757776893424,L_h=0.2315105477528723,A_h=0.5060655491947089,K_h=-1.4280026833148802,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 531,
+ label = "CC(C)O[O] + CC=O <=> CC(C)OO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4954290535709542,B_g=0.057067621248056206,E_g=-0.5407606103850813,L_g=0.2804413598056372,A_g=0.025869188874038575,K_g=-0.7311179628024896,S_h=-0.5239958512592876,B_h=0.38947460302254006,E_h=-0.3042067070228753,L_h=0.26425570691986877,A_h=0.12693422344654348,K_h=-1.623154155744649,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.247, MAE_h(kcal/mol): 0.2)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.247, MAE_h(kcal/mol): 0.2)"""),
+)
+
+entry(
+ index = 532,
+ label = "CC(C)O[O] + CCC=O <=> CC(C)OO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.49203505117688223,B_g=-0.08883782940336457,E_g=-0.6022118459563666,L_g=0.2840992587141511,A_g=0.10338878999134035,K_g=-0.9918550495297999,S_h=-0.5088511235138176,B_h=0.2230511983732632,E_h=-0.3289470052518014,L_h=0.276717486768513,A_h=0.08019521855539305,K_h=-1.9422197026223489,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.215)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.215)"""),
+)
+
+entry(
+ index = 533,
+ label = "CC(C)O[O] + CCC <=> CC(C)OO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07732900919020488,B_g=-0.12986640694034216,E_g=-0.05406946362564709,L_g=-0.010709800211099565,A_g=0.4821609232615153,K_g=0.23329917968408947,S_h=0.35571784055018313,B_h=-0.37254857380458734,E_h=0.03654966725020016,L_h=-0.0001026264222829527,A_h=0.4730858153482085,K_h=-0.45792642668526945,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.11900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.113, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.11900000000000001)"""),
+)
+
+entry(
+ index = 534,
+ label = "CC(C)O[O] + CCC <=> CC(C)OO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.026990749060416562,B_g=-0.053930184909691654,E_g=-0.06623802512491148,L_g=0.00555648772074844,A_g=0.35809290918015996,K_g=0.11920058948164958,S_h=0.2575410067190698,B_h=-0.19954241721173255,E_h=0.06886232935186126,L_h=0.009558918189783596,A_h=0.3328541397572881,K_h=-0.6356167464094675,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.105, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.105, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 535,
+ label = "CC(C)O[O] + CC <=> CC(C)OO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.038250333676603375,B_g=-0.05271332875976521,E_g=-0.08382379562896887,L_g=-0.005094668820475152,A_g=0.3892400283430361,K_g=0.3530568840295608,S_h=0.284333833393655,B_h=-0.26402113224036483,E_h=0.011596785717973655,L_h=0.037290043582384316,A_h=0.3198132536686186,K_h=-0.5166800534422599,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 536,
+ label = "CC(C)O[O] + [O]O <=> CC(C)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1221759449116808,B_g=-5.060582187359743,E_g=-0.006685378365860919,L_g=0.7423115732900659,A_g=0.7855759407410651,K_g=-2.4902154757783785,S_h=-0.6376326225614541,B_h=-8.254199161465479,E_h=0.013766601503384657,L_h=0.8576563414773702,A_h=2.172777290739737,K_h=-4.5870565444874645,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.594, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.225, MAE_h(kcal/mol): 1.0)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.594, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.225, MAE_h(kcal/mol): 1.0)"""),
+)
+
+entry(
+ index = 537,
+ label = "CC(CCO)O[O] + OO <=> CC(CCO)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5683891093553991,B_g=-1.224289235083219,E_g=0.2688812263813361,L_g=0.24325394264553593,A_g=-1.2192458794738852,K_g=-0.09986283934004747,S_h=-0.1347484924575169,B_h=-3.716036776737107,E_h=0.5338553182571855,L_h=0.344099063456006,A_h=-0.991664457602703,K_h=-2.0482327968406393,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.58, MAE_h(kcal/mol): 0.446)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.58, MAE_h(kcal/mol): 0.446)"""),
+)
+
+entry(
+ index = 538,
+ label = "CC(CCO)O[O] + [O]O <=> CC(CCO)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.871173707383782,B_g=-4.9516295791889195,E_g=0.20159494565739158,L_g=0.628212983087626,A_g=0.8773459536382282,K_g=-2.171039972019661,S_h=-0.3659145086498679,B_h=-8.204190771978743,E_h=0.2284684073780562,L_h=0.749634701565828,A_h=2.2431790164258425,K_h=-4.067840152323069,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.589, MAE_g(kcal/mol): 0.474, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.219, MAE_h(kcal/mol): 0.993)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.589, MAE_g(kcal/mol): 0.474, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.219, MAE_h(kcal/mol): 0.993)"""),
+)
+
+entry(
+ index = 539,
+ label = "CC(CO)CO[O] + OO <=> CC(CO)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.36159686845524935,B_g=0.3478669192455372,E_g=-0.3965411652425948,L_g=0.026426303737860323,A_g=-0.37650702152121546,K_g=0.10050791970868317,S_h=0.6783166685379104,B_h=0.3832510435569524,E_h=-0.12357687334614406,L_h=-0.09220984042123302,A_h=-0.4265300719254205,K_h=-0.7065316042069879,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.401, MAE_h(kcal/mol): 0.326)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.259, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.401, MAE_h(kcal/mol): 0.326)"""),
+)
+
+entry(
+ index = 540,
+ label = "CC(CO)CO[O] + [O]O <=> CC(CO)COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.026410832004217,B_g=-5.1296131172624975,E_g=0.0030421403748160983,L_g=0.714815022576969,A_g=0.9076134177529648,K_g=-2.4565026960584286,S_h=-0.4113926746386849,B_h=-8.5087126887272,E_h=-0.04388745644343128,L_h=0.8243613979052867,A_h=2.201542010813901,K_h=-4.293068496940478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.608, MAE_g(kcal/mol): 0.493, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.26, MAE_h(kcal/mol): 1.033)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.608, MAE_g(kcal/mol): 0.493, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.26, MAE_h(kcal/mol): 1.033)"""),
+)
+
+entry(
+ index = 541,
+ label = "CC(O)C(C)O[O] + OO <=> CC(O)C(C)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8455757454829199,B_g=-0.8167890340325515,E_g=-0.22083739983544523,L_g=0.33041309699870075,A_g=0.023384163363044223,K_g=-0.8297639459926106,S_h=-0.22183434222333678,B_h=-3.3737923193409287,E_h=-0.2206981211194898,L_h=0.44303826499550686,A_h=1.3181777505546517,K_h=-2.6068210828680165,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43799999999999994, MAE_h(kcal/mol): 0.34600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43799999999999994, MAE_h(kcal/mol): 0.34600000000000003)"""),
+)
+
+entry(
+ index = 542,
+ label = "CC(O)C(C)O[O] + [O]O <=> CC(O)C(C)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0612158500756068,B_g=-4.960565408386271,E_g=-0.0015467267929787875,L_g=0.7167282723066727,A_g=0.7475015380740897,K_g=-2.703392546236275,S_h=-0.6298623363028878,B_h=-8.086925423603,E_h=0.03456311293315157,L_h=0.8430760590544565,A_h=2.0212420477802224,K_h=-4.709094021499364,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.591, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.213, MAE_h(kcal/mol): 0.9890000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.591, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.213, MAE_h(kcal/mol): 0.9890000000000001)"""),
+)
+
+entry(
+ index = 543,
+ label = "CC(O)CCO[O] + [O]O <=> CC(O)CCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0585622240137194,B_g=-7.033369902904943,E_g=0.22908416591175396,L_g=0.8376881718846014,A_g=1.6114107608519856,K_g=-2.7303906257554256,S_h=-0.18695601956460184,B_h=-12.583648725105265,E_h=0.05069745260777864,L_h=1.1466303552499617,A_h=4.111449051334589,K_h=-5.439559573474483,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8170000000000001, MAE_g(kcal/mol): 0.643, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7619999999999998, MAE_h(kcal/mol): 1.389)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8170000000000001, MAE_g(kcal/mol): 0.643, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7619999999999998, MAE_h(kcal/mol): 1.389)"""),
+)
+
+entry(
+ index = 544,
+ label = "CC + CC(=O)O[O] <=> CC(=O)OO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6517804079190326,B_g=-0.22190764681068173,E_g=0.3727904789428257,L_g=-0.2650327355457254,A_g=0.4072656263711633,K_g=1.2183588939670111,S_h=1.0952658308973438,B_h=-0.7889112994652611,E_h=0.40522775884297324,L_h=-0.2324341855534189,A_h=0.24330525585667737,K_h=0.44254712426029563,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.273)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.273)"""),
+)
+
+entry(
+ index = 545,
+ label = "CC + CCO[O] <=> CCOO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08050309782224191,B_g=-0.1269635452814815,E_g=0.01834080775371055,L_g=-0.017175264814925584,A_g=0.3882797382488171,K_g=0.5146128640791319,S_h=0.37317899325575404,B_h=-0.41801207887593533,E_h=0.10537534430838894,L_h=-0.007982869561866822,A_h=0.3511656256760607,K_h=-0.26839741610485934,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.14)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.14)"""),
+)
+
+entry(
+ index = 546,
+ label = "CC + CO[O] <=> COO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.012527753977254728,B_g=-0.1913323034290963,E_g=0.09845539126302412,L_g=-0.019704273078326923,A_g=0.2841139196316201,K_g=0.5445357966333471,S_h=0.25456484047286415,B_h=-0.5020044750557977,E_h=0.18894257388165042,L_h=-0.0070005880914442735,A_h=0.3205096472483958,K_h=-0.336350768573643,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.179, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.138)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.179, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.138)"""),
+)
+
+entry(
+ index = 547,
+ label = "CC + C[O] <=> CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.016772089584528273,B_g=-0.28481031321139727,E_g=0.011054331771620907,L_g=0.0197555862894684,A_g=0.8058813114356207,K_g=0.6709422270510068,S_h=0.20608851686163804,B_h=-0.5926455973078484,E_h=0.0859203068270349,L_h=0.055931400144209234,A_h=1.3627542701191255,K_h=-0.2556424179068352,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.165, MAE_h(kcal/mol): 0.139)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.165, MAE_h(kcal/mol): 0.139)"""),
+)
+
+entry(
+ index = 548,
+ label = "CC + [CH3] <=> C + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.058621678499769486,B_g=-0.10732524633176503,E_g=-0.16453947675451117,L_g=0.09686468171763837,A_g=0.2382692307060782,K_g=0.5352407749580054,S_h=0.06328385025490933,B_h=-0.10368933879945472,E_h=0.0014294394532268413,L_h=0.12440521518314217,A_h=0.28766186165911645,K_h=-0.5057796613040634,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.09699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.09699999999999999)"""),
+)
+
+entry(
+ index = 549,
+ label = "CC + [H] <=> [H][H] + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12430258876085921,B_g=0.09932771585242924,E_g=-0.06392160016481055,L_g=0.04676099626735395,A_g=0.016552175822493374,K_g=1.4425609743615901,S_h=0.22612266058301728,B_h=0.21900478515182106,E_h=0.17155472576342445,L_h=0.11635637149266487,A_h=-0.14461528991414935,K_h=0.24715374669228812,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.349, MAE_h(kcal/mol): 0.218)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.349, MAE_h(kcal/mol): 0.218)"""),
+)
+
+entry(
+ index = 550,
+ label = "CC + [OH] <=> O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2639624885704889,B_g=-1.2014108733728548,E_g=0.525095420069462,L_g=-0.045522148741224025,A_g=1.2331077769408183,K_g=1.1291105588745147,S_h=0.41140000509741936,B_h=-2.0566701548440447,E_h=0.7119341522943119,L_h=0.032195374761909167,A_h=1.937601513619616,K_h=0.10665817458692585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.465, MAE_h(kcal/mol): 0.384)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.465, MAE_h(kcal/mol): 0.384)"""),
+)
+
+entry(
+ index = 551,
+ label = "CC + [O][O] <=> [O]O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6476900119451835,B_g=0.23714034006096574,E_g=-0.028354214385032935,L_g=-0.09161607326373877,A_g=0.1273593900531443,K_g=1.4572878659591941,S_h=0.7166622981780623,B_h=0.43990815911587683,E_h=0.292939791947954,L_h=0.07441881707260971,A_h=-0.3803848341917642,K_h=0.3858460259489642,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.361)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.361)"""),
+)
+
+entry(
+ index = 552,
+ label = "CC + [O] <=> [OH] + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7662968342693389,B_g=0.13018894712466,E_g=0.09319212189165556,L_g=-0.16269220115341804,A_g=0.45885739494455063,K_g=2.029188265048417,S_h=1.0332941327559093,B_h=0.01927177601299162,E_h=0.27769976823893555,L_h=-0.09542791180567702,A_h=0.159444807934036,K_h=1.203566028240797,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.302, MAE_h(kcal/mol): 0.231)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.302, MAE_h(kcal/mol): 0.231)"""),
+)
+
+entry(
+ index = 553,
+ label = "CC=C(C)O + CO[O] <=> COO + [CH2]C(O)=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8534339972463001,B_g=-0.1118041566185425,E_g=2.2558313882015835,L_g=-0.3642138422234647,A_g=-1.5781817914085121,K_g=0.7656884061943756,S_h=-0.7363372494214511,B_h=-0.7276653167385417,E_h=2.328564199765259,L_h=-0.3092280712560055,A_h=-1.4350252627825277,K_h=-0.4238691154047982,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9279999999999999, MAE_g(kcal/mol): 0.573, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9790000000000001, MAE_h(kcal/mol): 0.613)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9279999999999999, MAE_g(kcal/mol): 0.573, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9790000000000001, MAE_h(kcal/mol): 0.613)"""),
+)
+
+entry(
+ index = 554,
+ label = "CC=C(C)O + [CH3] <=> C + [CH2]C(O)=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12351822967626809,B_g=-0.002507016887197845,E_g=-0.15597750095261914,L_g=0.10952438395211402,A_g=0.10503081274786759,K_g=0.35222854219256267,S_h=-0.053387730963338896,B_h=0.04870356783199556,E_h=0.06782873467029725,L_h=0.12882548180004363,A_h=0.17264696411486444,K_h=-0.6852732738769477,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 555,
+ label = "CC=C(C)O + [H] <=> [H][H] + [CH2]C(O)=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07998996571082714,B_g=1.5091288701295542,E_g=-0.24900835275211575,L_g=0.02154421822068557,A_g=-0.2567053344233372,K_g=1.6197528228918427,S_h=-0.4795806017869725,B_h=2.951711835867348,E_h=-0.0007916895433256352,L_h=0.07475601817439655,A_h=-0.7579034590183403,K_h=0.7632620243532573,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.63, MAE_h(kcal/mol): 0.475)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.63, MAE_h(kcal/mol): 0.475)"""),
+)
+
+entry(
+ index = 556,
+ label = "CC=C(C)O + [O][O] <=> [O]O + [CH2]C(O)=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3305303843384527,B_g=2.4442241776781466,E_g=-0.24781348797839278,L_g=-0.15452607012318878,A_g=-0.24082756080441756,K_g=1.7163096253426322,S_h=-0.18732254250132668,B_h=4.161985233850209,E_h=0.0475233639757416,L_h=0.016962681511625183,A_h=-1.1153659487473335,K_h=0.8880117710969209,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27399999999999997, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.943, MAE_h(kcal/mol): 0.72)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27399999999999997, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.943, MAE_h(kcal/mol): 0.72)"""),
+)
+
+entry(
+ index = 557,
+ label = "CC=CC + CC(C)O[O] <=> CC(C)OO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08511395636624028,B_g=0.21517828569241387,E_g=1.852304295785013,L_g=-0.5763866398347348,A_g=-1.0126295695833634,K_g=1.635923814860142,S_h=0.13180897850498377,B_h=0.0016273618390582499,E_h=1.8577801484596823,L_h=-0.4902610801631341,A_h=-0.9086323515170598,K_h=0.7316017730789663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8270000000000001, MAE_g(kcal/mol): 0.585, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.857, MAE_h(kcal/mol): 0.605)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8270000000000001, MAE_g(kcal/mol): 0.585, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.857, MAE_h(kcal/mol): 0.605)"""),
+)
+
+entry(
+ index = 558,
+ label = "CC=CC + CCO[O] <=> CCOO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.025993806672525026,B_g=-0.056209957576120094,E_g=0.5722009478973373,L_g=-0.17626821072970575,A_g=0.4856942043715427,K_g=0.32829459442443126,S_h=0.35112164292365367,B_h=-0.43243842166542473,E_h=0.5488387759104966,L_h=-0.1482218756115217,A_h=0.6127090628641656,K_h=-0.5872870319729314,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.392, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.401, MAE_h(kcal/mol): 0.27399999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.392, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.401, MAE_h(kcal/mol): 0.27399999999999997)"""),
+)
+
+entry(
+ index = 559,
+ label = "CC=CC + CO[O] <=> COO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06867906788349885,B_g=-0.30776197950910616,E_g=-0.021507565927013087,L_g=0.016530184446289883,A_g=0.8001488927052443,K_g=0.1327912599754063,S_h=0.24731501678444703,B_h=-0.6991864845550223,E_h=-0.04085997698608417,L_h=0.029651705581038836,A_h=0.9775459940800625,K_h=-0.8197798611962263,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 560,
+ label = "CC=CC + C[O] <=> CO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0896295189466902,B_g=-0.14726158551730265,E_g=0.34364457501446716,L_g=-0.10494284724305362,A_g=1.4575444320149016,K_g=0.7776370539316051,S_h=0.1844856549710765,B_h=-0.3802162336408708,E_h=0.45954645806559324,L_h=-0.050924696828548034,A_h=2.3681560073902754,K_h=-0.1590416327036387,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.198)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.198)"""),
+)
+
+entry(
+ index = 561,
+ label = "CC=CC + [CH3] <=> C + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0881267749061184,B_g=-0.09367593216813234,E_g=-0.17872391440576213,L_g=0.10179074998722008,A_g=0.22490580443309086,K_g=0.3836908710810222,S_h=0.028962642459996156,B_h=-0.06105539079962237,E_h=-0.004588867167794886,L_h=0.12211811205797923,A_h=0.2700174474851831,K_h=-0.6319441865834847,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.094)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.094)"""),
+)
+
+entry(
+ index = 562,
+ label = "CC=CC + [H] <=> [H][H] + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1284516284045843,B_g=0.13734347484952872,E_g=-0.04641646470683261,L_g=0.042868522679336246,A_g=-0.01803292848686169,K_g=1.451548116770083,S_h=0.21752403248745278,B_h=0.308172485198238,E_h=0.19150823443872425,L_h=0.11384935460546704,A_h=-0.19954974767046701,K_h=0.2573797366269109,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.366, MAE_h(kcal/mol): 0.226)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.366, MAE_h(kcal/mol): 0.226)"""),
+)
+
+entry(
+ index = 563,
+ label = "CC=CC + [OH] <=> O + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7239121218664794,B_g=-2.2122004978138596,E_g=0.9547482674157781,L_g=-0.1471223068013472,A_g=2.805630454206299,K_g=1.1219633616083806,S_h=1.3688532117862269,B_h=-4.360310794912015,E_h=1.2224786117757982,L_h=-0.03286977696548285,A_h=3.8548463433335347,K_h=-0.10918718285032719,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.513, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.767, MAE_h(kcal/mol): 0.598)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.513, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.767, MAE_h(kcal/mol): 0.598)"""),
+)
+
+entry(
+ index = 564,
+ label = "CC=CC + [O]O <=> OO + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9284759033113421,B_g=-2.9221187739561847,E_g=0.4654401468881285,L_g=-0.06742555943989992,A_g=0.9404025596723683,K_g=0.16584429840925158,S_h=1.5710199332249093,B_h=-3.982264377056556,E_h=0.5628472825521196,L_h=-0.11015480340328075,A_h=1.0006442695524616,K_h=-0.8484346243893736,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.547, MAE_g(kcal/mol): 0.426, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.746, MAE_h(kcal/mol): 0.588)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.547, MAE_g(kcal/mol): 0.426, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.746, MAE_h(kcal/mol): 0.588)"""),
+)
+
+entry(
+ index = 565,
+ label = "CC=CC + [O][O] <=> [O]O + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5592920100658888,B_g=0.22852705104793222,E_g=-0.09350000115850442,L_g=-0.06820258806575658,A_g=0.19394927719731164,K_g=1.1110409780939805,S_h=0.6092197645065452,B_h=0.4775793865524549,E_h=0.1841851061629621,L_h=0.09605833125684375,A_h=-0.31676378283506806,K_h=-0.08583967178095545,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.331)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.331)"""),
+)
+
+entry(
+ index = 566,
+ label = "CC=CC + [O] <=> [OH] + [CH2]C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.999368769732659,B_g=0.2380786387789813,E_g=0.2617120377389984,L_g=-0.2621591957218027,A_g=1.0289984839374944,K_g=2.1415275451545774,S_h=1.23038817675032,B_h=0.15262015085221967,E_h=0.3923774646814007,L_h=-0.14697569762665727,A_h=0.9834396829025979,K_h=1.3434751636473994,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.321)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.321)"""),
+)
+
+entry(
+ index = 567,
+ label = "CC=CC=O + [CH3] <=> C + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17980149183973318,B_g=0.030553352005381923,E_g=-0.12202281609443077,L_g=0.11575527387643615,A_g=-0.33952485720568004,K_g=0.4233853051283214,S_h=-0.16758894758806175,B_h=0.24461740797015227,E_h=0.1939566076560461,L_h=0.11558667332554273,A_h=-0.5127655884780388,K_h=-0.6164256054425555,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.174)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.174)"""),
+)
+
+entry(
+ index = 568,
+ label = "CC=CC=O + [CH3] <=> C + [CH2]C=CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3790653516195549,B_g=-0.0817932585595133,E_g=-0.3379634694952322,L_g=0.20479835612436664,A_g=0.5540140797770512,K_g=-0.0037312034958587805,S_h=-0.37114112572756397,B_h=0.02356009437267214,E_h=-0.2607004344336379,L_h=0.27026668308215596,A_h=1.0162361552807357,K_h=-1.1545252593070146,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 569,
+ label = "CC=CC=O + [CH]=C <=> C=C + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.43804622259731457,B_g=-0.09133018537309343,E_g=-0.4107989074811907,L_g=0.26444629884696563,A_g=-0.2252576664523467,K_g=-0.22267001451906937,S_h=-0.4530663325442983,B_h=0.13357561905999743,E_h=-0.10506746504154008,L_h=0.23594547528724277,A_h=-0.21491438917797195,K_h=-1.1808562670813263,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.21899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.21899999999999997)"""),
+)
+
+entry(
+ index = 570,
+ label = "CC=CC=O + [CH]=C <=> C=C + [CH2]C=CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11588722213365711,B_g=-0.11854817865427937,E_g=-0.10733257679049954,L_g=0.02556130960718972,A_g=0.9565075775120573,K_g=0.5648851500803097,S_h=0.3192341474285934,B_h=-0.2757498662155594,E_h=-0.029461113653941922,L_h=0.06430278401900437,A_h=1.287924947357384,K_h=-0.2980417912271637,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 571,
+ label = "CC=CC=O + [H] <=> [H][H] + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20846358549161495,B_g=0.2909752290071089,E_g=-0.31378761658886245,L_g=0.21110988109476825,A_g=-0.6050487334866167,K_g=0.8820521081457751,S_h=-0.357975621840408,B_h=0.8536319196321317,E_h=0.15441611324217136,L_h=0.2516913006489415,A_h=-0.8925126727599018,K_h=-0.44155751233113855,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33299999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33299999999999996)"""),
+)
+
+entry(
+ index = 572,
+ label = "CC=CC=O + [H] <=> [H][H] + [CH2]C=CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1742230127427812,B_g=0.15169651305167312,E_g=-0.06044696272465915,L_g=0.019931517299096313,A_g=0.3290349707566154,K_g=1.4286111113898432,S_h=0.3307722894766911,B_h=0.2389289719921829,E_h=0.10791901348925928,L_h=0.06889898164553375,A_h=0.31310588392655425,K_h=0.30982183841349975,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.16)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.26, MAE_h(kcal/mol): 0.16)"""),
+)
+
+entry(
+ index = 573,
+ label = "CC=CC=O + [OH] <=> O + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39521435221165085,B_g=-1.6170185617838755,E_g=0.19277640379979216,L_g=0.29024951359239376,A_g=1.2057578354024112,K_g=-0.15141795561976223,S_h=-0.6850533601149128,B_h=-2.174668549093237,E_h=0.779997461644113,L_h=0.3659951436959473,A_h=2.0500360896893253,K_h=-1.424256818901552,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.509, MAE_h(kcal/mol): 0.37200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.265, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.509, MAE_h(kcal/mol): 0.37200000000000005)"""),
+)
+
+entry(
+ index = 574,
+ label = "CC=CC=O + [O]O <=> OO + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.43268032680366314,B_g=-1.7386088808129705,E_g=-0.28964841597616503,L_g=0.38599996558238864,A_g=0.09190196115438416,K_g=-1.02760569677794,S_h=-0.5275291323693149,B_h=-1.7706942986938625,E_h=0.10165147127126467,L_h=0.3650641754366663,A_h=0.06469862879066719,K_h=-2.15467105766553,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.308, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.491, MAE_h(kcal/mol): 0.40700000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.308, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.491, MAE_h(kcal/mol): 0.40700000000000003)"""),
+)
+
+entry(
+ index = 575,
+ label = "CC=CC=O + [O][O] <=> [O]O + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13529094640386966,B_g=0.38057542611886114,E_g=-0.39020031843725517,L_g=0.19721866179289713,A_g=-0.5461338366374674,K_g=0.352705022010305,S_h=-0.3737800908719828,B_h=1.0871876653719286,E_h=0.10117499145352238,L_h=0.31251211676906,A_h=-0.9700835870883451,K_h=-0.9327055780011467,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.696, MAE_h(kcal/mol): 0.429)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.696, MAE_h(kcal/mol): 0.429)"""),
+)
+
+entry(
+ index = 576,
+ label = "CC=CC=O + [O] <=> [OH] + CC=C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3367319524278369,B_g=0.5100973014986819,E_g=-0.19455770527227484,L_g=0.024688985017784625,A_g=-0.18542395368909206,K_g=1.2326093057468726,S_h=0.27657087759382304,B_h=1.0426404676423926,E_h=0.2475642523814199,L_h=0.06343045942959927,A_h=-0.44050192627337104,K_h=0.31447667970990506,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.24600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.24600000000000002)"""),
+)
+
+entry(
+ index = 577,
+ label = "CC=O + CC(=O)O[O] <=> CC(=O)OO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19067256214299164,B_g=-0.21544951266559023,E_g=-0.5077882069973155,L_g=0.21833771340698188,A_g=0.24853187293437348,K_g=-0.5163648437166767,S_h=-0.11490494066323455,B_h=-0.06447871502863228,E_h=-0.279964879987895,L_h=0.19830356968560262,A_h=0.23559361326798695,K_h=-1.4235824166979782,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.196, MAE_h(kcal/mol): 0.166)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.196, MAE_h(kcal/mol): 0.166)"""),
+)
+
+entry(
+ index = 578,
+ label = "CC=O + [CH3] <=> C + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3900830310975032,B_g=-0.011684751222787615,E_g=-0.3011865580242627,L_g=0.20995166861471776,A_g=-0.3001383024252297,K_g=0.06952940109670046,S_h=-0.41897236897015444,B_h=0.270193378494811,E_h=-0.012256527004078352,L_h=0.19497554142014115,A_h=-0.32136731092033194,K_h=-1.042618476266189,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.19)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.19)"""),
+)
+
+entry(
+ index = 579,
+ label = "CC=O + [H] <=> [H][H] + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24331991677414638,B_g=0.3057314424396506,E_g=-0.334224935540639,L_g=0.21211415394139427,A_g=-0.5708228216552519,K_g=0.8018642200491165,S_h=-0.40154053809952145,B_h=0.9206029906304928,E_h=0.0936905930856013,L_h=0.26119890562758363,A_h=-0.8291921702113199,K_h=-0.5504661377495549,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.34)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.34)"""),
+)
+
+entry(
+ index = 580,
+ label = "CC=O + [H] <=> [H][H] + [CH2]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06477926383674665,B_g=0.0001392787159554358,E_g=-0.1423721695413934,L_g=0.10485488173823969,A_g=0.15632936297187494,K_g=1.085259754724756,S_h=0.0436235599289894,B_h=0.0827168963600599,E_h=0.04852763682236763,L_h=0.13983583081925754,A_h=0.1341620557587572,K_h=-0.08068635929060432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.218, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.218, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 581,
+ label = "CC=O + [OH] <=> O + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.500355121840536,B_g=-1.5374464322209145,E_g=0.13366358456481142,L_g=0.32108142302968656,A_g=1.807764428514212,K_g=-0.2889593528551223,S_h=-0.7925178851626332,B_h=-1.967062627273558,E_h=0.5898453620712707,L_h=0.4264421064206064,A_h=2.8763767114529255,K_h=-1.5780498431512913,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.375)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.375)"""),
+)
+
+entry(
+ index = 582,
+ label = "CC=O + [OH] <=> O + [CH2]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.005138651572882132,B_g=-2.330470119036228,E_g=0.36378867561686384,L_g=0.21727479689047988,A_g=0.8943013046911188,K_g=0.06641395613453939,S_h=0.5158663725227307,B_h=-4.752790886015698,E_h=0.4852030636363314,L_h=0.4238324631111257,A_h=1.856607275062163,K_h=-1.6425578800148617,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.385, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7659999999999999, MAE_h(kcal/mol): 0.562)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.385, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7659999999999999, MAE_h(kcal/mol): 0.562)"""),
+)
+
+entry(
+ index = 583,
+ label = "CC=O + [O]O <=> OO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14133124440109487,B_g=-2.068186305515939,E_g=-0.1427753447717907,L_g=0.3137216424602519,A_g=0.46479506651949287,K_g=-0.7887793512080399,S_h=-0.13618526236947825,B_h=-2.16544683200524,E_h=0.1451943961541746,L_h=0.30512301436468736,A_h=0.5408632368073643,K_h=-1.9182784243954831,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.493, MAE_h(kcal/mol): 0.384)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.493, MAE_h(kcal/mol): 0.384)"""),
+)
+
+entry(
+ index = 584,
+ label = "CC=O + [O][O] <=> [O]O + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3351119210475131,B_g=0.7177618669882367,E_g=-0.20774520053563425,L_g=0.023494120244061674,A_g=-0.6470742534114858,K_g=0.9190342724613106,S_h=0.11818165571755454,B_h=1.5213487448399599,E_h=0.2711096858366231,L_h=0.13551086016590455,A_h=-1.1052425852349936,K_h=-0.29829102682413655,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.433)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.433)"""),
+)
+
+entry(
+ index = 585,
+ label = "CC=O + [O] <=> [OH] + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1636378303301681,B_g=0.5176183521602754,E_g=-0.2697242291358032,L_g=0.07561368184633266,A_g=0.06724229797153751,K_g=1.4055421577523823,S_h=0.12367949976842701,B_h=1.1020098529330806,E_h=0.0338520584359054,L_h=0.11936919003254301,A_h=-0.045522148741224025,K_h=0.4721255252539895,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33299999999999996, MAE_h(kcal/mol): 0.196)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33299999999999996, MAE_h(kcal/mol): 0.196)"""),
+)
+
+entry(
+ index = 586,
+ label = "CCC(C)(O)O[O] + OO <=> CCC(C)(O)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3616408512076563,B_g=-4.290282922621369,E_g=-0.03663763275501412,L_g=0.5206604925350915,A_g=0.3285438300214041,K_g=-1.5444836726060316,S_h=0.5192017312469268,B_h=-8.972840683501856,E_h=-0.06428079264280089,L_h=0.7962270972822886,A_h=1.9977992407473024,K_h=-4.238735136800389,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.457, MAE_g(kcal/mol): 0.359, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2209999999999999, MAE_h(kcal/mol): 0.9540000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.457, MAE_g(kcal/mol): 0.359, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2209999999999999, MAE_h(kcal/mol): 0.9540000000000001)"""),
+)
+
+entry(
+ index = 587,
+ label = "CCC(C)(O)O[O] + [O]O <=> CCC(C)(O)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8984136920411715,B_g=-6.049490392478275,E_g=0.11940584232621548,L_g=0.7413586136545813,A_g=1.040133450755195,K_g=-2.53620677387861,S_h=0.041021247078243096,B_h=-11.041158937275014,E_h=-0.08077432479541828,L_h=0.9670267857960598,A_h=3.0025852194847547,K_h=-5.0190624690875545,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.695, MAE_g(kcal/mol): 0.536, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.55, MAE_h(kcal/mol): 1.228)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.695, MAE_g(kcal/mol): 0.536, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.55, MAE_h(kcal/mol): 1.228)"""),
+)
+
+entry(
+ index = 588,
+ label = "CCC(C)=O + CO[O] <=> COO + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.733427057303856,B_g=-0.1760263055914674,E_g=0.7684959718896879,L_g=0.04503100800601275,A_g=-0.2742911049273946,K_g=-0.4903197238330101,S_h=-0.6146516344288072,B_h=-0.20618381282518647,E_h=0.893267710009555,L_h=0.051613759949590714,A_h=-0.3401259548219087,K_h=-1.5515282434498827,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.54, MAE_g(kcal/mol): 0.379, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.363)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.54, MAE_g(kcal/mol): 0.379, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.363)"""),
+)
+
+entry(
+ index = 589,
+ label = "CCC(C)=O + C[CH2] <=> CC + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08887448169703706,B_g=-0.21953257818070485,E_g=-0.05420874234160252,L_g=-0.0007330458734496622,A_g=1.143434275241721,K_g=0.2664841663751557,S_h=0.21822042606722994,B_h=-0.3342029441644355,E_h=0.08007793121564111,L_h=0.03727538266491532,A_h=1.772350982367859,K_h=-0.785312044226623,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.076)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11199999999999999, MAE_h(kcal/mol): 0.076)"""),
+)
+
+entry(
+ index = 590,
+ label = "CCC(C)=O + C[CH2] <=> CC + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03810372450191344,B_g=-0.20309768969796338,E_g=-0.07560635138759816,L_g=0.040442140838217865,A_g=0.7821232946771172,K_g=0.14589078973395178,S_h=0.14303924128623258,B_h=-0.3413794632655077,E_h=0.04828573168412925,L_h=0.04480376378524336,A_h=1.3532906478928903,K_h=-0.8146632009995476,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 591,
+ label = "CCC(C)=O + C[CH2] <=> CC + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3027919284871175,B_g=0.14751082111427552,E_g=-0.4018997305775119,L_g=0.1895143496629412,A_g=0.10567589311650329,K_g=-0.26275296287929695,S_h=-0.34735378713412246,B_h=0.4374744468160239,E_h=-0.17935433385692884,L_h=0.22753743911877516,A_h=0.21791254680038108,K_h=-1.3631207930558502,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.231, MAE_h(kcal/mol): 0.158)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.231, MAE_h(kcal/mol): 0.158)"""),
+)
+
+entry(
+ index = 592,
+ label = "CCC(C)=O + C[O] <=> CO + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5525626489476209,B_g=-0.20262854033895564,E_g=-0.5166067488549149,L_g=0.29476507617284364,A_g=0.18980023755358652,K_g=-0.6804278406534455,S_h=-0.5142463411424071,B_h=-0.15225362791549485,E_h=-0.35009537870082413,L_h=0.30067342591284796,A_h=0.2287176429750291,K_h=-1.755124404341792,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.161)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.161)"""),
+)
+
+entry(
+ index = 593,
+ label = "CCC(C)=O + C[O] <=> CO + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5321546518307823,B_g=-0.10447369788404587,E_g=-0.3309262291101155,L_g=0.2312906339908374,A_g=-0.22270666681274184,K_g=-0.4879666465792366,S_h=-0.4803869522477671,B_h=-0.014059819852764523,E_h=-0.10899659092323029,L_h=0.23173779197364172,A_h=-0.3381540614223292,K_h=-1.5456565460035507,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.201)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.201)"""),
+)
+
+entry(
+ index = 594,
+ label = "CCC(C)=O + C[O] <=> CO + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5423659808479361,B_g=-0.07869980497355573,E_g=-0.42901509743641486,L_g=0.2793124691605248,A_g=0.464355238995423,K_g=-0.6163229790202726,S_h=-0.556682366756408,B_h=0.010900392138196477,E_h=-0.33338926324490636,L_h=0.3176361074244732,A_h=0.9732430148029131,K_h=-1.7019492566817533,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.142)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.142)"""),
+)
+
+entry(
+ index = 595,
+ label = "CCC(C)=O + [CH3] <=> C + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.008972481491023867,B_g=-0.17423767366025023,E_g=-0.062140298692327865,L_g=0.043748177727475836,A_g=0.6082228221186539,K_g=0.4832311702367519,S_h=0.134543239612951,B_h=-0.28006017595144345,E_h=0.08446887599760458,L_h=0.06716166292545805,A_h=0.8934802933128553,K_h=-0.5540653929881927,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10300000000000001, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10300000000000001, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 596,
+ label = "CCC(C)=O + [CH3] <=> C + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.027086045023965017,B_g=-0.15135931194988628,E_g=-0.0440560569943247,L_g=0.04481842470271235,A_g=0.6535470484740463,K_g=0.49872042954274315,S_h=0.11398863332142248,B_h=-0.25032050486559065,E_h=0.08927032646869987,L_h=0.0698519412810183,A_h=1.0378390171712972,K_h=-0.5120032207696511,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11699999999999999, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 597,
+ label = "CCC(C)=O + [CH3] <=> C + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12077663810956633,B_g=0.010196668099684801,E_g=-0.2233590776401121,L_g=0.12166362361644044,A_g=0.13223414511158457,K_g=0.238694397312679,S_h=-0.05891489684914936,B_h=0.11902465847202166,E_h=-0.031982791458608766,L_h=0.1445932985379459,A_h=0.14776738716998292,K_h=-0.8002588495862618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 598,
+ label = "CCC(C)=O + [CH]=C <=> C=C + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2326394383979848,B_g=-0.2721286196007181,E_g=-0.30852434721749383,L_g=0.16110882206676677,A_g=0.8498640638426004,K_g=-0.11212669680286032,S_h=-0.1241193272924968,B_h=-0.3731863237144885,E_h=-0.22129188827698407,L_h=0.1898295593885245,A_h=1.2563599920466417,K_h=-1.1411471721165583,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08900000000000001, MAE_h(kcal/mol): 0.07200000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08900000000000001, MAE_h(kcal/mol): 0.07200000000000001)"""),
+)
+
+entry(
+ index = 599,
+ label = "CCC(C)=O + [CH]=C <=> C=C + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23364371124461084,B_g=-0.24309267255337697,E_g=-0.2877424967051959,L_g=0.1575242277455979,A_g=0.8465800183295459,K_g=-0.0722636622046677,S_h=-0.12510893922165386,B_h=-0.32858781277381105,E_h=-0.19685213885617228,L_h=0.19147891260378627,A_h=1.277471713201992,K_h=-1.096863870901464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08800000000000001, MAE_h(kcal/mol): 0.071)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08800000000000001, MAE_h(kcal/mol): 0.071)"""),
+)
+
+entry(
+ index = 600,
+ label = "CCC(C)=O + [CH]=C <=> C=C + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3016263855483325,B_g=-0.15661525086252034,E_g=-0.40443606929964765,L_g=0.21986244882375722,A_g=0.32907162305028786,K_g=-0.2711609990477646,S_h=-0.25703520506638955,B_h=-0.09079506188547515,E_h=-0.21640980275980926,L_h=0.23690576538146185,A_h=0.4583149409981978,K_h=-1.2940312194832198,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 601,
+ label = "CCC(C)=O + [H] <=> [H][H] + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1297197977656522,B_g=-0.002441042758587375,E_g=-0.23105605931133352,L_g=0.14114065247399799,A_g=0.06984461082228381,K_g=0.818079194769823,S_h=-0.06635531246466343,B_h=0.14527503120025406,E_h=-0.004302979277149517,L_h=0.16851991584734285,A_h=-0.05133520251767984,K_h=-0.4252105893532111,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.15)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.15)"""),
+)
+
+entry(
+ index = 602,
+ label = "CCC(C)=O + [H] <=> [H][H] + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10110168686617742,B_g=-0.001532065875509794,E_g=-0.1818027070742507,L_g=0.12458847665150459,A_g=0.14839780662114962,K_g=0.966865515703901,S_h=-0.014140454898843986,B_h=0.11279376854769953,E_h=0.009060446995837825,L_h=0.16387973546840648,A_h=0.10641626944868746,K_h=-0.22772070058713756,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.239, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.239, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 603,
+ label = "CCC(C)=O + [H] <=> [H][H] + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.003899804046752203,B_g=0.10732524633176503,E_g=-0.24916962284427469,L_g=0.1252188961026713,A_g=0.021031086109270805,K_g=1.083383157288725,S_h=0.05777867574530238,B_h=0.3268138417600629,E_h=0.007638338001345481,L_h=0.19593583151436023,A_h=-0.258281383051254,K_h=-0.16304406317267386,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 604,
+ label = "CCC(C)=O + [OH] <=> O + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01507875361685955,B_g=-2.4383964629842216,E_g=0.5463904026931747,L_g=0.17371721109010096,A_g=0.9706700237871048,K_g=0.14182971559504062,S_h=0.49818530605512495,B_h=-5.056792340194009,E_h=0.7157459908362502,L_h=0.39098467752184635,A_h=1.9671652536958408,K_h=-1.6418101732239427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.316, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.809, MAE_h(kcal/mol): 0.611)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.316, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.809, MAE_h(kcal/mol): 0.611)"""),
+)
+
+entry(
+ index = 605,
+ label = "CCC(C)=O + [OH] <=> O + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07280611615102045,B_g=-2.3846935222953,E_g=0.5715485370699671,L_g=0.19322356178259645,A_g=0.5582877372192627,K_g=0.18452963772348346,S_h=0.41213305097086905,B_h=-4.908607116876159,E_h=0.741146030351281,L_h=0.4044727215933201,A_h=1.3941506248789746,K_h=-1.5240243622780512,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42, MAE_g(kcal/mol): 0.32, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.607)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42, MAE_g(kcal/mol): 0.32, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.607)"""),
+)
+
+entry(
+ index = 606,
+ label = "CCC(C)=O + [OH] <=> O + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.021866758405003427,B_g=-2.1721835235822424,E_g=0.898391700664968,L_g=0.08663869178301557,A_g=0.6769825250482321,K_g=0.48807660346025405,S_h=0.5054717820372145,B_h=-4.819116876645424,E_h=1.0506526590391974,L_h=0.3245487300111034,A_h=1.760944788576982,K_h=-1.2591822186594228,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5, MAE_g(kcal/mol): 0.389, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.887, MAE_h(kcal/mol): 0.677)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5, MAE_g(kcal/mol): 0.389, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.887, MAE_h(kcal/mol): 0.677)"""),
+)
+
+entry(
+ index = 607,
+ label = "CCC(C)=O + [O]O <=> OO + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0031081145034265677,B_g=-2.7141096769061086,E_g=0.05390086307475366,L_g=0.20018016712163378,A_g=-0.6532978128770734,K_g=-0.9254410933952607,S_h=0.32127934541551795,B_h=-3.2028900044048747,E_h=0.3547282286210261,L_h=0.1510294413068339,A_h=-0.6844009492875426,K_h=-2.2373073189795107,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5429999999999999, MAE_g(kcal/mol): 0.445, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.626)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5429999999999999, MAE_g(kcal/mol): 0.445, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.626)"""),
+)
+
+entry(
+ index = 608,
+ label = "CCC(C)=O + [O][O] <=> [O]O + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.23451603583401592,B_g=0.26142614984835305,E_g=-0.2929031396542815,L_g=0.057221560881480636,A_g=0.14112599155652897,K_g=0.6292099254755176,S_h=0.24141399750317727,B_h=0.5886871495912201,E_h=-0.003665229367248311,L_h=0.17159137805709693,A_h=-0.26817017188409,K_h=-0.4596637454053452,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.439, MAE_h(kcal/mol): 0.262)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.439, MAE_h(kcal/mol): 0.262)"""),
+)
+
+entry(
+ index = 609,
+ label = "CCC(C)=O + [O][O] <=> [O]O + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3916077665142786,B_g=0.4135918122590339,E_g=-0.28172419008417415,L_g=0.010211329017153796,A_g=0.09950364686205715,K_g=0.6462825638681602,S_h=0.4120230940898516,B_h=0.813915494208629,E_h=0.004317640194618511,L_h=0.12681693610679157,A_h=-0.44201933123141174,K_h=-0.4475464971172223,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46799999999999997, MAE_h(kcal/mol): 0.28)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46799999999999997, MAE_h(kcal/mol): 0.28)"""),
+)
+
+entry(
+ index = 610,
+ label = "CCC(C)=O + [O][O] <=> [O]O + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.42233704952928836,B_g=0.35734520238924133,E_g=-0.32701176414589433,L_g=0.03513488871444231,A_g=-0.007850921304645882,K_g=0.734328703728199,S_h=0.39286860541661195,B_h=0.8177786459617086,E_h=0.02333285015190275,L_h=0.1816780892757643,A_h=-0.7256934233389621,K_h=-0.39660713937120523,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.34)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.34)"""),
+)
+
+entry(
+ index = 611,
+ label = "CCC(C)=O + [O] <=> [OH] + C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.29451584057587077,B_g=0.30031423343485764,E_g=-0.3296507292903131,L_g=0.07233696679201267,A_g=-0.18656017479293904,K_g=1.0085831563619212,S_h=0.3271876951555222,B_h=0.7028223920873328,E_h=0.07526181982707683,L_h=0.11796907241425413,A_h=-1.0112587738000125,K_h=0.04569807975085194,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.23)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.23)"""),
+)
+
+entry(
+ index = 612,
+ label = "CCC(C)=O + [O] <=> [OH] + [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12417797096237278,B_g=0.42070968769023015,E_g=-0.38267193731692717,L_g=0.11432583442320932,A_g=-0.33928295206744163,K_g=0.7924885633276952,S_h=0.12348157738259559,B_h=0.9324270205692358,E_h=0.026470286490267305,L_h=0.12927997024158241,A_h=-1.1090470933181973,K_h=-0.12252861774711103,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.22)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.22)"""),
+)
+
+entry(
+ index = 613,
+ label = "CCC(C)=O + [O] <=> [OH] + [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8350052239877757,B_g=0.5720396778051784,E_g=-0.0247402982289261,L_g=-0.13145711648572792,A_g=0.08415366627202123,K_g=2.900002779954209,S_h=0.9375876635183213,B_h=0.9544257272314602,E_h=0.29303508791150246,L_h=-0.07693316441854205,A_h=-0.6479612389183599,K_h=2.081439774907909,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.228)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.162, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.228)"""),
+)
+
+entry(
+ index = 614,
+ label = "CCC(C)O + C[CH2] <=> CC + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2866355974362869,B_g=-1.6358578407315318,E_g=0.060784163826446,L_g=0.23848181400937862,A_g=-0.016933359676687198,K_g=-0.3829285033726346,S_h=0.04047879313189035,B_h=-3.6537132165764175,E_h=0.25363387221358313,L_h=0.40600478746882995,A_h=0.2569252481853721,K_h=-2.04931037427461,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21100000000000002, MAE_g(kcal/mol): 0.159, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.384)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21100000000000002, MAE_g(kcal/mol): 0.159, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.384)"""),
+)
+
+entry(
+ index = 615,
+ label = "CCC(C)O + C[CH2] <=> CC + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.44908589345146654,B_g=-0.44635896280223386,E_g=-0.32556033331646395,L_g=0.042311407815514505,A_g=-0.2703473181282354,K_g=-0.09039188665507784,S_h=1.1832093443351,B_h=-0.6383876598111073,E_h=-0.02463034134790865,L_h=-0.07361979707054957,A_h=-0.5236659806162351,K_h=-1.1709528173310215,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.461, MAE_h(kcal/mol): 0.36700000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.461, MAE_h(kcal/mol): 0.36700000000000005)"""),
+)
+
+entry(
+ index = 616,
+ label = "CCC(C)O + C[O] <=> CO + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6850753514911163,B_g=-1.7629020210590927,E_g=-0.23589416207610128,L_g=0.43909447819634767,A_g=-0.4238837763222672,K_g=-1.0582909970405427,S_h=-0.4001330900224981,B_h=-3.726064844285899,E_h=-0.08750368591368618,L_h=0.5764819357982833,A_h=-0.302667310688631,K_h=-2.8181801995597575,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.217, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.217, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 617,
+ label = "CCC(C)O + C[O] <=> CO + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2021227386862754,B_g=1.0479110674724956,E_g=-0.36584853452125743,L_g=0.017116621145049613,A_g=-1.3560395699183267,K_g=0.5040936557951292,S_h=0.43974688902371784,B_h=0.8472984032855266,E_h=0.044290631673828594,L_h=-0.12060803755867291,A_h=-1.3819307501685687,K_h=-0.46461913550986483,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.703, MAE_g(kcal/mol): 0.452, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.469)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.703, MAE_g(kcal/mol): 0.452, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.469)"""),
+)
+
+entry(
+ index = 618,
+ label = "CCC(C)O + C[O] <=> CO + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7202835447929036,B_g=-1.5355405129499455,E_g=-0.20366946547925416,L_g=0.3403238772077402,A_g=0.12482305133100847,K_g=-0.5124650396699243,S_h=-0.36788640204944756,B_h=-3.6640345024745877,E_h=-0.18430239350271405,L_h=0.5383195676264939,A_h=1.129704326032009,K_h=-2.223745970320692,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.556, MAE_h(kcal/mol): 0.413)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.556, MAE_h(kcal/mol): 0.413)"""),
+)
+
+entry(
+ index = 619,
+ label = "CCC(C)O + [CH2]O <=> CO + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1698019353097053,B_g=0.7180404244201476,E_g=0.16006789692646825,L_g=0.1927397515061197,A_g=-0.7152695110185079,K_g=0.2002021584978372,S_h=-0.950701854194336,B_h=-1.1726168314637522,E_h=0.4556393235601065,L_h=0.36806966351780995,A_h=0.17895848908526604,K_h=-1.4034969597654576,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.823, MAE_g(kcal/mol): 0.513, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9079999999999999, MAE_h(kcal/mol): 0.6409999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.823, MAE_g(kcal/mol): 0.513, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9079999999999999, MAE_h(kcal/mol): 0.6409999999999999)"""),
+)
+
+entry(
+ index = 620,
+ label = "CCC(C)O + [CH2]O <=> CO + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32182179936187066,B_g=-2.066690891934102,E_g=0.08883049894463006,L_g=0.3960207026724455,A_g=-0.3259488476293923,K_g=-1.1784958593688186,S_h=0.27770709869767,B_h=-4.495257209755364,E_h=0.1599212877517783,L_h=0.4771395590283852,A_h=0.056642454641455404,K_h=-2.9513892956830303,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5379999999999999, MAE_g(kcal/mol): 0.40299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.727)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5379999999999999, MAE_g(kcal/mol): 0.40299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.727)"""),
+)
+
+entry(
+ index = 621,
+ label = "CCC(C)O + [CH2]O <=> CO + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23161317417515528,B_g=-0.48309189152079635,E_g=-0.08718114572936832,L_g=0.10074982484692158,A_g=0.953890603743842,K_g=0.20080325611406596,S_h=0.17495605861623087,B_h=-1.185987588195474,E_h=0.13641250659024765,L_h=0.08839800187929477,A_h=1.8681160952753224,K_h=-0.8872274120123296,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.255)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.255)"""),
+)
+
+entry(
+ index = 622,
+ label = "CCC(C)O + [CH2]O <=> CO + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.389635873114699,B_g=-0.08111152589720512,E_g=-0.6122765657988304,L_g=0.19805433408862977,A_g=-0.8965077727702024,K_g=0.2497633900017689,S_h=0.4162820906145942,B_h=-1.3711623062875933,E_h=-0.4285679394536105,L_h=0.16849792447113934,A_h=-0.29652438626912286,K_h=-0.9357697097521663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.2990000000000002, MAE_g(kcal/mol): 0.847, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.226, MAE_h(kcal/mol): 0.898)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.2990000000000002, MAE_g(kcal/mol): 0.847, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.226, MAE_h(kcal/mol): 0.898)"""),
+)
+
+entry(
+ index = 623,
+ label = "CCC(C)O + [CH3] <=> C + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2760284236474703,B_g=-1.7449057448659033,E_g=-0.035017601374690364,L_g=0.2504671140402806,A_g=0.4082552383003204,K_g=0.025048177495774957,S_h=0.22047087689872039,B_h=-4.032771237737237,E_h=-0.07601685707672998,L_h=0.4212154893429105,A_h=1.0846513266497926,K_h=-1.572508016348012,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.389)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.389)"""),
+)
+
+entry(
+ index = 624,
+ label = "CCC(C)O + [CH3] <=> C + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.33506793829510606,B_g=-0.3217118424808532,E_g=-0.39992050671919777,L_g=0.08998138096594603,A_g=-0.21212881485886326,K_g=0.24555570668816784,S_h=0.8498347420076625,B_h=-0.3626451240542824,E_h=-0.10901125184069925,L_h=0.005299921665041058,A_h=-0.646561121300071,K_h=-0.7534978533189078,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14800000000000002, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33399999999999996, MAE_h(kcal/mol): 0.256)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14800000000000002, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33399999999999996, MAE_h(kcal/mol): 0.256)"""),
+)
+
+entry(
+ index = 625,
+ label = "CCC(C)O + [CH3] <=> C + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24559968944057484,B_g=0.35452297577646014,E_g=-0.20281913226605255,L_g=0.12602524656346595,A_g=-0.6309179223606551,K_g=0.2338562945479112,S_h=-0.3413354805131007,B_h=0.7023165904346523,E_h=0.15241489800765376,L_h=0.1011310087011154,A_h=-1.2137700267992162,K_h=-0.7044350930089219,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.204)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.204)"""),
+)
+
+entry(
+ index = 626,
+ label = "CCC(C)O + [CH3] <=> C + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31107534685709864,B_g=0.18238914377301046,E_g=-0.17694994339201398,L_g=0.1455975713845719,A_g=0.17993344009695408,K_g=0.30784994501392016,S_h=-0.4723234476398209,B_h=0.4409197624212373,E_h=0.078113368274796,L_h=0.20621313466012448,A_h=0.08128012644809854,K_h=-0.7252316044386888,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.179)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.179)"""),
+)
+
+entry(
+ index = 627,
+ label = "CCC(C)O + [CH3] <=> C + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21210682348265975,B_g=-0.5576206654744236,E_g=-0.2417438681462296,L_g=0.10129960925200883,A_g=0.2282411631572868,K_g=0.3307063153480806,S_h=0.6815933835922304,B_h=-0.9112053425328681,E_h=0.027027401354089046,L_h=0.0612093304330468,A_h=0.34994876952613424,K_h=-0.690250655357671,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.257, MAE_h(kcal/mol): 0.19399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.257, MAE_h(kcal/mol): 0.19399999999999998)"""),
+)
+
+entry(
+ index = 628,
+ label = "CCC(C)O + [CH]=O <=> C=O + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3006880868303169,B_g=-1.6904184450923903,E_g=-0.33167393590103417,L_g=0.3645657042427205,A_g=0.05436268197502695,K_g=-0.6025270556819499,S_h=0.0707829095402994,B_h=-3.457249592033173,E_h=-0.19455037481354037,L_h=0.5126996143494283,A_h=-0.06384829557746557,K_h=-2.1679611793511726,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.37200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.37200000000000005)"""),
+)
+
+entry(
+ index = 629,
+ label = "CCC(C)O + [CH]=O <=> C=O + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05287459885192414,B_g=0.16860055089342232,E_g=-0.1275793038151792,L_g=0.06425147080786289,A_g=0.666118785203708,K_g=0.5777134528656788,S_h=-0.12113583058755668,B_h=0.21084598458032633,E_h=0.07827463836695493,L_h=0.14400686183918615,A_h=0.827938661767721,K_h=-0.3202677421101574,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 630,
+ label = "CCC(C)O + [CH]=O <=> C=O + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.035442767981291166,B_g=0.3048737787677145,E_g=-0.1087473553262574,L_g=0.03431387733617869,A_g=0.8173681402725769,K_g=0.8901229432124559,S_h=-0.033617483756401514,B_h=0.4053963593938667,E_h=0.09668142024927595,L_h=0.14265072697330428,A_h=1.027708323200223,K_h=0.06334982438351981,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 631,
+ label = "CCC(C)O + [CH]=O <=> C=O + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.121539005817954,B_g=-1.8375407518937372,E_g=-0.025180125752995896,L_g=0.23379765087803528,A_g=1.2249123240756512,K_g=0.24219835658776842,S_h=0.3366953001341644,B_h=-4.160130627790382,E_h=-0.07135468532159012,L_h=0.48312121335573444,A_h=2.466127588376822,K_h=-1.3320396480215846,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.39)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.39)"""),
+)
+
+entry(
+ index = 632,
+ label = "CCC(C)O + [H] <=> [H][H] + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4485874222575208,B_g=-1.540877086908659,E_g=-0.1379958856768989,L_g=0.36084916166433073,A_g=-0.44440906077885767,K_g=-0.009426969932562656,S_h=-0.16415096244158286,B_h=-3.394522856642085,E_h=0.04547816598881704,L_h=0.5365162747778077,A_h=-0.5159323466513412,K_h=-1.9856966533766485,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.42)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.536, MAE_h(kcal/mol): 0.42)"""),
+)
+
+entry(
+ index = 633,
+ label = "CCC(C)O + [H] <=> [H][H] + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11935452911507399,B_g=1.2256453699491008,E_g=-0.3713170567371919,L_g=0.06020505758642075,A_g=-0.9678331362568545,K_g=1.3022340028071213,S_h=0.06914088678377214,B_h=2.1184366001409134,E_h=0.05673042014626936,L_h=0.0338520584359054,A_h=-2.0971342870584664,K_h=0.364602356536393,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.205, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.579, MAE_h(kcal/mol): 0.406)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.205, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.579, MAE_h(kcal/mol): 0.406)"""),
+)
+
+entry(
+ index = 634,
+ label = "CCC(C)O + [H] <=> [H][H] + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10676080100920882,B_g=-0.8630882113996323,E_g=-0.2794957306288872,L_g=0.1928790302220751,A_g=0.1356134865881875,K_g=0.6733099652222493,S_h=0.4635708799108319,B_h=-1.5584335355777785,E_h=-0.07447013028375118,L_h=0.2805952994390617,A_h=0.03266452412091695,K_h=-0.7885814288222086,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.281)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.281)"""),
+)
+
+entry(
+ index = 635,
+ label = "CCC(C)O + [H] <=> [H][H] + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2183010611133094,B_g=0.575103809556198,E_g=-0.21564010459268712,L_g=0.11824762984616499,A_g=0.03787648028114405,K_g=1.157882609407414,S_h=-0.3340416740722766,B_h=1.039224473872117,E_h=0.009646883694597555,L_h=0.1912443379242824,A_h=-0.027511211630565822,K_h=-0.004171031019928577,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.361, MAE_h(kcal/mol): 0.233)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.361, MAE_h(kcal/mol): 0.233)"""),
+)
+
+entry(
+ index = 636,
+ label = "CCC(C)O + [OH] <=> O + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5712626491793218,B_g=-2.9281370805772067,E_g=0.014543630129241298,L_g=0.4692446549713323,A_g=-0.20125041409687028,K_g=-0.989567946404637,S_h=-0.28407726733794764,B_h=-5.472348715393887,E_h=0.2739099210732008,L_h=0.6237267423421142,A_h=-0.022387220975152684,K_h=-2.9410166965737177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7859999999999999, MAE_h(kcal/mol): 0.596)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7859999999999999, MAE_h(kcal/mol): 0.596)"""),
+)
+
+entry(
+ index = 637,
+ label = "CCC(C)O + [OH] <=> O + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8577736288171223,B_g=-2.650855148486137,E_g=0.21031819155144257,L_g=0.10302959751335003,A_g=1.3140726936633336,K_g=-0.033808075683498424,S_h=1.8839205643068975,B_h=-4.721871011073592,E_h=0.7733560660306591,L_h=0.05104198416829998,A_h=1.5998066446752772,K_h=-1.4121542315308984,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.469, MAE_g(kcal/mol): 0.318, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.96, MAE_h(kcal/mol): 0.648)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.469, MAE_g(kcal/mol): 0.318, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.96, MAE_h(kcal/mol): 0.648)"""),
+)
+
+entry(
+ index = 638,
+ label = "CCC(C)O + [OH] <=> O + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.011259584616186811,B_g=-2.739854247981661,E_g=0.20670427539533576,L_g=0.26470286490267303,A_g=0.8837747659483819,K_g=-0.16464210317679412,S_h=0.554571194640873,B_h=-5.542164004381234,E_h=0.30345900023195665,L_h=0.42011592053273594,A_h=1.9018655272889453,K_h=-1.7994736796854962,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.5770000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.5770000000000001)"""),
+)
+
+entry(
+ index = 639,
+ label = "CCC(C)O + [OH] <=> O + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20798710567387269,B_g=-0.10440039329670088,E_g=0.9825453669369892,L_g=-0.17741909275102177,A_g=0.5574154126298576,K_g=1.4392842593072703,S_h=0.3660757787420268,B_h=-0.577200320754264,E_h=1.2984368251826524,L_h=-0.16233300867542771,A_h=0.6398170992643342,K_h=0.670561043196813,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.306)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.306)"""),
+)
+
+entry(
+ index = 640,
+ label = "CCC(C)O + [OH] <=> O + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4736795825057027,B_g=-1.2317076593225293,E_g=0.8252996966233022,L_g=-0.13076072290595073,A_g=0.8448500300682047,K_g=1.2253961343521278,S_h=1.2329611677661283,B_h=-2.825679258845147,E_h=0.996399933945188,L_h=-0.0698739326572218,A_h=1.5066804969122323,K_h=0.15502454131713458,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41200000000000003, MAE_g(kcal/mol): 0.31, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.46299999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41200000000000003, MAE_g(kcal/mol): 0.31, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.46299999999999997)"""),
+)
+
+entry(
+ index = 641,
+ label = "CCC(C)O + [O]O <=> OO + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18090106064990766,B_g=-3.2536387702237946,E_g=-0.1792736988108494,L_g=0.37157362279289924,A_g=-0.3450666840089595,K_g=-1.3569265554252006,S_h=0.639003418344805,B_h=-5.366108376954827,E_h=0.08468145930090498,L_h=0.4592752310924169,A_h=-0.35483085504330897,K_h=-3.1793738927846094,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.813, MAE_h(kcal/mol): 0.605)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.813, MAE_h(kcal/mol): 0.605)"""),
+)
+
+entry(
+ index = 642,
+ label = "CCC(C)O + [O]O <=> OO + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1406340400051436,B_g=-0.1490795392834578,E_g=1.1936845698666954,L_g=0.31949071348430075,A_g=-0.6282056526288915,K_g=0.052075578849863996,S_h=-1.2860410194626182,B_h=-0.16438553712108675,E_h=1.411531142538466,L_h=0.3479182324566787,A_h=-0.7457642193540138,K_h=-0.8372630052780008,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.4769999999999999, MAE_g(kcal/mol): 1.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.506, MAE_h(kcal/mol): 1.03)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.4769999999999999, MAE_g(kcal/mol): 1.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.506, MAE_h(kcal/mol): 1.03)"""),
+)
+
+entry(
+ index = 643,
+ label = "CCC(C)O + [O][O] <=> [O]O + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21410070825844285,B_g=-1.4380820640748129,E_g=-0.281027796504397,L_g=0.3373037282091275,A_g=-0.21816911285608848,K_g=-0.3641478680948542,S_h=0.025854527956569583,B_h=-3.145221285540589,E_h=-0.04920203902594133,L_h=0.5791868750713127,A_h=-0.3494942810845954,K_h=-2.0567947726425313,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.2, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.585, MAE_h(kcal/mol): 0.45)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.2, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.585, MAE_h(kcal/mol): 0.45)"""),
+)
+
+entry(
+ index = 644,
+ label = "CCC(C)O + [O][O] <=> [O]O + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.31524637787702725,B_g=-0.8232984813887847,E_g=-0.39838111038495344,L_g=0.21451854440630916,A_g=-0.7984482262788412,K_g=0.08566374077132752,S_h=0.6286308192354924,B_h=-1.6789169553379648,E_h=0.04064006322404927,L_h=0.37950517914362464,A_h=-1.8825717598997502,K_h=-1.5131532919747928,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.701, MAE_h(kcal/mol): 0.523)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.701, MAE_h(kcal/mol): 0.523)"""),
+)
+
+entry(
+ index = 645,
+ label = "CCC(C)O + [O][O] <=> [O]O + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.26252571865852753,B_g=-1.4074554074820858,E_g=-0.163857744092203,L_g=0.1716206998920349,A_g=0.42339996604579033,K_g=0.32581689937217134,S_h=0.6278391296921666,B_h=-3.3056557054037827,E_h=-0.08663869178301557,L_h=0.4770296021473677,A_h=0.6808823290949843,K_h=-1.4043472929786593,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.585, MAE_h(kcal/mol): 0.451)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.585, MAE_h(kcal/mol): 0.451)"""),
+)
+
+entry(
+ index = 646,
+ label = "CCC(C)O + [O][O] <=> [O]O + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6519270170937225,B_g=0.9714470524129614,E_g=-0.1213117615971846,L_g=-0.11528612451742837,A_g=-0.532609140272321,K_g=1.3252443127747062,S_h=0.70541004402061,B_h=1.5886130341877012,E_h=0.2339369295939907,L_h=-0.02534872630388932,A_h=-1.6472640345224083,K_h=0.4570394411783954,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.124, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.612, MAE_h(kcal/mol): 0.4)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.124, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.612, MAE_h(kcal/mol): 0.4)"""),
+)
+
+entry(
+ index = 647,
+ label = "CCC(C)O + [O] <=> [OH] + CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17532991201169024,B_g=-1.3381899028998274,E_g=-0.06872305063590584,L_g=0.29809310443830517,A_g=-0.7665753917012497,K_g=0.1625822442724006,S_h=0.07307734312419682,B_h=-2.9793256739201963,E_h=0.22630592205137973,L_h=0.46543281642939405,A_h=-1.103827806699236,K_h=-1.5446156208632522,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.445)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.215, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.445)"""),
+)
+
+entry(
+ index = 648,
+ label = "CCC(C)O + [O] <=> [OH] + CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6869079661747405,B_g=1.7834566273506214,E_g=-0.28461239082556583,L_g=-0.15759020187420839,A_g=-0.632581936493386,K_g=1.7957058238959651,S_h=0.8326228248990643,B_h=2.714138998741047,E_h=0.03804508083203747,L_h=-0.1992565293210872,A_h=-1.8734599996927708,K_h=1.2275879415137425,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.191, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.522, MAE_h(kcal/mol): 0.414)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.223, MAE_g(kcal/mol): 0.191, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.522, MAE_h(kcal/mol): 0.414)"""),
+)
+
+entry(
+ index = 649,
+ label = "CCC(C)O + [O] <=> [OH] + C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.26712191628505694,B_g=-1.4476703040995345,E_g=-0.11067526597343,L_g=0.16890843016027116,A_g=0.3683775427846588,K_g=0.6874430896623588,S_h=0.7336909538182979,B_h=-3.418698709548455,E_h=-0.062118307316124374,L_h=0.3785522195081401,A_h=0.6032747624728686,K_h=-0.8334511667360625,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.39)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.39)"""),
+)
+
+entry(
+ index = 650,
+ label = "CCC(C)O + [O] <=> [OH] + [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14693904533298477,B_g=-1.355174575787656,E_g=-0.13932269870784278,L_g=0.21098526329628176,A_g=0.07037240385116757,K_g=0.5407532799263468,S_h=0.5732931862487772,B_h=-3.19778067466693,E_h=-0.02249717785617013,L_h=0.403747006178605,A_h=0.06305660603413994,K_h=-0.911659830974407,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.384)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.384)"""),
+)
+
+entry(
+ index = 651,
+ label = "CCC(C)O + [O] <=> [OH] + [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9614116544054354,B_g=-0.9124955032701394,E_g=0.05932540253828116,L_g=-0.038536221567248743,A_g=0.14760611707782398,K_g=1.3535985271597393,S_h=1.5545630533659642,B_h=-2.1832378553538634,E_h=0.3063618618908173,L_h=0.06714700200798907,A_h=-0.5332029074298154,K_h=0.3041773851879373,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.451, MAE_h(kcal/mol): 0.35700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.451, MAE_h(kcal/mol): 0.35700000000000004)"""),
+)
+
+entry(
+ index = 652,
+ label = "CCC(C)O[O] + C=O <=> CCC(C)OO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6634358373068823,B_g=0.044862407455119324,E_g=-0.5810781334248127,L_g=0.32638134469472757,A_g=0.08410968351961425,K_g=-0.8916770004641691,S_h=-0.6921345832524366,B_h=0.4033365004894731,E_h=-0.3966364612061432,L_h=0.3010692706845108,A_h=0.36226394020008856,K_h=-1.86822605215634,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.165, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.198)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.165, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.198)"""),
+)
+
+entry(
+ index = 653,
+ label = "CCC(C)O[O] + CC=O <=> CCC(C)OO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5787470475472428,B_g=0.12506495646924687,E_g=-0.619694990038141,L_g=0.30758604849947824,A_g=0.022050019873365842,K_g=-0.9694751590133818,S_h=-0.6255227047320658,B_h=0.5052298768989761,E_h=-0.3911606085314743,L_h=0.29903873361505523,A_h=0.13088534070443716,K_h=-1.932184304614823,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.165, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.223)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.165, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.223)"""),
+)
+
+entry(
+ index = 654,
+ label = "CCC(CO)O[O] + OO <=> CCC(CO)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6557901688468023,B_g=-1.340059169877124,E_g=0.04607193314631127,L_g=0.30911811437498804,A_g=-0.6741236461417784,K_g=-0.5091443418631975,S_h=-0.257159822864876,B_h=-3.7842540257203328,E_h=0.26635221811793475,L_h=0.42551113816132535,A_h=-0.05367361885398427,K_h=-2.4719406421532786,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.42700000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.149, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.555, MAE_h(kcal/mol): 0.42700000000000005)"""),
+)
+
+entry(
+ index = 655,
+ label = "CCC(O)CO[O] + OO <=> CCC(O)COO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.46818906891356477,B_g=-1.4251071521147538,E_g=0.32347848303586696,L_g=0.21067005357069846,A_g=-0.8028245101433354,K_g=0.2878964363386204,S_h=0.006524108273701994,B_h=-4.034728470219347,E_h=0.5548277606965804,L_h=0.32182912982060524,A_h=-0.11210470542665683,K_h=-1.6315841832893199,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.552, MAE_h(kcal/mol): 0.423)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.552, MAE_h(kcal/mol): 0.423)"""),
+)
+
+entry(
+ index = 656,
+ label = "CCC(O)CO[O] + [O]O <=> CCC(O)COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6476020464403696,B_g=-2.616358009681596,E_g=0.1007058420945146,L_g=0.3630849515783522,A_g=0.6713673936576077,K_g=-1.204555640169954,S_h=-0.4848951843694826,B_h=-3.4928829519415614,E_h=0.2607957303971863,L_h=0.28233994861787187,A_h=1.3752966850138493,K_h=-2.2167453822292478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.364, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.531)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.364, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.531)"""),
+)
+
+entry(
+ index = 657,
+ label = "CCC + CC(=O)O[O] <=> CC(=O)OO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.38914473237948766,B_g=-0.051921639216439566,E_g=0.22606401691314132,L_g=-0.16442951987349372,A_g=0.4917931460386439,K_g=0.8580668471665021,S_h=0.8483100065908872,B_h=-0.6308519482320448,E_h=0.3072708387738949,L_h=-0.1955546476601664,A_h=0.4421879317823052,K_h=0.31466727163700203,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.353, MAE_h(kcal/mol): 0.282)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.353, MAE_h(kcal/mol): 0.282)"""),
+)
+
+entry(
+ index = 658,
+ label = "CCC + CC(=O)O[O] <=> CC(=O)OO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5100166664526025,B_g=0.0436088990115204,E_g=0.7241980097571248,L_g=-0.34925237594635705,A_g=-0.05291858160433112,K_g=1.3515386682553456,S_h=0.955913810354563,B_h=-0.5250147850233826,E_h=0.765886328580207,L_h=-0.3349139986616817,A_h=-0.19166217407214867,K_h=0.658634386835787,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.415, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45, MAE_h(kcal/mol): 0.34700000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.415, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45, MAE_h(kcal/mol): 0.34700000000000003)"""),
+)
+
+entry(
+ index = 659,
+ label = "CCC + C[O] <=> CO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02931450447925199,B_g=-0.22963395031684117,E_g=0.04673900489115046,L_g=0.0018546060598276454,A_g=1.0409398012159894,K_g=0.6743508903625477,S_h=0.18019000615266148,B_h=-0.5161229385784382,E_h=0.1223966694898901,L_h=0.04176895386916175,A_h=1.727202687022094,K_h=-0.1891771485611543,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.175)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.175)"""),
+)
+
+entry(
+ index = 660,
+ label = "CCC + C[O] <=> CO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04458385002320846,B_g=-0.22226683928867205,E_g=-0.014221089944923448,L_g=0.037920463033551025,A_g=0.8797356831856741,K_g=0.5231748398810239,S_h=0.09207056170527757,B_h=-0.462332032384702,E_h=0.06454468915724276,L_h=0.0794401813057399,A_h=1.4733708924226794,K_h=-0.4001330900224981,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.142, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 661,
+ label = "CCC + [CH2]C=C <=> C=CC + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06703704512697162,B_g=-0.16019984518368918,E_g=-0.19090713682249552,L_g=0.05257405004380978,A_g=0.49550968861703365,K_g=0.09609498355051622,S_h=0.18585645075442736,B_h=-0.1970720526182072,E_h=-0.01703598609897015,L_h=0.11155492102156958,A_h=0.35432505339062875,K_h=-0.9963192988991084,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 662,
+ label = "CCC + [CH2]C=C <=> C=CC + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07213904440618125,B_g=-0.15276676002690961,E_g=-0.21957656093311184,L_g=0.0640242265870935,A_g=0.492474878700952,K_g=0.1612041180303152,S_h=0.1753372424704247,B_h=-0.15325057030338637,E_h=-0.027855743191087162,L_h=0.13713089154622832,A_h=0.3347967113219297,K_h=-0.9247300388980144,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 663,
+ label = "CCC + [OH] <=> O + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6730167468728694,B_g=-1.953735853294243,E_g=0.37545143546344795,L_g=-0.03679890284717304,A_g=1.694655450240929,K_g=0.9131259227213062,S_h=1.3158100123834093,B_h=-3.508394202623756,E_h=0.5655302304489455,L_h=-0.010064719842463862,A_h=2.379283643749241,K_h=-0.15465801838040977,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39799999999999996, MAE_g(kcal/mol): 0.292, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.469)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39799999999999996, MAE_g(kcal/mol): 0.292, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.469)"""),
+)
+
+entry(
+ index = 664,
+ label = "CCC + [OH] <=> O + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2713076082224545,B_g=-1.29970499454372,E_g=0.5148694301348392,L_g=-0.037979106703427,A_g=1.1939044836287303,K_g=0.9753102041660411,S_h=0.4906789163110004,B_h=-2.2707122194326117,E_h=0.7260599462756869,L_h=0.02422716611751134,A_h=1.9259387537730321,K_h=-0.06804864843233215,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.402)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.402)"""),
+)
+
+entry(
+ index = 665,
+ label = "CCC + [O]OC=O <=> O=COO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4028746815891998,B_g=0.5178749182159829,E_g=0.4066205460025276,L_g=-0.36524010644629423,A_g=-0.996062732843401,K_g=2.0605186456796556,S_h=0.8098764114459214,B_h=-0.03004021989396716,E_h=0.5453861298465487,L_h=-0.3237057272566363,A_h=-1.2305567773012136,K_h=1.333549722520891,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6940000000000001, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.557)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6940000000000001, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.557)"""),
+)
+
+entry(
+ index = 666,
+ label = "CCC + [O]OC=O <=> O=COO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6803545360661005,B_g=-0.15811066444435765,E_g=0.17951560394908778,L_g=-0.20726872071789199,A_g=0.3437838537304226,K_g=1.3082009962170016,S_h=1.054339879782649,B_h=-0.6378305449472856,E_h=0.32633736194232066,L_h=-0.15419619948013646,A_h=0.029395139525331453,K_h=0.5718930686304885,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.237)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.237)"""),
+)
+
+entry(
+ index = 667,
+ label = "CCC + [O]O <=> OO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.33421027462317,B_g=-1.7948994734351704,E_g=0.4923502609024656,L_g=-0.06266076126247713,A_g=0.4279888332135853,K_g=0.44903458024032505,S_h=0.7201589269944172,B_h=-2.5787234345386905,E_h=0.5899699798697571,L_h=-0.07109078880714824,A_h=0.43529730057187843,K_h=-0.4852103940950659,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.336, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.41700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.336, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.41700000000000004)"""),
+)
+
+entry(
+ index = 668,
+ label = "CCC + [O]O <=> OO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9133018537309342,B_g=-3.0484885520801726,E_g=0.36244720166845096,L_g=-0.022218620424259265,A_g=0.49532642714867126,K_g=0.16871050777443974,S_h=1.519633417496088,B_h=-4.0287174940570605,E_h=0.6159931083772202,L_h=-0.07156726862489052,A_h=0.3800256417137739,K_h=-0.8583820568920854,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.435, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.435, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 669,
+ label = "CCC + [O][O] <=> [O]O + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6883007533342949,B_g=0.218191104232292,E_g=-0.012117248288122917,L_g=-0.11360011900849415,A_g=0.206235126036328,K_g=1.3864609736664877,S_h=0.7838826047733963,B_h=0.3636933796533154,E_h=0.29536617378907243,L_h=0.03371277971994996,A_h=-0.31241682080551153,K_h=0.3358816192146352,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.504, MAE_h(kcal/mol): 0.319)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.504, MAE_h(kcal/mol): 0.319)"""),
+)
+
+entry(
+ index = 670,
+ label = "CCC + [O][O] <=> [O]O + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6178403839783132,B_g=0.2212992187357185,E_g=-0.04437126671990805,L_g=-0.08518726095358524,A_g=0.17832073917536484,K_g=1.3344293775690308,S_h=0.6952060454621906,B_h=0.40781541077625055,E_h=0.2627602933380314,L_h=0.06658255668543281,A_h=-0.3077913013440442,K_h=0.29155433524713414,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.514, MAE_h(kcal/mol): 0.325)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.514, MAE_h(kcal/mol): 0.325)"""),
+)
+
+entry(
+ index = 671,
+ label = "CCC + [O] <=> [OH] + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8936049111113417,B_g=0.08076699433668379,E_g=0.12615719482068688,L_g=-0.2109925937550163,A_g=0.5263269371368574,K_g=2.0882937538246633,S_h=1.2444919793554916,B_h=-0.13727017026218374,E_h=0.30912544483372256,L_h=-0.18844410268770465,A_h=0.2430413593422355,K_h=1.3961298487372886,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.23600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.23600000000000002)"""),
+)
+
+entry(
+ index = 672,
+ label = "CCC + [O] <=> [OH] + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7029396794270846,B_g=0.14312720679104654,E_g=0.08509929544877129,L_g=-0.14376495670094777,A_g=0.42341462696325943,K_g=1.8848808544011164,S_h=0.9599602235760052,B_h=0.05266934600735823,E_h=0.28203206935102304,L_h=-0.09131552445562442,A_h=0.14722493322363017,K_h=1.1051619501889143,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.265, MAE_h(kcal/mol): 0.205)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.153, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.265, MAE_h(kcal/mol): 0.205)"""),
+)
+
+entry(
+ index = 673,
+ label = "CCC=CO + [CH3] <=> C + C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5090490458996489,B_g=-0.8519532445819319,E_g=-0.06367969502657216,L_g=0.23947875639727018,A_g=0.3325609214079082,K_g=-0.05165041224326321,S_h=-0.3209641356899346,B_h=-1.7804804611044156,E_h=0.08722512848177531,L_h=0.334166291870763,A_h=0.5615351304386448,K_h=-1.4382360037082373,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16699999999999998, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.258)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16699999999999998, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.258)"""),
+)
+
+entry(
+ index = 674,
+ label = "CCC=CO + [H] <=> [H][H] + C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1439482181693102,B_g=0.34908377539546365,E_g=-0.22160709800256737,L_g=0.07688185120740057,A_g=-0.10428310595694894,K_g=1.1801305516666112,S_h=0.06899427760908221,B_h=0.838699775189962,E_h=0.11920791994038409,L_h=0.11555735149060475,A_h=-0.2823032963241994,K_h=0.07870713543229024,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.23600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.23600000000000002)"""),
+)
+
+entry(
+ index = 675,
+ label = "CCC=CO + [OH] <=> O + C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.540474722494436,B_g=1.397449331309498,E_g=1.6082953158898246,L_g=-0.2909532376309054,A_g=3.6480101196809787,K_g=2.533985644882058,S_h=-0.6084720577156266,B_h=-0.5845527708649642,E_h=1.7827968860645167,L_h=-0.012315170673954325,A_h=5.474327939252201,K_h=1.4241468620205346,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.607, MAE_g(kcal/mol): 0.5329999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.95, MAE_h(kcal/mol): 0.789)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.607, MAE_g(kcal/mol): 0.5329999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.95, MAE_h(kcal/mol): 0.789)"""),
+)
+
+entry(
+ index = 676,
+ label = "CCC=CO + [O][O] <=> [O]O + C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17607761880260886,B_g=2.3138299777089206,E_g=-0.2306822059158742,L_g=-0.13118588951255153,A_g=-0.10987624597136987,K_g=1.6559213062878486,S_h=-0.2382692307060782,B_h=3.4928169778129505,E_h=-0.040464132214421356,L_h=0.058504391160017544,A_h=-0.88132639273106,K_h=0.7763542236530683,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.88, MAE_h(kcal/mol): 0.6729999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.88, MAE_h(kcal/mol): 0.6729999999999999)"""),
+)
+
+entry(
+ index = 677,
+ label = "CCC=CO + [O] <=> [OH] + C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4463882846371718,B_g=-1.2745395297081932,E_g=0.34115221904473825,L_g=0.21898279377561758,A_g=0.31296660521059877,K_g=0.614013884518906,S_h=-0.5764159616696729,B_h=-3.0994352402849237,E_h=0.5072091007572903,L_h=0.48378095464183907,A_h=0.8575830368900252,K_h=-0.9275156132171232,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.361, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.716, MAE_h(kcal/mol): 0.516)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.361, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.716, MAE_h(kcal/mol): 0.516)"""),
+)
+
+entry(
+ index = 678,
+ label = "CCC=O + CC(=O)O[O] <=> CC(=O)OO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11288906451124799,B_g=-0.20735668622270592,E_g=-0.5106104336100967,L_g=0.1885907118623946,A_g=0.2908652721260915,K_g=-0.5421973802970427,S_h=0.02393394776813147,B_h=-0.12342293371271962,E_h=-0.29102654221825036,L_h=0.14743751652693057,A_h=0.2693063929879369,K_h=-1.331453211322825,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 679,
+ label = "CCC=O + CCO[O] <=> CCOO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5067692732332204,B_g=-0.14034163247193784,E_g=-0.6160297606708927,L_g=0.29894343765150677,A_g=0.08994472867227356,K_g=-0.9373824106737556,S_h=-0.5267447732847237,B_h=0.15533242058398342,E_h=-0.3361235243528736,L_h=0.2871560600064362,A_h=0.06414884438557994,K_h=-1.9334011607647497,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.222)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.276, MAE_h(kcal/mol): 0.222)"""),
+)
+
+entry(
+ index = 680,
+ label = "CCC=O + CO[O] <=> COO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.45816100136477345,B_g=-0.12531419206621974,E_g=-0.47694163664255373,L_g=0.27618236328089474,A_g=0.09284025987239973,K_g=-0.5410538287344611,S_h=-0.44901991932285606,B_h=0.0885519415127192,E_h=-0.2339076077590527,L_h=0.23892164153344841,A_h=0.22998581233609702,K_h=-1.3900455679876564,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.168)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.168)"""),
+)
+
+entry(
+ index = 681,
+ label = "CCC=O + C[CH2] <=> CC + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39210623770822434,B_g=0.03610983972613036,E_g=-0.3186916934822407,L_g=0.20688753686369818,A_g=-0.25841333130847494,K_g=-0.27770709869767,S_h=-0.438244144983146,B_h=0.36875139618011804,E_h=-0.02743057658448636,L_h=0.19719667041669361,A_h=-0.2519332057871799,K_h=-1.3101289068641744,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 682,
+ label = "CCC=O + C[CH]C <=> CCC + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3485486519078454,B_g=-0.02545868318490677,E_g=-0.42469012678306184,L_g=0.21690094349502054,A_g=-0.08797283527269395,K_g=-0.6065807993621264,S_h=-0.410183148947493,B_h=0.3279720542401134,E_h=-0.13274727722299934,L_h=0.2176193284510012,A_h=-0.1165323025022928,K_h=-1.7180542745214424,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11900000000000001, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.298, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11900000000000001, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.298, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 683,
+ label = "CCC=O + C[O] <=> CO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6558341515992093,B_g=0.041959545796258664,E_g=-0.377679894918735,L_g=0.2907919675387465,A_g=0.6162056916805206,K_g=-0.24203708649560948,S_h=-0.7868954233132744,B_h=0.35801227413408054,E_h=-0.13383951557443932,L_h=0.2894431631315991,A_h=1.4347540358093513,K_h=-1.1475393321330392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.201, MAE_h(kcal/mol): 0.166)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.201, MAE_h(kcal/mol): 0.166)"""),
+)
+
+entry(
+ index = 684,
+ label = "CCC=O + [CH2]C=C <=> C=CC + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.41919961319092386,B_g=-0.04294915772541571,E_g=-0.40355641425150807,L_g=0.22979522040900013,A_g=-0.1022232470525554,K_g=-0.5447923626890545,S_h=-0.4855769170317908,B_h=0.2818561383413951,E_h=-0.10326417219285391,L_h=0.25341395845154824,A_h=-0.2712123122589061,K_h=-1.6561925332610252,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.316, MAE_h(kcal/mol): 0.221)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.08800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.316, MAE_h(kcal/mol): 0.221)"""),
+)
+
+entry(
+ index = 685,
+ label = "CCC=O + [CH2]CC <=> CCC + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3818875782323361,B_g=0.008342062039857155,E_g=-0.4387572770945608,L_g=0.23450137491654696,A_g=-0.10253112631940425,K_g=-0.44503948023002443,S_h=-0.4217066300781217,B_h=0.3628137246051758,E_h=-0.15339717947807632,L_h=0.22423873268825167,A_h=-0.09641752373483407,K_h=-1.4269031145047055,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 686,
+ label = "CCC=O + [CH3] <=> C + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3440624111623335,B_g=0.04173963203422376,E_g=-0.3084510426301489,L_g=0.1988313627144864,A_g=-0.2827138020133312,K_g=0.06334982438351981,S_h=-0.36779110608589904,B_h=0.3452426150185874,E_h=-0.013422069942863315,L_h=0.18603971222278978,A_h=-0.3296507292903131,K_h=-0.9782937008709812,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.188)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.267, MAE_h(kcal/mol): 0.188)"""),
+)
+
+entry(
+ index = 687,
+ label = "CCC=O + [CH]=C <=> C=C + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.48999718364869216,B_g=-0.04852763682236763,E_g=-0.42629549724591653,L_g=0.2761896937396292,A_g=-0.17463351843191305,K_g=-0.28071258677881367,S_h=-0.5260337187874776,B_h=0.22267001451906937,E_h=-0.13479980566865837,L_h=0.25314273147837185,A_h=-0.09322144372659355,K_h=-1.2450710855955167,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.213)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.213)"""),
+)
+
+entry(
+ index = 688,
+ label = "CCC=O + [H] <=> [H][H] + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1759969837565294,B_g=0.323331873861177,E_g=-0.32773747956060945,L_g=0.19484359316292021,A_g=-0.5447483799366475,K_g=0.8609110651554867,S_h=-0.3052036494107669,B_h=0.9175022065858007,E_h=0.1104553522113951,L_h=0.22983920316140707,A_h=-0.8231225503791566,K_h=-0.3913365395411022,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.514, MAE_h(kcal/mol): 0.317)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.514, MAE_h(kcal/mol): 0.317)"""),
+)
+
+entry(
+ index = 689,
+ label = "CCC=O + [OH] <=> O + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42757832752445346,B_g=-1.5138570160133042,E_g=0.19005680360929392,L_g=0.2857779337643508,A_g=1.9347646260893658,K_g=-0.19037934379361177,S_h=-0.6920099654539502,B_h=-2.0254643920112927,E_h=0.6767846026624006,L_h=0.37257789563952537,A_h=3.037808073704011,K_h=-1.3607237330496698,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.298, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49200000000000005, MAE_h(kcal/mol): 0.366)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.298, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49200000000000005, MAE_h(kcal/mol): 0.366)"""),
+)
+
+entry(
+ index = 690,
+ label = "CCC=O + [O]O <=> OO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07756358386970875,B_g=-2.10232425184249,E_g=-0.12254327866458004,L_g=0.296245828837212,A_g=0.5350501830309085,K_g=-0.7634892685740265,S_h=-0.05209023976733299,B_h=-2.242526605598472,E_h=0.1453703271638025,L_h=0.2804486902643718,A_h=0.6170047116825806,K_h=-1.7831414176250375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49700000000000005, MAE_h(kcal/mol): 0.375)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49700000000000005, MAE_h(kcal/mol): 0.375)"""),
+)
+
+entry(
+ index = 691,
+ label = "CCC=O + [O][O] <=> [O]O + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06661187852037082,B_g=0.45598385512062783,E_g=-0.4699996922209855,L_g=0.18950701920420665,A_g=-0.4778726049018348,K_g=0.2827138020133312,S_h=-0.27832285723136774,B_h=1.259951916826545,E_h=-0.013444061319066806,L_h=0.3062079222573929,A_h=-0.9352345862645481,K_h=-0.9306970323078947,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.426)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.426)"""),
+)
+
+entry(
+ index = 692,
+ label = "CCC=O + [O] <=> [OH] + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21601395798814646,B_g=0.49347182108884363,E_g=-0.24887640449489482,L_g=0.06310791924528142,A_g=0.13124453318242751,K_g=0.9537439945691522,S_h=0.19548867353155594,B_h=1.053101032256519,E_h=0.055960721979147206,L_h=0.09233445821971945,A_h=0.06340846805339578,K_h=0.1228218360964909,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.281, MAE_h(kcal/mol): 0.165)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.281, MAE_h(kcal/mol): 0.165)"""),
+)
+
+entry(
+ index = 693,
+ label = "CCCC(O)O[O] + OO <=> CCCC(O)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.2014695170427308,B_g=-2.2950640033486094,E_g=-0.2716374788655068,L_g=0.5962448525464863,A_g=0.08642610847971517,K_g=-1.2815181264234339,S_h=-0.4821902450964533,B_h=-6.817451240880345,E_h=-0.4165679785052395,L_h=0.9310855466208229,A_h=1.9719520432494673,K_h=-3.801597891086152,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.23399999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9259999999999999, MAE_h(kcal/mol): 0.677)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.23399999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9259999999999999, MAE_h(kcal/mol): 0.677)"""),
+)
+
+entry(
+ index = 694,
+ label = "CCCC(O)O[O] + [O]O <=> CCCC(O)OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9514055782328475,B_g=-4.89418077408667,E_g=0.10151952301404372,L_g=0.6572342692174981,A_g=1.020150620244957,K_g=-2.1017744674374024,S_h=-0.44862407455119324,B_h=-8.169547023999513,E_h=0.049986398110532466,L_h=0.8135196494369661,A_h=2.410738642178966,K_h=-4.173274140301334,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.218, MAE_h(kcal/mol): 0.9890000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.218, MAE_h(kcal/mol): 0.9890000000000001)"""),
+)
+
+entry(
+ index = 695,
+ label = "CCCC + C[CH2] <=> CC + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02442508850334274,B_g=-0.09669608116674494,E_g=-0.18719792470284022,L_g=0.07922759800243949,A_g=0.32388165826626425,K_g=0.062066994104982905,S_h=0.050213642331301864,B_h=-0.00792422589199085,E_h=0.015137397286735526,L_h=0.10996421147618383,A_h=0.3506231717297079,K_h=-1.0212062063027245,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.099)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.099)"""),
+)
+
+entry(
+ index = 696,
+ label = "CCCC + C[CH2] <=> CC + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02912391255215508,B_g=-0.1169867909438316,E_g=-0.21881419322472417,L_g=0.09583841749480886,A_g=0.3280966720385998,K_g=0.17454555292709906,S_h=0.058196511893168684,B_h=-0.03183618228391883,E_h=-0.0027122697317637505,L_h=0.12334229866664016,A_h=0.36504951451919726,K_h=-0.7967182380174999,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 697,
+ label = "CCCC + C[O] <=> CO + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12974178914185572,B_g=-0.21423265651566378,E_g=0.07155260770742153,L_g=-0.006201568089384142,A_g=0.8680509319628866,K_g=0.5502169021525819,S_h=0.35255108237688054,B_h=-0.5668643739386238,E_h=0.17629753256464376,L_h=0.008217444241370712,A_h=1.4246673245906842,K_h=-0.28037538567702686,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.128, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 698,
+ label = "CCCC + C[O] <=> CO + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22204692552663718,B_g=0.04585201938427637,E_g=-0.024637671806643148,L_g=0.06435409723014585,A_g=0.6032894233903375,K_g=0.30573877289838514,S_h=-0.10486221219697418,B_h=-0.16392371822081345,E_h=0.043381654790751005,L_h=0.1034914164136233,A_h=1.2044896660413436,K_h=-0.6384976166921249,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.31, MAE_h(kcal/mol): 0.205)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.31, MAE_h(kcal/mol): 0.205)"""),
+)
+
+entry(
+ index = 699,
+ label = "CCCC + [CH2]C=C <=> C=CC + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11466303552499617,B_g=-0.1564979635227684,E_g=-0.1884514331464392,L_g=0.03723139991250834,A_g=0.5625174119090672,K_g=0.08735707673899624,S_h=0.24710243348114663,B_h=-0.20754727814980287,E_h=-0.018546060598276452,L_h=0.09447495217019246,A_h=0.3991654694695446,K_h=-0.9598356057775187,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14800000000000002, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14800000000000002, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 700,
+ label = "CCCC + [CH2]C=C <=> C=CC + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08696123196733342,B_g=-0.1315597429080109,E_g=-0.15378569379100465,L_g=0.037400000463401764,A_g=0.44897593657044915,K_g=0.09501007565781072,S_h=0.21705488312844495,B_h=-0.15229761066790182,E_h=0.03504692320962836,L_h=0.0861988642589458,A_h=0.2857779337643508,K_h=-0.9130526181339612,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.147, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 701,
+ label = "CCCC + [CH2]CCC <=> CCCC + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08644809985591866,B_g=-0.03333159586575614,E_g=-0.38379349750330516,L_g=0.08173461488963733,A_g=0.26162407223418443,K_g=0.09718722190195622,S_h=0.2094751887969755,B_h=0.020276048859617656,E_h=-0.16851991584734285,L_h=0.11715539149472502,A_h=0.18540196231288855,K_h=-0.7853926792727026,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22399999999999998, MAE_h(kcal/mol): 0.156)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.122, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22399999999999998, MAE_h(kcal/mol): 0.156)"""),
+)
+
+entry(
+ index = 702,
+ label = "CCCC + [CH3] <=> C + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0026316346856842874,B_g=-0.13219749281791207,E_g=-0.18387722689611327,L_g=0.0829074882871568,A_g=0.33530251297461,K_g=0.4343809932300663,S_h=0.12062269847614192,B_h=-0.1326373203419819,E_h=0.00483810276476777,L_h=0.10691474064263323,A_h=0.34700192511486655,K_h=-0.591399419322984,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.127, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 703,
+ label = "CCCC + [CH3] <=> C + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.027423246125751862,B_g=-0.12639176950019076,E_g=-0.18332744249102606,L_g=0.09261301565163033,A_g=0.30550419821888125,K_g=0.4751530047113365,S_h=0.09720921327815969,B_h=-0.12381144802564795,E_h=0.0027049392730292532,L_h=0.1163197191989924,A_h=0.33301540984944705,K_h=-0.5111822093913874,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.133, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.133, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 704,
+ label = "CCCC + [CH]=C <=> C=C + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.047384085259786164,B_g=-0.2161312453278984,E_g=-0.20994433815598326,L_g=0.09749510116880508,A_g=0.4442038079342918,K_g=0.2343181134481845,S_h=0.10116766099478788,B_h=-0.33641674270225347,E_h=-0.04891615113529596,L_h=0.11852618727807589,A_h=0.5171418723425332,K_h=-0.743286524301754,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.092, MAE_h(kcal/mol): 0.069)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.092, MAE_h(kcal/mol): 0.069)"""),
+)
+
+entry(
+ index = 705,
+ label = "CCCC + [CH]=C <=> C=C + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07359047523561159,B_g=-0.2124440245844466,E_g=-0.19664688601160638,L_g=0.11005217698099777,A_g=0.42457283944330987,K_g=0.360160098543288,S_h=0.0657468843897002,B_h=-0.31584014503452146,E_h=-0.012278518380281843,L_h=0.1323660933688055,A_h=0.5064907158013096,K_h=-0.5398003202908623,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 706,
+ label = "CCCC + [H] <=> [H][H] + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1968448083974378,B_g=0.09327275693773504,E_g=-0.0468782836071059,L_g=0.01941838518768155,A_g=0.0468709531483714,K_g=1.439489512151836,S_h=0.32920357130750877,B_h=0.1594814602277085,E_h=0.20622046511885894,L_h=0.05934739391448465,A_h=-0.11666425075951375,K_h=0.32794273240517535,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.18100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.18100000000000002)"""),
+)
+
+entry(
+ index = 707,
+ label = "CCCC + [H] <=> [H][H] + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11145962505802114,B_g=0.08864723747626765,E_g=-0.06081348566138398,L_g=0.04867424599705757,A_g=0.029717679709649305,K_g=1.43827265600191,S_h=0.2168569607426136,B_h=0.2048716607117116,E_h=0.176847316969731,L_h=0.11461172231385468,A_h=-0.12008757498852365,K_h=0.2815775809094842,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33, MAE_h(kcal/mol): 0.207)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33, MAE_h(kcal/mol): 0.207)"""),
+)
+
+entry(
+ index = 708,
+ label = "CCCC + [OH] <=> O + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4012326588326726,B_g=-1.4995552910223016,E_g=0.4142735449213421,L_g=-0.04222344231070054,A_g=1.415247685116856,K_g=0.7881562622156079,S_h=0.6583924816975487,B_h=-2.633826492845902,E_h=0.6411952255064196,L_h=-0.00219180716161449,A_h=2.1336546324737284,K_h=-0.23793936006302585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.344, MAE_g(kcal/mol): 0.263, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.517, MAE_h(kcal/mol): 0.42100000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.344, MAE_g(kcal/mol): 0.263, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.517, MAE_h(kcal/mol): 0.42100000000000004)"""),
+)
+
+entry(
+ index = 709,
+ label = "CCCC + [OH] <=> O + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24084222172188652,B_g=-1.1853205164506346,E_g=0.7186415220363764,L_g=-0.09796425052781287,A_g=0.9093214146381026,K_g=1.1444458785470817,S_h=0.4766997315043153,B_h=-2.1650583176923117,E_h=0.9396841747163874,L_h=-0.036710937342359085,A_h=1.6017418857811843,K_h=0.1275719733564447,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.361, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.429)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.361, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.429)"""),
+)
+
+entry(
+ index = 710,
+ label = "CCCC + [O][O] <=> [O]O + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6979403065701579,B_g=0.19514414197103458,E_g=-0.02736460245587589,L_g=-0.115000236626783,A_g=0.24917695330300918,K_g=1.3160006043105061,S_h=0.7981110251770542,B_h=0.3325462604904393,E_h=0.2738292860271213,L_h=0.0275551943829728,A_h=-0.27047193592672186,K_h=0.2756765616282144,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.11800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.475, MAE_h(kcal/mol): 0.302)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.159, MAE_g(kcal/mol): 0.11800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.475, MAE_h(kcal/mol): 0.302)"""),
+)
+
+entry(
+ index = 711,
+ label = "CCCC + [O][O] <=> [O]O + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6020945586166147,B_g=0.2124660159606501,E_g=-0.06019039666895177,L_g=-0.08361854278440298,A_g=0.19532740343939697,K_g=1.2226911950790984,S_h=0.6830008316692537,B_h=0.3910433211917223,E_h=0.24942618889998208,L_h=0.060894120707463445,A_h=-0.2912977691914268,K_h=0.17334335769464163,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.312)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.312)"""),
+)
+
+entry(
+ index = 712,
+ label = "CCCC + [O] <=> [OH] + C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8439703750200652,B_g=0.11108577166256181,E_g=0.11544006415085281,L_g=-0.1933555100398174,A_g=0.6687504198893923,K_g=1.9826618434605672,S_h=1.1412717899150444,B_h=-0.0796674255265093,E_h=0.2632221122383047,L_h=-0.1393446900840463,A_h=0.48227821060126724,K_h=1.2258359618761976,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.249)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.249)"""),
+)
+
+entry(
+ index = 713,
+ label = "CCCC + [O] <=> [OH] + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.732584054549389,B_g=0.13593602677250538,E_g=0.059794551897288946,L_g=-0.1423721695413934,A_g=0.552181465093427,K_g=0.1602291670186272,S_h=0.9605759821097029,B_h=0.06295397961185699,E_h=0.23134194720197887,L_h=-0.05848973024254855,A_h=0.3772693892296032,K_h=-0.6725549279725961,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21100000000000002, MAE_g(kcal/mol): 0.159, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.217)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21100000000000002, MAE_g(kcal/mol): 0.159, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.217)"""),
+)
+
+entry(
+ index = 714,
+ label = "CCCC=O + CO[O] <=> COO + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6799147085420307,B_g=-0.26332473866058764,E_g=-0.5492492815996284,L_g=0.33789016490788726,A_g=0.03100784044692071,K_g=-0.9368692785623407,S_h=-0.6682739400716501,B_h=-0.09536193767706656,E_h=-0.28725135596998463,L_h=0.29723544076636904,A_h=0.16330062922838123,K_h=-1.9072021012476588,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.215)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.215)"""),
+)
+
+entry(
+ index = 715,
+ label = "CCCC=O + C[O] <=> CO + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.604345009448105,B_g=-0.10788969165432129,E_g=-0.3061419481287824,L_g=0.25631682011040885,A_g=0.7719046352012288,K_g=-0.14191035064112012,S_h=-0.6621896593220178,B_h=0.06565158842615175,E_h=-0.06895029485667523,L_h=0.2357109006077389,A_h=1.6532530193084924,K_h=-0.9783889968345296,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.08, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 716,
+ label = "CCCC=O + [CH3] <=> C + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3414674287703216,B_g=-0.06145856603001968,E_g=-0.2511635076200578,L_g=0.18604704268152428,A_g=-0.18837079810035967,K_g=0.12352556013500257,S_h=-0.3189409290792135,B_h=0.151901765896239,E_h=0.03678424192970405,L_h=0.1610795002318288,A_h=-0.2066163098905218,K_h=-0.8786727666691722,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 717,
+ label = "CCCC=O + [H] <=> [H][H] + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15332387489073135,B_g=0.19748988876607348,E_g=-0.2737119986873694,L_g=0.17809349495459542,A_g=-0.4335526513930682,K_g=0.9356964051648214,S_h=-0.22994182958369005,B_h=0.6797387775324026,E_h=0.15272277727450262,L_h=0.20172689391461254,A_h=-0.6848554377290815,K_h=-0.3060686435414375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47100000000000003, MAE_h(kcal/mol): 0.289)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47100000000000003, MAE_h(kcal/mol): 0.289)"""),
+)
+
+entry(
+ index = 718,
+ label = "CCCC=O + [OH] <=> O + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30861231272230777,B_g=-1.580424911781268,E_g=0.19817895188711615,L_g=0.2428800892500766,A_g=1.8665986903172818,K_g=-0.18334210340849502,S_h=-0.4581683318235079,B_h=-2.232718451811716,E_h=0.6940185111472023,L_h=0.3153563347580447,A_h=3.1434399840681073,K_h=-1.4845718333689903,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.377)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.51, MAE_h(kcal/mol): 0.377)"""),
+)
+
+entry(
+ index = 719,
+ label = "CCCC=O + [OH] <=> O + CC[CH]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.022988318591381406,B_g=-2.166612374944025,E_g=0.44376398041022197,L_g=0.11552069919693227,A_g=0.6538109449884882,K_g=0.3520819330178728,S_h=0.5461704889311398,B_h=-4.8006881033869,E_h=0.5523720570205239,L_h=0.310254335478835,A_h=1.8191193090939475,K_h=-1.3434971550236028,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.45, MAE_g(kcal/mol): 0.35, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.792, MAE_h(kcal/mol): 0.606)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.45, MAE_g(kcal/mol): 0.35, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.792, MAE_h(kcal/mol): 0.606)"""),
+)
+
+entry(
+ index = 720,
+ label = "CCCC=O + [OH] <=> O + C[CH]CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16835864575518392,B_g=-2.2139231556164667,E_g=2.5407956410464054,L_g=-0.5082940086499957,A_g=-0.6026296821042328,K_g=2.2555088480172656,S_h=0.7938813504872496,B_h=-5.051573053575048,E_h=2.674136685426899,L_h=-0.30622258317486184,A_h=0.7307294484895612,K_h=0.6003719008140078,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.894, MAE_g(kcal/mol): 0.588, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1540000000000001, MAE_h(kcal/mol): 0.8320000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.894, MAE_g(kcal/mol): 0.588, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1540000000000001, MAE_h(kcal/mol): 0.8320000000000001)"""),
+)
+
+entry(
+ index = 721,
+ label = "CCCC=O + [OH] <=> O + [CH2]CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24532846246739842,B_g=-1.8488076669686586,E_g=0.37507025160925417,L_g=0.057258213175153116,A_g=0.3100710740104726,K_g=0.9257489726621094,S_h=0.33316934948287147,B_h=-4.760913034293521,E_h=0.5032506530406621,L_h=0.2952488864493204,A_h=1.6810867711233761,K_h=-0.8815902892455018,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.777, MAE_g(kcal/mol): 0.542, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.94, MAE_h(kcal/mol): 0.7190000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.777, MAE_g(kcal/mol): 0.542, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.94, MAE_h(kcal/mol): 0.7190000000000001)"""),
+)
+
+entry(
+ index = 722,
+ label = "CCCC=O + [O]O <=> OO + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2462887525616175,B_g=-2.038695870027059,E_g=-0.1994397907894496,L_g=0.3248786006541558,A_g=0.41757225135186554,K_g=-1.0139197303206346,S_h=-0.24515986191650505,B_h=-2.2146488710311814,E_h=0.10057389383729365,L_h=0.308040536941017,A_h=0.4844333654692093,K_h=-2.158109042812009,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.493, MAE_h(kcal/mol): 0.39399999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.493, MAE_h(kcal/mol): 0.39399999999999996)"""),
+)
+
+entry(
+ index = 723,
+ label = "CCCC=O + [O][O] <=> [O]O + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.017791023348623303,B_g=0.32185112119680875,E_g=-0.41118742179411905,L_g=0.16484735602136005,A_g=-0.35969094918428024,K_g=0.3905888327501835,S_h=-0.1697001197035968,B_h=0.9998305886329322,E_h=0.04886483792415448,L_h=0.26463689077406255,A_h=-0.7931189827788621,K_h=-0.7648527338986431,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.643, MAE_h(kcal/mol): 0.39)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.643, MAE_h(kcal/mol): 0.39)"""),
+)
+
+entry(
+ index = 724,
+ label = "CCCC=O + [O] <=> [OH] + CCC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18419243662169663,B_g=0.23053559674118426,E_g=-0.1985528052825755,L_g=0.06961736660151442,A_g=0.21712085725705546,K_g=1.6218346731724393,S_h=0.19005680360929392,B_h=0.6128190197451832,E_h=0.1375707190702981,L_h=0.100933086315284,A_h=0.22626926975770723,K_h=0.8165911116467203,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.264, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.264, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 725,
+ label = "CCCCO + CO[O] <=> COO + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3092280712560055,B_g=-2.398313514623994,E_g=-0.31238749897057355,L_g=0.40752219242687077,A_g=-0.09231246684351595,K_g=-1.2762035438409238,S_h=0.37305437545726766,B_h=-4.8296947285993035,E_h=-0.1835913390054679,L_h=0.5256085521808768,A_h=0.059310741620812166,K_h=-3.1198432374017626,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.252, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.634, MAE_h(kcal/mol): 0.48200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.252, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.634, MAE_h(kcal/mol): 0.48200000000000004)"""),
+)
+
+entry(
+ index = 726,
+ label = "CCCCO + C[CH2] <=> CC + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2447640171448422,B_g=-1.7923484737955655,E_g=1.4429641495919876,L_g=-0.01651552352882089,A_g=-0.6474114545132726,K_g=0.2174214060651698,S_h=0.4070017298567214,B_h=-4.265330041089142,E_h=1.575997314705632,L_h=0.15489259305991362,A_h=-0.2483046287136041,K_h=-1.5865458448245728,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.591)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.591)"""),
+)
+
+entry(
+ index = 727,
+ label = "CCCCO + C[CH2] <=> CC + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21295715669586135,B_g=-0.05596805243788171,E_g=0.20504026126260502,L_g=-0.047303450213706695,A_g=-1.052536586933963,K_g=0.2359308143697738,S_h=0.8108293710814058,B_h=-0.1310832630902686,E_h=0.4765091395772184,L_h=-0.1581693081142336,A_h=-1.7684145260274342,K_h=-0.6622116506982214,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.175, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.402, MAE_h(kcal/mol): 0.325)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.175, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.402, MAE_h(kcal/mol): 0.325)"""),
+)
+
+entry(
+ index = 728,
+ label = "CCCCO + C[O] <=> CO + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.47208154250158246,B_g=-2.58768858557098,E_g=-0.3090081574939706,L_g=0.46073399238058166,A_g=-0.4004556302068159,K_g=-1.329591274804263,S_h=0.19260047279016426,B_h=-5.033664742886672,E_h=-0.16092556059840438,L_h=0.5668203911862167,A_h=-0.3600941244146776,K_h=-3.297482243914819,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.669, MAE_h(kcal/mol): 0.508)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.669, MAE_h(kcal/mol): 0.508)"""),
+)
+
+entry(
+ index = 729,
+ label = "CCCCO + [CH3] <=> C + CCCC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.341782638495905,B_g=-0.21469447541593709,E_g=0.5887897760135032,L_g=0.09957695144940212,A_g=-1.6937318124403826,K_g=-0.0073157978170276285,S_h=0.5004724091802879,B_h=-2.901674124545674,E_h=0.5600690386917454,L_h=0.2244073332391451,A_h=-1.3385637562952866,K_h=-1.7793149181656307,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.935, MAE_g(kcal/mol): 0.9790000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 2.09, MAE_h(kcal/mol): 1.177)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.935, MAE_g(kcal/mol): 0.9790000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 2.09, MAE_h(kcal/mol): 1.177)"""),
+)
+
+entry(
+ index = 730,
+ label = "CCCCO + [CH3] <=> C + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2400358712610919,B_g=-2.3447058698986205,E_g=-0.07056299577826448,L_g=0.19386131169249765,A_g=0.8142307039342123,K_g=0.005578479096951929,S_h=1.0621688097110915,B_h=-4.935487909055558,E_h=-0.13486577979726885,L_h=0.3731643323382851,A_h=1.4955601910120009,K_h=-1.7474200922118357,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.49200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.49200000000000005)"""),
+)
+
+entry(
+ index = 731,
+ label = "CCCCO + [CH3] <=> C + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20494496529905656,B_g=-1.9690198597556687,E_g=-0.006729361118267899,L_g=0.16327130739344328,A_g=0.4103737408745899,K_g=0.18454429864095245,S_h=1.0875981710610603,B_h=-4.636500488651644,E_h=-0.07083422275144086,L_h=0.3369518661898717,A_h=1.0516642623445578,K_h=-1.5576271851169838,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5489999999999999, MAE_g(kcal/mol): 0.37799999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.833, MAE_h(kcal/mol): 0.6659999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5489999999999999, MAE_g(kcal/mol): 0.37799999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.833, MAE_h(kcal/mol): 0.6659999999999999)"""),
+)
+
+entry(
+ index = 732,
+ label = "CCCCO + [CH]=O <=> C=O + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14250411779861433,B_g=-2.1098966157152246,E_g=-0.1254608012409097,L_g=0.2592050208518006,A_g=0.6020285844880041,K_g=0.02302497088505389,S_h=0.8340376034348223,B_h=-4.493292646814519,E_h=0.038983379550053036,L_h=0.4287585313807074,A_h=0.9223329788918341,K_h=-1.4967037425745824,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.601, MAE_h(kcal/mol): 0.43799999999999994)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.601, MAE_h(kcal/mol): 0.43799999999999994)"""),
+)
+
+entry(
+ index = 733,
+ label = "CCCCO + [CH]=O <=> C=O + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2540956911138564,B_g=-2.425377568271756,E_g=-0.29305707928770597,L_g=0.28272846293080023,A_g=0.1308706797869682,K_g=-0.3363727599498465,S_h=1.183583197730559,B_h=-4.661512013853747,E_h=-0.1787972189931071,L_h=0.36380333653433283,A_h=-0.18731521204259222,K_h=-1.8293819513222425,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.47100000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.593, MAE_h(kcal/mol): 0.47100000000000003)"""),
+)
+
+entry(
+ index = 734,
+ label = "CCCCO + [CH]=O <=> C=O + CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22517703140626724,B_g=-2.638312733591414,E_g=-0.05444331702110641,L_g=0.2206834602020208,A_g=1.1549064431612084,K_g=0.021016425191801812,S_h=1.0864986022508858,B_h=-5.488211828095339,E_h=-0.16692187584322257,L_h=0.4151605304282162,A_h=2.144679642410411,K_h=-1.675391004686672,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.5329999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.5329999999999999)"""),
+)
+
+entry(
+ index = 735,
+ label = "CCCCO + [CH]=O <=> C=O + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12422928417351427,B_g=-2.685594192428917,E_g=-0.09597036575202979,L_g=0.2609716614068142,A_g=1.1684458004438236,K_g=-0.16700984134803654,S_h=0.9294875066167027,B_h=-5.498107947386909,E_h=-0.17850400064372723,L_h=0.4583809151268083,A_h=2.146021116358824,K_h=-1.942439616384384,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.524)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.524)"""),
+)
+
+entry(
+ index = 736,
+ label = "CCCCO + [CH]=O <=> C=O + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08980544995631812,B_g=-2.575285449392212,E_g=-0.1330185041961757,L_g=0.2836447702726123,A_g=1.2125678315667587,K_g=-0.1762242279772988,S_h=0.8265385441494322,B_h=-5.237920645064685,E_h=-0.18336409478469853,L_h=0.4999006333989971,A_h=2.144752946997756,K_h=-1.9154415368652329,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.494)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.494)"""),
+)
+
+entry(
+ index = 737,
+ label = "CCCCO + [H] <=> [H][H] + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11256652432693014,B_g=-2.2909589464572915,E_g=-0.10455433293012532,L_g=0.3334772287497203,A_g=-0.3757006710604209,K_g=0.10824155367357711,S_h=0.5884232530767783,B_h=-4.685900450063417,E_h=0.043059114606433156,L_h=0.4754682144369199,A_h=-0.4660705663392953,K_h=-1.9799275823525995,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.491)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.182, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.491)"""),
+)
+
+entry(
+ index = 738,
+ label = "CCCCO + [H] <=> [H][H] + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.28118173613782144,B_g=1.1355686930196063,E_g=-0.32917424947257085,L_g=0.017629753256464376,A_g=-0.9510024030024502,K_g=1.5697297724876376,S_h=0.4822415583075948,B_h=1.751986968003427,E_h=0.08545115746802713,L_h=-0.0023457467950389194,A_h=-2.0319738393675255,K_h=0.6037072595382038,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.184, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.591, MAE_h(kcal/mol): 0.418)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.184, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.591, MAE_h(kcal/mol): 0.418)"""),
+)
+
+entry(
+ index = 739,
+ label = "CCCCO + [H] <=> [H][H] + CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5292737815481251,B_g=-1.2796415289874028,E_g=-0.21291317394345438,L_g=0.10494284724305362,A_g=0.20199079042905443,K_g=0.8507070665970674,S_h=1.2419483101746212,B_h=-2.1355312299097595,E_h=-0.042978479560353694,L_h=0.12027816691562057,A_h=-0.18885460837683649,K_h=-0.4956562977917236,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41600000000000004, MAE_h(kcal/mol): 0.32899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41600000000000004, MAE_h(kcal/mol): 0.32899999999999996)"""),
+)
+
+entry(
+ index = 740,
+ label = "CCCCO + [H] <=> [H][H] + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3556885187152451,B_g=0.10560991898789283,E_g=-0.09964292557801258,L_g=-0.004229674689804551,A_g=0.022665778407063554,K_g=1.4111059759318654,S_h=0.6286161583180233,B_h=0.11146695551675563,E_h=0.10972230633794544,L_h=0.022431203727559662,A_h=-0.20603720365049655,K_h=0.2680602150030725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.196)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.196)"""),
+)
+
+entry(
+ index = 741,
+ label = "CCCCO + [H] <=> [H][H] + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.35436903614303567,B_g=-2.2061528693579,E_g=-0.04191556304385168,L_g=0.1819273248727372,A_g=0.7219109066319619,K_g=0.7999143180257404,S_h=1.1722283171508239,B_h=-4.637108916726607,E_h=-0.05410611591931957,L_h=0.3879352066882958,A_h=1.2389501525522122,K_h=-1.1422174190917946,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.49)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.49)"""),
+)
+
+entry(
+ index = 742,
+ label = "CCCCO + [OH] <=> O + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13071674015354376,B_g=-3.6383485750689117,E_g=0.03639572761677573,L_g=0.40641529315796177,A_g=-0.026528930160143276,K_g=-0.9711098513111744,S_h=0.676967864130763,B_h=-6.735995183422618,E_h=0.2579515124082017,L_h=0.4941388928336828,A_h=0.20817036714223508,K_h=-2.96747965260525,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.405, MAE_g(kcal/mol): 0.32299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.915, MAE_h(kcal/mol): 0.7190000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.405, MAE_g(kcal/mol): 0.32299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.915, MAE_h(kcal/mol): 0.7190000000000001)"""),
+)
+
+entry(
+ index = 743,
+ label = "CCCCO + [OH] <=> O + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.418040589894699,B_g=-2.7544125390283716,E_g=0.2182937306545749,L_g=-0.0008063504607946285,A_g=1.0842481514193953,K_g=0.1690183870412886,S_h=2.6100611456286638,B_h=-4.583420636955154,E_h=0.922230352469551,L_h=-0.0917700128971632,A_h=1.20104435043613,K_h=-1.2134328256974294,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.546, MAE_g(kcal/mol): 0.35, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.122, MAE_h(kcal/mol): 0.715)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.546, MAE_g(kcal/mol): 0.35, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.122, MAE_h(kcal/mol): 0.715)"""),
+)
+
+entry(
+ index = 744,
+ label = "CCCCO + [OH] <=> O + CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.011750725351398088,B_g=-1.5809527048101522,E_g=1.2519177340535366,L_g=-0.05470721353554829,A_g=0.13795190292449191,K_g=1.1191191436193957,S_h=0.6530339163626316,B_h=-4.24119817093518,E_h=1.4535420015458662,L_h=0.0930675040931691,A_h=0.8773826059319008,K_h=-0.48973328713425035,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7190000000000001, MAE_h(kcal/mol): 0.57)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7190000000000001, MAE_h(kcal/mol): 0.57)"""),
+)
+
+entry(
+ index = 745,
+ label = "CCCCO + [OH] <=> O + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7797262346709367,B_g=-4.753406644549396,E_g=0.23920019896535927,L_g=0.24831928963107308,A_g=1.1762380780785935,K_g=-0.5893762127122629,S_h=2.230438679145287,B_h=-9.199146605553235,E_h=0.27268573446453986,L_h=0.38698224705281115,A_h=1.949542830898111,K_h=-2.591932921178254,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.628, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.286, MAE_h(kcal/mol): 0.9990000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.628, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.286, MAE_h(kcal/mol): 0.9990000000000001)"""),
+)
+
+entry(
+ index = 746,
+ label = "CCCCO + [OH] <=> O + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2800528454927089,B_g=-3.0129578185940673,E_g=0.36422850314093363,L_g=0.16484735602136005,A_g=1.4221603077034863,K_g=0.21641713321854378,S_h=1.0922016991463244,B_h=-6.127376516532301,E_h=0.4472092960154354,L_h=0.32095680523120007,A_h=2.8840077189955373,K_h=-1.578738906272334,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.405, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8290000000000001, MAE_h(kcal/mol): 0.645)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.405, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8290000000000001, MAE_h(kcal/mol): 0.645)"""),
+)
+
+entry(
+ index = 747,
+ label = "CCCCO + [O]O <=> OO + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3055115286776157,B_g=-2.43987721564859,E_g=-0.1664160741905423,L_g=0.3848344226436037,A_g=-0.06740356806369645,K_g=-0.9816950337237876,S_h=0.4117958498690823,B_h=-5.017970230736114,E_h=-0.043000470936557185,L_h=0.513095459121091,A_h=0.08755499912482766,K_h=-2.897781650957656,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.519)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.519)"""),
+)
+
+entry(
+ index = 748,
+ label = "CCCCO + [O][O] <=> [O]O + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16530184446289883,B_g=-2.133031543481296,E_g=-0.23102673747639554,L_g=0.2973160758124485,A_g=-0.43492344717641906,K_g=-0.2917156053392931,S_h=0.7754305858525217,B_h=-4.259920162543084,E_h=0.05349768784435634,L_h=0.5169806022503743,A_h=-0.9253751192666501,K_h=-2.2055151194479987,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.252, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.723, MAE_h(kcal/mol): 0.584)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.252, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.723, MAE_h(kcal/mol): 0.584)"""),
+)
+
+entry(
+ index = 749,
+ label = "CCCCO + [O][O] <=> [O]O + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9313274517590613,B_g=-1.2929683029667176,E_g=-0.40242019314766103,L_g=0.10349874687235781,A_g=-0.7120880919277364,K_g=0.2990240726975862,S_h=1.7443119777084093,B_h=-2.20287615430358,E_h=0.09174069106222524,L_h=0.15827193453651656,A_h=-1.9405483580308838,K_h=-1.1704396852196066,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.5760000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.5760000000000001)"""),
+)
+
+entry(
+ index = 750,
+ label = "CCCCO + [O][O] <=> [O]O + CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6648579463013745,B_g=-2.0894666272221825,E_g=-0.16613018629989695,L_g=0.13889753210124198,A_g=0.44915186758007697,K_g=0.1963976504146335,S_h=1.3920247918459703,B_h=-4.410040626966841,E_h=-0.10241383897965231,L_h=0.41470604198667743,A_h=0.4787889122436469,K_h=-1.6634863397018493,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.557)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.557)"""),
+)
+
+entry(
+ index = 751,
+ label = "CCCCO + [O][O] <=> [O]O + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6739477151321505,B_g=-2.0880078659340175,E_g=-0.08198385048661022,L_g=0.12092324728425627,A_g=0.6019552799006591,K_g=0.3839401066779951,S_h=1.3592283194678327,B_h=-4.422751642412457,E_h=-0.023259545564557782,L_h=0.4197200757610731,A_h=0.7879583398297765,K_h=-1.5439412186596784,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.557)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.243, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.557)"""),
+)
+
+entry(
+ index = 752,
+ label = "CCCCO + [O][O] <=> [O]O + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5680812300885502,B_g=-2.2919338974689794,E_g=-0.15692313012936918,L_g=0.1657929851981101,A_g=0.561051320162168,K_g=0.2233517471813776,S_h=1.3643596405819804,B_h=-4.806611114044373,E_h=-0.1464918873501805,L_h=0.460990558436289,A_h=0.8531994225667964,K_h=-1.713106214875657,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.682, MAE_h(kcal/mol): 0.565)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.682, MAE_h(kcal/mol): 0.565)"""),
+)
+
+entry(
+ index = 753,
+ label = "CCCCO + [O] <=> [OH] + CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7232230587454368,B_g=-1.981987441256993,E_g=0.07680854662005561,L_g=0.09274496390885126,A_g=0.33335261095123386,K_g=0.8777344679511565,S_h=1.464610994234956,B_h=-4.267668457425447,E_h=0.24167056355888467,L_h=0.2792831473255868,A_h=0.23316723142686857,K_h=-0.7146024392736686,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.499)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.644, MAE_h(kcal/mol): 0.499)"""),
+)
+
+entry(
+ index = 754,
+ label = "CCCCO + [O] <=> [OH] + CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.6937171515229135,B_g=-0.16207644261972032,E_g=-0.30211752628354377,L_g=-0.1955986304125734,A_g=-0.07773951487933668,K_g=-0.013143512510952445,S_h=2.5218390747589967,B_h=-0.14927746166928924,E_h=0.13017428620719101,L_h=-0.27094108528572963,A_h=-0.7639804093092379,K_h=-0.8741205517950497,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.583, MAE_h(kcal/mol): 0.462)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.583, MAE_h(kcal/mol): 0.462)"""),
+)
+
+entry(
+ index = 755,
+ label = "CCCCO + [O] <=> [OH] + CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7027051047475807,B_g=-2.1555727040898733,E_g=-0.08995205913100804,L_g=0.11513218488400392,A_g=0.39356499899638914,K_g=0.6811975388205677,S_h=1.6156184441655865,B_h=-4.644651958764404,E_h=-0.08646276077338766,L_h=0.27261242987719486,A_h=0.4687901665297935,K_h=-0.8612629271747427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.515)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.515)"""),
+)
+
+entry(
+ index = 756,
+ label = "CCCCO + [O] <=> [OH] + C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7992838985745737,B_g=-2.1372905400060382,E_g=0.13663975081101704,L_g=0.03728271312364982,A_g=0.6276631986825387,K_g=1.0626379590700994,S_h=1.7168520792889848,B_h=-4.808722286159908,E_h=0.1373581357669977,L_h=0.21238538091457065,A_h=1.0745866068073289,K_h=-0.5259384228239291,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.534)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.534)"""),
+)
+
+entry(
+ index = 757,
+ label = "CCCCO + [O] <=> [OH] + [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6671597103440066,B_g=-2.251557730759372,E_g=-0.03328028265461467,L_g=0.12688291023540205,A_g=0.6034946762349035,K_g=0.8027072228035835,S_h=1.483032437034746,B_h=-4.779275833423435,E_h=-0.002096511198066034,L_h=0.32912293626142936,A_h=1.0423839015866851,K_h=-0.8458982856672377,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34299999999999997, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.52)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34299999999999997, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.52)"""),
+)
+
+entry(
+ index = 758,
+ label = "CCCCO[O] + C=O <=> CCCCOO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.43487213396527763,B_g=0.03350019641664956,E_g=-0.45517017420109873,L_g=0.23675915620677193,A_g=0.30182430793416387,K_g=-0.4264127845856685,S_h=-0.3608638225817997,B_h=0.23898761566205887,E_h=-0.3402945553728022,L_h=0.1985674662000445,A_h=0.5483622960927543,K_h=-1.2390014657633535,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 759,
+ label = "CCCCO[O] + CC=O <=> CCCCOO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4660998881742332,B_g=0.010695139293630572,E_g=-0.55556080657003,L_g=0.27990623631801903,A_g=0.18632560011343516,K_g=-0.6214029869232787,S_h=-0.4800277597697768,B_h=0.2914956915772582,E_h=-0.3404191731712886,L_h=0.2883142724864866,A_h=0.28147495448720133,K_h=-1.523313307780805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.235, MAE_h(kcal/mol): 0.19)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.235, MAE_h(kcal/mol): 0.19)"""),
+)
+
+entry(
+ index = 760,
+ label = "CCCCO[O] + CCC=O <=> CCCCOO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.49322991595060517,B_g=-0.1301962775833945,E_g=-0.6116388158889291,L_g=0.28478832183519376,A_g=0.09817683383111325,K_g=-1.0549629687750812,S_h=-0.5144589244457075,B_h=0.1755938085261321,E_h=-0.31044492740593194,L_h=0.26674806288959757,A_h=0.06716899338419254,K_h=-1.9757932036263437,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.272, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.11900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.272, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 761,
+ label = "CCCCO[O] + [O]O <=> CCCCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.05083592050756,B_g=-5.098180110208975,E_g=-0.000659741286104696,L_g=0.7313232156470555,A_g=0.8957234136856114,K_g=-2.3822451490779777,S_h=-0.5702510458739611,B_h=-8.30543906801961,E_h=0.020569267208997523,L_h=0.8751028332654722,A_h=2.2362370720042737,K_h=-4.494311580578613,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.608, MAE_g(kcal/mol): 0.491, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.23, MAE_h(kcal/mol): 1.0)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.608, MAE_g(kcal/mol): 0.491, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.23, MAE_h(kcal/mol): 1.0)"""),
+)
+
+entry(
+ index = 762,
+ label = "CCCO[O] + C=O <=> CCCOO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5012127855124721,B_g=0.030274794573471053,E_g=-0.4891761722704286,L_g=0.26031925057944405,A_g=0.3252744454258186,K_g=-0.43394116570599656,S_h=-0.435187343690861,B_h=0.2406589602535241,E_h=-0.36683081599167994,L_h=0.23791003822808787,A_h=0.5721349737687269,K_h=-1.314879044124128,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.136, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 763,
+ label = "CCCO[O] + CC=O <=> CCCOO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.553434973537026,B_g=-0.13749741448295316,E_g=-0.6598952257381204,L_g=0.3286317955262181,A_g=0.08581768040475196,K_g=-0.9580836261399739,S_h=-0.6135960483710398,B_h=0.21957656093311184,E_h=-0.38720216081484615,L_h=0.34419435941955434,A_h=0.029974245765356684,K_h=-2.0521326008873912,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32899999999999996, MAE_h(kcal/mol): 0.261)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32899999999999996, MAE_h(kcal/mol): 0.261)"""),
+)
+
+entry(
+ index = 764,
+ label = "CCCO[O] + CCC=O <=> CCCOO + CC[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4619141962368356,B_g=-0.1371528829224318,E_g=-0.6480711957993773,L_g=0.29611388057999105,A_g=0.2042192498843414,K_g=-0.9565075775120573,S_h=-0.5076415978226256,B_h=0.20261387942148662,E_h=-0.37097985563540503,L_h=0.3137729556713934,A_h=0.12117981333996365,K_h=-1.9734914395837115,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.139, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.295, MAE_h(kcal/mol): 0.233)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.139, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.295, MAE_h(kcal/mol): 0.233)"""),
+)
+
+entry(
+ index = 765,
+ label = "CCCO[O] + [O]O <=> CCCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0843141255480058,B_g=-5.101588773520517,E_g=0.00919972571179326,L_g=0.7345266261140306,A_g=0.8310247848949441,K_g=-2.3783746668661636,S_h=-0.5964061226386451,B_h=-8.320261255580764,E_h=0.023464798409123692,L_h=0.8701840954546249,A_h=2.2002958328290374,K_h=-4.494985982782188,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.48100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.222, MAE_h(kcal/mol): 0.9940000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.48100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.222, MAE_h(kcal/mol): 0.9940000000000001)"""),
+)
+
+entry(
+ index = 766,
+ label = "CCO + CO[O] <=> COO + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5182267802352387,B_g=-2.1083278975460424,E_g=-0.35624563357906686,L_g=0.4485800917987862,A_g=-0.437283854888927,K_g=-1.2949328659075627,S_h=-0.009060446995837825,B_h=-4.2995486224617725,E_h=-0.16977342429094178,L_h=0.5506640601353863,A_h=-0.37067930682729067,K_h=-3.092705879166656,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.446)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.446)"""),
+)
+
+entry(
+ index = 767,
+ label = "CCO + C[CH2] <=> CC + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.41353316858915795,B_g=-0.5356659415646061,E_g=-0.4056309340733706,L_g=0.1004785978737452,A_g=-0.5605821708031602,K_g=-0.06808530072600462,S_h=1.0039356455242503,B_h=-0.5938258011641023,E_h=-0.0794548422232089,L_h=-0.0123738143438303,A_h=-1.2519470558884747,K_h=-1.1060855879894609,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.344)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.172, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42700000000000005, MAE_h(kcal/mol): 0.344)"""),
+)
+
+entry(
+ index = 768,
+ label = "CCO + C[CH2] <=> CC + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19812763867597472,B_g=0.038712152576876664,E_g=-0.23623136317788815,L_g=0.14729823781097512,A_g=-0.15354378865276624,K_g=-0.05778600620403687,S_h=-0.23724296648324866,B_h=0.29057205377671164,E_h=0.026023128507463005,L_h=0.17331403585970365,A_h=-0.25440357038070527,K_h=-1.2088292976121655,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.17800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.17800000000000002)"""),
+)
+
+entry(
+ index = 769,
+ label = "CCO + [CH3] <=> C + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09150611638272133,B_g=-2.1224536915274177,E_g=-0.07765154937452272,L_g=0.2596081960821979,A_g=0.0807156811255423,K_g=-0.10112367824238089,S_h=0.6215642570154377,B_h=-4.654408799340019,E_h=-0.1022232470525554,L_h=0.39255339569102865,A_h=0.48548895152697674,K_h=-1.817785165604269,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.469)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.469)"""),
+)
+
+entry(
+ index = 770,
+ label = "CCO + [CH3] <=> C + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15328722259705885,B_g=0.7002127487778519,E_g=-0.3765216824386845,L_g=0.09596303529329528,A_g=-0.5647971845754958,K_g=0.3856627644806018,S_h=-0.01639823618906894,B_h=1.100140585955784,E_h=-0.1707923580550368,L_h=0.05147448123363529,A_h=-1.1226890770230955,K_h=-0.5244869919944988,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 771,
+ label = "CCO + [CH3] <=> C + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02578122336922462,B_g=-1.8765901055724008,E_g=-0.16360850849523012,L_g=0.2541836566186704,A_g=0.373149671420816,K_g=-0.04424664892142161,S_h=0.5923083962060616,B_h=-4.0912682984385205,E_h=-0.18068114688787273,L_h=0.42283552072323416,A_h=0.8415073408852743,K_h=-1.7240579202249948,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.551, MAE_h(kcal/mol): 0.41700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24, MAE_g(kcal/mol): 0.171, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.551, MAE_h(kcal/mol): 0.41700000000000004)"""),
+)
+
+entry(
+ index = 772,
+ label = "CCO + [H] <=> [H][H] + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25834002672112993,B_g=-1.9684920667267847,E_g=-0.17106358502821317,L_g=0.3596836187255458,A_g=-0.5622022021834839,K_g=0.12364284747475454,S_h=0.2740272084129527,B_h=-4.15148801694241,E_h=0.025869188874038575,L_h=0.503485227720166,A_h=-0.7122713533960988,K_h=-1.8886047274382407,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.461)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.461)"""),
+)
+
+entry(
+ index = 773,
+ label = "CCO + [H] <=> [H][H] + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10865938982144344,B_g=1.2892590908470625,E_g=-0.4154464183188615,L_g=0.07104680605474127,A_g=-1.1038864503691117,K_g=1.374966814370797,S_h=0.11064594413849203,B_h=2.1559318965678633,E_h=0.04049345404935934,L_h=0.057947276296195796,A_h=-2.285996225894037,K_h=0.3853402242962839,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.217, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.635, MAE_h(kcal/mol): 0.434)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.217, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.635, MAE_h(kcal/mol): 0.434)"""),
+)
+
+entry(
+ index = 774,
+ label = "CCO + [H] <=> [H][H] + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2715201915257549,B_g=-0.9295388198278441,E_g=-0.3242628421204581,L_g=0.17867260119462067,A_g=-0.12603257702220041,K_g=0.714902988081783,S_h=0.780144070818803,B_h=-1.4720294184742668,E_h=-0.10470094210481524,L_h=0.21877021047231718,A_h=-0.6609508117958879,K_h=-0.6784486167951315,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41600000000000004, MAE_h(kcal/mol): 0.322)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.096, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41600000000000004, MAE_h(kcal/mol): 0.322)"""),
+)
+
+entry(
+ index = 775,
+ label = "CCO + [OH] <=> O + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4409857365498478,B_g=-3.2129180719536654,E_g=-0.07429419927412326,L_g=0.4834877362924592,A_g=-0.31500447273878884,K_g=-1.0794833532419725,S_h=0.05675974198120735,B_h=-5.899765772826182,E_h=0.18169275019323328,L_h=0.5951892664887187,A_h=-0.20254057483414167,K_h=-3.0566107003579943,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.369, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.634)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.369, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.634)"""),
+)
+
+entry(
+ index = 776,
+ label = "CCO + [OH] <=> O + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4950625306342294,B_g=-1.6901252267430102,E_g=0.20098651758242841,L_g=0.11452375680904073,A_g=1.3429913533709228,K_g=0.10937777477742408,S_h=1.1224325109673883,B_h=-2.8274532298588957,E_h=0.7383971083258448,L_h=0.09598502666949878,A_h=1.3087507806220888,K_h=-1.1139438397528414,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.696, MAE_h(kcal/mol): 0.466)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.696, MAE_h(kcal/mol): 0.466)"""),
+)
+
+entry(
+ index = 777,
+ label = "CCO + [OH] <=> O + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22398949709127877,B_g=-2.6300513065976365,E_g=0.591428741157922,L_g=0.22541160608577113,A_g=0.2122461021986152,K_g=-0.07034308201622959,S_h=0.3391949865626277,B_h=-5.391405790047576,E_h=0.6779354846837167,L_h=0.4198227021833561,A_h=1.0184792756534915,K_h=-1.8783787375036178,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47100000000000003, MAE_g(kcal/mol): 0.363, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.863, MAE_h(kcal/mol): 0.682)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47100000000000003, MAE_g(kcal/mol): 0.363, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.863, MAE_h(kcal/mol): 0.682)"""),
+)
+
+entry(
+ index = 778,
+ label = "CCO + [O]O <=> OO + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5114387754470948,B_g=-2.2934439719682858,E_g=-0.22403347984368577,L_g=0.4480376378524335,A_g=-0.23366570262081432,K_g=-1.0929494059372429,S_h=0.005277930288837568,B_h=-4.60395325187048,E_h=-0.07235162770948166,L_h=0.5764526139633454,A_h=-0.09674006391915192,K_h=-2.9616006247001843,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.654, MAE_h(kcal/mol): 0.48)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.654, MAE_h(kcal/mol): 0.48)"""),
+)
+
+entry(
+ index = 779,
+ label = "CCO + [O][O] <=> [O]O + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6670057707105821,B_g=-1.0091182798495395,E_g=-0.4745079243427009,L_g=0.1755058430213181,A_g=-0.9571306665044894,K_g=0.25982810984423277,S_h=1.2450051114669063,B_h=-1.7431097824759516,E_h=0.04355025534164444,L_h=0.272377855197691,A_h=-2.234924919890799,K_h=-1.2638297294970935,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.787, MAE_h(kcal/mol): 0.594)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.787, MAE_h(kcal/mol): 0.594)"""),
+)
+
+entry(
+ index = 780,
+ label = "CCO + [O][O] <=> [O]O + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.46995570946857845,B_g=-1.7092797154162498,E_g=-0.23756550666756657,L_g=0.1877843614016,A_g=0.1599726009629198,K_g=0.34381317556536056,S_h=1.0361456812036285,B_h=-3.7402639428546185,E_h=-0.11293304726365497,L_h=0.4883771522683684,A_h=-0.01356134865881875,K_h=-1.426749174871281,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.546)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.546)"""),
+)
+
+entry(
+ index = 781,
+ label = "CCO + [O] <=> [OH] + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02226260317666624,B_g=-1.5957309096188972,E_g=-0.1772578226588628,L_g=0.3097265424499513,A_g=-0.9601361545856331,K_g=-0.04214280726462108,S_h=0.3936383035837341,B_h=-3.3674734639117925,E_h=0.15184312222636304,L_h=0.46071933146311267,A_h=-1.4035409425178649,K_h=-1.9248171935866538,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.639, MAE_h(kcal/mol): 0.524)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.639, MAE_h(kcal/mol): 0.524)"""),
+)
+
+entry(
+ index = 782,
+ label = "CCO + [O] <=> [OH] + C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6127896979102451,B_g=2.192474233359329,E_g=-0.3141468090668527,L_g=-0.15915892004339063,A_g=-0.5119885598521821,K_g=1.9978872062521165,S_h=0.8069588888695917,B_h=3.0705459024122725,E_h=0.020759859136094433,L_h=-0.17338734044704862,A_h=-1.6608400440986963,K_h=1.3894151485364898,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.489)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.489)"""),
+)
+
+entry(
+ index = 783,
+ label = "CCO + [O] <=> [OH] + [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.42130345484772436,B_g=-1.7245344000427374,E_g=-0.1827410057922663,L_g=0.18530666634934012,A_g=0.1289207777635921,K_g=0.5863707246311193,S_h=1.0922163600637933,B_h=-3.838396793933325,E_h=-0.0926643288627718,L_h=0.3778558259283629,A_h=-0.004918737810847233,K_h=-1.0065966020448727,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.578, MAE_h(kcal/mol): 0.44299999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.272, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.578, MAE_h(kcal/mol): 0.44299999999999995)"""),
+)
+
+entry(
+ index = 784,
+ label = "CCO[O] + C=O <=> CCOO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.47083536451671804,B_g=0.0008283418369981184,E_g=-0.4525971831852904,L_g=0.2503938094529356,A_g=0.27986225356561206,K_g=-0.44047993489716747,S_h=-0.3964018865266393,B_h=0.20367679593798863,E_h=-0.3272463388253982,L_h=0.19664688601160638,A_h=0.548978054626452,K_h=-1.2691736339145416,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 785,
+ label = "CCO[O] + CCC <=> CCOO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08134610057670902,B_g=-0.13505637172436577,E_g=0.005182634325289112,L_g=-0.03901270138499102,A_g=0.45207672061514126,K_g=0.44910788482767006,S_h=0.435172682773392,B_h=-0.5226910296045472,E_h=0.0581525291407617,L_h=-0.045595453328568986,A_h=0.4805848746335985,K_h=-0.23205300169922508,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.17600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.17600000000000002)"""),
+)
+
+entry(
+ index = 786,
+ label = "CCO[O] + CCC <=> CCOO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06461066328585323,B_g=0.03304570797511078,E_g=-0.07397165908980541,L_g=0.009529596354845609,A_g=0.22522101415867424,K_g=0.28250854916876533,S_h=0.1766860468775721,B_h=-0.17738244045734927,E_h=0.0418935716676482,L_h=0.034013328528064324,A_h=0.16729572923868188,K_h=-0.5592920100658888,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.149)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.149)"""),
+)
+
+entry(
+ index = 787,
+ label = "CCO[O] + [O]O <=> CCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0920404290541652,B_g=-5.101955296457242,E_g=0.007447746074248567,L_g=0.7345926002426411,A_g=0.7996357605938296,K_g=-2.37885847714264,S_h=-0.5861654717865534,B_h=-8.332635069924592,E_h=0.01742450041189847,L_h=0.8458909552085032,A_h=2.2027515365050934,K_h=-4.459286648745189,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.48, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.232, MAE_h(kcal/mol): 1.006)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.48, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.232, MAE_h(kcal/mol): 1.006)"""),
+)
+
+entry(
+ index = 788,
+ label = "CO + CC(C)O[O] <=> CC(C)OO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21517095523367935,B_g=-0.6673503022711035,E_g=-0.20415327575573095,L_g=0.1453703271638025,A_g=-1.5196187565786188,K_g=-0.45151960575131944,S_h=0.9599748844934742,B_h=-1.2871552491902618,E_h=0.19993093152466085,L_h=0.05726554363388762,A_h=-2.119286933354115,K_h=-1.6254779111634843,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.638, MAE_h(kcal/mol): 0.535)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.638, MAE_h(kcal/mol): 0.535)"""),
+)
+
+entry(
+ index = 789,
+ label = "CO + CCO[O] <=> CCOO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16138004903994316,B_g=-0.6177157661798269,E_g=0.28170952916670516,L_g=0.01271834590435164,A_g=-1.5120317317884149,K_g=-0.10478157715089473,S_h=0.9157135746545836,B_h=-1.171312009809012,E_h=0.6741896202703889,L_h=-0.1028829883386601,A_h=-2.1383534565225406,K_h=-1.188172064898354,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.4, MAE_g(kcal/mol): 0.309, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.536)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.4, MAE_g(kcal/mol): 0.309, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.536)"""),
+)
+
+entry(
+ index = 790,
+ label = "CO + CO[O] <=> COO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21709886588085195,B_g=-0.9431514816978045,E_g=-0.42381047173492226,L_g=0.209423875585834,A_g=-0.7666267049123914,K_g=-0.5823096504922082,S_h=0.8696196501320688,B_h=-1.3802227532834308,E_h=-0.04829306214286374,L_h=0.09452626538133395,A_h=-1.4243960976175079,K_h=-1.6826554892925583,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.565, MAE_h(kcal/mol): 0.46)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.565, MAE_h(kcal/mol): 0.46)"""),
+)
+
+entry(
+ index = 791,
+ label = "CO + [CH3] <=> C + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06694174916342316,B_g=0.609923488545057,E_g=-0.33311803627173,L_g=0.08900642995425799,A_g=-0.6686184716321715,K_g=0.5740042407460235,S_h=0.13446993502560606,B_h=0.9525931125478361,E_h=-0.06826856219436704,L_h=0.05015499866142589,A_h=-1.2895449787377076,K_h=-0.3940121569791934,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.258)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14300000000000002, MAE_g(kcal/mol): 0.10300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.258)"""),
+)
+
+entry(
+ index = 792,
+ label = "CO + [CH]=O <=> C=O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1321828319004431,B_g=-2.235100850900427,E_g=-0.30267464114736553,L_g=0.3180832654072774,A_g=-0.1690550393349611,K_g=-0.29244865121274277,S_h=0.9184185139276128,B_h=-4.272609186612498,E_h=-0.08167597121976136,L_h=0.3979999265307596,A_h=-0.4854449687745698,K_h=-1.859766702776731,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.475)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.257, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.475)"""),
+)
+
+entry(
+ index = 793,
+ label = "CO + [H] <=> [H][H] + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21502434605898943,B_g=-2.171597086883483,E_g=-0.1314644469444624,L_g=0.35785833450065613,A_g=-0.5302633934772821,K_g=0.09396182005877769,S_h=0.3903029448595381,B_h=-4.511897351082671,E_h=0.0839557438861898,L_h=0.5090270545234454,A_h=-0.5504954595844929,K_h=-1.9990160968972288,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.508)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.187, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.508)"""),
+)
+
+entry(
+ index = 794,
+ label = "CO + [H] <=> [H][H] + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16722975511007146,B_g=1.2531932338733391,E_g=-0.3738167431656553,L_g=0.05734617867996707,A_g=-1.1040917032136777,K_g=1.546147686738762,S_h=0.2259100772797169,B_h=2.0844745848239903,E_h=0.11717738287092849,L_h=0.07753426203477078,A_h=-2.2283421679472215,K_h=0.45294904520454626,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7290000000000001, MAE_h(kcal/mol): 0.47700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7290000000000001, MAE_h(kcal/mol): 0.47700000000000004)"""),
+)
+
+entry(
+ index = 795,
+ label = "CO + [OH] <=> O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.35980823652403215,B_g=-3.332243279233802,E_g=-0.034995609998486873,L_g=0.4701243100194719,A_g=-0.15335319672566933,K_g=-1.0175922901466177,S_h=0.15932752059428407,B_h=-6.091772478458851,E_h=0.2291281486641609,L_h=0.6177230966385613,A_h=0.13546687741349758,K_h=-3.0968622492691154,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.379, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.647)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.379, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.647)"""),
+)
+
+entry(
+ index = 796,
+ label = "CO + [OH] <=> O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3060686435414375,B_g=-0.9008034215886174,E_g=0.26852936436208025,L_g=0.08260693947904245,A_g=1.283746585878721,K_g=0.4952897748549988,S_h=0.7909051842410441,B_h=-1.789357646631891,E_h=0.8137762154926734,L_h=0.12637710858272178,A_h=1.3933882571705871,K_h=-0.7534685314839698,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6, MAE_h(kcal/mol): 0.41200000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6, MAE_h(kcal/mol): 0.41200000000000003)"""),
+)
+
+entry(
+ index = 797,
+ label = "CO + [O]O <=> OO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19654425958932342,B_g=-2.1547516927116095,E_g=1.3700040938075428,L_g=-0.0829074882871568,A_g=-1.1500243576440334,K_g=-0.038250333676603375,S_h=0.8665261965461111,B_h=-2.725801758587631,E_h=1.8642016303111018,L_h=-0.18790897920008642,A_h=-1.8123313043058034,K_h=-1.2302562284930991,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.774, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.035, MAE_h(kcal/mol): 0.713)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.774, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.035, MAE_h(kcal/mol): 0.713)"""),
+)
+
+entry(
+ index = 798,
+ label = "CO + [O][O] <=> [O]O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.611932034238309,B_g=-1.2760935869599064,E_g=-0.40486123590624845,L_g=0.20224735648476178,A_g=-0.9222596743044891,K_g=0.219180716161449,S_h=1.2056698698975974,B_h=-2.3842756861474332,E_h=0.11341685754013174,L_h=0.3530202317358883,A_h=-1.9470211530934445,K_h=-1.4898717550340317,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6729999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.228, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6729999999999999)"""),
+)
+
+entry(
+ index = 799,
+ label = "CO + [O] <=> [OH] + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.722797892138836,B_g=2.3535317422149546,E_g=-0.2725244643723809,L_g=-0.1979443772076123,A_g=-0.5271406180563866,K_g=2.352109633220462,S_h=0.9642925246880927,B_h=3.2378562925684236,E_h=0.10250913494320078,L_h=-0.1809743652372526,A_h=-1.6272298908010292,K_h=1.66712224723416,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.551)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.551)"""),
+)
+
+entry(
+ index = 800,
+ label = "COC + COCO[O] <=> COCOO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2532013751482478,B_g=0.3670214079187769,E_g=0.27060388418394277,L_g=0.0642441403491284,A_g=-0.8326814685689403,K_g=-0.004324970653353007,S_h=-0.19916123335753871,B_h=0.4430969086653828,E_h=0.5779920102975897,L_h=0.0843955714102596,A_h=-1.2511920186388215,K_h=-1.0372159281788649,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.433, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.316)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.433, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.457, MAE_h(kcal/mol): 0.316)"""),
+)
+
+entry(
+ index = 801,
+ label = "COC + CO[O] <=> COO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.33090423773391203,B_g=-0.004127048267521598,E_g=0.09099298427130656,L_g=0.07113477155955522,A_g=-0.34637883612243436,K_g=-0.019865543170485844,S_h=-0.26263567553954503,B_h=0.08081097708909077,E_h=0.37335492426538197,L_h=0.0707829095402994,A_h=-0.6760295654127475,K_h=-1.049113262704953,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.136, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.18100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.136, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.259, MAE_h(kcal/mol): 0.18100000000000002)"""),
+)
+
+entry(
+ index = 802,
+ label = "COC + C[O] <=> CO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42768095394673644,B_g=0.11533743772856986,E_g=-0.07033575155749508,L_g=0.17542520797523867,A_g=0.40154786855825597,K_g=0.10618169476918357,S_h=-0.6583998121562831,B_h=0.4920497120943512,E_h=0.32816264616721025,L_h=0.24503524411801855,A_h=0.6356753900793437,K_h=-1.023207421537242,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.252)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.371, MAE_h(kcal/mol): 0.252)"""),
+)
+
+entry(
+ index = 803,
+ label = "COC + [CH3] <=> C + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17783692889888805,B_g=0.010431242779188695,E_g=-0.19779776803292237,L_g=0.14674112294715339,A_g=-0.21662238606310968,K_g=0.3355957313239899,S_h=-0.1966688773878099,B_h=0.2847076867891143,E_h=0.14643324368030453,L_h=0.16896707383014714,A_h=-0.6584437949086901,K_h=-0.7639144351806275,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.222)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.222)"""),
+)
+
+entry(
+ index = 804,
+ label = "COC + [H] <=> [H][H] + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03662297183754513,B_g=0.3210374402772796,E_g=-0.12786519170582458,L_g=0.11639302378633737,A_g=-0.6406894238537393,K_g=1.2494033867076042,S_h=-0.084637476548498,B_h=0.886289113294314,E_h=0.4187158029144471,L_h=0.18582712891948938,A_h=-1.427071715055599,K_h=-0.011340219662266273,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.406)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.134, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.406)"""),
+)
+
+entry(
+ index = 805,
+ label = "COC + [OH] <=> O + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17504402412104483,B_g=-1.6043955118430724,E_g=0.51653344426757,L_g=0.09229047546731248,A_g=1.5034037818579122,K_g=0.4918664506259888,S_h=0.22709761159470537,B_h=-2.4560482076168895,E_h=1.144006051023012,L_h=0.19546668215535243,A_h=1.8373354990491713,K_h=-0.8056320758386478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.61, MAE_h(kcal/mol): 0.46399999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.61, MAE_h(kcal/mol): 0.46399999999999997)"""),
+)
+
+entry(
+ index = 806,
+ label = "COC + [O]C=O <=> O=CO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24993199055266233,B_g=-0.6438708429445108,E_g=-0.14218157761429648,L_g=0.1935680933431178,A_g=0.19518812472344158,K_g=-0.14262873559710076,S_h=0.007880243139583867,B_h=-1.1096995041455677,E_h=0.11736064433929091,L_h=0.2871780513826397,A_h=-0.29434724002497736,K_h=-1.35664799799329,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.295)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.392, MAE_h(kcal/mol): 0.295)"""),
+)
+
+entry(
+ index = 807,
+ label = "COC + [O]OC=O <=> O=COO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.573952927534882,B_g=0.3200185065131846,E_g=0.42416233375417806,L_g=-0.2133163491738517,A_g=-0.9170257267680584,K_g=1.341400643825537,S_h=0.6817619841431238,B_h=0.36719733892840484,E_h=0.8457883287862202,L_h=-0.15030372589211874,A_h=-1.7691988851120255,K_h=0.398095222494308,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.4)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.4)"""),
+)
+
+entry(
+ index = 808,
+ label = "COC + [O]O <=> OO + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06796801338625269,B_g=-1.889982853680326,E_g=0.17521262467193824,L_g=0.17498538045116885,A_g=0.14633061725802157,K_g=-0.1581986299491716,S_h=-0.07015982054786717,B_h=-2.117373683624411,E_h=0.5231748398810239,L_h=0.21363155889943508,A_h=-0.25876519332773074,K_h=-1.2884380794687988,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.385, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.574, MAE_h(kcal/mol): 0.441)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.385, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.574, MAE_h(kcal/mol): 0.441)"""),
+)
+
+entry(
+ index = 809,
+ label = "COC + [O][O] <=> [O]O + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.41035174949838643,B_g=0.5635803284255693,E_g=-0.1757770699944945,L_g=0.0232155628121508,A_g=-0.6279051038207772,K_g=0.9292236101022608,S_h=0.17720650944772134,B_h=1.379423733281371,E_h=0.45298569749821876,L_h=0.20893273485062272,A_h=-1.8236568630506005,K_h=-0.3765363433561535,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.956, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.956, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 810,
+ label = "COC + [O] <=> [OH] + [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.561065981079637,B_g=0.5115707237043158,E_g=0.03533281110027372,L_g=-0.06601811136287658,A_g=-0.08468878975963948,K_g=1.6570795187678995,S_h=0.5196122369360585,B_h=1.022276453277961,E_h=0.4918004764973784,L_h=0.03274515916699641,A_h=-0.8151909940284314,K_h=0.6993330937297123,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33899999999999997)"""),
+)
+
+entry(
+ index = 811,
+ label = "COC=O + CO[O] <=> COO + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6387321913716286,B_g=-0.17260298136245747,E_g=-0.35770439486723166,L_g=0.29271254772718464,A_g=-0.1566225813212548,K_g=-0.5908642958353657,S_h=-0.6956092206925879,B_h=0.01156746388303567,E_h=-0.13677169906823797,L_h=0.2749874985071718,A_h=0.2139394381662839,K_h=-1.6842535292966783,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.207)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.11599999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.207)"""),
+)
+
+entry(
+ index = 812,
+ label = "COC=O + C[O] <=> CO + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6025637079756223,B_g=-0.11516883717767643,E_g=-0.2348019237246613,L_g=0.257218466534752,A_g=0.09492944061173125,K_g=-0.1894923582867377,S_h=-0.6804498320296489,B_h=0.020349353446962627,E_h=-0.09124221986827946,L_h=0.2602239546158956,A_h=0.8139668074197705,K_h=-1.3195485463380026,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.14400000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.14400000000000002)"""),
+)
+
+entry(
+ index = 813,
+ label = "COC=O + C[O] <=> CO + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3544716625653187,B_g=-0.5582730763017938,E_g=-1.123121574088431,L_g=0.21407138642350487,A_g=-0.4190603344749684,K_g=0.7096030664167421,S_h=-0.3518473583383689,B_h=-0.3788381073987855,E_h=-0.9618514819295053,L_h=0.22033892864149948,A_h=0.08103822130986016,K_h=-0.32456339092857245,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6509999999999999, MAE_g(kcal/mol): 0.483, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.63, MAE_h(kcal/mol): 0.486)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6509999999999999, MAE_g(kcal/mol): 0.483, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.63, MAE_h(kcal/mol): 0.486)"""),
+)
+
+entry(
+ index = 814,
+ label = "COC=O + [CH3] <=> C + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.37517287803153715,B_g=-0.14007040549876146,E_g=-0.18724190745524724,L_g=0.17812281678953343,A_g=-0.07799608093504405,K_g=0.2206907906607553,S_h=-0.3122995334657596,B_h=-0.12093057774299078,E_h=0.006450803686357028,L_h=0.15366107599251816,A_h=0.15229028020916732,K_h=-0.8281512450710213,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.105)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.105)"""),
+)
+
+entry(
+ index = 815,
+ label = "COC=O + [CH3] <=> C + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23295464812356817,B_g=-0.0755257163415187,E_g=-0.20263587079769013,L_g=0.14350839064524037,A_g=0.14844178937355662,K_g=0.23557162189178343,S_h=-0.14247479596367632,B_h=-0.03030411640840903,E_h=-0.05703096895438371,L_h=0.1437063130310718,A_h=0.31751882008472115,K_h=-0.8003761369260137,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 816,
+ label = "COC=O + [CH]=O <=> C=O + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20578063759478915,B_g=-0.16898906520635062,E_g=-0.22670176682304252,L_g=0.17348263641059705,A_g=-0.01330478260311137,K_g=0.2840992587141511,S_h=-0.15267146406336113,B_h=-0.12463245940391157,E_h=0.04680497901976093,L_h=0.1647520600578116,A_h=0.11921525039911857,K_h=-0.6356900509968126,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 817,
+ label = "COC=O + [CH]=O <=> C=O + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05227350123569541,B_g=-0.2649667614171149,E_g=-0.2726564126296019,L_g=0.15415221672772947,A_g=0.36501286222552476,K_g=0.32012846339420203,S_h=0.05694300344956976,B_h=-0.2565220729549748,E_h=-0.0944456303352545,L_h=0.18386256597864425,A_h=0.4170957715341233,K_h=-0.6191671970092572,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 818,
+ label = "COC=O + [H] <=> [H][H] + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4072143131600219,B_g=0.1599432791279818,E_g=-0.1851234048809777,L_g=0.21216546715253576,A_g=-0.40238354085398853,K_g=0.8299032247085659,S_h=-0.4957222719203341,B_h=0.5085798965406412,E_h=0.1089672690882923,L_h=0.24775484430851683,A_h=-0.28616644807727915,K_h=-0.541581621763345,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39399999999999996, MAE_h(kcal/mol): 0.242)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39399999999999996, MAE_h(kcal/mol): 0.242)"""),
+)
+
+entry(
+ index = 819,
+ label = "COC=O + [H] <=> [H][H] + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09956229053193312,B_g=0.2464646835712454,E_g=-0.184463663594873,L_g=0.1260472379396694,A_g=-0.19304763077296852,K_g=1.0212795108900694,S_h=-0.11253720249199216,B_h=0.6313797412609286,E_h=0.09952563823826063,L_h=0.16173924151793348,A_h=-0.3042140374816098,K_h=-0.2131404181642238,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35200000000000004, MAE_h(kcal/mol): 0.21)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35200000000000004, MAE_h(kcal/mol): 0.21)"""),
+)
+
+entry(
+ index = 820,
+ label = "COC=O + [OH] <=> O + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4454133336254837,B_g=-1.1567757101385048,E_g=-0.06491854255270209,L_g=0.3061786004224549,A_g=0.7239121218664794,K_g=-0.22956064572949622,S_h=-0.5992210187926919,B_h=-1.3712722631686105,E_h=0.20111113538091482,L_h=0.3516714273287409,A_h=1.5742893178204946,K_h=-1.4666048790107393,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.348, MAE_h(kcal/mol): 0.262)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.15, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.348, MAE_h(kcal/mol): 0.262)"""),
+)
+
+entry(
+ index = 821,
+ label = "COC=O + [OH] <=> O + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05200960472125353,B_g=-2.5178659661248997,E_g=0.5320740167847028,L_g=0.2011257962983838,A_g=0.8791639074043834,K_g=0.0240805569428214,S_h=0.56633658090974,B_h=-4.99210837232081,E_h=0.6081861698249813,L_h=0.3914684877983231,A_h=2.0838954785839654,K_h=-1.668529695311183,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.491, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.853, MAE_h(kcal/mol): 0.648)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.491, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.853, MAE_h(kcal/mol): 0.648)"""),
+)
+
+entry(
+ index = 822,
+ label = "COC=O + [O]O <=> OO + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3261614309326927,B_g=-1.639508409181311,E_g=-0.11412791203737793,L_g=0.30393548004969895,A_g=0.14774539579377943,K_g=-0.7093684917372381,S_h=-0.3600794634972086,B_h=-1.7540321659903515,E_h=0.11603383130834705,L_h=0.29938326517557656,A_h=0.5275437932867839,K_h=-1.9232924581698787,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41200000000000003, MAE_h(kcal/mol): 0.34)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.41200000000000003, MAE_h(kcal/mol): 0.34)"""),
+)
+
+entry(
+ index = 823,
+ label = "COC=O + [O][O] <=> [O]O + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14839047616241513,B_g=0.5606921276841776,E_g=-0.16091823013966985,L_g=0.053101843072693534,A_g=-0.5273312099834835,K_g=0.7419377198946066,S_h=-0.01334876535551835,B_h=1.1839570511260185,E_h=0.23510247253277566,L_h=0.14504778697948467,A_h=-0.6889678250791341,K_h=-0.47479381223334627,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.35200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.35200000000000004)"""),
+)
+
+entry(
+ index = 824,
+ label = "COC=O + [O][O] <=> [O]O + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3514221917317681,B_g=0.5124797005873933,E_g=-0.28968506826983753,L_g=0.03697483385680096,A_g=-0.17023524319121508,K_g=0.7425461479695699,S_h=0.2719087058386832,B_h=1.1709601477897558,E_h=0.08502599086142633,L_h=0.1332750702518831,A_h=-0.6002619439329904,K_h=-0.33075029810048756,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.313)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.532, MAE_h(kcal/mol): 0.313)"""),
+)
+
+entry(
+ index = 825,
+ label = "COC=O + [O] <=> [OH] + CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13400078566659823,B_g=0.43938769654572757,E_g=-0.0891896914226204,L_g=0.0425313215775494,A_g=-0.26795025812205503,K_g=1.328652976086247,S_h=0.08984210224999059,B_h=0.9112200034503372,E_h=0.23257346426937434,L_h=0.04654108250531905,A_h=-0.2789459462238,K_h=0.34166535115615304,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.273, MAE_h(kcal/mol): 0.16899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.273, MAE_h(kcal/mol): 0.16899999999999998)"""),
+)
+
+entry(
+ index = 826,
+ label = "COC=O + [O] <=> [OH] + [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5362670391808348,B_g=0.6394579067863438,E_g=-0.10095507769148748,L_g=-0.05286726839318964,A_g=0.04192289350258618,K_g=1.8724850486810827,S_h=0.5626053774138813,B_h=1.2653691258313378,E_h=0.24299737658982853,L_h=-0.05530831115177701,A_h=-0.337413685090145,K_h=1.0816531690273836,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11900000000000001, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.287, MAE_h(kcal/mol): 0.18)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11900000000000001, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.287, MAE_h(kcal/mol): 0.18)"""),
+)
+
+entry(
+ index = 827,
+ label = "COCO[O] + C=O <=> COCOO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3400673111520328,B_g=-0.12189086783720982,E_g=-0.4201525728264084,L_g=0.23530039491860708,A_g=0.36972634719180614,K_g=-0.35936840899996236,S_h=-0.31506311640866486,B_h=0.11209737496792234,E_h=-0.2675690742678612,L_h=0.22105731359748013,A_h=0.6330290944761903,K_h=-1.3210512903785743,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 828,
+ label = "COCO[O] + CC=O <=> COCOO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.603106161921975,B_g=-0.2584646445196164,E_g=-0.610913100474214,L_g=0.3352951825158755,A_g=0.2200237189159161,K_g=-1.088155285924882,S_h=-0.6577327404114439,B_h=-0.031484320264662996,E_h=-0.3823420666738748,L_h=0.3422224660199748,A_h=0.35203795026546575,K_h=-2.2691728230983674,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.223)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.13, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.223)"""),
+)
+
+entry(
+ index = 829,
+ label = "CO[O] + C=O <=> COO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5354606887200403,B_g=-0.07808404643985802,E_g=-0.44823556023826494,L_g=0.2730156051075922,A_g=0.26710725536758795,K_g=-0.40271341149704093,S_h=-0.48219757555518783,B_h=0.11588722213365711,E_h=-0.3025720147250826,L_h=0.2282411631572868,A_h=0.5661459889826431,K_h=-1.3118295732905774,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.105, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 830,
+ label = "CO[O] + CC=O <=> COO + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5258724486953187,B_g=-0.14153649724566078,E_g=-0.4931272895283223,L_g=0.29716946663775856,A_g=0.03477569623645197,K_g=-0.5864513596771987,S_h=-0.5575107085934061,B_h=0.10479623806836372,E_h=-0.2448299912734527,L_h=0.2726344212533984,A_h=0.16741301657843388,K_h=-1.5713351429504925,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.19399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.19399999999999998)"""),
+)
+
+entry(
+ index = 831,
+ label = "CO[O] + CCCC <=> COO + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18473489056804937,B_g=0.5974617086964127,E_g=1.8628821477388922,L_g=-0.583885699120125,A_g=-2.0796951257290983,K_g=1.6763146424872184,S_h=0.0768232075375246,B_h=0.310342300983649,E_h=1.9785787779454524,L_h=-0.5834971848071966,A_h=-2.0356463991935083,K_h=0.828913612779409,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.125, MAE_g(kcal/mol): 0.705, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.119, MAE_h(kcal/mol): 0.7)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.125, MAE_g(kcal/mol): 0.705, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.119, MAE_h(kcal/mol): 0.7)"""),
+)
+
+entry(
+ index = 832,
+ label = "CO[O] + CCC <=> COO + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05596805243788171,B_g=-0.31913885146504495,E_g=-0.010101372136136346,L_g=-0.004171031019928577,A_g=0.4914925972305295,K_g=0.3680623330590754,S_h=0.3826646068581926,B_h=-0.7254515182007237,E_h=0.05329976545852494,L_h=-0.01894190536993927,A_h=0.5650684115486722,K_h=-0.39573481478180017,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.158)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.158)"""),
+)
+
+entry(
+ index = 833,
+ label = "CO[O] + CCC <=> COO + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01760043142152639,B_g=-0.21380748990906295,E_g=0.013143512510952445,L_g=0.005094668820475152,A_g=0.31128059970166455,K_g=0.3619633913919742,S_h=0.2949703290174096,B_h=-0.5131027895798256,E_h=0.11117373716737576,L_h=-0.009207056170527757,A_h=0.3559157629360145,K_h=-0.4355025534164443,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 834,
+ label = "CO[O] + [O]O <=> COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1222639104164949,B_g=-5.088188694953858,E_g=0.0026243042269497906,L_g=0.7444593976992735,A_g=0.755997539747371,K_g=-2.4125419350276522,S_h=-0.6285795060243509,B_h=-8.300439695162684,E_h=-0.0031887495495060304,L_h=0.8513008337545618,A_h=2.2003544764989127,K_h=-4.543293705842521,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6, MAE_g(kcal/mol): 0.479, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2329999999999999, MAE_h(kcal/mol): 1.0070000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6, MAE_g(kcal/mol): 0.479, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2329999999999999, MAE_h(kcal/mol): 1.0070000000000001)"""),
+)
+
+entry(
+ index = 835,
+ label = "C[CH2] + CCC <=> CC + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0006230889924322128,B_g=-0.13048949593277437,E_g=-0.23606276262699474,L_g=0.0918139956495702,A_g=0.3719474761883586,K_g=0.17409106448556028,S_h=0.09036256482013987,B_h=-0.05219286618961595,E_h=-0.032671854579651445,L_h=0.11799106379045762,A_h=0.4011666847040622,K_h=-0.8756379567530905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.092)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.092)"""),
+)
+
+entry(
+ index = 836,
+ label = "C[CH2] + CCC <=> CC + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.012410466637502782,B_g=-0.12400203995274485,E_g=-0.23178910518478318,L_g=0.09191662207185315,A_g=0.38332434814429733,K_g=0.2486271688979219,S_h=0.08763563417090713,B_h=-0.0306046652165234,E_h=-0.01052653874273715,L_h=0.12650905683994268,A_h=0.39633591239802884,K_h=-0.7794916599914329,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.153, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 837,
+ label = "C[CH]C + CCC <=> CCC + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.047266797920034215,B_g=-0.11184080891221497,E_g=-0.24331991677414638,L_g=0.08099423855745318,A_g=0.40570423866071553,K_g=0.03978239955211317,S_h=0.09102963656497905,B_h=0.02373602538230006,E_h=0.001568718169182277,L_h=0.13473383154004792,A_h=0.3398473973899979,K_h=-1.0556227100611861,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 838,
+ label = "C[C](C)C=O + C=C(C)C <=> CC(C)C=O + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05749278785465701,B_g=-0.14209361210948254,E_g=-0.1617978851878094,L_g=0.036945512021862977,A_g=0.3848930663134797,K_g=-0.47456656801257674,S_h=0.009382987180155677,B_h=-0.03731936541732231,E_h=0.009229047546731248,L_h=0.08721046756430632,A_h=0.4520693901564067,K_h=-1.7276425145461638,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.145)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.115, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.145)"""),
+)
+
+entry(
+ index = 839,
+ label = "C[C](C)C=O + C=O <=> CC(C)C=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6102240373531713,B_g=0.21308177449434781,E_g=-0.5680519082536122,L_g=0.2911218381817988,A_g=0.12925797886537893,K_g=-0.7860744119350108,S_h=-0.676894559543418,B_h=0.6633552022608028,E_h=-0.3463641752049654,L_h=0.27615304144595676,A_h=0.3315786399374857,K_h=-1.9625837169867806,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.22899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.22899999999999998)"""),
+)
+
+entry(
+ index = 840,
+ label = "C[C](C)C=O + [H][H] <=> CC(C)C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4174256421771756,B_g=-0.09108094977612052,E_g=-0.41578361942064845,L_g=0.24744696504166797,A_g=-0.4378996134226247,K_g=0.1280264617979835,S_h=-0.3644264255267651,B_h=0.13028424308820846,E_h=-0.13487311025600335,L_h=0.224597925166242,A_h=-0.8108660233750784,K_h=-1.1417262783565834,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.209)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.209)"""),
+)
+
+entry(
+ index = 841,
+ label = "C[C](C)C=O + [O]O <=> CC(C)C=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0763679082798114,B_g=-5.034419780136325,E_g=-0.0841903185656937,L_g=0.740882133836839,A_g=0.39080141605348384,K_g=-2.770041077050318,S_h=-0.6505488908516373,B_h=-8.1518219747795,E_h=0.0004618189002732872,L_h=0.8865896621024284,A_h=1.3576302794637125,K_h=-5.191570154486463,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.196, MAE_h(kcal/mol): 0.9590000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.196, MAE_h(kcal/mol): 0.9590000000000001)"""),
+)
+
+entry(
+ index = 842,
+ label = "C[O] + CO <=> CO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30772532721543366,B_g=1.3946490960729205,E_g=-0.25206515404440083,L_g=0.05898820143649432,A_g=-0.19429380875783298,K_g=0.5939650798800578,S_h=-0.15185045268509753,B_h=1.8907012386363067,E_h=0.04679764856102643,L_h=0.02165417510170302,A_h=-0.319021564125293,K_h=-0.2564341074501608,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.235, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.441, MAE_h(kcal/mol): 0.354)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.235, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.441, MAE_h(kcal/mol): 0.354)"""),
+)
+
+entry(
+ index = 843,
+ label = "O=CCCO + CO[O] <=> COO + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8442855847456485,B_g=-0.3214186241314734,E_g=-0.6647479894203571,L_g=0.3988575902026957,A_g=-0.023061623178726374,K_g=-1.1036665366070768,S_h=-0.8339423074712737,B_h=-0.2674371260106403,E_h=-0.46170161293353523,L_h=0.36517413231768375,A_h=0.15695245196430718,K_h=-2.0907714488769233,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.263, MAE_h(kcal/mol): 0.212)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.183, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.263, MAE_h(kcal/mol): 0.212)"""),
+)
+
+entry(
+ index = 844,
+ label = "O=CCCO + C[O] <=> CO + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8548561062407927,B_g=-0.2369644090513378,E_g=-0.5636682939303832,L_g=0.3974134898319998,A_g=-0.3090961229987846,K_g=-0.7996430910525641,S_h=-0.9521166327300938,B_h=-0.08292947966336028,E_h=-0.2598354403029673,L_h=0.35420043559214226,A_h=0.15818396903170262,K_h=-1.787143848094073,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.3, MAE_h(kcal/mol): 0.244)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.3, MAE_h(kcal/mol): 0.244)"""),
+)
+
+entry(
+ index = 845,
+ label = "O=CCCO + [CH3] <=> C + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.28442179889846897,B_g=-0.0581598595994962,E_g=-0.43542924882909934,L_g=0.21297181761333037,A_g=-0.016134339674627064,K_g=0.024645002265377643,S_h=-0.18368663496901638,B_h=0.17571109586588404,E_h=-0.21967185689666027,L_h=0.16634276960319733,A_h=-0.0854951402204341,K_h=-0.9030318810439043,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.193, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.076, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.193, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 846,
+ label = "O=CCCO + [H] <=> [H][H] + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05770537115795741,B_g=0.336380090408581,E_g=-0.4575525732898102,L_g=0.18062983367673127,A_g=-0.552254769680772,K_g=0.841104165654877,S_h=-0.006736691577002396,B_h=1.0131427016947783,E_h=-0.061465896488754175,L_h=0.1480019618494868,A_h=-1.1971078940957054,K_h=-0.22434135911053465,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 847,
+ label = "O=CCCO + [OH] <=> O + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25924167314547303,B_g=-1.4625951180829695,E_g=-0.06722763705406852,L_g=0.30061478224297195,A_g=0.25362654175484867,K_g=-0.36067323065470275,S_h=-0.25447687496805027,B_h=-1.9622758377199319,E_h=0.403541753334039,L_h=0.270193378494811,A_h=0.5410684896519302,K_h=-1.3871500367875302,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.158, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.428, MAE_h(kcal/mol): 0.337)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.158, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.428, MAE_h(kcal/mol): 0.337)"""),
+)
+
+entry(
+ index = 848,
+ label = "O=CCCO + [O]O <=> OO + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2676717006901441,B_g=-4.577556269967557,E_g=-0.07847256075278634,L_g=0.6034287021062928,A_g=-0.07765154937452272,K_g=-1.9490956729153068,S_h=0.0009456291767500644,B_h=-6.9538710779293265,E_h=0.40454602618066504,L_h=0.6866440696602986,A_h=-0.19022540416018735,K_h=-3.726856533829224,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.444, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.156, MAE_h(kcal/mol): 0.858)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.444, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.156, MAE_h(kcal/mol): 0.858)"""),
+)
+
+entry(
+ index = 849,
+ label = "O=CCCO + [O][O] <=> [O]O + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05901019281269781,B_g=0.3736701339909653,E_g=-0.4779092571955073,L_g=0.17246370264650202,A_g=-0.5082793477325268,K_g=0.30806985877595505,S_h=-0.1619151725275614,B_h=0.9045786078368832,E_h=-0.12103320416527372,L_h=0.27050125776165984,A_h=-1.0454773551726426,K_h=-0.8119949140201908,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.54, MAE_h(kcal/mol): 0.33)"""),
+)
+
+entry(
+ index = 850,
+ label = "O=CCCO + [O] <=> [OH] + O=[C]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5661826412763156,B_g=0.8384065568405821,E_g=-0.3987403028629438,L_g=-0.00392912588169019,A_g=-0.0657468843897002,K_g=1.1485289440621962,S_h=0.8095538712616035,B_h=1.8982369502153695,E_h=-0.0019499020233761015,L_h=-0.11752191443144985,A_h=-1.0326783742222116,K_h=0.7279951873815941,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.244)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34299999999999997, MAE_h(kcal/mol): 0.244)"""),
+)
+
+entry(
+ index = 851,
+ label = "O=CCO + CO[O] <=> COO + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6416350530304893,B_g=-0.24556303714690236,E_g=-0.48411082528489147,L_g=0.32460004322224495,A_g=-0.010973696725541443,K_g=-0.9315693568972998,S_h=-0.6967894245488419,B_h=-0.02578122336922462,E_h=-0.21710619633958644,L_h=0.26554586765714017,A_h=0.1885393986512531,K_h=-1.9326827758087688,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.258, MAE_h(kcal/mol): 0.221)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.161, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.258, MAE_h(kcal/mol): 0.221)"""),
+)
+
+entry(
+ index = 852,
+ label = "O=CCO + C[O] <=> CO + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.48743152309161836,B_g=0.4713045138757258,E_g=-0.6384609643984523,L_g=0.27986958402434653,A_g=0.3716909101326512,K_g=-0.4719495942443615,S_h=-0.39168107110162353,B_h=1.7002192684204123,E_h=-0.28170952916670516,L_h=0.07771752350313318,A_h=0.5391405790047575,K_h=-0.957211301550569,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.483, MAE_h(kcal/mol): 0.408)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.483, MAE_h(kcal/mol): 0.408)"""),
+)
+
+entry(
+ index = 853,
+ label = "O=CCO + [CH3] <=> C + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34064641739205803,B_g=0.09932771585242924,E_g=-0.2898316774445274,L_g=0.1726176422799265,A_g=-0.21196021430796985,K_g=0.0839704048036588,S_h=-0.22514037911259477,B_h=0.6116388158889291,E_h=-0.024982203367164488,L_h=0.07907365836901507,A_h=-0.31449867108610857,K_h=-0.8206741771618348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.22)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.22)"""),
+)
+
+entry(
+ index = 854,
+ label = "O=CCO + [H] <=> [H][H] + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1391321067807459,B_g=0.571973703676568,E_g=-0.5025542594608849,L_g=0.18932375773584426,A_g=-0.5025029462497435,K_g=0.6715506551259701,S_h=-0.09712857823208025,B_h=1.8320722296778027,E_h=-0.02931450447925199,L_h=0.08088428167643573,A_h=-1.055725336483469,K_h=-0.321264684498049,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.426)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.192, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.426)"""),
+)
+
+entry(
+ index = 855,
+ label = "O=CCO + [OH] <=> O + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4484041607891584,B_g=-1.9622025331325867,E_g=-0.06618671191377,L_g=0.4118398326214892,A_g=0.22213489103145115,K_g=-0.7995404646302812,S_h=-0.6216668834377206,B_h=-2.506239858571988,E_h=0.5532663729861326,L_h=0.3770348145500992,A_h=0.33173257957091007,K_h=-1.9268990438672513,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.53, MAE_h(kcal/mol): 0.426)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.53, MAE_h(kcal/mol): 0.426)"""),
+)
+
+entry(
+ index = 856,
+ label = "O=CCO + [O]O <=> OO + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5419188228651318,B_g=-1.0990116953106714,E_g=-0.21512697248127238,L_g=0.33806609591751524,A_g=0.27113167721282655,K_g=-0.7618765676524373,S_h=-0.5780726453436691,B_h=-1.1204166348154017,E_h=0.0872691112341823,L_h=0.28702411174921527,A_h=0.4337139214852272,K_h=-1.7995982974839826,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.332, MAE_h(kcal/mol): 0.272)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.207, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.332, MAE_h(kcal/mol): 0.272)"""),
+)
+
+entry(
+ index = 857,
+ label = "O=CCO + [O][O] <=> [O]O + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2219956123154957,B_g=0.3391583342689552,E_g=-0.5164674701389596,L_g=0.22843908554311826,A_g=-0.3495895770481439,K_g=0.00018326146836241555,S_h=-0.40066088305138187,B_h=1.0289764925612908,E_h=-0.0936905930856013,L_h=0.2992366560008866,A_h=-0.756144148922061,K_h=-1.1902319238027474,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.127, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.35)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.127, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.35)"""),
+)
+
+entry(
+ index = 858,
+ label = "O=CCO + [O] <=> [OH] + O=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0358166213767505,B_g=0.3322090593886524,E_g=-0.3341736223294975,L_g=0.17057977475173638,A_g=-0.21349961064221412,K_g=0.6266735867533817,S_h=-0.1371895352161043,B_h=1.0533795896884302,E_h=0.12612054252701438,L_h=0.1332164265820071,A_h=-0.5104564939766723,K_h=-0.17345331457565905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.34, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 859,
+ label = "OO + CC(=O)O[O] <=> CC(=O)OO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6426906390882569,B_g=-0.7319389741807533,E_g=-0.5175523780316651,L_g=0.34396711519878503,A_g=0.16587362024418958,K_g=-0.6698866409932394,S_h=0.06057891098188008,B_h=-3.2682190526467085,E_h=-0.6050414030278821,L_h=0.47971988050292796,A_h=1.1753730839479228,K_h=-2.6150458575681212,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42200000000000004, MAE_h(kcal/mol): 0.34299999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13, MAE_g(kcal/mol): 0.109, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42200000000000004, MAE_h(kcal/mol): 0.34299999999999997)"""),
+)
+
+entry(
+ index = 860,
+ label = "OO + CCCCO[O] <=> CCCCOO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8895145151374926,B_g=-1.155360931602747,E_g=-0.42880251413311443,L_g=0.4227109029247477,A_g=0.0310298318231242,K_g=-0.9577904077905941,S_h=-0.2465379881585904,B_h=-3.6394188220441483,E_h=-0.46303575642321365,L_h=0.5398516335020038,A_h=1.0850325105039864,K_h=-2.7889976433377264,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.371)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.371)"""),
+)
+
+entry(
+ index = 861,
+ label = "OO + [H] <=> [H][H] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7460574377033936,B_g=-1.2286655189477131,E_g=-0.1990805983114593,L_g=0.36738060039676723,A_g=-0.35404649595871784,K_g=0.3919816199097379,S_h=-0.2066236403492563,B_h=-3.6079345017794857,E_h=-0.17959623899516725,L_h=0.5358052202805615,A_h=0.5898160402363327,K_h=-1.7371427890660713,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.136, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45399999999999996, MAE_h(kcal/mol): 0.34600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.136, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45399999999999996, MAE_h(kcal/mol): 0.34600000000000003)"""),
+)
+
+entry(
+ index = 862,
+ label = "OO + [OH] <=> O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5862607677501018,B_g=-1.5953277343884997,E_g=-0.10671681825680182,L_g=0.3648735835095694,A_g=0.7040245873197901,K_g=-0.2871780513826397,S_h=0.05112994967311394,B_h=-4.419042430292802,E_h=-0.15981133087076085,L_h=0.523072213458741,A_h=2.3176491467095937,K_h=-2.2994256262956347,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.442)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.442)"""),
+)
+
+entry(
+ index = 863,
+ label = "[CH2] + CC <=> [CH3] + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06180309759054102,B_g=-0.1851600571746502,E_g=-0.15657859856884784,L_g=0.1126324984555406,A_g=0.27130027776371995,K_g=0.684892090022754,S_h=0.05789596308505432,B_h=-0.25461615368400564,E_h=0.021294982623712686,L_h=0.16871050777443974,A_h=0.33296409663830556,K_h=-0.3569933403699855,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 864,
+ label = "[CH2] + [H][H] <=> [CH3] + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23700106134501028,B_g=-0.09796425052781287,E_g=-0.08129478736556754,L_g=0.14817789285911473,A_g=0.15761952370914636,K_g=1.28623894184845,S_h=-0.10931913110754811,B_h=-0.12425127554971775,E_h=0.06694174916342316,L_h=0.17434030008253318,A_h=0.30366425307652256,K_h=0.24147997163178772,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 865,
+ label = "[CH2]C(=C)CO + C=C(C)C <=> C=C(C)CO + [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.33190851058053805,B_g=-1.896404335531745,E_g=0.7736566148387735,L_g=0.04310309735884014,A_g=0.2491256400918677,K_g=-0.257086518277531,S_h=0.04096993386710162,B_h=-4.266400288064379,E_h=0.7602492058133792,L_h=0.29900208132138273,A_h=1.4540331422810775,K_h=-2.2668857199732044,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.522, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.621)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.522, MAE_g(kcal/mol): 0.387, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.621)"""),
+)
+
+entry(
+ index = 866,
+ label = "[CH2]C(=C)CO + C=O <=> C=C(C)CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7156067121202948,B_g=-1.957599005047323,E_g=-0.22982454224393808,L_g=0.43288557964822905,A_g=0.6225172166509222,K_g=-0.976402442517481,S_h=-0.39032493623574166,B_h=-4.105753284897886,E_h=-0.26350800012895004,L_h=0.6152893843387085,A_h=1.8945204076369795,K_h=-2.894101760672939,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.552, MAE_h(kcal/mol): 0.40399999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.552, MAE_h(kcal/mol): 0.40399999999999997)"""),
+)
+
+entry(
+ index = 867,
+ label = "[CH2]C(=C)CO + [H][H] <=> C=C(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05241277995165084,B_g=0.14206429027454454,E_g=-0.060864798872525445,L_g=0.05345370509194937,A_g=0.09153543821765933,K_g=1.3391795148289845,S_h=0.2132577055039757,B_h=0.22472987342346296,E_h=0.15156456479445216,L_h=0.06941211375694852,A_h=-0.024124539695228386,K_h=0.35359200751717906,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 868,
+ label = "[CH2]C=C + [CH]=O <=> C=CC + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34055845188724404,B_g=-0.3922821687178522,E_g=-0.1571503743501386,L_g=0.17505135457977936,A_g=0.37222603362026946,K_g=0.0709661710086618,S_h=-0.23409086922741515,B_h=-0.5430330525927752,E_h=-0.04349161167176845,L_h=0.20120643134446328,A_h=0.5749205480878355,K_h=-1.0652695937557837,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10800000000000001, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 869,
+ label = "[CH2]OC + C=O <=> COC + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6586490477532561,B_g=-0.24390635347290612,E_g=-0.3514075308142991,L_g=0.29218475469830085,A_g=0.18911850489127835,K_g=-0.34280890271873454,S_h=-0.6339527322767369,B_h=-0.18155347147727782,E_h=-0.20298773281694596,L_h=0.25917569901686255,A_h=0.6615079266597097,K_h=-1.383484807420282,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.113, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 870,
+ label = "[CH2]OC + CC=O <=> COC + C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5426665296560504,B_g=-0.20438051997650034,E_g=-0.440560569943247,L_g=0.27325751024583056,A_g=0.02975433200332179,K_g=-0.5727214104674866,S_h=-0.5293177643005321,B_h=-0.05688435977969379,E_h=-0.2107213667818399,L_h=0.2360920844619327,A_h=0.13958659522228467,K_h=-1.6408132308360515,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.1, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 871,
+ label = "[CH3] + CCC <=> C + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.018905253076266785,B_g=-0.11986033076775426,E_g=-0.17480944944154095,L_g=0.08479874664065692,A_g=0.27915852952710035,K_g=0.45158557987992987,S_h=0.10736922908417204,B_h=-0.12817307097267344,E_h=0.00024923559697288513,L_h=0.10432708870935593,A_h=0.3150704468673993,K_h=-0.5742388154255275,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 872,
+ label = "[CH3] + CCC <=> C + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.030626656592726887,B_g=-0.1178517850745022,E_g=-0.17063841842161237,L_g=0.092239162256171,A_g=0.2934162717656963,K_g=0.529361747052939,S_h=0.08444688462140108,B_h=-0.11578459571137416,E_h=0.0016493532152617397,L_h=0.12650905683994268,A_h=0.32958475516170266,K_h=-0.48774673281720177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14400000000000002, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14400000000000002, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 873,
+ label = "[CH3] + CO <=> C + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07268149835253401,B_g=-2.2979595345487356,E_g=-0.04377749956241383,L_g=0.26867597353677014,A_g=0.015679851233088272,K_g=-0.08251164351549398,S_h=0.6951767236272526,B_h=-4.968174424552679,E_h=-0.02046664078671457,L_h=0.3990188602948546,A_h=0.44335347472109027,K_h=-1.883678659168659,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.626, MAE_h(kcal/mol): 0.501)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.626, MAE_h(kcal/mol): 0.501)"""),
+)
+
+entry(
+ index = 874,
+ label = "[CH3] + [OH] <=> O + [CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04987644122951502,B_g=-0.9448521481242076,E_g=0.11377605001812206,L_g=0.09136683766676591,A_g=0.7485644545905916,K_g=0.835511025640456,S_h=0.2489130567885673,B_h=-1.4426416094076695,E_h=0.22558020663666456,L_h=0.09972356062409206,A_h=1.107888880838147,K_h=-0.10184206319836157,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.23199999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28800000000000003, MAE_h(kcal/mol): 0.23199999999999998)"""),
+)
+
+entry(
+ index = 875,
+ label = "[CH3] + [O]O <=> C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6877436384704732,B_g=-4.960030284898653,E_g=0.3318791887456001,L_g=0.5628692739283232,A_g=0.7277092994909488,K_g=-1.4993133858840633,S_h=-0.17440627421114363,B_h=-8.274768428674477,E_h=0.3570959667922684,L_h=0.7184802519442174,A_h=2.0372810914913013,K_h=-3.684596439224851,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.188, MAE_h(kcal/mol): 0.9590000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.188, MAE_h(kcal/mol): 0.9590000000000001)"""),
+)
+
+entry(
+ index = 876,
+ label = "[CH]=C + CCC <=> C=C + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07109078880714824,B_g=-0.22954598481202726,E_g=-0.188773973330757,L_g=0.10292697109106706,A_g=0.39260470890217014,K_g=0.33119012562455735,S_h=0.09432834299550252,B_h=-0.3724899301347113,E_h=-0.0242931402461218,L_h=0.11049200450506759,A_h=0.5043648827683056,K_h=-0.5961275652067343,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.085, MAE_h(kcal/mol): 0.066)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.085, MAE_h(kcal/mol): 0.066)"""),
+)
+
+entry(
+ index = 877,
+ label = "[CH]=C + CCC <=> C=C + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11433316488194381,B_g=-0.21217279761127025,E_g=-0.1922999239820499,L_g=0.11668624213571722,A_g=0.376572995649826,K_g=0.29623116791974297,S_h=0.015291336920159954,B_h=-0.3127906742009709,E_h=-0.031308389255035075,L_h=0.14521638753037808,A_h=0.4862659801528334,K_h=-0.6911449713232796,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.113, MAE_h(kcal/mol): 0.081)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.113, MAE_h(kcal/mol): 0.081)"""),
+)
+
+entry(
+ index = 878,
+ label = "[CH]=C + [H] <=> [H][H] + [C]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.194205843253019,B_g=-0.09328008739646952,E_g=-0.09954762961446413,L_g=0.13230744969892955,A_g=0.07435284294399923,K_g=1.1238692808793496,S_h=-0.061817758508010016,B_h=-0.13240274566247798,E_h=0.05886358363800787,L_h=0.16434888482741428,A_h=0.1657929851981101,K_h=-0.07341454422598367,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.133)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.133)"""),
+)
+
+entry(
+ index = 879,
+ label = "[CH]=C=C + [CH]=O <=> C=C=C + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5359811512901895,B_g=-0.33864520215754046,E_g=-0.1616952587655265,L_g=0.21271525155762297,A_g=0.3556738577977761,K_g=0.0785458653401313,S_h=-0.38632250576670657,B_h=-0.595812355481151,E_h=-0.0902745993153259,L_h=0.19607511023031565,A_h=0.732540071796982,K_h=-0.9590145943992551,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 880,
+ label = "[CH]=C=C + [O]O <=> C=C=C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9684635557080212,B_g=-5.012201159712066,E_g=0.20860286420757038,L_g=0.6535470484740463,A_g=0.8401878583130649,K_g=-1.9418971624380312,S_h=-0.47152442763776065,B_h=-8.367982541942336,E_h=0.17931035110452187,L_h=0.8274768428674478,A_h=2.2633304474869735,K_h=-4.209288684063916,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2, MAE_h(kcal/mol): 0.976)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2, MAE_h(kcal/mol): 0.976)"""),
+)
+
+entry(
+ index = 881,
+ label = "[CH]=CC + [CH]=O <=> C=CC + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.36968969489813364,B_g=-0.33835198380816056,E_g=-0.08696123196733342,L_g=0.1668778930908156,A_g=0.2430413593422355,K_g=0.1468804016631088,S_h=-0.24381838796809216,B_h=-0.5024296416623985,E_h=0.024461740797015227,L_h=0.1401803623797789,A_h=0.6126284278180861,K_h=-0.8595915825832773,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.096, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.096, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 882,
+ label = "[CH]=CC=C + OO <=> C=CC=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.606250928719074,B_g=-1.8096043736565706,E_g=-0.1619298334450304,L_g=0.3561210157805804,A_g=0.1622743650055517,K_g=-0.4138850306084138,S_h=0.020576597667732018,B_h=-4.513260816407287,E_h=-0.20303904602808745,L_h=0.49442478072432816,A_h=1.1711947224692598,K_h=-2.2172218620469897,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.604, MAE_h(kcal/mol): 0.48200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.212, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.604, MAE_h(kcal/mol): 0.48200000000000004)"""),
+)
+
+entry(
+ index = 883,
+ label = "[CH]=CC=C + [CH]=O <=> C=CC=C + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3878985543946233,B_g=-0.3610544145088966,E_g=-0.16546311455505774,L_g=0.18003606651923704,A_g=0.3565241910109777,K_g=0.07710176496943547,S_h=-0.23993324483880893,B_h=-0.561095302914575,E_h=-0.06540968328791336,L_h=0.15874108389552435,A_h=0.6622043202394869,K_h=-0.9325076556153153,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 884,
+ label = "[CH]=CC=C + [O]O <=> C=CC=C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8720460319731872,B_g=-4.947524522297602,E_g=0.2526735821193641,L_g=0.6180089845292068,A_g=0.7674843685843273,K_g=-1.7892110374572012,S_h=-0.34780827557566124,B_h=-8.255386695780468,E_h=0.2558550012101356,L_h=0.7502797819344639,A_h=2.164185993102907,K_h=-3.83832348934598,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.213, MAE_h(kcal/mol): 0.991)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.213, MAE_h(kcal/mol): 0.991)"""),
+)
+
+entry(
+ index = 885,
+ label = "[CH]=O + [CH]=O <=> C=O + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2959672714053011,B_g=-0.4207463399839026,E_g=-0.12585664601257252,L_g=0.1629634281265944,A_g=0.35966895780807673,K_g=0.4033878137006146,S_h=-0.09209255308148105,B_h=-0.6906171782943958,E_h=-0.01950635069249551,L_h=0.10794833532419726,A_h=0.7051094952124956,K_h=-0.4637614718379288,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.125)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.125)"""),
+)
+
+entry(
+ index = 886,
+ label = "[CH]=O + [OH] <=> O + [C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07993865249968565,B_g=1.4587979404585003,E_g=-0.24364978741719873,L_g=-0.024908898779819524,A_g=-0.09690133401131085,K_g=1.5897859075852205,S_h=0.38965053403216793,B_h=1.6541033525216937,E_h=-0.14006307504002696,L_h=-0.060417640889721166,A_h=0.04270725258717732,K_h=0.8535146322923797,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.293)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37200000000000005, MAE_h(kcal/mol): 0.293)"""),
+)
+
+entry(
+ index = 887,
+ label = "[H] + CCC <=> [H][H] + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2061691519077175,B_g=0.09822081658352023,E_g=-0.043249706533530066,L_g=0.01768839692634035,A_g=0.0262650336457014,K_g=1.4484693241015945,S_h=0.332055119755228,B_h=0.17500737182737236,E_h=0.22022897176048203,L_h=0.06076217245024249,A_h=-0.14509176973189164,K_h=0.31369965108404846,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.195)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.195)"""),
+)
+
+entry(
+ index = 888,
+ label = "[H] + CCC <=> [H][H] + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10118232191225686,B_g=0.09186530886071168,E_g=-0.057199569505277145,L_g=0.050748765818920114,A_g=0.009097099289510307,K_g=1.4051609738981885,S_h=0.19125166838301688,B_h=0.21776593762569116,E_h=0.18641356561824912,L_h=0.11929588544519802,A_h=-0.14954135818373107,K_h=0.2090866744840472,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.222)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.222)"""),
+)
+
+entry(
+ index = 889,
+ label = "[H][H] + CC(C)(C)O[O] <=> CC(C)(C)OO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38855096522199345,B_g=-0.07130337211044865,E_g=-0.20903536127290565,L_g=0.1955546476601664,A_g=0.05936938529068814,K_g=0.6351989102616014,S_h=-0.285338106240281,B_h=-0.0035626029449653583,E_h=-0.035999882845112914,L_h=0.196419641790837,A_h=0.1581619776554991,K_h=-0.4275343447720465,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 890,
+ label = "[H][H] + CC(C)CO[O] <=> CC(C)COO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5374325821196199,B_g=-0.17607761880260886,E_g=-0.212656607887747,L_g=0.23642195510498504,A_g=-0.03136703292491104,K_g=0.5557440680383924,S_h=-0.428780522756911,B_h=-0.13577475668034644,E_h=-0.03086123127223078,L_h=0.20686554548749467,A_h=0.1443220715647695,K_h=-0.4734889905786058,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.11599999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.11599999999999999)"""),
+)
+
+entry(
+ index = 891,
+ label = "[H][H] + CC(C)O[O] <=> CC(C)OO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.45000220079327863,B_g=-0.07998996571082714,E_g=-0.19908792877019377,L_g=0.20912332677771966,A_g=0.018113563532941152,K_g=0.6306027126350718,S_h=-0.34447291685146525,B_h=-0.021448922257137116,E_h=-0.03663030229627962,L_h=0.19951309537679454,A_h=0.20074461244418998,K_h=-0.40484657498877946,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.136, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.136, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 892,
+ label = "[H][H] + CCCCO[O] <=> CCCCOO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38784724118348174,B_g=-0.12817307097267344,E_g=-0.2135949066057626,L_g=0.2028484541009905,A_g=0.1328205818103443,K_g=0.6644254492360393,S_h=-0.3011572361893248,B_h=-0.06386295649493458,E_h=-0.037246060829977334,L_h=0.2187482190961137,A_h=0.22262603176666243,K_h=-0.4530663325442983,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.158, MAE_h(kcal/mol): 0.11599999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.158, MAE_h(kcal/mol): 0.11599999999999999)"""),
+)
+
+entry(
+ index = 893,
+ label = "[H][H] + CCCO[O] <=> CCCOO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4089956146325045,B_g=-0.12410466637502782,E_g=-0.2130671135768788,L_g=0.20565601979630274,A_g=0.08990807637860107,K_g=0.6911742931582174,S_h=-0.33128542158810587,B_h=-0.054157429130461045,E_h=-0.031616268521883935,L_h=0.22264802314286591,A_h=0.20718075521307802,K_h=-0.42220510127206745,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.11699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.11699999999999999)"""),
+)
+
+entry(
+ index = 894,
+ label = "[H][H] + CCO[O] <=> CCOO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4278715458738333,B_g=-0.14525303982405055,E_g=-0.19427181738162946,L_g=0.20668961447786674,A_g=0.04467914598675691,K_g=0.732452106292168,S_h=-0.30105460976704174,B_h=-0.14218890807303097,E_h=-0.027525872548034815,L_h=0.19472630582316827,A_h=0.21818377377355747,K_h=-0.28357879614400183,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 895,
+ label = "[H][H] + CO[O] <=> COO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4704835024974622,B_g=-0.17172332631431786,E_g=-0.19298165664435807,L_g=0.2198477879062882,A_g=0.05038957334092978,K_g=0.6394065935752024,S_h=-0.36145025928055946,B_h=-0.18389188781358223,E_h=-0.0460059590177008,L_h=0.21321372275156875,A_h=0.27310357061240614,K_h=-0.4401940470065222,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.128, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.128, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 896,
+ label = "[OH] + [H][H] <=> O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.029805645214463265,B_g=-0.7705998135464883,E_g=0.07910298020395304,L_g=0.1130869868970794,A_g=0.6648652767601091,K_g=1.0948040119970706,S_h=0.0961462967616577,B_h=-1.1658288266756083,E_h=0.192094671137484,L_h=0.17423767366025023,A_h=0.9583255312782124,K_h=0.015188710497877,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.15, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.18899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.15, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.18899999999999997)"""),
+)
+
+entry(
+ index = 897,
+ label = "[O] + O <=> [OH] + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6717998907229429,B_g=-0.277780403285015,E_g=-0.6725402670551272,L_g=0.3641551985535887,A_g=-1.926334598544695,K_g=0.14265805743203874,S_h=-0.157304313983563,B_h=-1.770496376308031,E_h=-0.5365749184476837,L_h=0.3604166645989954,A_h=-2.3994204138929036,K_h=-1.433522518741956,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.519, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 898,
+ label = "[O]C=O + OO <=> O=CO + [O]O",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.906037369125048,B_g=-5.729787095690674,E_g=-0.20780384420551026,L_g=0.7957946002169533,A_g=0.7063630036560945,K_g=-2.418384310639046,S_h=0.22929674921505436,B_h=-11.252466740755615,E_h=-0.390625485043856,L_h=1.05804176144357,A_h=2.552333783094503,K_h=-5.1440247991345185,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.621, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.508, MAE_h(kcal/mol): 1.197)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.621, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.508, MAE_h(kcal/mol): 1.197)"""),
+)
+
+entry(
+ index = 899,
+ label = "[O]O + CC(=O)CO[O] <=> CC(=O)COO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0270632428315871,B_g=-5.083966350722787,E_g=0.04881352471301301,L_g=0.7043251361279045,A_g=0.7600732748037514,K_g=-2.3900740790064203,S_h=-0.510141284251089,B_h=-8.336256316539435,E_h=0.03223935751431614,L_h=0.8153962468729972,A_h=2.186426604903369,K_h=-4.466851682159189,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.601, MAE_g(kcal/mol): 0.486, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.234, MAE_h(kcal/mol): 1.013)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.601, MAE_g(kcal/mol): 0.486, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.234, MAE_h(kcal/mol): 1.013)"""),
+)
+
+entry(
+ index = 900,
+ label = "[O]O + [OH] <=> O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.600005377877283,B_g=-6.5446042363236465,E_g=0.4910527697064597,L_g=0.6437022423936175,A_g=1.8399964555697939,K_g=-2.129930759436604,S_h=0.23801999510910532,B_h=-10.797193940132235,E_h=0.41788013061871443,L_h=0.7145364651450582,A_h=3.8057102784362047,K_h=-4.1816381937173945,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8059999999999999, MAE_g(kcal/mol): 0.633, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.656, MAE_h(kcal/mol): 1.34)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8059999999999999, MAE_g(kcal/mol): 0.633, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.656, MAE_h(kcal/mol): 1.34)"""),
+)
+
+entry(
+ index = 901,
+ label = "[O]O + [O]O <=> OO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5905344251923134,B_g=-6.333135162750888,E_g=0.09728251786550467,L_g=0.7087234113686025,A_g=0.9093507364730404,K_g=-2.4279578897462986,S_h=0.11537409002224233,B_h=-9.809883775017822,E_h=0.06536570053550637,L_h=0.7748588100712309,A_h=2.2294050844637234,K_h=-4.537378025643781,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.769, MAE_g(kcal/mol): 0.628, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.492, MAE_h(kcal/mol): 1.225)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.769, MAE_g(kcal/mol): 0.628, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.492, MAE_h(kcal/mol): 1.225)"""),
+)
+
+entry(
+ index = 902,
+ label = "[O]OCCCCO + OO <=> OCCCCOO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3923041600940558,B_g=-7.079441836051254,E_g=0.31427142686533915,L_g=0.7319463046394877,A_g=0.12399470949401036,K_g=-2.0199225652080135,S_h=1.028375394945062,B_h=-14.633296300481662,E_h=0.23815194336632625,L_h=1.1858189876445806,A_h=1.867353727566935,K_h=-5.879958873325571,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7879999999999999, MAE_g(kcal/mol): 0.591, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.965, MAE_h(kcal/mol): 1.5330000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7879999999999999, MAE_g(kcal/mol): 0.591, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.965, MAE_h(kcal/mol): 1.5330000000000001)"""),
+)
+
+entry(
+ index = 903,
+ label = "[O]OCCCCO + [O]O <=> OCCCCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6690656296149757,B_g=-4.9754609005347685,E_g=0.24408961494126852,L_g=0.5680079255012053,A_g=1.2281963695887055,K_g=-1.777460312105803,S_h=0.01763708371519887,B_h=-8.354157296769076,E_h=0.2190194460692901,L_h=0.6955725683989155,A_h=2.776792429544789,K_h=-3.681788873529539,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.474, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.202, MAE_h(kcal/mol): 0.966)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.474, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.202, MAE_h(kcal/mol): 0.966)"""),
+)
+
+entry(
+ index = 904,
+ label = "[O]OCO + [O]O <=> OCOO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7783187865939134,B_g=-6.414393297822783,E_g=0.16007522738520272,L_g=0.7546927180926306,A_g=1.083800993436591,K_g=-2.476228960512959,S_h=0.24630341347908652,B_h=-11.396818134155323,E_h=0.1369842823715384,L_h=0.9232859385273186,A_h=2.9290827097539567,K_h=-4.965315545646225,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.759, MAE_g(kcal/mol): 0.599, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.672, MAE_h(kcal/mol): 1.3559999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.759, MAE_g(kcal/mol): 0.599, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.672, MAE_h(kcal/mol): 1.3559999999999999)"""),
+)
+
+entry(
+ index = 905,
+ label = "[CH2]C(=C)CO <=> C=C(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0755403772589877,B_g=-1.8734599996927708,E_g=0.30626656592726886,L_g=0.13155241244927637,A_g=0.1453996489987405,K_g=-0.27303759648379566,S_h=0.1959578228905637,B_h=-4.23573697917798,E_h=0.2625990232458725,L_h=0.3339683694849316,A_h=0.6805891107456044,K_h=-1.1753877448653918,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.425)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.425)"""),
+)
+
+entry(
+ index = 906,
+ label = "[CH2]C=C=C <=> C=C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3515907922826615,B_g=0.27044994455051835,E_g=0.021888749781206914,L_g=-0.09885856649342144,A_g=-0.040405488544545384,K_g=0.3422517878549128,S_h=0.38216613566424684,B_h=0.4131666456524331,E_h=0.05667177647639339,L_h=-0.08475476388824994,A_h=-0.3541271310047973,K_h=0.49751823431028575,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.066)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.066)"""),
+)
+
+entry(
+ index = 907,
+ label = "[CH]=CC <=> C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.014506977835568816,B_g=-0.004456918910573946,E_g=-0.021023755650536314,L_g=0.008085495984149774,A_g=-0.039086005972335996,K_g=-0.06871572017717134,S_h=0.011985300030901978,B_h=0.020935790145722354,E_h=0.004530223497918913,L_h=-0.009844806080428965,A_h=0.03295041201156231,K_h=-0.025414700432499788,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.013999999999999999, MAE_g(kcal/mol): 0.01, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.015, MAE_h(kcal/mol): 0.012)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.013999999999999999, MAE_g(kcal/mol): 0.01, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.015, MAE_h(kcal/mol): 0.012)"""),
+)
+
+entry(
+ index = 908,
+ label = "[CH2]C(OO)C(C)=O <=> CC(=O)C(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0335360378941478,B_g=-0.17031587823729452,E_g=0.20784782695791723,L_g=0.17163536080950392,A_g=-0.16119678757158074,K_g=-0.3704227407715833,S_h=-1.1170592847150023,B_h=-0.610913100474214,E_h=0.05178236050048413,L_h=0.193157587653986,A_h=0.8093339574995686,K_h=-0.6401836222010591,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.165)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.165)"""),
+)
+
+entry(
+ index = 909,
+ label = "[CH2]C(C)(C)OO <=> CC(C)(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9427776283023451,B_g=-1.868138086651526,E_g=0.25907307259457957,L_g=0.3573745242241793,A_g=-0.3554466135770067,K_g=-0.9084564205074319,S_h=-0.9304331357934529,B_h=-3.996851989938204,E_h=0.24554837622943335,L_h=0.5664905205431644,A_h=0.7351717064826662,K_h=-2.0426763091198907,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.541, MAE_h(kcal/mol): 0.38799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.541, MAE_h(kcal/mol): 0.38799999999999996)"""),
+)
+
+entry(
+ index = 910,
+ label = "CC(C)([C]=O)COO <=> CC(C)(C=O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5253666470426384,B_g=-3.131359388073656,E_g=0.5586909124496601,L_g=0.055425598491528956,A_g=0.6599172171143238,K_g=0.1186801269115003,S_h=1.0453673982916254,B_h=-6.062516617649476,E_h=0.4532642549301297,L_h=0.24706578118747416,A_h=1.4243521148651006,K_h=-0.8154475600841389,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.419, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.861, MAE_h(kcal/mol): 0.674)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.419, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.861, MAE_h(kcal/mol): 0.674)"""),
+)
+
+entry(
+ index = 911,
+ label = "CC(C)([C]=O)OO <=> CC(C)(C=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34448757776893424,B_g=-0.5784758205740664,E_g=0.3789700556560064,L_g=0.03635907532310324,A_g=0.47774798710334837,K_g=0.27413716529397014,S_h=-0.4657406956962429,B_h=-1.8962357349808519,E_h=0.18310019827025664,L_h=0.22750811728383713,A_h=1.1856430566349527,K_h=-0.1354009032848871,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.469, MAE_h(kcal/mol): 0.389)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.469, MAE_h(kcal/mol): 0.389)"""),
+)
+
+entry(
+ index = 912,
+ label = "[CH2]C(C)(C=O)OO <=> CC(C)(C=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5604795443808772,B_g=-3.167190670367876,E_g=0.5513604537151634,L_g=0.28796974092596533,A_g=0.10671681825680182,K_g=-0.8045691593221459,S_h=-0.2641677414150547,B_h=-6.058382238923219,E_h=0.4152558263917646,L_h=0.4778652744431003,A_h=1.3125406277878235,K_h=-1.8984128812249972,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39, MAE_g(kcal/mol): 0.302, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.6779999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39, MAE_g(kcal/mol): 0.302, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.6779999999999999)"""),
+)
+
+entry(
+ index = 913,
+ label = "CC(C)([CH]O)OO <=> CC(C)(CO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0328836270667776,B_g=2.439847893813652,E_g=0.6527993416831276,L_g=-0.1606176813315555,A_g=0.3902443011896622,K_g=1.5900278127234588,S_h=-1.6265188363037832,B_h=1.4923421196275566,E_h=0.20131638822548076,L_h=0.16725174648627494,A_h=1.3266004476405882,K_h=1.301640235649627,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.49, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.083, MAE_h(kcal/mol): 0.826)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.49, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.083, MAE_h(kcal/mol): 0.826)"""),
+)
+
+entry(
+ index = 914,
+ label = "[CH2]C(C)(CO)OO <=> CC(C)(CO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0023376055201303,B_g=-0.7469664145864714,E_g=0.5580385016222899,L_g=0.1736805587964285,A_g=-0.8811797835563699,K_g=-0.2348312455595993,S_h=-1.2513239668960423,B_h=-2.0829425189484807,E_h=0.47304183259580157,L_h=0.34362258363826365,A_h=-0.24355449145365027,K_h=-0.9536340376881346,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43, MAE_h(kcal/mol): 0.311)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.43, MAE_h(kcal/mol): 0.311)"""),
+)
+
+entry(
+ index = 915,
+ label = "[CH2]C(C)(COO)OO <=> CC(C)(COO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13122254180622403,B_g=-0.6827735874484844,E_g=-0.6717778993467395,L_g=0.13294519960883072,A_g=-4.909083596693901,K_g=0.2597108225044808,S_h=0.2886368126708045,B_h=-2.115343146554956,E_h=-0.2752000818104722,L_h=0.12208145976430676,A_h=-4.504163717117777,K_h=-0.29645108168177786,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.7, MAE_g(kcal/mol): 1.317, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.736, MAE_h(kcal/mol): 1.295)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.7, MAE_g(kcal/mol): 1.317, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.736, MAE_h(kcal/mol): 1.295)"""),
+)
+
+entry(
+ index = 916,
+ label = "[CH2]C(C)(COO)OO <=> CC(C)(CO[O])OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05852638253622103,B_g=-0.4643185867017506,E_g=-0.022335907764011207,L_g=0.07386903266752246,A_g=-0.08462281563102901,K_g=-0.4054256812288046,S_h=-0.14860305946571553,B_h=-0.4738261916803927,E_h=0.10280968375131513,L_h=0.08894778628438202,A_h=-0.1924905159091468,K_h=-0.45885006448581606,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 917,
+ label = "[CH2]C(C)(O)COO <=> CC(C)(O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2606197993875584,B_g=-0.8681755497613729,E_g=0.15478263617889618,L_g=-0.005116660196678642,A_g=-0.5860042016943945,K_g=-0.09712857823208025,S_h=0.34327072161900785,B_h=-1.205149407327448,E_h=0.2768860873194064,L_h=-0.007638338001345481,A_h=-1.2833727324832618,K_h=-0.45405594447345526,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.282, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.282, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 918,
+ label = "C[C](C)C(O)OO <=> CC(C)C(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.28233994861787187,B_g=0.12287314930763238,E_g=0.32457805184604144,L_g=-0.054714543994282785,A_g=0.30864163455724575,K_g=0.4603528085263879,S_h=-0.4593705270559653,B_h=-1.284897467900037,E_h=0.06617205099630101,L_h=0.1662548040983834,A_h=0.9642485419356857,K_h=0.012469110307378755,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6779999999999999, MAE_h(kcal/mol): 0.524)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6779999999999999, MAE_h(kcal/mol): 0.524)"""),
+)
+
+entry(
+ index = 919,
+ label = "[CH2]C(C)C(O)OO <=> CC(C)C(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8279679836026589,B_g=-0.8794791171299667,E_g=0.24491795677826667,L_g=0.17937632523313235,A_g=0.3313440652579818,K_g=0.06216962052726585,S_h=-1.0855383121566669,B_h=-2.739099210732008,E_h=-0.0588049399681319,L_h=0.476325878108856,A_h=1.2235268673748312,K_h=-0.8926226296409191,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.523)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.523)"""),
+)
+
+entry(
+ index = 920,
+ label = "C[C](C)COO <=> CC(C)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4719789160792995,B_g=-2.6779485239688374,E_g=0.5387374037743602,L_g=0.021360956752323156,A_g=0.5595778979565341,K_g=-0.16488400831503253,S_h=0.9950804513729785,B_h=-5.539429743273266,E_h=0.4356271712149307,L_h=0.22504508314904628,A_h=1.3195338854205334,K_h=-1.2080595994450432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.28, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7490000000000001, MAE_h(kcal/mol): 0.5820000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.28, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7490000000000001, MAE_h(kcal/mol): 0.5820000000000001)"""),
+)
+
+entry(
+ index = 921,
+ label = "[CH2]C(C)COO <=> CC(C)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3197546099987426,B_g=-2.9536983901843965,E_g=0.4821535928027808,L_g=0.08401438755606577,A_g=0.5759468123106651,K_g=-0.022079341708303824,S_h=0.861402205890698,B_h=-5.928926337672009,E_h=0.3343862056327979,L_h=0.28047068164057526,A_h=1.3454543875057134,K_h=-1.2505615991876546,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8059999999999999, MAE_h(kcal/mol): 0.626)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8059999999999999, MAE_h(kcal/mol): 0.626)"""),
+)
+
+entry(
+ index = 922,
+ label = "[CH2]C(C)CO <=> CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2624524140711826,B_g=-0.6288947157499343,E_g=0.30381819270994703,L_g=0.06238953428930075,A_g=-0.016090356922220085,K_g=0.0633718157597233,S_h=-0.4568781710862365,B_h=-1.7575068034305033,E_h=0.29771192058411133,L_h=0.2343914180355295,A_h=0.32163853789350827,K_h=-0.46048475678360884,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.28300000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.28300000000000003)"""),
+)
+
+entry(
+ index = 923,
+ label = "C[C](C)OO <=> CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5975570046599611,B_g=-2.6755514639626563,E_g=0.5074876581892012,L_g=-0.01652285398755539,A_g=0.46888546249334195,K_g=-0.19850149207143405,S_h=1.1846974274582025,B_h=-5.596321433511694,E_h=0.414522780518315,L_h=0.1635865171190266,A_h=0.960077510915757,K_h=-1.0678645761477954,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.593)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37, MAE_g(kcal/mol): 0.282, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.593)"""),
+)
+
+entry(
+ index = 924,
+ label = "[CH2]C(C)OO <=> CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0228115767655792,B_g=-1.9857333056703208,E_g=0.23598212758091525,L_g=0.40201701791726374,A_g=-0.3316446140660962,K_g=-0.9563902901723051,S_h=-0.9772307843544792,B_h=-4.178464105085358,E_h=0.1990072937241143,L_h=0.6059430494522253,A_h=0.8178079677966466,K_h=-2.0534227616246628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.419)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.569, MAE_h(kcal/mol): 0.419)"""),
+)
+
+entry(
+ index = 925,
+ label = "CC(C[CH]O)OO <=> CC(CCO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.45867413347618813,B_g=1.3872893155034858,E_g=0.19675684289262382,L_g=-0.2872660168874536,A_g=-0.008100156901618768,K_g=1.1643554044699744,S_h=0.26734183004709183,B_h=2.474249736654645,E_h=0.19803967317116075,L_h=-0.3313587261754508,A_h=-0.10783104798444532,K_h=1.5962953549414536,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.406, MAE_h(kcal/mol): 0.32)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.406, MAE_h(kcal/mol): 0.32)"""),
+)
+
+entry(
+ index = 926,
+ label = "CC([CH]CO)OO <=> CC(CCO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4825347766569747,B_g=-1.3984609346148587,E_g=2.3144530667013528,L_g=-0.2085222291614909,A_g=-1.5245081725545282,K_g=-0.5465736641615371,S_h=-0.05167973407820118,B_h=-2.5407003450828567,E_h=2.3573215893806894,L_h=-0.20430721538915536,A_h=-0.7308320749118442,K_h=-0.8478408572318794,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.084, MAE_g(kcal/mol): 0.605, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.218, MAE_h(kcal/mol): 0.773)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.084, MAE_g(kcal/mol): 0.605, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.218, MAE_h(kcal/mol): 0.773)"""),
+)
+
+entry(
+ index = 927,
+ label = "CC([CH]O)COO <=> CC(CO)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14013637962737194,B_g=-0.16952418869396887,E_g=0.25206515404440083,L_g=-0.06758682953205886,A_g=0.3117570795194068,K_g=0.06914821724250664,S_h=0.0831200715904572,B_h=-0.33363116838314477,E_h=0.27138824326853395,L_h=-0.03675492009476606,A_h=0.6229717050924609,K_h=0.0885666024301882,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.111)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.111)"""),
+)
+
+entry(
+ index = 928,
+ label = "C[C](CO)COO <=> CC(CO)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7796455996248574,B_g=-1.2572323166360466,E_g=-0.08780423472180054,L_g=-0.03612450064359936,A_g=0.3716762492151822,K_g=-0.8222135734960792,S_h=1.3169682248634595,B_h=-1.8822418892566977,E_h=-0.037693218812781634,L_h=-0.0794548422232089,A_h=0.3931398323897884,K_h=-0.7098449715549804,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.418, MAE_h(kcal/mol): 0.315)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24100000000000002, MAE_g(kcal/mol): 0.16899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.418, MAE_h(kcal/mol): 0.315)"""),
+)
+
+entry(
+ index = 929,
+ label = "[CH2]C(CO)COO <=> CC(CO)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0164935321526174,B_g=-0.6286528106116958,E_g=0.12884014271751262,L_g=0.05284527701698615,A_g=-0.47985182876014887,K_g=-0.1004492760388072,S_h=-0.2687272867479117,B_h=-0.7674183944557168,E_h=0.31122928649052306,L_h=0.08565641031259302,A_h=-0.8799922492413815,K_h=-0.4319472809302135,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.127, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.205)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.127, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.205)"""),
+)
+
+entry(
+ index = 930,
+ label = "C[C](COO)COO <=> CC(CO[O])COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2274128213202887,B_g=-3.2039382600039072,E_g=0.2964290903055744,L_g=0.19543736032041445,A_g=-0.00967620552953554,K_g=-1.2132935469814738,S_h=0.5264442244766094,B_h=-5.764533470092188,E_h=0.36945512021862975,L_h=0.36902995361202895,A_h=0.5637196071415248,K_h=-1.9714315806793183,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.629)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.629)"""),
+)
+
+entry(
+ index = 931,
+ label = "[CH2]C(COO)COO <=> CC(CO[O])COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6381091023791965,B_g=0.6044622967878569,E_g=0.037957115327223505,L_g=0.09446762171145798,A_g=-0.30766668354555776,K_g=-0.08195452865167223,S_h=-0.9149878592398684,B_h=0.6991498322613499,E_h=0.09205590078780858,L_h=0.17302081751032378,A_h=-0.10871803349131941,K_h=-0.2531500619371064,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.185, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.168)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.185, MAE_g(kcal/mol): 0.125, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.168)"""),
+)
+
+entry(
+ index = 932,
+ label = "[CH2]C(COO)OO <=> CC(CO[O])OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6552037321480426,B_g=2.610860165630724,E_g=0.06297597098806049,L_g=-0.12355488196994056,A_g=-0.3263960056121966,K_g=1.0148287072037123,S_h=-1.373405426660349,B_h=4.140939486823469,E_h=-0.02358941620761013,L_h=-0.07054833486079548,A_h=-0.2583913399322714,K_h=1.140450778536781,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.371, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.735, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.371, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.735, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 933,
+ label = "C[C](O)C(C)OO <=> CC(O)C(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.49809001009157644,B_g=1.8419536880519043,E_g=0.4064226236166962,L_g=-0.16790415731364514,A_g=0.3226208193639309,K_g=1.193501308398333,S_h=-1.0629238469607447,B_h=1.4836701869446471,E_h=-0.008276087911246687,L_h=0.1159092135098606,A_h=0.9405125165533856,K_h=0.9494263543745335,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.828, MAE_h(kcal/mol): 0.6509999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.828, MAE_h(kcal/mol): 0.6509999999999999)"""),
+)
+
+entry(
+ index = 934,
+ label = "[CH2]C(O)C(C)OO <=> CC(O)C(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4074195660045878,B_g=-1.1692741422808217,E_g=-0.014360368660878883,L_g=0.028009682824511595,A_g=-0.8321316841638531,K_g=-0.23552763913937644,S_h=0.584889971966751,B_h=-1.56787516642781,E_h=0.15633669343060946,L_h=-0.022805057123018994,A_h=-1.8275566670973529,K_h=-0.4181073748394838,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.359, MAE_h(kcal/mol): 0.278)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.359, MAE_h(kcal/mol): 0.278)"""),
+)
+
+entry(
+ index = 935,
+ label = "[CH2]C(OO)C(C)O <=> CC(O)C(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.652271548654244,B_g=-2.332669256656577,E_g=0.03827965551154136,L_g=0.05596805243788171,A_g=-0.44732658335518743,K_g=-0.9117697878554244,S_h=1.1321453687905962,B_h=-3.259642415927347,E_h=0.22234747433475152,L_h=-0.046247864155939185,A_h=-0.7060917766829181,K_h=-1.2023638330083393,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.614, MAE_h(kcal/mol): 0.48200000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.614, MAE_h(kcal/mol): 0.48200000000000004)"""),
+)
+
+entry(
+ index = 936,
+ label = "CC(O)[CH]COO <=> CC(O)CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3995173314888004,B_g=-0.09390317638890172,E_g=-0.1332164265820071,L_g=0.1282317146425494,A_g=-0.10924582652020316,K_g=-1.0243656340172924,S_h=-0.5566530449214699,B_h=-0.09520799804364212,E_h=-0.015386632883708411,L_h=0.13426468218104012,A_h=0.22579278993996493,K_h=-0.9133458364833411,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.086)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.086)"""),
+)
+
+entry(
+ index = 937,
+ label = "C[C](O)CCOO <=> CC(O)CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2797303053083911,B_g=0.17781493752268454,E_g=0.1588583712352763,L_g=-0.10233320393357284,A_g=0.24594422100109614,K_g=0.06001446565932384,S_h=0.2609716614068142,B_h=0.16513324391200537,E_h=0.21388079449640793,L_h=-0.08014390534425157,A_h=0.31827385733437435,K_h=0.2226626840603349,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.094)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.094)"""),
+)
+
+entry(
+ index = 938,
+ label = "[CH2]C(O)CCOO <=> CC(O)CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1278065480359486,B_g=-2.4974066557969197,E_g=-0.19301097847929605,L_g=0.2855580200023159,A_g=0.6307199999748239,K_g=-1.3816008795255164,S_h=0.3994953401125969,B_h=-4.9639740716978125,E_h=-0.35809290918015996,L_h=0.4551775046598332,A_h=1.578694923519927,K_h=-2.253243736268306,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.529)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6729999999999999, MAE_h(kcal/mol): 0.529)"""),
+)
+
+entry(
+ index = 939,
+ label = "C[CH]C(C)(O)OO <=> CCC(C)(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16613018629989695,B_g=-1.2020046405303493,E_g=0.2840186236680716,L_g=0.0972238741956287,A_g=-0.8123541064981812,K_g=0.13383951557443932,S_h=0.04715684103901677,B_h=-3.176302430574855,E_h=0.23118800756855445,L_h=0.27721595796245874,A_h=-0.025334065386420326,K_h=-0.7568991861717143,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.373)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.373)"""),
+)
+
+entry(
+ index = 940,
+ label = "[CH2]C(O)(CC)OO <=> CCC(C)(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.691122979947076,B_g=0.5155365018796785,E_g=0.1666873011637187,L_g=0.08645543031465316,A_g=-1.126061088040964,K_g=0.48027699536674967,S_h=-1.0228555595179862,B_h=-0.3892253674255671,E_h=0.11384202414673254,L_h=0.3039941237195749,A_h=-0.8390882895028904,K_h=-0.15422552131507444,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47100000000000003, MAE_h(kcal/mol): 0.336)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47100000000000003, MAE_h(kcal/mol): 0.336)"""),
+)
+
+entry(
+ index = 941,
+ label = "[CH2]CC(C)(O)OO <=> CCC(C)(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.641319843304906,B_g=-0.9737854687492659,E_g=0.2509069415643504,L_g=0.13961591705722265,A_g=0.3629163510274588,K_g=0.07406695505335387,S_h=-0.7765448155801651,B_h=-2.862470831233586,E_h=-0.11120305900231375,L_h=0.4039595894819053,A_h=1.2250076200391997,K_h=-0.8179692378888056,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.503)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.503)"""),
+)
+
+entry(
+ index = 942,
+ label = "C[CH]C(C)OO <=> CCC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6272307016172035,B_g=-2.7065886262445153,E_g=0.3197032967876012,L_g=0.3509677032902293,A_g=-0.2621445348043337,K_g=-1.0951192217226537,S_h=-0.3885069824695864,B_h=-5.165972192585601,E_h=0.29786586021753575,L_h=0.5532077293162565,A_h=0.6933294480261596,K_h=-2.420700735599147,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6759999999999999, MAE_h(kcal/mol): 0.513)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6759999999999999, MAE_h(kcal/mol): 0.513)"""),
+)
+
+entry(
+ index = 943,
+ label = "[CH2]C(CC)OO <=> CCC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9287544607432531,B_g=-2.1458525158079307,E_g=0.22196629048055772,L_g=0.3995246619475349,A_g=-0.28325625595968396,K_g=-0.9794445828922971,S_h=-0.838949010786935,B_h=-4.388591704709703,E_h=0.20074461244418998,L_h=0.6030915010045061,A_h=0.795699304253405,K_h=-2.1022729386313483,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.442)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.442)"""),
+)
+
+entry(
+ index = 944,
+ label = "[CH2]CC(C)OO <=> CCC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.30271862389977255,B_g=-2.9488969397133014,E_g=0.4524505740106005,L_g=0.09749510116880508,A_g=0.49136797943204313,K_g=-0.11516883717767643,S_h=0.8148244710917066,B_h=-5.884672358291853,E_h=0.32159455514110136,L_h=0.3017510033468189,A_h=1.2373521125480917,K_h=-1.3733028002380663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.61)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.61)"""),
+)
+
+entry(
+ index = 945,
+ label = "[CH2]CC(C)O <=> CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17917107238856642,B_g=-0.4489979279466526,E_g=0.24143598887938073,L_g=0.048351705812739725,A_g=-0.38857295659819696,K_g=-0.0844248932451976,S_h=-0.3868429683368557,B_h=-1.2026937036513918,E_h=0.3134210936521376,L_h=0.16921630942712004,A_h=-0.4929293671424908,K_h=-0.4801597080269977,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.247)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.145, MAE_g(kcal/mol): 0.11699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.247)"""),
+)
+
+entry(
+ index = 946,
+ label = "CCC([CH]O)OO <=> CCC(CO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.380663391623675,B_g=1.4677924133257276,E_g=0.5655815436600868,L_g=-0.16883512557292618,A_g=0.1655584105186062,K_g=1.3557243601927433,S_h=-0.6548885224224592,B_h=0.28543340220382946,E_h=0.30339302610334623,L_h=0.10038330191019675,A_h=0.9856241596054778,K_h=0.927471630464716,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.369, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.556)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.369, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.556)"""),
+)
+
+entry(
+ index = 947,
+ label = "C[CH]C(CO)OO <=> CCC(CO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.3393627762973468,B_g=-1.9406363235356976,E_g=0.5018651963398423,L_g=0.3792559435466517,A_g=-0.31036429235985247,K_g=-0.8595989130420119,S_h=-1.2911796710355008,B_h=-5.002217074915681,E_h=0.2361214062968707,L_h=0.7140453244098469,A_h=1.2334376475838706,K_h=-2.1664144525581936,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.292, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.536)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.292, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.536)"""),
+)
+
+entry(
+ index = 948,
+ label = "[CH2]CC(CO)OO <=> CCC(CO)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3386818544512129,B_g=-1.8583739156171768,E_g=0.27445237501955355,L_g=0.18370129588648534,A_g=-0.04200352854866564,K_g=-0.11889271021480072,S_h=-0.27239251611516,B_h=-4.00745916372702,E_h=0.17552783439752162,L_h=0.38455586521169277,A_h=0.5431943226849343,K_h=-1.1037471716531564,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.602, MAE_h(kcal/mol): 0.447)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.602, MAE_h(kcal/mol): 0.447)"""),
+)
+
+entry(
+ index = 949,
+ label = "CC[C](O)COO <=> CCC(O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2295972980231687,B_g=-0.07544508129543924,E_g=0.38308977346479345,L_g=-0.04989843260571851,A_g=0.43104563450587036,K_g=0.3997299147921008,S_h=-0.5118346202187577,B_h=-0.9555179655829003,E_h=0.1311345763014101,L_h=0.14359635615005434,A_h=1.2053619906307487,K_h=0.013825245173260628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46299999999999997, MAE_h(kcal/mol): 0.38299999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46299999999999997, MAE_h(kcal/mol): 0.38299999999999995)"""),
+)
+
+entry(
+ index = 950,
+ label = "C[CH]C(O)COO <=> CCC(O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21240004183203964,B_g=-1.4484106804317185,E_g=0.3328761311334916,L_g=0.031535633475804466,A_g=-0.3202677421101574,K_g=0.44368334536414256,S_h=0.6578133754575235,B_h=-3.7071375998334277,E_h=0.3077106662979647,L_h=0.1897415938837106,A_h=-0.25169863110767604,K_h=-0.5221412451994599,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.37200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.37200000000000005)"""),
+)
+
+entry(
+ index = 951,
+ label = "[CH2]CC(O)COO <=> CCC(O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22008969304452658,B_g=-3.3402114878781997,E_g=0.21955456955690833,L_g=0.19507816784242407,A_g=0.15636601526554744,K_g=-0.6732659824698423,S_h=0.7244325844366286,B_h=-6.11231242383291,E_h=0.1653384967565713,L_h=0.3551314038514234,A_h=0.5150453611444672,K_h=-1.8289274628807037,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39, MAE_g(kcal/mol): 0.313, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.6659999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39, MAE_g(kcal/mol): 0.313, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.6659999999999999)"""),
+)
+
+entry(
+ index = 952,
+ label = "CC[CH]C(O)OO <=> CCCC(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5635803284255693,B_g=0.7800780966901926,E_g=0.2514787173456411,L_g=0.0019865543170485846,A_g=-1.1258998179488053,K_g=0.7454563400871649,S_h=-0.7154747638630737,B_h=-0.319006903207824,E_h=0.08004860938070311,L_h=0.21316973999916178,A_h=-0.6998242344649235,K_h=0.103073580265757,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.37)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.534, MAE_h(kcal/mol): 0.37)"""),
+)
+
+entry(
+ index = 953,
+ label = "C[CH]CC(O)OO <=> CCCC(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5753603756119053,B_g=1.2015208302538722,E_g=0.2097684071463553,L_g=-0.05291125114559662,A_g=0.3078939277663271,K_g=0.5113361490248118,S_h=-1.094957951630495,B_h=1.1803138131349735,E_h=-0.004610858543998375,L_h=0.11782979369829873,A_h=0.9069023632557187,K_h=0.12792383537570054,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5429999999999999, MAE_h(kcal/mol): 0.429)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.218, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5429999999999999, MAE_h(kcal/mol): 0.429)"""),
+)
+
+entry(
+ index = 954,
+ label = "[CH2]CCC(O)OO <=> CCCC(O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22448796828522458,B_g=-4.2122428589339185,E_g=0.3707746027908392,L_g=0.3240062760647507,A_g=0.30135515857515616,K_g=-0.6785072604650073,S_h=0.33322066269401296,B_h=-8.61889681396542,E_h=0.13961591705722265,L_h=0.6636777424451208,A_h=1.1781586582670316,K_h=-2.6041821177235978,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.18, MAE_h(kcal/mol): 0.93)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.18, MAE_h(kcal/mol): 0.93)"""),
+)
+
+entry(
+ index = 955,
+ label = "CC[CH]COO <=> CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0009814706542481,B_g=-0.09533994630086305,E_g=0.05284527701698615,L_g=0.2500346169749453,A_g=-0.60143481733051,K_g=-0.8727790778466368,S_h=-1.2577234573712581,B_h=0.006436142768888034,E_h=0.09453359584006843,L_h=0.2779416733771739,A_h=-0.015166719121673512,K_h=-1.315927299723161,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.289, MAE_h(kcal/mol): 0.23199999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.165, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.289, MAE_h(kcal/mol): 0.23199999999999998)"""),
+)
+
+entry(
+ index = 956,
+ label = "C[CH]CCOO <=> CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23998455804995042,B_g=-0.8063724521708318,E_g=0.3902662925658656,L_g=0.028119639705529047,A_g=0.3753121567474925,K_g=0.2906013756116496,S_h=-0.3138169384238004,B_h=-2.453643817151975,E_h=0.16350588207294717,L_h=0.26273097150309344,A_h=1.116465517557508,K_h=-0.5660433625603601,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.503, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.214, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.503, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 957,
+ label = "[CH2]CCCOO <=> CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09377855859041528,B_g=-0.10190070686823754,E_g=0.13797389430069543,L_g=0.0017153273438722096,A_g=-0.035024931833424866,K_g=0.15507585452827602,S_h=-0.12614986436195239,B_h=-0.269071818308433,E_h=0.14797997047328332,L_h=0.02790705640222864,A_h=0.12516025243279533,K_h=-0.18096703477851808,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.046, MAE_h(kcal/mol): 0.033)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.046, MAE_h(kcal/mol): 0.033)"""),
+)
+
+entry(
+ index = 958,
+ label = "C[CH]CCO <=> CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05884159226180439,B_g=-0.38110321914774486,E_g=0.28862948221207,L_g=-0.004830772306033274,A_g=-0.06721297613659952,K_g=0.18313685056392912,S_h=-0.2643583333421517,B_h=-1.071859676158096,E_h=0.3729150967413121,L_h=0.10212795108900694,A_h=0.1087107030325849,K_h=-0.15487793214244464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.22399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.10400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.293, MAE_h(kcal/mol): 0.22399999999999998)"""),
+)
+
+entry(
+ index = 959,
+ label = "[CH2]CCCO <=> CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0718531565155359,B_g=0.01784233655976478,E_g=0.15483394939003764,L_g=-0.033016386140172785,A_g=-0.38825774687261355,K_g=0.21326503596271024,S_h=-0.029131243010889575,B_h=0.0440560569943247,E_h=0.3553659785309273,L_h=-0.04152704873092336,A_h=-0.8877112222888065,K_h=0.14506977835568816,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20199999999999999, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 960,
+ label = "C[CH]COO <=> CCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.4153796333740767,B_g=-1.4735614843497766,E_g=0.2159259924833325,L_g=0.4448049055505205,A_g=-0.34148208968779065,K_g=-1.2761962133821894,S_h=-1.5938689731003348,B_h=-3.457858020108136,E_h=0.11881940562745576,L_h=0.6983581427180242,A_h=0.9181912697068435,K_h=-2.513042524277601,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.531, MAE_h(kcal/mol): 0.359)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.531, MAE_h(kcal/mol): 0.359)"""),
+)
+
+entry(
+ index = 961,
+ label = "[CH2]CCOO <=> CCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4277982412864883,B_g=-0.9779198474755219,E_g=0.39334508523435424,L_g=0.09900517566811137,A_g=0.2804047075119648,K_g=0.21304512220067534,S_h=-0.4798078460077419,B_h=-2.8796094437548394,E_h=0.1712395160378411,L_h=0.3641551985535887,A_h=1.126251679968061,K_h=-0.799599108300157,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.525, MAE_h(kcal/mol): 0.392)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.525, MAE_h(kcal/mol): 0.392)"""),
+)
+
+entry(
+ index = 962,
+ label = "[CH2]OCOO <=> COCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3979779351545561,B_g=-1.8238254636014941,E_g=0.4871822874946455,L_g=0.15770015875522583,A_g=0.4208123141125131,K_g=0.07786413267782312,S_h=-0.24807005403410018,B_h=-4.428550035271444,E_h=0.35469157632735354,L_h=0.4132692720747161,A_h=1.416369245303234,K_h=-1.0415775511258905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.24, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.705, MAE_h(kcal/mol): 0.511)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.24, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.705, MAE_h(kcal/mol): 0.511)"""),
+)
+
+entry(
+ index = 963,
+ label = "[CH2]OC=O <=> CO[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.011032340395417416,B_g=0.11052132634000558,E_g=0.12388475261299292,L_g=-0.019433046105150547,A_g=-0.2714615478558789,K_g=0.04838102764767771,S_h=-0.12507228692798136,B_h=0.1645101549195732,E_h=0.18518937900958818,L_h=-7.330458734496623e-05,A_h=-0.15277409048564408,K_h=-0.1206886726047524,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.06)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.094, MAE_h(kcal/mol): 0.06)"""),
+)
+
+entry(
+ index = 964,
+ label = "[CH2]CO <=> C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8786507752929685,B_g=1.8921160171720648,E_g=-0.1236721693096925,L_g=-0.3116104703447169,A_g=-1.3425735172230562,K_g=0.6274652762967075,S_h=1.008165320214055,B_h=2.8787664410003724,E_h=0.3055921637236952,L_h=-0.49720302458470234,A_h=-2.6336432313775395,K_h=1.1570029543592744,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.258, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.475)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.258, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.594, MAE_h(kcal/mol): 0.475)"""),
+)
+
+entry(
+ index = 965,
+ label = "C=[C]C <=> [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16544845363758878,B_g=0.11879741425125225,E_g=-0.009962093420180911,L_g=-0.04762599039802455,A_g=0.06852512825007442,K_g=0.09912979346659781,S_h=0.2052675054833744,B_h=0.17022058227374606,E_h=-0.051291219765272865,L_h=-0.036879537893252504,A_h=-0.05651050638423445,K_h=0.17867993165335516,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.036000000000000004, MAE_h(kcal/mol): 0.032)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.036000000000000004, MAE_h(kcal/mol): 0.032)"""),
+)
+
+entry(
+ index = 966,
+ label = "[CH]=CC <=> [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5704489682597926,B_g=0.5462584544359538,E_g=0.47172235002359214,L_g=-0.33304473168438503,A_g=3.233934497145468,K_g=1.4302971168987775,S_h=0.5156464587606959,B_h=0.5444185092935951,E_h=0.3531228581581713,L_h=-0.18994684672827644,A_h=5.091934559367185,K_h=1.5864065661086175,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.37)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.37)"""),
+)
+
+entry(
+ index = 967,
+ label = "CCC[CH]O <=> [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7904287044233017,B_g=-1.6958723063908556,E_g=0.01679408096073176,L_g=-0.024960211990960997,A_g=0.3748283464710158,K_g=-0.07504923652377642,S_h=1.2949328659075627,B_h=-2.334025391522459,E_h=0.10859341569283297,L_h=-0.08262893085524592,A_h=0.3688613530611355,K_h=-0.3388064722496994,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.18899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.483, MAE_h(kcal/mol): 0.35100000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.18899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.483, MAE_h(kcal/mol): 0.35100000000000003)"""),
+)
+
+entry(
+ index = 968,
+ label = "CCO[O] <=> [CH2]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2167689952377996,B_g=0.02652159970140878,E_g=0.05828447739798264,L_g=-0.06560027521501027,A_g=0.11482430561715509,K_g=0.13376621098709437,S_h=0.22818251948741086,B_h=0.0050213642331301865,E_h=0.07450678257742366,L_h=-0.026096433094807976,A_h=-0.06505049080992302,K_h=0.03574331678940553,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.055)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.07400000000000001, MAE_h(kcal/mol): 0.055)"""),
+)
+
+entry(
+ index = 969,
+ label = "C#C[C]=C <=> [CH]=CC#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1658149765743136,B_g=0.05862900895850398,E_g=-0.07973339965511976,L_g=-0.02086981601711188,A_g=4.398275240697973e-05,K_g=-0.10287565787992561,S_h=0.13394947245545677,B_h=0.2422056870465029,E_h=-0.01002073709005688,L_h=-0.04014159203010351,A_h=-0.17966221312377773,K_h=-0.013011564253731503,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.039, MAE_h(kcal/mol): 0.028999999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.039, MAE_h(kcal/mol): 0.028999999999999998)"""),
+)
+
+entry(
+ index = 970,
+ label = "C=[C]C=C <=> [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16444418079096274,B_g=0.12777722620101062,E_g=-0.035999882845112914,L_g=-0.047985182876014894,A_g=0.030084202646374136,K_g=0.004691493590077839,S_h=0.18511607442224323,B_h=0.21514163339874137,E_h=-0.028104978788060047,L_h=-0.04223077276943504,A_h=-0.25178659661249,K_h=0.03555272486230862,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.038, MAE_h(kcal/mol): 0.028999999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.038, MAE_h(kcal/mol): 0.028999999999999998)"""),
+)
+
+entry(
+ index = 971,
+ label = "O=[C]OCO <=> [O]COC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6060456758745082,B_g=-1.054779707306719,E_g=0.3181345786184189,L_g=0.16522120941681936,A_g=0.41975672805474556,K_g=-0.1208646036143803,S_h=-0.7348638272158174,B_h=-2.7349575015470173,E_h=0.15369039782745617,L_h=0.431954611388948,A_h=1.0271512083364012,K_h=-0.6832207454312886,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.542, MAE_h(kcal/mol): 0.401)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.17800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.542, MAE_h(kcal/mol): 0.401)"""),
+)
+
+entry(
+ index = 972,
+ label = "[O]OCO <=> [O]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8781742954752262,B_g=-2.058590735032483,E_g=0.22904018315934696,L_g=0.33645339499592597,A_g=0.2664181922465452,K_g=-0.8839946797104167,S_h=-0.7276579862798073,B_h=-4.623862777793372,E_h=0.0909196796839616,L_h=0.5468228997585101,A_h=1.4127919814407996,K_h=-1.7631072739036586,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.491)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6579999999999999, MAE_h(kcal/mol): 0.491)"""),
+)
+
+entry(
+ index = 973,
+ label = "O=[C]COO <=> [O]OCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4288538273442559,B_g=-0.589141638032759,E_g=0.4085557871084347,L_g=0.0570602907893217,A_g=0.4448049055505205,K_g=0.2916496312106826,S_h=-0.5019311704684527,B_h=-2.1394823471676534,E_h=0.21060407944208795,L_h=0.26764970931394066,A_h=1.099004364851937,K_h=-0.16058835949661748,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.414)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.177, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.513, MAE_h(kcal/mol): 0.414)"""),
+)
+
+entry(
+ index = 974,
+ label = "OCC[CH]COO <=> [O]OCCCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7705338394178779,B_g=1.2079423121052915,E_g=0.9412309015093663,L_g=-0.5850732334351134,A_g=-4.608410170781053,K_g=2.669994976241908,S_h=-1.1159963681985003,B_h=1.61702589224261,E_h=0.8625457574532795,L_h=-0.5296476349435845,A_h=-3.877607417704147,K_h=2.818114225431147,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.301, MAE_g(kcal/mol): 1.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.291, MAE_h(kcal/mol): 1.072)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.301, MAE_g(kcal/mol): 1.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.291, MAE_h(kcal/mol): 1.072)"""),
+)
+
+entry(
+ index = 975,
+ label = "OC[CH]CCOO <=> [O]OCCCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5559713122591619,B_g=0.6686258020909059,E_g=0.03572132541320204,L_g=-0.20621313466012448,A_g=0.40570423866071553,K_g=0.5439127076409148,S_h=0.5179775446382658,B_h=1.3331612082079627,E_h=-0.03446781696960312,L_h=-0.21232673724469467,A_h=0.42795951137864735,K_h=1.0109215726982257,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.2)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.2)"""),
+)
+
+entry(
+ index = 976,
+ label = "O[CH]CCCOO <=> [O]OCCCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1992638597798217,B_g=0.08100889947492217,E_g=0.18191266395526817,L_g=-0.10116766099478788,A_g=0.0633864766771923,K_g=0.41453744143578397,S_h=0.2651426924267428,B_h=0.04899678618137542,E_h=0.2100836168719387,L_h=-0.10722995036821659,A_h=0.1664673874016838,K_h=0.43002670074177535,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.053)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.053)"""),
+)
+
+entry(
+ index = 977,
+ label = "C=CC + C#C[CH2] <=> C#CC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13919075045062185,B_g=-0.16827801070910445,E_g=-0.17870192302955867,L_g=0.04785323461879394,A_g=0.3406244260158545,K_g=0.1744649178810196,S_h=0.238694397312679,B_h=-0.1950341850900171,E_h=0.055887417391802245,L_h=0.09620494043153366,A_h=0.28107910971553846,K_h=-0.8763123589566643,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 978,
+ label = "C + C#C[CH2] <=> C#CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10629165165020102,B_g=-0.1614606840860226,E_g=-0.12215476435165172,L_g=0.057485457395922514,A_g=0.21752403248745278,K_g=0.5657281528347768,S_h=0.18176605478057822,B_h=-0.1797061958761847,E_h=0.12552677536952017,L_h=0.14147785357578482,A_h=0.13136182052217946,K_h=-0.5479664513210915,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.052000000000000005, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.20600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.052000000000000005, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.20600000000000002)"""),
+)
+
+entry(
+ index = 979,
+ label = "C=C=C + C#C[CH2] <=> C#CC + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.010805096174648022,B_g=-0.14227687357784494,E_g=-0.21477511046201656,L_g=0.09487812740058978,A_g=0.2726050994184604,K_g=0.14919682662320974,S_h=0.12241133040735909,B_h=-0.13315778291213115,E_h=0.0014807526643683176,L_h=0.08625017747008724,A_h=0.2888933787265119,K_h=-0.6989592403342529,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.078)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.078)"""),
+)
+
+entry(
+ index = 980,
+ label = "C=C + C#C[CH2] <=> C#CC + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01753445729291592,B_g=-0.11577726525263965,E_g=-0.15071423158125055,L_g=0.08402171801480028,A_g=0.29995504095686726,K_g=0.4608806015552716,S_h=0.08734974628026174,B_h=-0.1004785978737452,E_h=0.0735611534006736,L_h=0.15347781452415576,A_h=0.26136017571974257,K_h=-0.551323801421491,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.15)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.15)"""),
+)
+
+entry(
+ index = 981,
+ label = "[H][H] + C#C[CH2] <=> C#CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04956856196266616,B_g=-0.004193022396132068,E_g=-0.07250556734290609,L_g=0.09228314500857798,A_g=0.12076197719209734,K_g=1.2386642646615669,S_h=0.036960172939331966,B_h=0.053175147660038495,E_h=0.15025241268097725,L_h=0.13959392568101917,A_h=0.09761971896729152,K_h=0.1803219544098824,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 982,
+ label = "O + C#C[CH2] <=> C#CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1057198758689103,B_g=-2.79011187306537,E_g=0.07436750386146823,L_g=0.22671642774051154,A_g=-0.13145711648572792,K_g=-0.12355488196994056,S_h=1.2606556408650564,B_h=-6.200365894151686,E_h=0.28022877650233685,L_h=0.2554078432273313,A_h=-0.004757467718688308,K_h=-1.8692962991315767,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.69)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.69)"""),
+)
+
+entry(
+ index = 983,
+ label = "[OH] + C#C[CH2] <=> C#CC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1471589590950197,B_g=-2.783250563689881,E_g=0.24943351935871652,L_g=0.26141881938961853,A_g=0.71276249413131,K_g=-0.12836366289977033,S_h=0.5441985955315602,B_h=-5.7556636150234475,E_h=0.2507530019309259,L_h=0.3975087857955483,A_h=1.6766225217540673,K_h=-1.9614401654241993,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.633)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.633)"""),
+)
+
+entry(
+ index = 984,
+ label = "[H][H] + C#C[C]=C <=> C#CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16700251088930204,B_g=-0.04206217221854161,E_g=-0.10958302762199001,L_g=0.1159312048860641,A_g=0.16549243638999572,K_g=1.0188018158378096,S_h=-0.028867346496447698,B_h=-0.0438361432322898,E_h=0.06690509686975067,L_h=0.11728733975194595,A_h=0.23589416207610128,K_h=-0.01513006682800103,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.068)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.068)"""),
+)
+
+entry(
+ index = 985,
+ label = "[H][H] + [CH]=CC#C <=> C#CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23094610243031607,B_g=-0.07321662184015226,E_g=-0.08247499122182149,L_g=0.13080470565835772,A_g=0.1471589590950197,K_g=1.1042383123883677,S_h=-0.08649208260832565,B_h=-0.12446385885301814,E_h=0.0663919647583359,L_h=0.14575884147673085,A_h=0.28190012109380214,K_h=0.06352575539314773,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.075)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.075)"""),
+)
+
+entry(
+ index = 986,
+ label = "O + C#C[C]=C <=> C#CC=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2902201917574558,B_g=-1.971446241596787,E_g=-0.21525159027975882,L_g=0.28759588753050597,A_g=-0.4361256424088765,K_g=-0.3342322659993735,S_h=0.24705845072873966,B_h=-4.444163912375922,E_h=-0.06225758603207981,L_h=0.29068934111646355,A_h=-0.44585316114955353,K_h=-1.8325120572018725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6679999999999999, MAE_h(kcal/mol): 0.539)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6679999999999999, MAE_h(kcal/mol): 0.539)"""),
+)
+
+entry(
+ index = 987,
+ label = "O + [CH]=CC#C <=> C#CC=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22733951673294375,B_g=-3.5578674686228733,E_g=-0.10465695935240828,L_g=0.4153364614378441,A_g=-0.3545376366939291,K_g=-0.3565755042221192,S_h=0.8800362319937886,B_h=-8.316442086580091,E_h=-0.17052846154059495,L_h=0.6158171773675922,A_h=0.12820972326634592,K_h=-2.570615947178337,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42200000000000004, MAE_g(kcal/mol): 0.327, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.103, MAE_h(kcal/mol): 0.86)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42200000000000004, MAE_g(kcal/mol): 0.327, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.103, MAE_h(kcal/mol): 0.86)"""),
+)
+
+entry(
+ index = 988,
+ label = "C#CC + [C]=O <=> C#C[CH2] + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6709348965922723,B_g=0.6424194121150806,E_g=0.005204625701492602,L_g=-0.13598000952491235,A_g=0.09207056170527757,K_g=1.614269639758439,S_h=0.8440803319010826,B_h=0.9851036970353285,E_h=0.22914280958162994,L_h=-0.12980776327046617,A_h=-0.3111413209857091,K_h=1.078574376358895,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.14400000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.14400000000000002)"""),
+)
+
+entry(
+ index = 989,
+ label = "C#CC + [O][O] <=> C#C[CH2] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2434738564075708,B_g=0.4239864027445501,E_g=-0.20107448308724232,L_g=0.025546648689720727,A_g=0.06085013795505646,K_g=0.9530476009893749,S_h=0.288644143129539,B_h=0.8135416408131696,E_h=0.03130105879630058,L_h=0.11612912727189549,A_h=-0.19839886564915107,K_h=-0.05220752710708495,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.377, MAE_h(kcal/mol): 0.226)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.377, MAE_h(kcal/mol): 0.226)"""),
+)
+
+entry(
+ index = 990,
+ label = "CC(=O)OO + [CH3] <=> C + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0190885145446292,B_g=0.03683555514084553,E_g=0.12436123243073519,L_g=-0.029988906682825684,A_g=-0.0831420629666607,K_g=0.8850356048507151,S_h=0.2677450052774891,B_h=-0.4874608449265564,E_h=0.1745382224683646,L_h=-0.032957742470296814,A_h=0.27371932914610386,K_h=-0.08406570076720725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.243)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.326, MAE_h(kcal/mol): 0.243)"""),
+)
+
+entry(
+ index = 991,
+ label = "CC(C)OO + [CH3] <=> C + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.353811921279214,B_g=-2.812293841195957,E_g=0.05506640601353863,L_g=0.3675931837000676,A_g=0.3495382638370024,K_g=-0.4684163131343342,S_h=0.15349247544162478,B_h=-5.542941033007089,E_h=0.1306361051074643,L_h=0.5696572787164671,A_h=1.2185274945179045,K_h=-2.4755105755569784,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7240000000000001, MAE_h(kcal/mol): 0.55)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7240000000000001, MAE_h(kcal/mol): 0.55)"""),
+)
+
+entry(
+ index = 992,
+ label = "CCC(C)OO + [CH3] <=> C + CCC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26025327645083357,B_g=-2.809376318619627,E_g=0.049348648200631264,L_g=0.351612783658865,A_g=0.5224344635488397,K_g=-0.37410263105630065,S_h=0.26764237885520614,B_h=-5.498005320964626,E_h=0.1193471986563395,L_h=0.5649657851263892,A_h=1.3042278875829045,K_h=-2.3446912089811516,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.5379999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.5379999999999999)"""),
+)
+
+entry(
+ index = 993,
+ label = "CCCCOO + [CH3] <=> C + CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1610428479381563,B_g=-2.8820798083483643,E_g=0.364602356536393,L_g=0.2426015318181657,A_g=0.2920967891934869,K_g=-0.08882316848589557,S_h=0.455851906863407,B_h=-5.694124413947349,E_h=0.43278295322594607,L_h=0.44626366683868535,A_h=1.0640673985233262,K_h=-2.0782070426059955,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.612)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.612)"""),
+)
+
+entry(
+ index = 994,
+ label = "CCOO + [CH3] <=> C + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26899118326235355,B_g=-2.751436372782166,E_g=0.01797428481698572,L_g=0.3340416740722766,A_g=0.2421763652115649,K_g=-0.33688589206126124,S_h=0.26474684765508,B_h=-5.455752556818987,E_h=0.09379321950788429,L_h=0.5291491637496386,A_h=1.1216848041764695,K_h=-2.3427632983339786,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.5760000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.5760000000000001)"""),
+)
+
+entry(
+ index = 995,
+ label = "COO + [CH3] <=> C + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2507896542245984,B_g=-2.780421006618365,E_g=0.14894026056750237,L_g=0.30960192465146485,A_g=0.29391474295964204,K_g=-0.3238010232201848,S_h=0.3486146260364559,B_h=-5.611803362358952,E_h=0.19563528270624586,L_h=0.49089149961430084,A_h=1.2436343156835554,K_h=-2.365385093988636,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.5820000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.5820000000000001)"""),
+)
+
+entry(
+ index = 996,
+ label = "[CH3] + [CH3] <=> C + [CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13090733208064068,B_g=-0.10308091072449149,E_g=-0.14866903359432598,L_g=0.11882673608619024,A_g=0.2056633502550372,K_g=0.7417178061325718,S_h=0.014822187561152169,B_h=-0.1336562541060769,E_h=0.0017739710137481823,L_h=0.12206679884683776,A_h=0.33522187792853053,K_h=-0.23412019106235313,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.069)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.099, MAE_h(kcal/mol): 0.069)"""),
+)
+
+entry(
+ index = 997,
+ label = "[H][H] + [CH3] <=> C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.139989770452682,B_g=-0.022343238222745705,E_g=-0.06453735869850825,L_g=0.11834292580971346,A_g=0.1254461403234407,K_g=1.341180730063502,S_h=-0.023486789785327176,B_h=0.01969694261959242,E_h=0.09364661033319435,L_h=0.1523196020441053,A_h=0.2031050201566979,K_h=0.2874126260621436,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.105)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.105)"""),
+)
+
+entry(
+ index = 998,
+ label = "O + [CH3] <=> C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.27720129704498975,B_g=-1.8428553344762473,E_g=-0.049502587834055686,L_g=0.23994057529754342,A_g=-0.7810823695368185,K_g=0.361296319647135,S_h=0.28435582476985843,B_h=-4.368374299519961,E_h=0.08537785288068216,L_h=0.2909678985483744,A_h=-0.7980597119659127,K_h=-1.2092178119250936,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.5379999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.294, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.5379999999999999)"""),
+)
+
+entry(
+ index = 999,
+ label = "OO + [CH3] <=> C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5348009474339356,B_g=-1.843023935027141,E_g=0.08263626131398041,L_g=0.2740491997891562,A_g=-0.10514076962888505,K_g=0.036036535138785394,S_h=0.0809649167225152,B_h=-4.555528241470395,E_h=0.05843841703140707,L_h=0.4216186645733077,A_h=0.8418225506108576,K_h=-1.894659686352935,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.613, MAE_h(kcal/mol): 0.49)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.192, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.613, MAE_h(kcal/mol): 0.49)"""),
+)
+
+entry(
+ index = 1000,
+ label = "[OH] + [CH3] <=> C + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14762077799529297,B_g=-3.0041905899476093,E_g=0.2509362633992883,L_g=0.27825688310275726,A_g=0.6083987531282816,K_g=0.040251548911120955,S_h=0.5878441468367531,B_h=-6.129546332317713,E_h=0.23659055565587847,L_h=0.4303932236785002,A_h=1.583474382614819,K_h=-1.890554629461617,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.657)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.657)"""),
+)
+
+entry(
+ index = 1001,
+ label = "CCOO + [CH]1CO1 <=> C1CO1 + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4972176855021713,B_g=-2.813217478996503,E_g=-0.03704813844414592,L_g=0.4026034546160234,A_g=0.6255666874844726,K_g=-1.0096314119609542,S_h=0.10000211805600293,B_h=-5.634425158013607,E_h=-0.038763465788018134,L_h=0.5467422647124306,A_h=1.7265502761947238,K_h=-2.882878828350425,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.24100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.611)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.24100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.611)"""),
+)
+
+entry(
+ index = 1002,
+ label = "COO + [CH]1CO1 <=> C1CO1 + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23442807032920196,B_g=-2.7546617746253443,E_g=0.12676562289565008,L_g=0.3070142727181875,A_g=0.46708216964465576,K_g=-0.555648772074844,S_h=0.37899937749094437,B_h=-5.576001401899669,E_h=0.15105876314177188,L_h=0.4742953410394004,A_h=1.4773000183043699,K_h=-2.47512206124405,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.764, MAE_h(kcal/mol): 0.603)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.764, MAE_h(kcal/mol): 0.603)"""),
+)
+
+entry(
+ index = 1003,
+ label = "CO + [CH]1CO1 <=> C1CO1 + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11279376854769953,B_g=-2.1377523589063117,E_g=-0.03712877349022539,L_g=0.25945425644877346,A_g=0.4445043567424062,K_g=-0.187740378649193,S_h=0.6068080435828959,B_h=-4.730564935132705,E_h=-0.06022704896262424,L_h=0.39838111038495344,A_h=1.3195045635855955,K_h=-1.892636479742214,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.49200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.255, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.49200000000000005)"""),
+)
+
+entry(
+ index = 1004,
+ label = "C + [CH]1CO1 <=> C1CO1 + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.015181380039142503,B_g=-0.16437087620361776,E_g=-0.1308633493282337,L_g=0.07194845247908435,A_g=0.3190435555014965,K_g=0.552416039772931,S_h=0.15048698736048116,B_h=-0.2828017675181452,E_h=0.006634065154719444,L_h=0.11325558744797282,A_h=0.351554139988989,K_h=-0.49583955926008605,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.107)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.107)"""),
+)
+
+entry(
+ index = 1005,
+ label = "[H][H] + [CH]1CO1 <=> C1CO1 + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05378357573500172,B_g=0.03324363036094218,E_g=-0.07908831928648406,L_g=0.09536926813580104,A_g=0.11243457606970918,K_g=1.2712408232776697,S_h=0.06396558291721753,B_h=0.08327401122388163,E_h=0.12944124033374135,L_h=0.11518349809514541,A_h=0.17115888099176163,K_h=0.25441090083943974,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.171, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 1006,
+ label = "O + [CH]1CO1 <=> C1CO1 + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2448079998972492,B_g=-1.733829421718079,E_g=0.2585232881894924,L_g=0.1685419072235463,A_g=-0.32816997662594477,K_g=0.35474288953849503,S_h=0.23311591821572708,B_h=-4.223187233824521,E_h=0.4969537889877295,L_h=0.21995774478730565,A_h=-0.029483105030145413,K_h=-1.1982954284106937,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.514)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6409999999999999, MAE_h(kcal/mol): 0.514)"""),
+)
+
+entry(
+ index = 1007,
+ label = "OO + [CH]1CO1 <=> C1CO1 + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04039815808581088,B_g=-3.2101618194694947,E_g=0.14270937064318023,L_g=0.257233127452221,A_g=0.11629039736405442,K_g=-0.4835976931734767,S_h=0.9577977382493287,B_h=-6.282459701519312,E_h=0.12542414894723722,L_h=0.33757495518230396,A_h=0.9517281184171655,K_h=-2.3953959920476646,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9, MAE_h(kcal/mol): 0.742)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9, MAE_h(kcal/mol): 0.742)"""),
+)
+
+entry(
+ index = 1008,
+ label = "C=CCO + [CH2]C(=C)C <=> C=C(C)C + C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0585548935549847,B_g=-1.2177358049745788,E_g=2.7159349611309986,L_g=-0.34153340289893214,A_g=-0.9000923670913711,K_g=0.5366995362461702,S_h=-0.7265510870108981,B_h=-3.4295624493929795,E_h=2.705496387893075,L_h=-0.12416331004490379,A_h=0.06619404237250451,K_h=-1.2554143628698915,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.175, MAE_g(kcal/mol): 0.653, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3630000000000002, MAE_h(kcal/mol): 0.7929999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.175, MAE_g(kcal/mol): 0.653, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3630000000000002, MAE_h(kcal/mol): 0.7929999999999999)"""),
+)
+
+entry(
+ index = 1009,
+ label = "C=CC + [CH2]C(=C)C <=> C=C(C)C + C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03437252100605466,B_g=-0.1298224241879352,E_g=-0.20895472622682623,L_g=0.07834794295429989,A_g=0.4266913420175794,K_g=-0.056869698862224795,S_h=0.08402171801480028,B_h=-0.12640643041765975,E_h=-0.026309016398108377,L_h=0.09127154170321744,A_h=0.4333693899247058,K_h=-1.0622567752159056,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09300000000000001, MAE_h(kcal/mol): 0.064)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09300000000000001, MAE_h(kcal/mol): 0.064)"""),
+)
+
+entry(
+ index = 1010,
+ label = "COO + [CH2]C(=C)C <=> C=C(C)C + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0003445315605213413,B_g=-2.9036973311563954,E_g=0.12691956252907452,L_g=0.2228679369049008,A_g=0.22047820735745488,K_g=-0.4571054153070058,S_h=0.6677534775015007,B_h=-5.860877689239676,E_h=0.09565515602644643,L_h=0.421933874298891,A_h=1.185723691681032,K_h=-2.5024353504887844,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.465, MAE_g(kcal/mol): 0.366, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7929999999999999, MAE_h(kcal/mol): 0.615)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.465, MAE_g(kcal/mol): 0.366, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7929999999999999, MAE_h(kcal/mol): 0.615)"""),
+)
+
+entry(
+ index = 1011,
+ label = "C=CC + [CH2]C(=C)C <=> C=C(C)C + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07287209027963092,B_g=-0.1297784414355282,E_g=-0.2513321081709512,L_g=0.05630525353966856,A_g=0.5500629625191575,K_g=-0.10676080100920882,S_h=0.15896832811629374,B_h=-0.09952563823826063,E_h=-0.09103696702371356,L_h=0.14177107192516467,A_h=0.3525437519181461,K_h=-1.3310646970098967,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.11900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.128, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19699999999999998, MAE_h(kcal/mol): 0.11900000000000001)"""),
+)
+
+entry(
+ index = 1012,
+ label = "C + [CH2]C(=C)C <=> C=C(C)C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0051972952427581055,B_g=-0.08063504607946284,E_g=-0.16379176996359252,L_g=0.07476334863313104,A_g=0.2746283060291815,K_g=0.3814110984145938,S_h=0.062118307316124374,B_h=-0.020884476934580874,E_h=0.020283379318352154,L_h=0.16904770887622658,A_h=0.13493908438461383,K_h=-0.8025019699590176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.184)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.184)"""),
+)
+
+entry(
+ index = 1013,
+ label = "C=CC + [CH2]C(=C)C <=> C=C(C)C + [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08422697085936619,B_g=-0.13292320823262724,E_g=-0.21668102973298567,L_g=0.10333747678019889,A_g=0.40036766470200197,K_g=0.07144265082640408,S_h=0.01139153287340775,B_h=-0.08561242756018606,E_h=-0.015797138572840222,L_h=0.1354448860372941,A_h=0.40579953462426405,K_h=-0.872177980230408,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 1014,
+ label = "[H][H] + [CH2]C(=C)C <=> C=C(C)C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05354900105549783,B_g=0.009163073418120778,E_g=-0.07317263908774528,L_g=0.0904945130773608,A_g=0.1356428084231255,K_g=1.2092691251362353,S_h=0.05166507316073219,B_h=0.07893437965305962,E_h=0.13291587777389277,L_h=0.12505029555177788,A_h=0.12016087957586864,K_h=0.149761271945766,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.122)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19, MAE_h(kcal/mol): 0.122)"""),
+)
+
+entry(
+ index = 1015,
+ label = "O + [CH2]C(=C)C <=> C=C(C)C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.01109098406529339,B_g=-2.6918470737294427,E_g=0.35204528072420027,L_g=0.15292069966033403,A_g=0.15119804185772734,K_g=0.04473045919789839,S_h=0.8823233351189514,B_h=-6.210291335278193,E_h=0.5695913045878565,L_h=0.24468338209876278,A_h=0.5483036524228784,K_h=-1.774124953381607,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.847, MAE_h(kcal/mol): 0.672)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39299999999999996, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.847, MAE_h(kcal/mol): 0.672)"""),
+)
+
+entry(
+ index = 1016,
+ label = "O=COO + [CH2]C(=C)C <=> C=C(C)C + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10836617147206355,B_g=0.7126671981677616,E_g=1.067798602019185,L_g=-0.2260420255369378,A_g=-1.3723351796851126,K_g=0.9568521090725786,S_h=0.3964971824901878,B_h=-0.12098922141286675,E_h=1.0639574416423088,L_h=-0.13961591705722265,A_h=-1.1313096964948637,K_h=-0.28915727524095375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8440000000000001, MAE_g(kcal/mol): 0.578, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.878, MAE_h(kcal/mol): 0.5770000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8440000000000001, MAE_g(kcal/mol): 0.578, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.878, MAE_h(kcal/mol): 0.5770000000000001)"""),
+)
+
+entry(
+ index = 1017,
+ label = "OO + [CH2]C(=C)C <=> C=C(C)C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02287103125162946,B_g=-2.9207992913839753,E_g=0.22630592205137973,L_g=0.1858124680020204,A_g=0.24233763530372382,K_g=-0.39084539880589086,S_h=0.9624745709219376,B_h=-6.080952721366735,E_h=0.12791650491696605,L_h=0.3112952606191336,A_h=1.073171828271571,K_h=-2.370223196753403,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38299999999999995, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.856, MAE_h(kcal/mol): 0.708)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38299999999999995, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.856, MAE_h(kcal/mol): 0.708)"""),
+)
+
+entry(
+ index = 1018,
+ label = "[O]O + [CH2]C(=C)C <=> C=C(C)C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6447138456989778,B_g=-4.988237890108996,E_g=0.27185006216880725,L_g=0.5572907948313711,A_g=0.8798529705254262,K_g=-1.86662801215222,S_h=-0.18994684672827644,B_h=-8.254551023484735,E_h=0.2992733082945591,L_h=0.7676969518876279,A_h=2.082070194359076,K_h=-4.249745485819603,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.17, MAE_h(kcal/mol): 0.9279999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.17, MAE_h(kcal/mol): 0.9279999999999999)"""),
+)
+
+entry(
+ index = 1019,
+ label = "[OH] + [CH2]C(=C)C <=> C=C(C)C + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.035750647248140026,B_g=-2.982946920535038,E_g=0.38932066338911564,L_g=0.1983548828967441,A_g=0.97437923590676,K_g=0.03529615880660123,S_h=0.7470103973388783,B_h=-6.126716775246197,E_h=0.3238889887249987,L_h=0.38986311733546836,A_h=2.1235459298788575,K_h=-1.8575602346976476,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.667)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.667)"""),
+)
+
+entry(
+ index = 1020,
+ label = "C + C=C(C)[C]=O <=> C=C(C)C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19770247206937389,B_g=-0.11184080891221497,E_g=-0.008576636719361048,L_g=-0.014030498017826536,A_g=0.33662932600555384,K_g=0.9175901720906147,S_h=0.38333167860303186,B_h=-0.23769745492478747,E_h=0.18714661149169878,L_h=0.046035280852638784,A_h=0.18852473773378414,K_h=0.05341705279827689,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.151)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.151)"""),
+)
+
+entry(
+ index = 1021,
+ label = "[H][H] + C=C(C)[C]=O <=> C=C(C)C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10978095000782141,B_g=0.006714700200798906,E_g=-0.05914214106991875,L_g=0.05401081995577111,A_g=0.19968169592768797,K_g=1.4731656395781139,S_h=0.2545281881791917,B_h=0.016772089584528273,E_h=0.20344955171721926,L_h=0.08059106332705587,A_h=0.121568327652892,K_h=0.5801251737893282,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 1022,
+ label = "O + C=C(C)[C]=O <=> C=C(C)C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3605192910212784,B_g=-2.3738151215333065,E_g=0.026338338233046366,L_g=0.31193301052903477,A_g=0.06308592786907793,K_g=-0.18323947698621204,S_h=-0.03066330888639937,B_h=-5.097864900483393,E_h=0.4443210952740438,L_h=0.39907750396473063,A_h=0.42643477596187196,K_h=-1.732414643182321,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7490000000000001, MAE_h(kcal/mol): 0.573)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7490000000000001, MAE_h(kcal/mol): 0.573)"""),
+)
+
+entry(
+ index = 1023,
+ label = "OO + C=C(C)[C]=O <=> C=C(C)C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23213363674530454,B_g=-2.399471727104045,E_g=-0.10595445054841418,L_g=0.3010252879321038,A_g=0.4514389707052399,K_g=-0.4167292485973984,S_h=0.43704928020942313,B_h=-5.227885247057159,E_h=-0.08884515986209907,L_h=0.441579503707342,A_h=1.3839099740268828,K_h=-2.136117666608519,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.5579999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.5579999999999999)"""),
+)
+
+entry(
+ index = 1024,
+ label = "[O]O + C=C(C)[C]=O <=> C=C(C)C=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8663136132428108,B_g=-4.982644750094575,E_g=0.25098024615169534,L_g=0.6240566129851665,A_g=0.8256295672663546,K_g=-1.8194638406544683,S_h=-0.40947209445024674,B_h=-8.268427581869137,E_h=0.308172485198238,L_h=0.7931409741550655,A_h=2.1927454603325054,K_h=-3.96901823812332,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.47100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2, MAE_h(kcal/mol): 0.971)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.47100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2, MAE_h(kcal/mol): 0.971)"""),
+)
+
+entry(
+ index = 1025,
+ label = "[OH] + C=C(C)[C]=O <=> C=C(C)C=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02263645657212557,B_g=-2.877908777328436,E_g=0.3327661742524742,L_g=0.23470662776111287,A_g=0.9365540688367574,K_g=-0.06782140421156276,S_h=0.631489698141946,B_h=-5.938705169623829,E_h=0.3685021605831452,L_h=0.4216699777844492,A_h=2.176413198272047,K_h=-1.8140466316496757,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8390000000000001, MAE_h(kcal/mol): 0.6559999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8390000000000001, MAE_h(kcal/mol): 0.6559999999999999)"""),
+)
+
+entry(
+ index = 1026,
+ label = "[O]O + [CH2]C(=C)CO <=> C=C(C)CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7095517532056005,B_g=-6.752671977043598,E_g=0.23609941492066722,L_g=0.7499279199152078,A_g=1.087165673995725,K_g=-2.571627550483698,S_h=0.1796475522063087,B_h=-12.072173297364499,E_h=0.1182696212223685,L_h=1.0650496799937488,A_h=2.7904344132496877,K_h=-5.519586191478984,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7809999999999999, MAE_g(kcal/mol): 0.612, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6669999999999998, MAE_h(kcal/mol): 1.32)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7809999999999999, MAE_g(kcal/mol): 0.612, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6669999999999998, MAE_h(kcal/mol): 1.32)"""),
+)
+
+entry(
+ index = 1027,
+ label = "C=C(C)CO + [CH2]C(=C)C <=> C=C(C)C[O] + C=C(C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20828765448198702,B_g=-1.8282750520533335,E_g=0.3246733478095899,L_g=0.13536425099121463,A_g=0.4075515142618087,K_g=-0.41769686915035203,S_h=0.07221967945226072,B_h=-4.051156028243355,E_h=0.4983319152298149,L_h=0.37317899325575404,A_h=0.9878379581432958,K_h=-2.295393873991662,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.45)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.45)"""),
+)
+
+entry(
+ index = 1028,
+ label = "C=C(C)CO + [H] <=> C=C(C)C[O] + [H][H]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.44893928427677665,B_g=-1.6189391419723134,E_g=-0.09209988354021556,L_g=0.35862803266777826,A_g=-0.35370929485693103,K_g=0.22872497343376358,S_h=-0.17890717587412455,B_h=-3.5692443405788126,E_h=0.11744860984410488,L_h=0.5499456751794056,A_h=-0.14339843376422293,K_h=-1.8363385566612798,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.428)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.428)"""),
+)
+
+entry(
+ index = 1029,
+ label = "C + C=C(O)[CH]C <=> C=C(O)CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13701360420647635,B_g=0.14484253413491877,E_g=-0.14894759102623686,L_g=0.07968208644397828,A_g=-0.0007403763321841588,K_g=0.19565727408244932,S_h=-0.1419470029347926,B_h=0.2744670359370225,E_h=0.1115255991866316,L_h=0.1516671912167351,A_h=-0.10303692797208451,K_h=-1.0050278838756903,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.20600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.20600000000000002)"""),
+)
+
+entry(
+ index = 1030,
+ label = "[H][H] + C=C(O)[CH]C <=> C=C(O)CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10382861751541017,B_g=0.4283113733979031,E_g=-0.09497342336413822,L_g=0.0720584093601018,A_g=-0.09011332922316698,K_g=1.130217458143424,S_h=-0.09365394079192883,B_h=0.6613100042738782,E_h=0.17173798723178688,L_h=0.11057997000988155,A_h=-0.15065558791137457,K_h=-0.0011142297276434865,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057999999999999996, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.171)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057999999999999996, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.171)"""),
+)
+
+entry(
+ index = 1031,
+ label = "O + C=C(O)[CH]C <=> C=C(O)CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6158391687437957,B_g=-1.4959047225725222,E_g=2.1783411089192195,L_g=-0.31002709125806566,A_g=-1.619774814268046,K_g=1.576818326083896,S_h=0.22122591414837356,B_h=-5.881373651861329,E_h=2.4102841537374275,L_h=-0.1119874180869049,A_h=-0.5082426954388543,K_h=-0.5970438725485464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.879, MAE_g(kcal/mol): 0.6629999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.224, MAE_h(kcal/mol): 0.934)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.879, MAE_g(kcal/mol): 0.6629999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.224, MAE_h(kcal/mol): 0.934)"""),
+)
+
+entry(
+ index = 1032,
+ label = "[O]O + C=C(O)[CH]C <=> C=C(O)CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7183043209345894,B_g=-4.29484979841296,E_g=0.11988965260269226,L_g=0.5635656675081003,A_g=0.4089149795864251,K_g=-2.0439518089396933,S_h=-0.3582615097310534,B_h=-7.218977118062398,E_h=0.2675837351853302,L_h=0.7190227058905702,A_h=1.5874841435425884,K_h=-4.400364421437304,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.38799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.031, MAE_h(kcal/mol): 0.8109999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.38799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.031, MAE_h(kcal/mol): 0.8109999999999999)"""),
+)
+
+entry(
+ index = 1033,
+ label = "CC(=O)OO + [CH]=C <=> C=C + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19087048452882305,B_g=-0.33784618215548035,E_g=-0.1236868302271615,L_g=0.10499416045419512,A_g=0.5913627670293115,K_g=0.24574629861526476,S_h=0.059083497400042775,B_h=-0.8107340751178573,E_h=-0.08784088701547302,L_h=0.09338271381875247,A_h=1.0612671632867485,K_h=-0.6439294866143868,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.138)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.138)"""),
+)
+
+entry(
+ index = 1034,
+ label = "CC(C)(C)OO + [CH]=C <=> C=C + CC(C)(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4547596685119669,B_g=-2.8386101880527996,E_g=-0.11932520728013601,L_g=0.43590572864684163,A_g=0.6024170988009324,K_g=-0.8880117710969209,S_h=0.03143300705352152,B_h=-5.514322922107615,E_h=-0.055674834088501844,L_h=0.621615570226579,A_h=1.5088942954500504,K_h=-2.8112822378905955,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.534)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.534)"""),
+)
+
+entry(
+ index = 1035,
+ label = "CC(C)OO + [CH]=C <=> C=C + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.47624524306277655,B_g=-2.854187412863605,E_g=-0.06795335246878369,L_g=0.43616229470254897,A_g=0.5423879722241396,K_g=-0.8122661409933672,S_h=0.028427518972377903,B_h=-5.5909848595529805,E_h=-0.012989572877528013,L_h=0.612049321578061,A_h=1.5433327905847154,K_h=-2.7139410763552156,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.5579999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.5579999999999999)"""),
+)
+
+entry(
+ index = 1036,
+ label = "CCC(C)OO + [CH]=C <=> C=C + CCC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3320917720489005,B_g=-2.8816033285306224,E_g=-0.04327169790973356,L_g=0.3790580211608203,A_g=0.6219747627045693,K_g=-0.8137835459514079,S_h=0.2596008656234634,B_h=-5.64342696133957,E_h=-0.0158411213252472,L_h=0.530571272744131,A_h=1.516818521342041,K_h=-2.6332034038534697,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.552)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.552)"""),
+)
+
+entry(
+ index = 1037,
+ label = "CCCCOO + [CH]=C <=> C=C + CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17416436907290525,B_g=-3.1242708344773984,E_g=0.007147197266134207,L_g=0.3578729954181251,A_g=0.87979432685555,K_g=-0.5860628453642703,S_h=0.42117150659050345,B_h=-5.965219438866502,E_h=0.05104198416829998,L_h=0.5684257616490717,A_h=1.7399576852201184,K_h=-2.551505441257505,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 1038,
+ label = "CCCOO + [CH]=C <=> C=C + CCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3208468483501826,B_g=-2.9716360227077097,E_g=-0.006516777814967498,L_g=0.3875540228341019,A_g=0.6456374834995244,K_g=-0.751760534598832,S_h=0.2846637040367073,B_h=-5.779890781140959,E_h=0.023626068501282613,L_h=0.5540800539056617,A_h=1.6361144067872393,K_h=-2.644851502782585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7390000000000001, MAE_h(kcal/mol): 0.573)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7390000000000001, MAE_h(kcal/mol): 0.573)"""),
+)
+
+entry(
+ index = 1039,
+ label = "CCOO + [CH]=C <=> C=C + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4459264657368985,B_g=-2.796357423907161,E_g=-0.04626985553214268,L_g=0.417740851902759,A_g=0.5135279561864263,K_g=-0.7929137299342962,S_h=0.07473402679819306,B_h=-5.495395677655145,E_h=0.017761701513685318,L_h=0.5869351699536756,A_h=1.525006643748474,K_h=-2.7004676932012104,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.725, MAE_h(kcal/mol): 0.5589999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.725, MAE_h(kcal/mol): 0.5589999999999999)"""),
+)
+
+entry(
+ index = 1040,
+ label = "COO + [CH]=C <=> C=C + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.33141736984532677,B_g=-2.896938648203189,E_g=0.004149039643725088,L_g=0.3776945558362039,A_g=0.5606188230968326,K_g=-0.6288653939149962,S_h=0.2610889487465662,B_h=-5.733203089460949,E_h=0.03302371659890728,L_h=0.5495718217839463,A_h=1.5867217758342007,K_h=-2.6014918393680375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.306, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.591)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.306, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.591)"""),
+)
+
+entry(
+ index = 1041,
+ label = "CO + [CH]=C <=> C=C + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05963328180513003,B_g=-2.311975371649093,E_g=-0.13319443520580362,L_g=0.29557142663363833,A_g=0.16390905730334446,K_g=-0.2608836959020003,S_h=0.7000588091444274,B_h=-4.938273483374667,E_h=-0.1000094485147374,L_h=0.4261928708236336,A_h=0.5258504573191152,K_h=-2.0021828550705316,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.629, MAE_h(kcal/mol): 0.496)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.629, MAE_h(kcal/mol): 0.496)"""),
+)
+
+entry(
+ index = 1042,
+ label = "C + [CH]=C <=> C=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15945946885150505,B_g=-0.16135805766373965,E_g=-0.1660348903363485,L_g=0.1316770302477628,A_g=0.23519776849632415,K_g=0.550143597565237,S_h=-0.05395950674462964,B_h=-0.20932124916355108,E_h=-0.0042516660660080405,L_h=0.18650886158179758,A_h=0.3300319131445069,K_h=-0.5355999674359957,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.131)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.131)"""),
+)
+
+entry(
+ index = 1043,
+ label = "[H][H] + [CH]=C <=> C=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22184167268207128,B_g=-0.046328499202018654,E_g=-0.09037722573760887,L_g=0.13685966457305193,A_g=0.14097938238183902,K_g=1.1469675563517485,S_h=-0.09278161620252376,B_h=-0.044847746537650335,E_h=0.05494911867378668,L_h=0.1479873009320178,A_h=0.27169612253538283,K_h=0.09993614392739246,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.114, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 1044,
+ label = "O + [CH]=C <=> C=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.33739169371394157,B_g=-2.0190429101598735,E_g=-0.20106715262850788,L_g=0.31068683254417034,A_g=-0.5056330521293735,K_g=-0.11346817075127322,S_h=0.2338562945479112,B_h=-4.557917971017841,E_h=-0.08237236479953854,L_h=0.3464448102510449,A_h=-0.45313963713164324,K_h=-1.6811234234170485,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.212, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.652, MAE_h(kcal/mol): 0.531)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26899999999999996, MAE_g(kcal/mol): 0.212, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.652, MAE_h(kcal/mol): 0.531)"""),
+)
+
+entry(
+ index = 1045,
+ label = "[O]O + [CH]=C <=> C=C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8394768038158186,B_g=-4.897677402903025,E_g=0.26278961517296945,L_g=0.6052246644962446,A_g=0.7487916988113609,K_g=-1.6766811654239433,S_h=-0.32039235990864384,B_h=-8.193656902777272,E_h=0.2528568435877265,L_h=0.7409334470479807,A_h=2.1329655693526854,K_h=-3.7972509290565957,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.209, MAE_h(kcal/mol): 0.987)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.209, MAE_h(kcal/mol): 0.987)"""),
+)
+
+entry(
+ index = 1046,
+ label = "C=CC + [CH]=C=C <=> C=C=C + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1276232865675862,B_g=-0.24826064596119707,E_g=-0.2163878113836058,L_g=0.1262524907842353,A_g=0.33827134876208115,K_g=-0.02373602538230006,S_h=-0.03237130577153709,B_h=-0.34748573539134336,E_h=-0.038462916979903776,L_h=0.1923512371931914,A_h=0.4748084731508152,K_h=-1.145897309376512,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 1047,
+ label = "C + [CH]=C=C <=> C=C=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20292175868833545,B_g=-0.22189298589321277,E_g=-0.13115656767761355,L_g=0.1358773831026294,A_g=0.22757409141244764,K_g=0.42851662624246906,S_h=-0.08993006775480455,B_h=-0.35366531210452407,E_h=0.018216189955224105,L_h=0.22903285270061247,A_h=0.31922681696985894,K_h=-0.7148590053293761,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28600000000000003, MAE_h(kcal/mol): 0.179)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28600000000000003, MAE_h(kcal/mol): 0.179)"""),
+)
+
+entry(
+ index = 1048,
+ label = "O + [CH]=C=C <=> C=C=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31050357107580795,B_g=-2.2467562802882766,E_g=0.1625822442724006,L_g=0.24592956008362718,A_g=0.1610501783968908,K_g=-0.007029909926382262,S_h=0.18916248764368535,B_h=-5.029420407279398,E_h=0.3362847944450325,L_h=0.3321724070949799,A_h=0.5014107078983034,K_h=-1.6118799102109933,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.5539999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.5539999999999999)"""),
+)
+
+entry(
+ index = 1049,
+ label = "OO + [CH]=C=C <=> C=C=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21831572203077837,B_g=-2.3484370733944795,E_g=-0.043660212222661886,L_g=0.27833018769010226,A_g=0.4174989467645206,K_g=-0.3499707609023377,S_h=0.5945002033676761,B_h=-5.333465844210115,E_h=-0.15447475691204735,L_h=0.4283113733979031,A_h=1.3826198132896113,K_h=-2.2923224117819077,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.53)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.237, MAE_g(kcal/mol): 0.185, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.53)"""),
+)
+
+entry(
+ index = 1050,
+ label = "C + [CH2]C=C=C <=> C=C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03768588835404714,B_g=-0.090084007388229,E_g=-0.1716133694333004,L_g=0.08861058518259517,A_g=0.20608851686163804,K_g=0.34802085887896167,S_h=0.04135844818002995,B_h=-0.04012693111263451,E_h=0.03836029055762082,L_h=0.1449231691809982,A_h=0.1731527657675447,K_h=-0.7502504600995259,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.263, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.263, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 1051,
+ label = "[H][H] + [CH2]C=C=C <=> C=C=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.042267425063107524,B_g=0.0316895731092289,E_g=-0.06978596715240784,L_g=0.0872324589405098,A_g=0.10253845677813875,K_g=1.2529439982763662,S_h=0.05568949500597085,B_h=0.12095989957792876,E_h=0.15065558791137457,L_h=0.12440521518314217,A_h=0.07636138863725131,K_h=0.20753261723233385,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.131)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.131)"""),
+)
+
+entry(
+ index = 1052,
+ label = "[H][H] + [CH]=C=O <=> C=C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0034746374401513993,B_g=-0.12277785334408392,E_g=-0.06591548494059363,L_g=0.09800090282148534,A_g=0.07084155321017536,K_g=1.225784648665056,S_h=0.13018894712466,B_h=-0.13351697539012147,E_h=0.12576868050775855,L_h=0.14742285560946156,A_h=0.07593622203065052,K_h=0.19393461627984265,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.248, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 1053,
+ label = "O + [CH]=C=O <=> C=C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2883875770738316,B_g=-2.1293809750315167,E_g=-0.08102356039239116,L_g=0.29829102682413655,A_g=-0.5376964786340617,K_g=-0.14789933542720385,S_h=0.24828263733740058,B_h=-4.752131144729594,E_h=0.12660435280349117,L_h=0.35838612752953986,A_h=-0.4728439102099701,K_h=-1.7211770499423378,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.669, MAE_h(kcal/mol): 0.54)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.669, MAE_h(kcal/mol): 0.54)"""),
+)
+
+entry(
+ index = 1054,
+ label = "[OH] + [CH]=C=O <=> C=C=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2534066279928137,B_g=-2.8872331208387156,E_g=0.21420333468072578,L_g=0.3262713878137101,A_g=0.48295994326357544,K_g=-0.4523332866708486,S_h=0.38300180795997957,B_h=-5.793188233285336,E_h=0.2714615478558789,L_h=0.4805042395875191,A_h=1.468283554060939,K_h=-2.3246277434248346,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.262, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.797, MAE_h(kcal/mol): 0.623)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.262, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.797, MAE_h(kcal/mol): 0.623)"""),
+)
+
+entry(
+ index = 1055,
+ label = "CC(=O)OO + [CH2]C=C <=> C=CC + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.413401220331937,B_g=0.2540956911138564,E_g=0.512105847191934,L_g=-0.17329937494223463,A_g=-0.15887303215274529,K_g=0.8587412493700758,S_h=0.7483372103698223,B_h=-0.4095820513312643,E_h=0.5357319156932167,L_h=-0.14498914330960871,A_h=0.10214994246521043,K_h=-0.09454825675753742,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6709999999999999, MAE_g(kcal/mol): 0.498, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7070000000000001, MAE_h(kcal/mol): 0.516)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6709999999999999, MAE_g(kcal/mol): 0.498, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7070000000000001, MAE_h(kcal/mol): 0.516)"""),
+)
+
+entry(
+ index = 1056,
+ label = "CC(C)OO + [CH2]C=C <=> C=CC + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26784763169977205,B_g=-2.8026469575013593,E_g=0.20118443996825983,L_g=0.2790852249397554,A_g=0.6334835829177291,K_g=-0.7782967952177098,S_h=0.252790869459116,B_h=-5.591629939921616,E_h=0.21217279761127025,L_h=0.5054571211197456,A_h=1.562384652835672,K_h=-2.7809487996472493,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.755, MAE_h(kcal/mol): 0.573)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.755, MAE_h(kcal/mol): 0.573)"""),
+)
+
+entry(
+ index = 1057,
+ label = "CCOO + [CH2]C=C <=> C=CC + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26874927812411514,B_g=-2.6139682801341504,E_g=0.3066990629926042,L_g=0.21165966549985546,A_g=0.4219118829226876,K_g=-0.34824810309973103,S_h=0.3415187419814631,B_h=-5.483241777073349,E_h=0.2859025515628372,L_h=0.427453709725967,A_h=1.3653565829698717,K_h=-2.2943382879338943,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39399999999999996, MAE_g(kcal/mol): 0.331, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.631)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39399999999999996, MAE_g(kcal/mol): 0.331, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.631)"""),
+)
+
+entry(
+ index = 1058,
+ label = "COO + [CH2]C=C <=> C=CC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1501644471761633,B_g=-2.6907694962954714,E_g=0.5042036126761467,L_g=0.17873124486449662,A_g=0.4142222317102006,K_g=-0.44537668133181124,S_h=0.5037857765282804,B_h=-5.631045816537005,E_h=0.45534610521072666,L_h=0.39161509697301305,A_h=1.3614347875469162,K_h=-2.4748948170232805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.341, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.6659999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.341, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.836, MAE_h(kcal/mol): 0.6659999999999999)"""),
+)
+
+entry(
+ index = 1059,
+ label = "CC + [CH2]C=C <=> C=CC + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02449839309068771,B_g=-0.13593602677250538,E_g=-0.19171348728329018,L_g=0.06609141595022155,A_g=0.3831704085108729,K_g=0.19722599225163162,S_h=0.1419470029347926,B_h=-0.15855049196842744,E_h=-0.014462995083161836,L_h=0.11999227902497521,A_h=0.2707358324411637,K_h=-0.8933556755143689,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1060,
+ label = "C + C=[C]C <=> C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15510517636321403,B_g=-0.10151219255530922,E_g=-0.2104794616436015,L_g=0.1285395939093983,A_g=0.214841084590627,K_g=0.3098291688722343,S_h=-0.06635531246466343,B_h=-0.053981498120833124,E_h=-0.024095217860290393,L_h=0.15558165618095632,A_h=0.32774481001934397,K_h=-0.7612754700362088,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 1061,
+ label = "C + [CH2]C=C <=> C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.046247864155939185,B_g=-0.08815609674105637,E_g=-0.16972944153853478,L_g=0.08757699050103115,A_g=0.2426235231943692,K_g=0.3881917727440031,S_h=0.03478302669518647,B_h=-0.04712751920407878,E_h=0.018626695644355915,L_h=0.16593959437280004,A_h=0.13227812786399154,K_h=-0.7772338787012077,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.174)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.174)"""),
+)
+
+entry(
+ index = 1062,
+ label = "C + [CH]=CC <=> C=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13332638346302456,B_g=-0.14170509779655419,E_g=-0.19415453004187752,L_g=0.13635386292037166,A_g=0.2447640171448422,K_g=0.5086971838803931,S_h=-0.07425021652171628,B_h=-0.09715056960828374,E_h=0.02368471217115859,L_h=0.19481427132798224,A_h=0.35950768771591785,K_h=-0.5484869138912408,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24600000000000002, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24600000000000002, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 1063,
+ label = "[H][H] + C=[C]C <=> C=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19324555315879993,B_g=0.0007403763321841588,E_g=-0.10852744156422248,L_g=0.13968189118583313,A_g=0.06717632384292704,K_g=1.0461370964587475,S_h=-0.10854943294042597,B_h=0.11171619111372853,E_h=0.09036256482013987,L_h=0.1419470029347926,A_h=0.26957028950237877,K_h=-0.011047001312886408,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.094)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.042, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.15, MAE_h(kcal/mol): 0.094)"""),
+)
+
+entry(
+ index = 1064,
+ label = "[H][H] + [CH2]C=C <=> C=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06884033797565778,B_g=0.0069639357977717906,E_g=-0.06726428934774101,L_g=0.0952959635484561,A_g=0.11605582268455053,K_g=1.21182012477584,S_h=0.027694473098928238,B_h=0.08379447379403088,E_h=0.13719686567483877,L_h=0.13049682639150886,A_h=0.11316762194315884,K_h=0.14442469798705246,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.125)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.195, MAE_h(kcal/mol): 0.125)"""),
+)
+
+entry(
+ index = 1065,
+ label = "[H][H] + [CH]=CC <=> C=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21610925395169492,B_g=-0.023010309967584894,E_g=-0.093287417855204,L_g=0.1415071754107228,A_g=0.10946574028223804,K_g=1.1421734363393878,S_h=-0.11996295719003722,B_h=0.040251548911120955,E_h=0.08328134168261611,L_h=0.15773681104889833,A_h=0.2946624497505607,K_h=0.09914445438406683,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.145, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.145, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 1066,
+ label = "O + C=[C]C <=> C=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2936215246102622,B_g=-2.1042961452420696,E_g=-0.15327989213832438,L_g=0.28692881578566676,A_g=-0.48950604291348093,K_g=-0.2606491212224964,S_h=0.28829228111028316,B_h=-4.680343962342668,E_h=0.020752528677359938,L_h=0.2955860875511073,A_h=-0.2877498271639304,K_h=-1.8402896739191736,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.535)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.535)"""),
+)
+
+entry(
+ index = 1067,
+ label = "O + [CH2]C=C <=> C=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09533261584212857,B_g=-2.719219006644053,E_g=0.3531448495343748,L_g=0.13705025650014885,A_g=0.16024382793609615,K_g=0.16080827325865238,S_h=1.0875468578499188,B_h=-6.273692472872854,E_h=0.5493372471044423,L_h=0.2167689952377996,A_h=0.4489099624418386,K_h=-1.6170772054537514,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.389, MAE_g(kcal/mol): 0.309, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.838, MAE_h(kcal/mol): 0.6679999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.389, MAE_g(kcal/mol): 0.309, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.838, MAE_h(kcal/mol): 0.6679999999999999)"""),
+)
+
+entry(
+ index = 1068,
+ label = "O + [CH]=CC <=> C=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3891887151318946,B_g=-2.0021095504831865,E_g=-0.2009205434538179,L_g=0.32543571551797756,A_g=-0.7163837407461514,K_g=-0.18040258945596188,S_h=0.11679619901673469,B_h=-4.488967676161165,E_h=-0.03752461826188821,L_h=0.3591338343204585,A_h=-0.6045136099989985,K_h=-1.7462398883555819,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.544)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.544)"""),
+)
+
+entry(
+ index = 1069,
+ label = "OO + C=[C]C <=> C=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5210783286829578,B_g=-1.983255610618061,E_g=-0.11274978579529255,L_g=0.3337118034292242,A_g=0.21436460477288474,K_g=-0.40897362325630104,S_h=0.10769909972722437,B_h=-4.715618129773066,E_h=-0.14786268313353138,L_h=0.45077922941913523,A_h=1.3278979388365941,K_h=-2.2467636107470113,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.505)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.505)"""),
+)
+
+entry(
+ index = 1070,
+ label = "OO + [CH2]C=C <=> C=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1785333224786652,B_g=-3.3085292452277053,E_g=0.16908436116989908,L_g=0.22019231946680956,A_g=0.2717767575814623,K_g=-0.4523845998819901,S_h=1.1371667330237265,B_h=-6.471123717969052,E_h=0.18672877534383248,L_h=0.3281333243322723,A_h=1.0612671632867485,K_h=-2.454604107246194,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.4, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.905, MAE_h(kcal/mol): 0.747)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.4, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.905, MAE_h(kcal/mol): 0.747)"""),
+)
+
+entry(
+ index = 1071,
+ label = "OO + [CH]=CC <=> C=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5394044755191993,B_g=-1.9182124502668727,E_g=-0.0752911416620148,L_g=0.32888836158192547,A_g=0.1922559412296429,K_g=-0.19739459280252505,S_h=0.09494410152920024,B_h=-4.661226125963101,E_h=-0.10865938982144344,L_h=0.4579850703551454,A_h=1.2911430187418282,K_h=-1.9942439682610718,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.222, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.618, MAE_h(kcal/mol): 0.491)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.222, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.618, MAE_h(kcal/mol): 0.491)"""),
+)
+
+entry(
+ index = 1072,
+ label = "[O]O + C=[C]C <=> C=CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7333171004228386,B_g=-4.952949061761129,E_g=0.2534506107452207,L_g=0.5898013793188637,A_g=0.739034858235746,K_g=-1.8376213869398166,S_h=-0.24678722375556328,B_h=-8.19019692625459,E_h=0.29949322205659396,L_h=0.737854654379492,A_h=2.1196021430796983,K_h=-4.020316788347327,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.581, MAE_g(kcal/mol): 0.461, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.18, MAE_h(kcal/mol): 0.95)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.581, MAE_g(kcal/mol): 0.461, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.18, MAE_h(kcal/mol): 0.95)"""),
+)
+
+entry(
+ index = 1073,
+ label = "[O]O + [CH2]C=C <=> C=CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.668288600989119,B_g=-4.969017427307145,E_g=0.28050000347551324,L_g=0.5678100031153739,A_g=0.8256588891012925,K_g=-1.7534823815852643,S_h=-0.2044245027289073,B_h=-8.23947960032661,E_h=0.3177387338467561,L_h=0.7648160816049705,A_h=2.0759272699395677,K_h=-4.0572256480755176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.589, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.173, MAE_h(kcal/mol): 0.9329999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.589, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.173, MAE_h(kcal/mol): 0.9329999999999999)"""),
+)
+
+entry(
+ index = 1074,
+ label = "[O]O + [CH]=CC <=> C=CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.700997107862443,B_g=-4.942107313292809,E_g=0.3014064717862976,L_g=0.5709767612886764,A_g=0.7129970688108139,K_g=-1.6917525885820686,S_h=-0.1931795790301895,B_h=-8.215435695677462,E_h=0.3462175660302755,L_h=0.7018327801581756,A_h=2.098241186327375,K_h=-3.784789149207951,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.58, MAE_g(kcal/mol): 0.46, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.19, MAE_h(kcal/mol): 0.965)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.58, MAE_g(kcal/mol): 0.46, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.19, MAE_h(kcal/mol): 0.965)"""),
+)
+
+entry(
+ index = 1075,
+ label = "[OH] + C=[C]C <=> C=CC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06304194511667094,B_g=-2.969576163803316,E_g=0.2963851075531674,L_g=0.2402264631881888,A_g=0.7108858966952789,K_g=0.5137991831596027,S_h=0.6903239599450159,B_h=-6.059291215806297,E_h=0.2520504931269319,L_h=0.36783508883830596,A_h=1.8344399678490455,K_h=-1.3687212635290058,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.664)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.365, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.664)"""),
+)
+
+entry(
+ index = 1076,
+ label = "[OH] + [CH2]C=C <=> C=CC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10698071477124371,B_g=-2.9371608752793725,E_g=0.3917103929365615,L_g=0.17906111550754897,A_g=0.9259982082590823,K_g=0.20544343649300234,S_h=0.8391102808790938,B_h=-6.077155543742267,E_h=0.3516714273287409,L_h=0.35867934587891975,A_h=2.0066544348985746,K_h=-1.6589707771213997,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.848, MAE_h(kcal/mol): 0.6629999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.308, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.848, MAE_h(kcal/mol): 0.6629999999999999)"""),
+)
+
+entry(
+ index = 1077,
+ label = "C=CC + C=[C]C=C <=> C=CC=C + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09553053822795997,B_g=-0.14362567798499232,E_g=-0.22578545948123047,L_g=0.10334480723893337,A_g=0.33720110178684465,K_g=-0.15349247544162478,S_h=0.010805096174648022,B_h=-0.1369549605366004,E_h=-0.01820885949648961,L_h=0.08803880940130443,A_h=0.44936445088337745,K_h=-1.1152193395726435,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.064)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.084, MAE_h(kcal/mol): 0.064)"""),
+)
+
+entry(
+ index = 1078,
+ label = "C + C=[C]C=C <=> C=CC=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.00028588789064536824,B_g=-0.10516276100508855,E_g=-0.1641143101479104,L_g=0.07460207854097212,A_g=0.30621525271612743,K_g=0.4589160386144265,S_h=0.10355006008349928,B_h=-0.12047608930145198,E_h=0.03577263862434352,L_h=0.11236860194109873,A_h=0.3092573930909435,K_h=-0.6250022421619166,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 1079,
+ label = "C + [CH]=CC=C <=> C=CC=C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11777848048715724,B_g=-0.17379784613618043,E_g=-0.17058710521047088,L_g=0.11972105205179882,A_g=0.2510975334914473,K_g=0.5334081602743813,S_h=0.014177107192516468,B_h=-0.22802124939525192,E_h=0.0014221089944923446,L_h=0.1619298334450304,A_h=0.34417236804335094,K_h=-0.429696830098723,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 1080,
+ label = "C=C=C + C=[C]C=C <=> C=CC=C + [CH]=C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03418192907895775,B_g=-0.04786789553626294,E_g=-0.13982116990178858,L_g=0.06859110237868489,A_g=0.3578143517482491,K_g=0.2792904777843213,S_h=0.08765029508837612,B_h=-0.07495394056022796,E_h=0.04288318359680524,L_h=0.06470595924940169,A_h=0.4395929493902934,K_h=-0.6237487337183175,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.052000000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.067, MAE_h(kcal/mol): 0.052000000000000005)"""),
+)
+
+entry(
+ index = 1081,
+ label = "C=C + C=[C]C=C <=> C=CC=C + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0711787543119622,B_g=-0.11107111074509284,E_g=-0.20320031612024636,L_g=0.09528130263098708,A_g=0.34434096859424435,K_g=0.10346209457868534,S_h=0.01614900059209606,B_h=-0.09278161620252376,E_h=-0.006260211759260116,L_h=0.11667158121824824,A_h=0.3845925175053652,K_h=-0.9600481890808192,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.081)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.081)"""),
+)
+
+entry(
+ index = 1082,
+ label = "C=C + [CH]=CC=C <=> C=CC=C + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1846249336870319,B_g=-0.19430113921656747,E_g=-0.19416186050061202,L_g=0.14001176182888547,A_g=0.35810023963889454,K_g=0.26857334711448727,S_h=-0.07946950314067787,B_h=-0.22208357782030966,E_h=-0.03140368521858353,L_h=0.18087906927370415,A_h=0.4864492416211958,K_h=-0.6854785267215137,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.094)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.094)"""),
+)
+
+entry(
+ index = 1083,
+ label = "[H][H] + C=[C]C=C <=> C=CC=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11771250635854676,B_g=-0.0024630341347908653,E_g=-0.07771019304439869,L_g=0.09709192593840776,A_g=0.16114547436043927,K_g=1.0832585394902383,S_h=0.002433712299852879,B_h=0.014323716367206401,E_h=0.0902599383978569,L_h=0.09800090282148534,A_h=0.237660802631115,K_h=0.006150254878242666,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.064)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.095, MAE_h(kcal/mol): 0.064)"""),
+)
+
+entry(
+ index = 1084,
+ label = "O + C=[C]C=C <=> C=CC=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.27135892143359597,B_g=-1.8943811289210242,E_g=-0.2469265024715187,L_g=0.2725171339136464,A_g=-0.8438310963041097,K_g=-0.35899455560450305,S_h=0.32723167790792923,B_h=-4.376599074220067,E_h=-0.09086836647282012,L_h=0.25980611846802926,A_h=-1.0023889187312716,K_h=-1.9289882246065828,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.22899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.55)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.22899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.55)"""),
+)
+
+entry(
+ index = 1085,
+ label = "O + [CH]=CC=C <=> C=CC=C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42482207504028274,B_g=-1.9639251909351934,E_g=-0.243034028883501,L_g=0.33812473958739125,A_g=-0.6932048302276731,K_g=-0.2629288938889248,S_h=0.12836366289977033,B_h=-4.453063089279601,E_h=-0.11968439975812635,L_h=0.3735308552750099,A_h=-0.6781553984457516,K_h=-1.8052354202508107,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.655, MAE_h(kcal/mol): 0.546)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.655, MAE_h(kcal/mol): 0.546)"""),
+)
+
+entry(
+ index = 1086,
+ label = "[OH] + C=[C]C=C <=> C=CC=C + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.012087926453184931,B_g=-3.0357775366345545,E_g=0.39988385442552526,L_g=0.1987727190446104,A_g=1.2615279654544618,K_g=0.3207662133041032,S_h=0.8123980892505881,B_h=-6.354012309226735,E_h=0.24071760392340008,L_h=0.40363704929758754,A_h=2.5625011293592497,K_h=-1.4995919433159741,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.43700000000000006, MAE_g(kcal/mol): 0.33899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9329999999999999, MAE_h(kcal/mol): 0.7140000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.43700000000000006, MAE_g(kcal/mol): 0.33899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9329999999999999, MAE_h(kcal/mol): 0.7140000000000001)"""),
+)
+
+entry(
+ index = 1087,
+ label = "[OH] + [CH]=CC=C <=> C=CC=C + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08321536755400566,B_g=-2.8416523284276156,E_g=0.4348574730478086,L_g=0.16777220905642418,A_g=1.0087370959953457,K_g=1.146667007543634,S_h=0.8691651616905299,B_h=-5.988391018926245,E_h=0.3226648021163378,L_h=0.3105622147456839,A_h=2.199848674846233,K_h=-0.5413690384600445,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39899999999999997, MAE_g(kcal/mol): 0.305, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.915, MAE_h(kcal/mol): 0.693)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39899999999999997, MAE_g(kcal/mol): 0.305, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.915, MAE_h(kcal/mol): 0.693)"""),
+)
+
+entry(
+ index = 1088,
+ label = "CC(C)OO + C=C[C]=O <=> C=CC=O + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20300972419314947,B_g=-2.9148029761391574,E_g=-0.04294182726668121,L_g=0.3618461040522223,A_g=0.51638683509288,K_g=-0.9002463067247956,S_h=0.26828745922384184,B_h=-5.656064672197841,E_h=0.1198163480153473,L_h=0.5534129821608225,A_h=1.4034236551781127,K_h=-2.795206541885845,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.725, MAE_h(kcal/mol): 0.547)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.725, MAE_h(kcal/mol): 0.547)"""),
+)
+
+entry(
+ index = 1089,
+ label = "COO + C=C[C]=O <=> C=CC=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1278138784946831,B_g=-2.926993529014625,E_g=0.04865225462085408,L_g=0.3206855782580237,A_g=0.5167533580296049,K_g=-0.6560687262787132,S_h=0.4379435961750317,B_h=-5.771013595613483,E_h=0.17882654082804508,L_h=0.49138264034951207,A_h=1.477673871699829,K_h=-2.5754173976494323,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.585)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.752, MAE_h(kcal/mol): 0.585)"""),
+)
+
+entry(
+ index = 1090,
+ label = "CO + C=C[C]=O <=> C=CC=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0709588405499273,B_g=-2.1723154718394633,E_g=0.026221050893294413,L_g=0.22149714112154992,A_g=0.31537832613424815,K_g=-0.017050647016439144,S_h=0.7199976569022581,B_h=-4.725030438788161,E_h=0.2272002380169883,L_h=0.3495529247544714,A_h=0.9077087137165132,K_h=-1.6192396907804278,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.191, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.469)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.247, MAE_g(kcal/mol): 0.191, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.469)"""),
+)
+
+entry(
+ index = 1091,
+ label = "C + C=C[C]=O <=> C=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4450834629824314,B_g=-0.15256150718234368,E_g=0.10479623806836372,L_g=-0.08487205122800189,A_g=0.37527550445382,K_g=1.231876259873423,S_h=0.623770725094521,B_h=-0.3481308157599791,E_h=0.3086269736397768,L_h=-0.006084280749632197,A_h=0.21415935192831884,K_h=0.2406369688773206,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.17600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.141, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.17600000000000002)"""),
+)
+
+entry(
+ index = 1092,
+ label = "C=C + C=C[C]=O <=> C=CC=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3665156062660966,B_g=-0.07680854662005561,E_g=0.04978114526596656,L_g=-0.058885575014211364,A_g=0.33900439463553084,K_g=0.9704501100250699,S_h=0.5577965964840514,B_h=-0.23117334665108547,E_h=0.238694397312679,L_h=-0.036058526514988885,A_h=0.30315112096510777,K_h=0.12881082088257464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.126, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.134, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 1093,
+ label = "O + C=C[C]=O <=> C=CC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2185576271690168,B_g=-2.345365611184725,E_g=0.094394317124113,L_g=0.2645782471041866,A_g=-0.03647636266285519,K_g=0.027547863924238306,S_h=0.11635637149266487,B_h=-5.080623661539856,E_h=0.4855769170317908,L_h=0.3409249748239689,A_h=0.33000259130956894,K_h=-1.5543064873102568,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.74, MAE_h(kcal/mol): 0.5710000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.74, MAE_h(kcal/mol): 0.5710000000000001)"""),
+)
+
+entry(
+ index = 1094,
+ label = "OO + C=C[C]=O <=> C=CC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10110168686617742,B_g=-2.3450210796242037,E_g=0.003569933403699855,L_g=0.24955080669846852,A_g=0.35607703302817345,K_g=-0.1554057251713284,S_h=0.5481057300370469,B_h=-5.159821937707359,E_h=0.04018557478251049,L_h=0.3868942815479972,A_h=1.283526672116686,K_h=-1.9455917136402177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6809999999999999, MAE_h(kcal/mol): 0.539)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6809999999999999, MAE_h(kcal/mol): 0.539)"""),
+)
+
+entry(
+ index = 1095,
+ label = "[O]O + C=C[C]=O <=> C=CC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1705504529167984,B_g=-4.639887160586982,E_g=0.5774055735988299,L_g=0.3707232895796977,A_g=0.6119247037795746,K_g=-0.9156622614434421,S_h=0.3162726420998568,B_h=-7.907417150112647,E_h=0.678411964501459,L_h=0.5204479092317912,A_h=1.8639230728791907,K_h=-2.9975565247928904,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.45, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1540000000000001, MAE_h(kcal/mol): 0.922)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.45, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1540000000000001, MAE_h(kcal/mol): 0.922)"""),
+)
+
+entry(
+ index = 1096,
+ label = "[OH] + C=C[C]=O <=> C=CC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11821830801122703,B_g=-2.7719616572387564,E_g=0.4427890293985339,L_g=0.172522346316378,A_g=0.8022307429858413,K_g=0.42243967595157134,S_h=0.782445834861435,B_h=-5.839993212305097,E_h=0.49885237779996416,L_h=0.33709114490582714,A_h=1.992286735778961,K_h=-1.322847252768526,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8290000000000001, MAE_h(kcal/mol): 0.647)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8290000000000001, MAE_h(kcal/mol): 0.647)"""),
+)
+
+entry(
+ index = 1097,
+ label = "CC(C)OO + C=C[CH]C <=> C=CCC + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8446960904347802,B_g=-1.532447059363988,E_g=2.6116591856327838,L_g=-0.5661533194413777,A_g=-3.0576442950395584,K_g=1.6965540390531637,S_h=-0.24747628687660597,B_h=-4.400203151345146,E_h=2.614693995548866,L_h=-0.36316558662443166,A_h=-2.1216839933602953,K_h=-0.3073954565723813,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.6669999999999998, MAE_g(kcal/mol): 1.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.905, MAE_h(kcal/mol): 1.354)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.6669999999999998, MAE_g(kcal/mol): 1.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.905, MAE_h(kcal/mol): 1.354)"""),
+)
+
+entry(
+ index = 1098,
+ label = "COO + C=C[CH]C <=> C=CCC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26137483663721156,B_g=-2.7661486034623004,E_g=0.11909063260063212,L_g=0.312468134016653,A_g=0.7710029887768857,K_g=-0.9329548135981196,S_h=0.38855096522199345,B_h=-5.704540995809068,E_h=0.061465896488754175,L_h=0.5179115705096554,A_h=1.7397451019168177,K_h=-3.011887571618831,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.423, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8420000000000001, MAE_h(kcal/mol): 0.6629999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.423, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8420000000000001, MAE_h(kcal/mol): 0.6629999999999999)"""),
+)
+
+entry(
+ index = 1099,
+ label = "COO + [CH2]CC=C <=> C=CCC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39149780963326103,B_g=-2.667407324308631,E_g=0.04420999662774913,L_g=0.3424643711582132,A_g=0.4854229773983663,K_g=-0.6046895410086264,S_h=0.24539443659600893,B_h=-5.502594188132421,E_h=0.08592763728576941,L_h=0.5056770348817805,A_h=1.435472420765332,K_h=-2.503432292876676,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.353, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.787, MAE_h(kcal/mol): 0.621)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.353, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.787, MAE_h(kcal/mol): 0.621)"""),
+)
+
+entry(
+ index = 1100,
+ label = "CO + C=C[CH]C <=> C=CCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07588490881950903,B_g=-2.265800812080499,E_g=0.1132775788241763,L_g=0.18070313826407622,A_g=0.40912756288972546,K_g=-0.2814602935697323,S_h=0.687890247645163,B_h=-4.776248353966087,E_h=0.2927565304795916,L_h=0.3598375583589702,A_h=0.8620179644243958,K_h=-2.129534914664941,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.465)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.278, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.617, MAE_h(kcal/mol): 0.465)"""),
+)
+
+entry(
+ index = 1101,
+ label = "CO + [CH2]CC=C <=> C=CCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04849831498742965,B_g=-2.1934418539122826,E_g=-0.02407322648408691,L_g=0.25659537754231976,A_g=0.12035147150296553,K_g=-0.5464417159043162,S_h=0.5243330523610744,B_h=-4.612691158682,E_h=0.13243939795615048,L_h=0.4247047877005308,A_h=0.4601988688929634,K_h=-2.446701872730406,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.618, MAE_h(kcal/mol): 0.47)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.26, MAE_g(kcal/mol): 0.205, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.618, MAE_h(kcal/mol): 0.47)"""),
+)
+
+entry(
+ index = 1102,
+ label = "C=CC + C=C[CH]C <=> C=CCC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.005050686068068173,B_g=-0.007220501853479173,E_g=-0.2855653504610504,L_g=0.06947808788555898,A_g=0.43008534441165136,K_g=-0.17475813623039946,S_h=0.06307859741034344,B_h=0.06072552015657001,E_h=-0.11983100893281629,L_h=0.1549365758123206,A_h=0.25057707092129805,K_h=-1.43207841837126,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.221, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.147, MAE_g(kcal/mol): 0.10800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.221, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 1103,
+ label = "C + C=C[CH]C <=> C=CCC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.012974911960059022,B_g=-0.07021113375900864,E_g=-0.18743249938234416,L_g=0.07691117304233856,A_g=0.28058796898032723,K_g=0.2785720928283406,S_h=0.04962720563254213,B_h=0.011003018560479428,E_h=-0.0040537436801766314,L_h=0.17547652118638016,A_h=0.10680478376161578,K_h=-0.9659931911144959,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.052000000000000005, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.192)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.052000000000000005, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.192)"""),
+)
+
+entry(
+ index = 1104,
+ label = "C + [CH2]CC=C <=> C=CCC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03040674283069199,B_g=-0.09694531676371783,E_g=-0.1924758549916778,L_g=0.09443829987651998,A_g=0.31463061934332953,K_g=0.3366073346293504,S_h=0.009998745713853393,B_h=-0.005571148638217433,E_h=-0.004163700561194081,L_h=0.18323214652747755,A_h=0.25502665937313745,K_h=-0.8801755107097439,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 1105,
+ label = "[H][H] + C=C[CH]C <=> C=CCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.043946100113307254,B_g=0.031154449621610646,E_g=-0.07410360734702635,L_g=0.08180791947698231,A_g=0.11399596378015696,K_g=1.078706324616116,S_h=0.05019165095509837,B_h=0.11597518763847105,E_h=0.13507103264183473,L_h=0.11592387442732958,A_h=0.07815002056846848,K_h=-0.04504566892348174,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 1106,
+ label = "[H][H] + [CH2]CC=C <=> C=CCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12013155774093064,B_g=-0.009698196905739032,E_g=-0.09064112225205073,L_g=0.10733990724923403,A_g=0.11544739460958732,K_g=1.0669116165123107,S_h=-0.004669502213874349,B_h=0.05528631977557352,E_h=0.09998012667979944,L_h=0.12315903719827774,A_h=0.14759878661908948,K_h=-0.0031594277145680443,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.102)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.102)"""),
+)
+
+entry(
+ index = 1107,
+ label = "O + C=C[CH]C <=> C=CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17267628594980242,B_g=-2.956161424319187,E_g=0.10083045989300105,L_g=0.19435245242770896,A_g=0.37892607290359936,K_g=-0.20678491044141523,S_h=1.2159545035020962,B_h=-6.651819525774394,E_h=0.3032830692223288,L_h=0.27396123428434227,A_h=0.6861675898425563,K_h=-2.087113549968409,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.675)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.675)"""),
+)
+
+entry(
+ index = 1108,
+ label = "O + C=[C]CC <=> C=CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24647201402997995,B_g=-2.2944115925212394,E_g=-0.20364014364431615,L_g=0.28807236734824826,A_g=-0.6005331709061666,K_g=-0.42974081285112997,S_h=0.5165407747263044,B_h=-5.120574661642863,E_h=-0.06917020861871012,L_h=0.2712929473049855,A_h=-0.49882305596502613,K_h=-2.052719037586151,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.72, MAE_h(kcal/mol): 0.585)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.72, MAE_h(kcal/mol): 0.585)"""),
+)
+
+entry(
+ index = 1109,
+ label = "O + [CH2]CC=C <=> C=CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1206886726047524,B_g=-3.4918933400124037,E_g=0.4451860894047144,L_g=0.21127115118692713,A_g=-0.4768096883853328,K_g=-0.04261928708236336,S_h=0.9755081265518725,B_h=-8.327628366608932,E_h=0.4291763675285737,L_h=0.41606217685255925,A_h=0.29648773397545036,K_h=-2.2762027330247494,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.429, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.171, MAE_h(kcal/mol): 0.932)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.429, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.171, MAE_h(kcal/mol): 0.932)"""),
+)
+
+entry(
+ index = 1110,
+ label = "O + [CH]=CCC <=> C=CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.40827722967652386,B_g=-1.96841876213944,E_g=-0.19507083738368963,L_g=0.31638992943960875,A_g=-0.699919530428472,K_g=-0.2902055308399868,S_h=0.09631489731255112,B_h=-4.43894462575696,E_h=-0.012667032693210163,L_h=0.3334698982909859,A_h=-0.5680005950424708,K_h=-1.8591802660779715,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6509999999999999, MAE_h(kcal/mol): 0.534)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28300000000000003, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6509999999999999, MAE_h(kcal/mol): 0.534)"""),
+)
+
+entry(
+ index = 1111,
+ label = "OO + [CH2]CC=C <=> C=CCC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38956256852735405,B_g=-4.460261599756876,E_g=2.291032251044636,L_g=-0.16137271858120864,A_g=-1.9318324425955673,K_g=0.6487382675442165,S_h=0.7349078099682244,B_h=-10.054112668675046,E_h=2.1406332291889694,L_h=0.15594817911768113,A_h=-0.3414381069353837,K_h=-2.1332587877020655,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.187, MAE_g(kcal/mol): 0.887, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.8869999999999998, MAE_h(kcal/mol): 1.5019999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.187, MAE_g(kcal/mol): 0.887, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.8869999999999998, MAE_h(kcal/mol): 1.5019999999999998)"""),
+)
+
+entry(
+ index = 1112,
+ label = "[O]O + C=C[CH]C <=> C=CCC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6404841710091733,B_g=-4.96931797611526,E_g=0.26251105774105854,L_g=0.5583976941002802,A_g=0.8790246286884279,K_g=-1.9176993181554578,S_h=-0.19194806196279407,B_h=-8.211939066861106,E_h=0.30552618959508465,L_h=0.7562541058030785,A_h=2.0843426365667694,K_h=-4.284345251046427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.172, MAE_h(kcal/mol): 0.932)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.172, MAE_h(kcal/mol): 0.932)"""),
+)
+
+entry(
+ index = 1113,
+ label = "C + C=[C]CO <=> C=CCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05810854638835473,B_g=-0.31865504118856813,E_g=-0.1287521772126987,L_g=0.09163073418120778,A_g=0.49924089211289246,K_g=0.44723861785037344,S_h=0.08460815471356002,B_h=-0.5287239971430379,E_h=-0.006524108273701994,L_h=0.14872767726420197,A_h=0.7998703352733335,K_h=-0.6387761741240356,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.111)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.111)"""),
+)
+
+entry(
+ index = 1114,
+ label = "[H][H] + C=[C]CO <=> C=CCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23582818794749083,B_g=0.07175786055198742,E_g=-0.09276695528505476,L_g=0.12126777884477762,A_g=0.12841497611091182,K_g=1.0941589316284348,S_h=-0.154056920764181,B_h=0.08964417986415919,E_h=0.05830646877418613,L_h=0.1455975713845719,A_h=0.29993304958066375,K_h=0.018003606651923704,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.124, MAE_h(kcal/mol): 0.08199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.039, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.124, MAE_h(kcal/mol): 0.08199999999999999)"""),
+)
+
+entry(
+ index = 1115,
+ label = "O + C=[C]CO <=> C=CCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.48088542344171287,B_g=-2.851753700563752,E_g=0.10256777861307675,L_g=0.3815723685067527,A_g=-0.1102794212017672,K_g=-0.46052140907728134,S_h=0.3717422233437927,B_h=-7.291145484303517,E_h=0.13013030345478405,L_h=0.5897867184013947,A_h=0.6560100826088372,K_h=-2.7083186145058566,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9740000000000001, MAE_h(kcal/mol): 0.728)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9740000000000001, MAE_h(kcal/mol): 0.728)"""),
+)
+
+entry(
+ index = 1116,
+ label = "[O]O + C=[C]CO <=> C=CCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9401679849928644,B_g=-4.33723451081582,E_g=0.2628189370079074,L_g=0.5758954990995236,A_g=0.5296916176959914,K_g=-1.6866359283853896,S_h=-0.5316855024717745,B_h=-7.474406952665932,E_h=0.2943692314011808,L_h=0.7224167082846421,A_h=1.8342860282156206,K_h=-3.809177585417621,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.40399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.888)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.40399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.888)"""),
+)
+
+entry(
+ index = 1117,
+ label = "COO + C=C[O] <=> C=CO + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7298131411477492,B_g=-2.775355659632828,E_g=-0.32651329295194853,L_g=0.5633310928285965,A_g=0.08929964830363785,K_g=-1.7088765401858526,S_h=-0.3568760530302335,B_h=-5.151912372732836,E_h=-0.21356558477082457,L_h=0.7718459915313528,A_h=0.9746138105862638,K_h=-3.9995495987524983,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.754, MAE_h(kcal/mol): 0.569)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.301, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.754, MAE_h(kcal/mol): 0.569)"""),
+)
+
+entry(
+ index = 1118,
+ label = "C + C=C[O] <=> C=CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5570782115280708,B_g=-0.07787879359529212,E_g=-0.3853915375074254,L_g=0.27115366858903006,A_g=-0.3934843639503097,K_g=-0.2532526883593893,S_h=-0.5941043585960133,B_h=0.23627534593029512,E_h=-0.16136538812247417,L_h=0.3339756999436661,A_h=-0.46659835936817895,K_h=-1.552239297947129,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.449, MAE_h(kcal/mol): 0.29)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.449, MAE_h(kcal/mol): 0.29)"""),
+)
+
+entry(
+ index = 1119,
+ label = "[H][H] + C=C[O] <=> C=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7851434436757296,B_g=-0.0008210113782636216,E_g=-0.4136064731765029,L_g=0.3628283855226448,A_g=-0.5395584151526238,K_g=0.18484484744906682,S_h=-0.8644076939718417,B_h=0.4327243095560701,E_h=-0.15047965690174667,L_h=0.3658045517688504,A_h=-0.4963966741239077,K_h=-1.0791241607639823,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39899999999999997, MAE_h(kcal/mol): 0.295)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39899999999999997, MAE_h(kcal/mol): 0.295)"""),
+)
+
+entry(
+ index = 1120,
+ label = "[H][H] + [CH]=CO <=> C=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12224272985646567,B_g=0.5156537892194304,E_g=-0.10096973860895647,L_g=0.06654590439176034,A_g=-0.013685966457305193,K_g=1.4171682653052937,S_h=0.0687963552232508,B_h=0.580608984065805,E_h=0.06216962052726585,L_h=0.05284527701698615,A_h=0.13367091502354592,K_h=0.4481842470271235,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.132, MAE_h(kcal/mol): 0.107)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.132, MAE_h(kcal/mol): 0.107)"""),
+)
+
+entry(
+ index = 1121,
+ label = "O + C=C[O] <=> C=CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7929797040629066,B_g=-2.5634540889947344,E_g=-0.06738890714622744,L_g=0.46901741075056286,A_g=-0.05321179995371098,K_g=-1.4677191087383825,S_h=-0.5563671570308246,B_h=-5.126695594686168,E_h=0.3337851080165692,L_h=0.5619529665865111,A_h=0.35958832276199726,K_h=-3.3034712287009027,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.579)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.579)"""),
+)
+
+entry(
+ index = 1122,
+ label = "[O]O + C=C[O] <=> C=CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.4645523505650802,B_g=-5.051800297795816,E_g=-0.17977950046352967,L_g=0.8897930725694034,A_g=0.3293501804821987,K_g=-2.8896961549735063,S_h=-1.1566071095876116,B_h=-7.967768816873759,E_h=-0.11399596378015696,L_h=1.0498169867434646,A_h=1.6503648185671003,K_h=-5.297671214209568,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.606, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.214, MAE_h(kcal/mol): 0.966)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.606, MAE_g(kcal/mol): 0.48200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.214, MAE_h(kcal/mol): 0.966)"""),
+)
+
+entry(
+ index = 1123,
+ label = "[OH] + C=C[O] <=> C=CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6864754691094052,B_g=-2.808789881920867,E_g=-0.10293430154980159,L_g=0.5184613549147425,A_g=0.2282631545334903,K_g=-0.9689986791956394,S_h=-0.21599196661194298,B_h=-5.350062002785014,E_h=-0.0065680910261089725,L_h=0.7089799774243098,A_h=1.0829653211408585,K_h=-3.00243127985133,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.772, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.772, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 1124,
+ label = "CC(=O)COO + [CH]=O <=> C=O + CC(=O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5096941262682846,B_g=-0.17712587440164188,E_g=-0.3990555125885271,L_g=0.28204673026849203,A_g=0.39102866027425337,K_g=0.0008283418369981184,S_h=-0.403615057921384,B_h=-0.4040548854454538,E_h=-0.2929324614892195,L_h=0.31913885146504495,A_h=0.9061473260060655,K_h=-0.9416194158222946,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.087, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.087, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 1125,
+ label = "CC(=O)OO + [CH]=O <=> C=O + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.319094868712638,B_g=-0.2882996115690177,E_g=-0.1456342236782444,L_g=0.021778792900189466,A_g=0.9415900939873566,K_g=0.722768570303898,S_h=0.6160150997534237,B_h=-0.5791355618601711,E_h=-0.033984006693126345,L_h=-0.003394002394071936,A_h=1.1326145181496041,K_h=0.06527040457195792,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.145, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 1126,
+ label = "CO + [CH]=O <=> C=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.031198432374017624,B_g=-2.0177380885051335,E_g=-0.0944309694177855,L_g=0.2968395959947062,A_g=0.4205190957631333,K_g=0.060139083457810286,S_h=0.5781606108484831,B_h=-4.3474165179980355,E_h=0.101996002831786,L_h=0.4528610796997323,A_h=0.8071201589617506,K_h=-1.504891864981015,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.442)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.253, MAE_g(kcal/mol): 0.184, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.442)"""),
+)
+
+entry(
+ index = 1127,
+ label = "C + [CH]=O <=> C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14575884147673085,B_g=-0.2065869880555838,E_g=-0.05904684510637029,L_g=0.04505299938221624,A_g=0.26919643610691946,K_g=1.041892760851474,S_h=0.29005892166529684,B_h=-0.3390117250942653,E_h=0.1432298332133295,L_h=0.13219016235917758,A_h=0.16753030391818582,K_h=0.04092595111469464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07400000000000001, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.179)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07400000000000001, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.179)"""),
+)
+
+entry(
+ index = 1128,
+ label = "O + [CH]=O <=> C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11052132634000558,B_g=-2.264972470243501,E_g=0.11711140874231803,L_g=0.21716484000946243,A_g=0.7847402684453325,K_g=0.29542481745894833,S_h=0.6734712353144081,B_h=-4.803070502475611,E_h=0.4705421461673382,L_h=0.27048659684419085,A_h=0.92398966256583,K_h=-1.0473246307737358,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6920000000000001, MAE_h(kcal/mol): 0.491)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6920000000000001, MAE_h(kcal/mol): 0.491)"""),
+)
+
+entry(
+ index = 1129,
+ label = "O=COO + [CH]=O <=> C=O + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2999843627918053,B_g=-0.4520693901564067,E_g=-0.06409753117443846,L_g=0.041673657905613296,A_g=0.8843172198947346,K_g=0.819464651470643,S_h=0.5370953810178329,B_h=-0.801812906837975,E_h=0.05642987133815499,L_h=0.05539627665659097,A_h=1.0940782965823554,K_h=0.05994849153071337,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 1130,
+ label = "OO + [CH]=O <=> C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10584449366739675,B_g=-2.24736470836324,E_g=-0.074880635972883,L_g=0.2868701721157908,A_g=0.5389793089125987,K_g=-0.0024850255109943546,S_h=0.5728460282659731,B_h=-4.904040241084568,E_h=-0.07040905614484005,L_h=0.4393217224171171,A_h=1.407499390234493,K_h=-1.7283828908783478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.263, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.648, MAE_h(kcal/mol): 0.5)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.263, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.648, MAE_h(kcal/mol): 0.5)"""),
+)
+
+entry(
+ index = 1131,
+ label = "[O]O + [CH]=O <=> C=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3626011413018754,B_g=-4.507308483914876,E_g=0.3784129407921846,L_g=0.4612617854094654,A_g=0.6643081618962874,K_g=-1.0161775116108598,S_h=0.1315157601556039,B_h=-7.622643489194922,E_h=0.4815085124341451,L_h=0.6107518303820552,A_h=1.8526781491804727,K_h=-3.005847273621605,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5589999999999999, MAE_g(kcal/mol): 0.433, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.139, MAE_h(kcal/mol): 0.899)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5589999999999999, MAE_g(kcal/mol): 0.433, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.139, MAE_h(kcal/mol): 0.899)"""),
+)
+
+entry(
+ index = 1132,
+ label = "C=CC + [C]=O <=> C=[C]C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03369811880248097,B_g=-0.007447746074248567,E_g=-0.16262622702480756,L_g=0.09170403876855274,A_g=0.16105750885562528,K_g=0.4605727222884227,S_h=0.04000231331414807,B_h=0.1460300684499072,E_h=0.01774704059621632,L_h=0.13503438034816226,A_h=0.10469361164608076,K_h=-0.6048288197245818,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.132)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.132)"""),
+)
+
+entry(
+ index = 1133,
+ label = "C=CC=C + [O]O <=> C=[C]C=C + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0631812238326264,B_g=-1.549189827113578,E_g=0.05688435977969379,L_g=0.15205570552966347,A_g=0.6799513608357033,K_g=-0.24867115165032894,S_h=0.13068741831860578,B_h=-2.0190868929122803,E_h=0.1571503743501386,L_h=0.14314186770851553,A_h=0.8322196496686669,K_h=-1.256645879937287,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.384, MAE_h(kcal/mol): 0.313)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.23, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.384, MAE_h(kcal/mol): 0.313)"""),
+)
+
+entry(
+ index = 1134,
+ label = "C=CC=C + [C]=O <=> C=[C]C=C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2644902815993726,B_g=-0.09610964446798521,E_g=-0.20418259759066892,L_g=0.1584332046286755,A_g=0.18614233864507276,K_g=0.2009718566649594,S_h=-0.19412520820693954,B_h=0.031198432374017624,E_h=-0.05640787996195151,L_h=0.18781368323653794,A_h=0.2361140758381362,K_h=-0.8376661805083981,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.05, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.174, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 1135,
+ label = "C=CC=C + [O][O] <=> C=[C]C=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.1973058164815367,B_g=0.45552936667908905,E_g=0.1591149372909837,L_g=-0.2921774242395664,A_g=0.3594343831285729,K_g=2.232799086857795,S_h=1.411487159786059,B_h=0.5823756246208187,E_h=0.403644379756322,L_h=-0.11261050707933712,A_h=-0.44646158922451673,K_h=1.212186647712565,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.33)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27699999999999997, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.488, MAE_h(kcal/mol): 0.33)"""),
+)
+
+entry(
+ index = 1136,
+ label = "C=CCO + [O]O <=> C=[C]CO + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05680372473361433,B_g=-4.016431645218044,E_g=0.19048930067462921,L_g=0.39798526561329056,A_g=0.46258859844040934,K_g=-1.2900581108491223,S_h=0.29893610719277225,B_h=-6.5709865573091,E_h=0.4120817377597276,L_h=0.5272579053961385,A_h=0.7333830745514491,K_h=-3.103225087450659,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.409, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.996, MAE_h(kcal/mol): 0.757)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.409, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.996, MAE_h(kcal/mol): 0.757)"""),
+)
+
+entry(
+ index = 1137,
+ label = "CC(=O)OO + [O][O] <=> CC(=O)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1308633493282337,B_g=0.02121434757763322,E_g=-0.24727103403204007,L_g=0.07044570843851254,A_g=0.278828658884048,K_g=0.6006651191633877,S_h=0.2109925937550163,B_h=0.06738157668749295,E_h=-0.057522109689594994,L_h=0.13909545448707342,A_h=0.3198059232098841,K_h=-0.4556539844775755,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.254, MAE_h(kcal/mol): 0.158)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.254, MAE_h(kcal/mol): 0.158)"""),
+)
+
+entry(
+ index = 1138,
+ label = "COO + CC(C)(C)[O] <=> CC(C)(C)O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8779983644655984,B_g=-2.6597689863072858,E_g=-0.26472485627887654,L_g=0.5605748403444256,A_g=0.2963851075531674,K_g=-1.8109018648525765,S_h=-0.5390965962523505,B_h=-5.030182774987786,E_h=-0.13057013097885384,L_h=0.7530653562535724,A_h=1.482812523272711,K_h=-3.987065827527651,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27899999999999997, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7240000000000001, MAE_h(kcal/mol): 0.545)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27899999999999997, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7240000000000001, MAE_h(kcal/mol): 0.545)"""),
+)
+
+entry(
+ index = 1139,
+ label = "COO + [CH2]C(C)(C)O <=> CC(C)(C)O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5649731155851236,B_g=-4.179563673895532,E_g=0.1314791078619314,L_g=0.5021144319368152,A_g=0.5212102769401789,K_g=-1.40491906875995,S_h=0.28698745945554277,B_h=-8.900657656343268,E_h=-0.0014221089944923446,L_h=0.8746923275763404,A_h=2.1784144135065646,K_h=-4.112944464916427,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.475, MAE_g(kcal/mol): 0.37, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.176, MAE_h(kcal/mol): 0.9129999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.475, MAE_g(kcal/mol): 0.37, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.176, MAE_h(kcal/mol): 0.9129999999999999)"""),
+)
+
+entry(
+ index = 1140,
+ label = "CC + CC(C)(C)[O] <=> CC(C)(C)O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04170297974055128,B_g=-0.1080802835814182,E_g=-0.02663155658242623,L_g=0.006941944421568302,A_g=0.4570687630133334,K_g=0.5117686460901472,S_h=0.2028484541009905,B_h=-0.15292069966033403,E_h=0.2575043544253974,L_h=0.019235123719319135,A_h=0.7216323492000509,K_h=-0.3479402238328822,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17800000000000002, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 1141,
+ label = "CC + [CH2]C(C)(C)O <=> CC(C)(C)O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05069012214904414,B_g=0.23064555362220174,E_g=-0.21423998697439825,L_g=0.09179933473210121,A_g=-0.45594720282695533,K_g=0.2040286579572445,S_h=0.016676793620979815,B_h=0.563103848607827,E_h=0.13878757522022456,L_h=0.07522516753340434,A_h=-0.8744211006031641,K_h=-0.7053733917269375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.19899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27899999999999997, MAE_h(kcal/mol): 0.19899999999999998)"""),
+)
+
+entry(
+ index = 1142,
+ label = "CO + CC(C)(C)[O] <=> CC(C)(C)O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6614712743660373,B_g=-2.245510102303412,E_g=-0.38984112595926484,L_g=0.512296439119031,A_g=-0.8025752745463628,K_g=-1.4008799859972425,S_h=-0.15657126811011335,B_h=-4.3828739468967965,E_h=-0.09654214153332052,L_h=0.6051660208263686,A_h=-0.8748535976684992,K_h=-3.3677960040961104,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.573)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.285, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7040000000000001, MAE_h(kcal/mol): 0.573)"""),
+)
+
+entry(
+ index = 1143,
+ label = "CO + [CH2]C(C)(C)O <=> CC(C)(C)O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.428663235417159,B_g=-3.6188862071288237,E_g=-0.036403058075510225,L_g=0.4929293671424908,A_g=-0.20397734474610302,K_g=-1.2412812384297822,S_h=0.42837734752651363,B_h=-7.927253371448196,E_h=0.03460709568555855,L_h=0.7901941297437979,A_h=0.7614294096696332,K_h=-3.718690402798995,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.028, MAE_h(kcal/mol): 0.7809999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.396, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.028, MAE_h(kcal/mol): 0.7809999999999999)"""),
+)
+
+entry(
+ index = 1144,
+ label = "CO + CC(C)(C)[O] <=> CC(C)(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12814374913773544,B_g=1.588063249782614,E_g=-0.2610303050766902,L_g=0.014814857102417672,A_g=-0.26473951719634553,K_g=0.5734324649647328,S_h=-0.061949706765230955,B_h=2.478112888407724,E_h=0.26990749060416563,L_h=-0.012139239664326404,A_h=-0.6605842888591631,K_h=-0.29146636974232015,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.509)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.677, MAE_h(kcal/mol): 0.509)"""),
+)
+
+entry(
+ index = 1145,
+ label = "CO + [CH2]C(C)(C)O <=> CC(C)(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3445828737324827,B_g=-1.5524225594154912,E_g=-0.19818628234585067,L_g=0.3381540614223292,A_g=-0.9121656326270873,K_g=-0.6456521444169934,S_h=0.20366213502051966,B_h=-3.426403021678411,E_h=-0.051151941049317425,L_h=0.4713998098392743,A_h=-1.1404947612891878,K_h=-2.529338134044387,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.213, MAE_g(kcal/mol): 0.16699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.462)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.213, MAE_g(kcal/mol): 0.16699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.56, MAE_h(kcal/mol): 0.462)"""),
+)
+
+entry(
+ index = 1146,
+ label = "C + CC(C)(C)[O] <=> CC(C)(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08335464626996109,B_g=-0.06716166292545805,E_g=-0.090054685553291,L_g=0.051884986922767086,A_g=0.7186122002014383,K_g=0.6382850333888243,S_h=0.09849937401543113,B_h=-0.16093289105713884,E_h=-0.010812426633382517,L_h=0.12251395682964204,A_h=1.298326868301635,K_h=-0.40487589682371744,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22399999999999998, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.106, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22399999999999998, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 1147,
+ label = "C + [CH2]C(C)(C)O <=> CC(C)(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.032847785589279366,B_g=-1.1885899010462202,E_g=-0.055081066931007616,L_g=0.14569286734812037,A_g=0.5883866007831059,K_g=0.33174724048837917,S_h=0.45228197345970705,B_h=-2.7654595403412574,E_h=0.019931517299096313,L_h=0.35082109411553936,A_h=1.1929808458281836,K_h=-1.2749133831036525,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.14400000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42, MAE_h(kcal/mol): 0.341)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.14400000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.42, MAE_h(kcal/mol): 0.341)"""),
+)
+
+entry(
+ index = 1148,
+ label = "C=O + CC(C)(C)[O] <=> CC(C)(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7610848781091117,B_g=0.28512552293698057,E_g=-0.4683649999231927,L_g=0.32469533918579335,A_g=0.6505782126865752,K_g=-0.5953871888745501,S_h=-1.001289349921097,B_h=0.9628410938586623,E_h=-0.14281932752419768,L_h=0.3328248179223502,A_h=1.346422008058667,K_h=-1.5637481181602886,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.271)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18600000000000003, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.271)"""),
+)
+
+entry(
+ index = 1149,
+ label = "C=O + [CH2]C(C)(C)O <=> CC(C)(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6218648058235519,B_g=-1.4702994302129258,E_g=-0.17080701897250578,L_g=0.35530733486105126,A_g=0.8132044397113828,K_g=-0.4474365402362048,S_h=-0.34775696236451975,B_h=-3.286713800033844,E_h=-0.19346546692083486,L_h=0.5515803674771983,A_h=2.288928409387836,K_h=-2.211819313959666,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.155, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.442, MAE_h(kcal/mol): 0.327)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.155, MAE_g(kcal/mol): 0.11199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.442, MAE_h(kcal/mol): 0.327)"""),
+)
+
+entry(
+ index = 1150,
+ label = "[H][H] + CC(C)(C)[O] <=> CC(C)(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.39106531256792587,B_g=-0.06745488127483792,E_g=-0.17821811275308186,L_g=0.19176480049443165,A_g=0.11922258085785306,K_g=0.6936959709628844,S_h=-0.33376311664036573,B_h=0.02899196429493414,E_h=0.022922344462770937,L_h=0.2008985520776144,A_h=0.2269656633374844,K_h=-0.40601944838629894,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1151,
+ label = "[H][H] + [CH2]C(C)(C)O <=> CC(C)(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10966366266806947,B_g=-0.713752106060467,E_g=-0.17205319695737023,L_g=0.1412872616486879,A_g=0.20861019466630487,K_g=0.9427629673848761,S_h=0.5626566906250228,B_h=-1.2812615603677264,E_h=-0.009236378005465744,L_h=0.1731527657675447,A_h=0.23534437767101404,K_h=-0.2947577457141092,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.257, MAE_h(kcal/mol): 0.207)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.257, MAE_h(kcal/mol): 0.207)"""),
+)
+
+entry(
+ index = 1152,
+ label = "O + CC(C)(C)[O] <=> CC(C)(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9139542645583044,B_g=-2.0086189978394193,E_g=-0.5092103159918079,L_g=0.5267521037434583,A_g=-1.6486348303057594,K_g=-1.1151313740678295,S_h=-0.5446897362667715,B_h=-4.190324787317773,E_h=-0.19037201333487727,L_h=0.5278003593424914,A_h=-2.097185600269608,K_h=-2.9318023099444552,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35, MAE_g(kcal/mol): 0.298, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.613)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35, MAE_g(kcal/mol): 0.298, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.613)"""),
+)
+
+entry(
+ index = 1153,
+ label = "O + [CH2]C(C)(C)O <=> CC(C)(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2642996896722757,B_g=-2.543925746926035,E_g=0.3204803254134578,L_g=0.2578049032335117,A_g=-1.2181316497462418,K_g=0.09548655547555299,S_h=0.6902799771926089,B_h=-6.671127954081058,E_h=0.4423052191220572,L_h=0.42353191430301135,A_h=-1.1799326292807797,K_h=-2.0515608251061006,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.389, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.941, MAE_h(kcal/mol): 0.7340000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.389, MAE_g(kcal/mol): 0.307, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.941, MAE_h(kcal/mol): 0.7340000000000001)"""),
+)
+
+entry(
+ index = 1154,
+ label = "OO + CC(C)(C)[O] <=> CC(C)(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.11891389077483,B_g=-0.8502379172380599,E_g=-0.48492450620442057,L_g=0.48244681115216065,A_g=-0.14984923745057996,K_g=-1.0542812361127731,S_h=-0.6731486951300902,B_h=-3.077509838210044,E_h=-0.4514756229989124,L_h=0.6278537906096358,A_h=0.961404323946701,K_h=-3.0477261843717844,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.175, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.433, MAE_h(kcal/mol): 0.322)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.175, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.433, MAE_h(kcal/mol): 0.322)"""),
+)
+
+entry(
+ index = 1155,
+ label = "OO + [CH2]C(C)(C)O <=> CC(C)(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0288152224691318,B_g=-2.5352538142431253,E_g=0.06891364256300274,L_g=0.45275845327744935,A_g=0.3729297576587811,K_g=-0.6787418351445113,S_h=-0.1362512364980887,B_h=-7.138063514551023,E_h=-0.1796402217475742,L_h=0.8028098492258665,A_h=2.242042795321995,K_h=-3.289345434719528,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33799999999999997, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.966, MAE_h(kcal/mol): 0.74)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33799999999999997, MAE_g(kcal/mol): 0.275, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.966, MAE_h(kcal/mol): 0.74)"""),
+)
+
+entry(
+ index = 1156,
+ label = "[O]O + CC(C)(C)[O] <=> CC(C)(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.2711235359379178,B_g=-5.002224405374415,E_g=0.04758933810435208,L_g=0.7634086335279472,A_g=0.7253049090260337,K_g=-2.6939142630925708,S_h=-0.8965444250638748,B_h=-8.118981519648955,E_h=0.062140298692327865,L_h=0.9045419555432107,A_h=2.2786364453246026,K_h=-4.996308725175676,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.573, MAE_g(kcal/mol): 0.451, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.194, MAE_h(kcal/mol): 0.9670000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.573, MAE_g(kcal/mol): 0.451, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.194, MAE_h(kcal/mol): 0.9670000000000001)"""),
+)
+
+entry(
+ index = 1157,
+ label = "[O]O + [CH2]C(C)(C)O <=> CC(C)(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2960112541577081,B_g=-5.537604459048375,E_g=0.044188005251545634,L_g=0.6031574751331166,A_g=0.5897427356489878,K_g=-2.077430013980139,S_h=0.721485740025361,B_h=-9.35906056284628,E_h=0.09799357236275084,L_h=0.7249603774655126,A_h=1.6290405141084499,K_h=-4.357693821143799,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6559999999999999, MAE_g(kcal/mol): 0.5329999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.368, MAE_h(kcal/mol): 1.113)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6559999999999999, MAE_g(kcal/mol): 0.5329999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.368, MAE_h(kcal/mol): 1.113)"""),
+)
+
+entry(
+ index = 1158,
+ label = "[OH] + CC(C)(C)[O] <=> CC(C)(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.791865474335263,B_g=-2.881354092933649,E_g=0.0657322234722312,L_g=0.5117906374663507,A_g=-0.21239271137330512,K_g=3.0066462936236658,S_h=-0.40988260013937866,B_h=-5.4104869741334705,E_h=0.261514115353167,L_h=0.6686844457607819,A_h=0.6116608072651326,K_h=0.7568185511256347,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.26, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.789, MAE_h(kcal/mol): 0.603)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.26, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.789, MAE_h(kcal/mol): 0.603)"""),
+)
+
+entry(
+ index = 1159,
+ label = "[OH] + [CH2]C(C)(C)O <=> CC(C)(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.36120102368358653,B_g=-4.4315262015176495,E_g=0.1686665250220328,L_g=0.4972543377958438,A_g=0.5679859341250018,K_g=-0.985521533183195,S_h=0.6145856603001968,B_h=-9.343974478770686,E_h=0.006494786438764007,L_h=0.8285397593839497,A_h=1.990336833755585,K_h=-3.5620311691840674,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.391, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2429999999999999, MAE_h(kcal/mol): 0.9670000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.391, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2429999999999999, MAE_h(kcal/mol): 0.9670000000000001)"""),
+)
+
+entry(
+ index = 1160,
+ label = "CC(C)(C)OO + [CH2]C(=C)C <=> CC(C)(C)O[O] + C=C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5679492818313293,B_g=-2.512294817486682,E_g=0.4160695073112937,L_g=0.25249765110973615,A_g=0.26243042269497907,K_g=-0.9392883299447247,S_h=-0.08526056554093021,B_h=-5.174600142516103,E_h=0.45548538392668214,L_h=0.4798591592188834,A_h=1.1143176931483005,K_h=-2.9940598959765348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.359, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.835, MAE_h(kcal/mol): 0.636)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.359, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.835, MAE_h(kcal/mol): 0.636)"""),
+)
+
+entry(
+ index = 1161,
+ label = "CC(C)(C)OO + C=C[C]=O <=> CC(C)(C)O[O] + C=CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21642446367727827,B_g=-2.833706111159421,E_g=-0.09890987970456291,L_g=0.36595116094354035,A_g=0.5713652756016047,K_g=-0.9742692790257426,S_h=0.2674004737169678,B_h=-5.5174310366110415,E_h=0.04748671168206911,L_h=0.5526506144524349,A_h=1.400520793519252,K_h=-2.842297408796252,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.528)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.528)"""),
+)
+
+entry(
+ index = 1162,
+ label = "CC(C)(C)OO + [CH2]C=C <=> CC(C)(C)O[O] + C=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.28029475063094733,B_g=-2.71031249928164,E_g=0.22187099451700926,L_g=0.2740491997891562,A_g=0.47480114269208074,K_g=-0.8003981283022171,S_h=0.21833771340698188,B_h=-5.411014767162354,E_h=0.2533040015705308,L_h=0.505655043505577,A_h=1.3155974290801087,K_h=-2.7829206930468287,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.581)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.581)"""),
+)
+
+entry(
+ index = 1163,
+ label = "CC(C)(C)OO + [CH]=O <=> CC(C)(C)O[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1933481795810829,B_g=-2.7249367644569604,E_g=-0.14504778697948467,L_g=0.38605127879353013,A_g=0.6397877774293961,K_g=-0.5450196069098239,S_h=0.32651329295194853,B_h=-5.36599842007381,E_h=-0.055498903078873923,L_h=0.583871038202656,A_h=1.4520685793402326,K_h=-2.3182062615734154,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.716, MAE_h(kcal/mol): 0.535)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.716, MAE_h(kcal/mol): 0.535)"""),
+)
+
+entry(
+ index = 1164,
+ label = "CC(C)(C)OO + [CH2]C=CC <=> CC(C)(C)O[O] + CC=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.43294422331810506,B_g=-2.6561843919861166,E_g=0.31394888668102133,L_g=0.2565074120375058,A_g=0.5456060436085836,K_g=-1.1001772382494563,S_h=0.07960878185663332,B_h=-5.388319666920352,E_h=0.2945598233282778,L_h=0.48166978252630405,A_h=1.4776812021585632,K_h=-3.178743473333443,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8009999999999999, MAE_h(kcal/mol): 0.624)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.32799999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8009999999999999, MAE_h(kcal/mol): 0.624)"""),
+)
+
+entry(
+ index = 1165,
+ label = "CC(C)(C)OO + C[C]=O <=> CC(C)(C)O[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34994876952613424,B_g=-2.8401422539283097,E_g=-0.24861250798045295,L_g=0.4289857756014768,A_g=0.7559388960774951,K_g=-1.094400836766673,S_h=0.1939785990322496,B_h=-5.521059613684617,E_h=-0.16248694830885213,L_h=0.5958783296097615,A_h=1.6369647400004406,K_h=-2.859179455261797,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.546)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.546)"""),
+)
+
+entry(
+ index = 1166,
+ label = "CC(C)(C)OO + CC[C]=O <=> CC(C)(C)O[O] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3337411252641622,B_g=-2.8548324932322404,E_g=-0.24581227274387524,L_g=0.4174036508009722,A_g=0.8050969523510295,K_g=-1.1699338835669264,S_h=0.22772803104587205,B_h=-5.551957497250521,E_h=-0.15768549783775684,L_h=0.5798466163574173,A_h=1.7151074301101747,K_h=-2.862815362794107,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.309, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.5479999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.309, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.5479999999999999)"""),
+)
+
+entry(
+ index = 1167,
+ label = "CC(C)(C)OO + C[CH]CC <=> CC(C)(C)O[O] + CCCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4056382645321051,B_g=-2.378367336407429,E_g=0.6106638648772411,L_g=0.1484344589148221,A_g=-0.1690183870412886,K_g=-0.7265217651759602,S_h=0.0917920042733667,B_h=-5.027653766724384,E_h=0.7485278022969191,L_h=0.3283312467181037,A_h=0.6273919717093625,K_h=-2.6646510718244603,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.503, MAE_g(kcal/mol): 0.395, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.846, MAE_h(kcal/mol): 0.662)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.503, MAE_g(kcal/mol): 0.395, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.846, MAE_h(kcal/mol): 0.662)"""),
+)
+
+entry(
+ index = 1168,
+ label = "CC(C)(C)OO + [CH2]CCC <=> CC(C)(C)O[O] + CCCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.418862412089137,B_g=-2.457411672941506,E_g=0.7912717071777688,L_g=0.11471434873613766,A_g=-0.21513430294000688,K_g=-0.3554539440357412,S_h=0.11161356469144555,B_h=-5.172811510584887,E_h=0.8600973842359577,L_h=0.32552368102279144,A_h=0.5754336801992503,K_h=-2.190509670418484,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.518, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.862, MAE_h(kcal/mol): 0.684)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.518, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.862, MAE_h(kcal/mol): 0.684)"""),
+)
+
+entry(
+ index = 1169,
+ label = "CC(C)(C)OO + C[CH]C <=> CC(C)(C)O[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17280823420702338,B_g=-2.723749230141972,E_g=0.12095989957792876,L_g=0.26637420949413826,A_g=0.5429084347942887,K_g=-0.829756615533876,S_h=0.37977640611680097,B_h=-5.459791639581694,E_h=0.1933408491223484,L_h=0.45049334152848997,A_h=1.3779136587820644,K_h=-2.690542252074702,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33899999999999997, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.561)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33899999999999997, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.561)"""),
+)
+
+entry(
+ index = 1170,
+ label = "CC(C)(C)OO + [CH2]CC <=> CC(C)(C)O[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34439228180538584,B_g=-2.725559853449393,E_g=0.05180435187668764,L_g=0.3388064722496994,A_g=0.4290590801888218,K_g=-1.0660319614641713,S_h=0.16655535290649776,B_h=-5.368776663934185,E_h=0.14686574074563982,L_h=0.5124723701286589,A_h=1.2876683813016765,K_h=-2.9371388839031685,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.703, MAE_h(kcal/mol): 0.536)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.305, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.703, MAE_h(kcal/mol): 0.536)"""),
+)
+
+entry(
+ index = 1171,
+ label = "CC(C)(C)OO + C[CH2] <=> CC(C)(C)O[O] + CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25631682011040885,B_g=-2.7574253575682492,E_g=0.04872555920819905,L_g=0.32061227367067874,A_g=0.5425052595638915,K_g=-0.6947295656444483,S_h=0.26538459756498123,B_h=-5.456009122874694,E_h=0.10465695935240828,L_h=0.5137625308659303,A_h=1.421991707152593,K_h=-2.607847347090846,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.72, MAE_h(kcal/mol): 0.5539999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.72, MAE_h(kcal/mol): 0.5539999999999999)"""),
+)
+
+entry(
+ index = 1172,
+ label = "CC(C)(C)OO + [CH2]O <=> CC(C)(C)O[O] + CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34799153704402364,B_g=-5.313197125809231,E_g=-0.05062414802043367,L_g=0.6280003997843256,A_g=0.6059723712871633,K_g=-2.1256131192419856,S_h=0.6747687265104141,B_h=-9.638981460081768,E_h=0.0854878097616996,L_h=0.7966962466412963,A_h=1.99513828422668,K_h=-4.61988233870054,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3719999999999999, MAE_h(kcal/mol): 1.109)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3719999999999999, MAE_h(kcal/mol): 1.109)"""),
+)
+
+entry(
+ index = 1173,
+ label = "CC(C)(C)OO + [CH3] <=> CC(C)(C)O[O] + C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3724752692172424,B_g=-2.7450662041418883,E_g=0.02050329308038705,L_g=0.3731863237144885,A_g=0.3456824425426572,K_g=-0.5426372078211125,S_h=0.123708821603365,B_h=-5.401624449523464,E_h=0.09731917015917715,L_h=0.5681985174283022,A_h=1.1754757103702058,K_h=-2.528275217527885,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.528)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.528)"""),
+)
+
+entry(
+ index = 1174,
+ label = "CC(C)(C)OO + [O]O <=> CC(C)(C)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6118147468985571,B_g=-3.669510355149257,E_g=-0.115000236626783,L_g=0.5419408142413352,A_g=0.6286748019878994,K_g=-1.625367954282467,S_h=-0.11403994653256395,B_h=-6.519138222680005,E_h=-0.02163218372549953,L_h=0.7059524979669627,A_h=1.6454900635086602,K_h=-3.7372291329385363,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.32299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.89, MAE_h(kcal/mol): 0.687)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.32299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.89, MAE_h(kcal/mol): 0.687)"""),
+)
+
+entry(
+ index = 1175,
+ label = "CC(C)(C)OO + [O][O] <=> CC(C)(C)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20103783079356985,B_g=-2.4888446799950277,E_g=-0.22645253122606962,L_g=0.4181660185093598,A_g=0.21315507908169282,K_g=-0.5110502611341665,S_h=0.12972712822438673,B_h=-4.707789199844624,E_h=0.021192356201429736,L_h=0.6931755083927351,A_h=0.7455516360507135,K_h=-2.63683931138578,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.5760000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.5760000000000001)"""),
+)
+
+entry(
+ index = 1176,
+ label = "CC(C)(CO)OO + [O]O <=> CC(C)(CO)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1877029155393461,B_g=-2.789342174898248,E_g=0.3068896549197011,L_g=0.49207903392928926,A_g=0.33666597829922634,K_g=-1.0685169869751656,S_h=-1.2898528580045565,B_h=-5.374904927436224,E_h=0.3570519840398615,L_h=0.7602272144371757,A_h=1.4542090732907056,K_h=-3.2073395928567137,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.258, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.81, MAE_h(kcal/mol): 0.561)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.258, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.81, MAE_h(kcal/mol): 0.561)"""),
+)
+
+entry(
+ index = 1177,
+ label = "CC(C)(CO)OO + [O][O] <=> CC(C)(CO)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9442437200492445,B_g=-1.4032843764621574,E_g=-0.2760577454824083,L_g=0.4411323457245377,A_g=0.6497791926845151,K_g=-0.5421387366271666,S_h=-0.9788288243585993,B_h=-3.4679007485743965,E_h=-0.3478302669518647,L_h=0.8272935813990854,A_h=1.729343180972567,K_h=-2.538875060857967,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23199999999999998, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.637, MAE_h(kcal/mol): 0.45799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23199999999999998, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.637, MAE_h(kcal/mol): 0.45799999999999996)"""),
+)
+
+entry(
+ index = 1178,
+ label = "CC(C)(O)COO + [O]O <=> CC(C)(O)CO[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24309267255337697,B_g=-6.785820311440991,E_g=0.42546715540891844,L_g=0.558954808964102,A_g=0.07392767633739843,K_g=-1.6295316548436611,S_h=1.0871143607845835,B_h=-11.837796540246435,E_h=0.6772244301864704,L_h=0.837886094270433,A_h=0.911454578129841,K_h=-4.5638116598403755,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.773, MAE_g(kcal/mol): 0.604, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.67, MAE_h(kcal/mol): 1.294)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.773, MAE_g(kcal/mol): 0.604, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.67, MAE_h(kcal/mol): 1.294)"""),
+)
+
+entry(
+ index = 1179,
+ label = "CC(C)(O)COO + [O][O] <=> CC(C)(O)CO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23663453840828544,B_g=-4.475736198145399,E_g=-0.06449337594610127,L_g=0.5472847186587833,A_g=0.44781772409039866,K_g=-0.966689584694273,S_h=0.48310655243826534,B_h=-9.1235109323307,E_h=-0.05343171371574588,L_h=1.030765124492508,A_h=1.5838409055515434,K_h=-3.843916629360401,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.36700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.208, MAE_h(kcal/mol): 0.9009999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.495, MAE_g(kcal/mol): 0.36700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.208, MAE_h(kcal/mol): 0.9009999999999999)"""),
+)
+
+entry(
+ index = 1180,
+ label = "COO + [CH2]C(C)=O <=> CC(C)=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7536884452460046,B_g=-2.7875095602146236,E_g=-0.4486827182210693,L_g=0.5565870707928595,A_g=-0.17008863401652513,K_g=-1.8124339307280863,S_h=-0.36717534755220127,B_h=-5.227870586139691,E_h=-0.31937342614454883,L_h=0.763833800134548,A_h=0.5658087878808563,K_h=-4.0991778634130425,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.768, MAE_h(kcal/mol): 0.596)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.768, MAE_h(kcal/mol): 0.596)"""),
+)
+
+entry(
+ index = 1181,
+ label = "CO + [CH2]C(C)=O <=> CC(C)=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.44949639914059836,B_g=-2.1464975961765664,E_g=-0.49230627815005856,L_g=0.48274002950154055,A_g=-0.8067389751075568,K_g=-1.3561788486342818,S_h=0.038690161200673166,B_h=-4.2557051487707485,E_h=-0.18352536487685742,L_h=0.6373833869644814,A_h=-1.241251916594844,K_h=-3.3689688774936304,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.5870000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.295, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.715, MAE_h(kcal/mol): 0.5870000000000001)"""),
+)
+
+entry(
+ index = 1182,
+ label = "C + [CH2]C(C)=O <=> CC(C)=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.033522187792853056,B_g=-0.09229047546731248,E_g=0.02407322648408691,L_g=0.014961466277107607,A_g=0.4333180767135643,K_g=0.6861969116774943,S_h=0.10489886449064667,B_h=-0.09985550888131299,E_h=0.1981569605109127,L_h=0.12053473297132795,A_h=0.6128849938737936,K_h=-0.49802403596296596,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.20800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.20800000000000002)"""),
+)
+
+entry(
+ index = 1183,
+ label = "[H][H] + [CH2]C(C)=O <=> CC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17749972779710121,B_g=-0.07705045175829399,E_g=-0.1326079985070439,L_g=0.13462387465903047,A_g=0.02665354795862972,K_g=0.9768129482066129,S_h=-0.07699180808841802,B_h=-0.023955939144334963,E_h=0.06088679024872895,L_h=0.15294269103653754,A_h=-0.0336468055913395,K_h=-0.08712983251822684,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.10099999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.10099999999999999)"""),
+)
+
+entry(
+ index = 1184,
+ label = "O + [CH2]C(C)=O <=> CC(C)=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4630577477994171,B_g=-3.0705752242472104,E_g=0.013832575631995124,L_g=0.4454866382128287,A_g=-1.2853519563415758,K_g=-0.6209631593992089,S_h=0.3566121565157917,B_h=-7.275047796922562,E_h=0.18356934762926438,L_h=0.6823630817593526,A_h=-1.1654109905277419,K_h=-2.9742676573933937,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.44, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.054, MAE_h(kcal/mol): 0.782)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.44, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.054, MAE_h(kcal/mol): 0.782)"""),
+)
+
+entry(
+ index = 1185,
+ label = "OO + [CH2]C(C)=O <=> CC(C)=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4058508478354055,B_g=-3.4429112147484977,E_g=-0.4509991431811702,L_g=0.5456646872784596,A_g=-0.31761411604826967,K_g=-1.8186648206524085,S_h=0.3578729954181251,B_h=-6.231989493132303,E_h=-0.3176654292594111,L_h=0.6454542220311621,A_h=0.43454226332222523,K_h=-4.042909262167045,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.945, MAE_h(kcal/mol): 0.773)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.406, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.945, MAE_h(kcal/mol): 0.773)"""),
+)
+
+entry(
+ index = 1186,
+ label = "[O]O + [CH2]C(C)=O <=> CC(C)=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.748630428719202,B_g=-4.7813796750802355,E_g=0.12796781812810754,L_g=0.6094103564336422,A_g=0.5239152162132081,K_g=-2.100689559544697,S_h=-0.2934382631418998,B_h=-7.866777086888599,E_h=0.18882528654189848,L_h=0.7537544193746153,A_h=1.532241806519422,K_h=-4.31633537296377,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1740000000000002, MAE_h(kcal/mol): 0.941)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1740000000000002, MAE_h(kcal/mol): 0.941)"""),
+)
+
+entry(
+ index = 1187,
+ label = "[OH] + [CH2]C(C)=O <=> CC(C)=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6205453232513425,B_g=-2.6942074814419503,E_g=-0.1536537455337837,L_g=0.5027228600117783,A_g=-0.3530348926533573,K_g=-1.07850107177155,S_h=-0.21367554165184205,B_h=-5.145813431065735,E_h=0.10146087934416773,L_h=0.6653784088715239,A_h=-0.03182152136644984,K_h=-3.183339670959972,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.588)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.588)"""),
+)
+
+entry(
+ index = 1188,
+ label = "CC(C)C(O)OO + [O]O <=> CC(C)C(O)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.365122008290368,B_g=-4.8208248735305625,E_g=0.042692591669708325,L_g=0.7802540276998204,A_g=0.6442153745050322,K_g=-2.3887106136818037,S_h=-1.4817276153800056,B_h=-8.54794530387423,E_h=-0.06140725281887821,L_h=1.1801158907491422,A_h=2.3389661207095096,K_h=-5.111470231894618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.391, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1840000000000002, MAE_h(kcal/mol): 0.8340000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.539, MAE_g(kcal/mol): 0.391, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.1840000000000002, MAE_h(kcal/mol): 0.8340000000000001)"""),
+)
+
+entry(
+ index = 1189,
+ label = "CC(C)C(O)OO + [O][O] <=> CC(C)C(O)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.06510099320489,B_g=-1.4480808097886662,E_g=-0.37181552793113765,L_g=0.5240984776815705,A_g=0.22037558093517196,K_g=-0.7378766457556953,S_h=-1.1128955841538082,B_h=-3.8600876213287,E_h=-0.4240523768731606,L_h=0.915706244195849,A_h=1.1788403909293397,K_h=-2.791621947564676,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.722, MAE_h(kcal/mol): 0.512)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.722, MAE_h(kcal/mol): 0.512)"""),
+)
+
+entry(
+ index = 1190,
+ label = "CC(C)(C)OO + [CH2]C(C)C <=> CC(C)C + CC(C)(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32587554304204736,B_g=-2.751582981956856,E_g=-0.032686515497120434,L_g=0.34826276401719997,A_g=0.48617801464801946,K_g=-1.1610786894156544,S_h=0.18424374983283812,B_h=-5.393018490969165,E_h=0.07103947559600676,L_h=0.524223095480057,A_h=1.3362106790415134,K_h=-2.9852340236602006,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.69, MAE_h(kcal/mol): 0.522)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.209, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.69, MAE_h(kcal/mol): 0.522)"""),
+)
+
+entry(
+ index = 1191,
+ label = "CC(C)OO + [CH2]C(C)C <=> CC(C)C + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29518291232071003,B_g=-2.9171487229341966,E_g=0.2513614300058892,L_g=0.32667456304410747,A_g=0.5796633548890548,K_g=-1.013303971786937,S_h=0.24448545971293134,B_h=-5.670754911501773,E_h=0.3289616661692705,L_h=0.5024882853322744,A_h=1.4727331425127783,K_h=-2.9180283779823357,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.287, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.615)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.381, MAE_g(kcal/mol): 0.287, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.615)"""),
+)
+
+entry(
+ index = 1192,
+ label = "CCOO + [CH2]C(C)C <=> CC(C)C + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.36830423819731384,B_g=-2.52303393953272,E_g=0.33560306178272437,L_g=0.2394201127273942,A_g=0.35099702512516723,K_g=-0.692185896463578,S_h=0.1976658197757014,B_h=-5.2671618449565925,E_h=0.3969370100142575,L_h=0.4222784058594124,A_h=1.2531125988272593,K_h=-2.600458244686473,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.621)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.621)"""),
+)
+
+entry(
+ index = 1193,
+ label = "COO + [CH2]C(C)C <=> CC(C)C + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16997134667677316,B_g=-2.661301052182795,E_g=0.4090982410547875,L_g=0.19715268766428667,A_g=0.23800533419163633,K_g=-0.48650788529107186,S_h=0.4695525342381811,B_h=-5.531278273160506,E_h=0.4423565323331987,L_h=0.3643018077282786,A_h=1.1943663025290037,K_h=-2.4078870937312464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.652)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.652)"""),
+)
+
+entry(
+ index = 1194,
+ label = "CC + [CH2]C(C)C <=> CC(C)C + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02749655071309683,B_g=-0.11911262397683561,E_g=-0.2283071372858973,L_g=0.08858126334765719,A_g=0.39439334083338723,K_g=0.1883854590178287,S_h=0.08427828407050766,B_h=-0.008474010297078095,E_h=-0.009258369381669233,L_h=0.14814124056544226,A_h=0.3757886365652348,K_h=-0.8812824099786529,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1195,
+ label = "CO + [CH2]C(C)C <=> CC(C)C + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11735331388055643,B_g=-2.1968505172238237,E_g=-0.031176440997814133,L_g=0.2736533550174934,A_g=0.17085100172491274,K_g=-0.5470867962729519,S_h=0.43904316498520624,B_h=-4.610917187668251,E_h=0.12406068362262083,L_h=0.428487304407531,A_h=0.7024705300680768,K_h=-2.3808377010009547,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.611, MAE_h(kcal/mol): 0.46799999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.19699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.611, MAE_h(kcal/mol): 0.46799999999999997)"""),
+)
+
+entry(
+ index = 1196,
+ label = "C + [CH2]C(C)C <=> CC(C)C + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.01771038830254384,B_g=-0.08075966387794929,E_g=-0.1905919270969122,L_g=0.09777365860071595,A_g=0.2738439469445903,K_g=0.3858386954902297,S_h=0.00713986680739971,B_h=0.06494786438764007,E_h=0.03225401843178514,L_h=0.18109165257700455,A_h=0.252790869459116,K_h=-0.7849895040423054,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.177)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.177)"""),
+)
+
+entry(
+ index = 1197,
+ label = "[H][H] + [CH2]C(C)C <=> CC(C)C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.047296119754972214,B_g=-0.015826460407778208,E_g=-0.06211097685738988,L_g=0.09174069106222524,A_g=0.12618651665562486,K_g=1.20789099889415,S_h=0.04844700177628817,B_h=0.06589349356439013,E_h=0.15815464719676461,L_h=0.11483163607588959,A_h=0.188817956083164,K_h=0.15259815947601618,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.177, MAE_h(kcal/mol): 0.113)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.177, MAE_h(kcal/mol): 0.113)"""),
+)
+
+entry(
+ index = 1198,
+ label = "O + [CH2]C(C)C <=> CC(C)C + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17291819108804082,B_g=-2.056626172091638,E_g=0.03566268174332607,L_g=0.20347154309342272,A_g=-0.6039051819240352,K_g=0.009998745713853393,S_h=0.4544884415387906,B_h=-4.808451059186732,E_h=0.24924292743161963,L_h=0.2428507674151386,A_h=-0.35376060806807247,K_h=-1.6329843009076093,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.257, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.578)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.257, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.578)"""),
+)
+
+entry(
+ index = 1199,
+ label = "O=COO + [CH2]C(C)C <=> CC(C)C + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3181345786184189,B_g=0.23936146905751823,E_g=0.38281854649161706,L_g=-0.19669086876401337,A_g=-0.6398977343104135,K_g=1.198771908228436,S_h=-0.021287652164978188,B_h=-0.5222438716217429,E_h=0.4429283081144894,L_h=-0.15509784590447953,A_h=-0.26193928195976784,K_h=0.1723610762242191,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.615, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.41700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.615, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.607, MAE_h(kcal/mol): 0.41700000000000004)"""),
+)
+
+entry(
+ index = 1200,
+ label = "OO + [CH2]C(C)C <=> CC(C)C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4950112174230879,B_g=-1.850625620734814,E_g=0.07222700991099522,L_g=0.25700588323145157,A_g=-0.014961466277107607,K_g=-0.3541931051334078,S_h=0.11246389790464718,B_h=-4.64718829748654,E_h=0.045888671677948856,L_h=0.40397425039937435,A_h=0.953905264661311,K_h=-2.2582431091252326,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.273, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.662, MAE_h(kcal/mol): 0.532)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.273, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.662, MAE_h(kcal/mol): 0.532)"""),
+)
+
+entry(
+ index = 1201,
+ label = "[O]O + [CH2]C(C)C <=> CC(C)C + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5969412461262634,B_g=-5.02275702028974,E_g=0.3083777380428039,L_g=0.5454447735164246,A_g=0.8484053025544356,K_g=-1.713780617079231,S_h=-0.107413211836579,B_h=-8.329395007163946,E_h=0.37380208224818623,L_h=0.7065389346657224,A_h=2.1476191563629445,K_h=-3.887195657728869,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.192, MAE_h(kcal/mol): 0.9570000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.595, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.192, MAE_h(kcal/mol): 0.9570000000000001)"""),
+)
+
+entry(
+ index = 1202,
+ label = "[OH] + [CH2]C(C)C <=> CC(C)C + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06919953045364811,B_g=-3.023139825776283,E_g=0.28575594238814733,L_g=0.25531254726378283,A_g=0.7243886016842217,K_g=-0.1464625655152425,S_h=0.6228617482114435,B_h=-6.117355779442245,E_h=0.29190619726639,L_h=0.4160035331826833,A_h=1.7968786972934845,K_h=-2.057278582919008,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8420000000000001, MAE_h(kcal/mol): 0.662)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8420000000000001, MAE_h(kcal/mol): 0.662)"""),
+)
+
+entry(
+ index = 1203,
+ label = "COO + [CH2]C(C)C=O <=> CC(C)C=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9951244341253855,B_g=-1.840326326212846,E_g=2.3998529109582383,L_g=-0.3308455940640361,A_g=-2.16166431529824,K_g=0.9315693568972998,S_h=-0.39263403073710806,B_h=-4.594496960102979,E_h=2.507420062428242,L_h=-0.15090482350834744,A_h=-1.3348692050931004,K_h=-1.0387993072655164,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.294, MAE_g(kcal/mol): 0.914, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5190000000000001, MAE_h(kcal/mol): 1.0979999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.294, MAE_g(kcal/mol): 0.914, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5190000000000001, MAE_h(kcal/mol): 1.0979999999999999)"""),
+)
+
+entry(
+ index = 1204,
+ label = "C + CC(C)[C]=O <=> CC(C)C=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16843195034252886,B_g=-0.054384673351230435,E_g=-0.06582018897704517,L_g=0.005754410106579848,A_g=0.29545413929388636,K_g=0.7616273320554644,S_h=0.3191681732999829,B_h=-0.08692457967366093,E_h=0.14373563486600976,L_h=0.07396432863107091,A_h=0.14700501946159525,K_h=-0.1776976501829326,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.243, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 1205,
+ label = "[H][H] + CC(C)[C]=O <=> CC(C)C=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15197507048358394,B_g=0.06612073778515953,E_g=-0.0661793814550355,L_g=0.04292716634921222,A_g=0.16159263234324353,K_g=1.4848870430945738,S_h=0.3118670364004243,B_h=0.0967840466715589,E_h=0.20729804255282996,L_h=0.05074143536018562,A_h=0.08152936204507143,K_h=0.6631499494162368,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 1206,
+ label = "O + CC(C)[C]=O <=> CC(C)C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32424085074425457,B_g=-2.301859338595488,E_g=0.02262912611339107,L_g=0.29809310443830517,A_g=0.5331222723837358,K_g=-0.22838777233197677,S_h=0.052427440869119844,B_h=-5.033144280316522,E_h=0.4228501816407031,L_h=0.37593524573992476,A_h=1.1082187514811994,K_h=-1.717680421125983,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.565)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.565)"""),
+)
+
+entry(
+ index = 1207,
+ label = "O + C[C](C)C=O <=> CC(C)C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1859150944243033,B_g=-2.4723878001360826,E_g=-0.7572437177322355,L_g=0.4447535923393791,A_g=-1.3986368656244865,K_g=-1.583782261881668,S_h=0.6881174918659324,B_h=-4.921054235807334,E_h=-0.35620898128539435,L_h=0.37059867178121125,A_h=-2.2067099842217215,K_h=-3.4095649579652725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7959999999999999, MAE_h(kcal/mol): 0.628)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.289, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7959999999999999, MAE_h(kcal/mol): 0.628)"""),
+)
+
+entry(
+ index = 1208,
+ label = "O + [CH2]C(C)C=O <=> CC(C)C=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.41283677500938076,B_g=-1.613529263426255,E_g=-0.15787608976485373,L_g=0.28667224972995936,A_g=-0.660760219868791,K_g=-0.17334335769464163,S_h=-0.03690885972819049,B_h=-3.950985309636458,E_h=0.17950827349035328,L_h=0.3600354807448016,A_h=-0.5769217633223531,K_h=-1.7721823818169653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.502)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.502)"""),
+)
+
+entry(
+ index = 1209,
+ label = "OO + CC(C)[C]=O <=> CC(C)C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.564284052464081,B_g=-1.8239867336936528,E_g=-0.15553767342854932,L_g=0.33801478270637375,A_g=0.34330737391268035,K_g=-0.40223693167929864,S_h=0.06151720969989566,B_h=-4.585803036043866,E_h=-0.16563904556468567,L_h=0.4776453606810654,A_h=1.3622997816775866,K_h=-2.104699320472467,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.505)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.233, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.645, MAE_h(kcal/mol): 0.505)"""),
+)
+
+entry(
+ index = 1210,
+ label = "[O]O + CC(C)[C]=O <=> CC(C)C=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7955160427850425,B_g=-4.953718759928251,E_g=0.14510643064936063,L_g=0.6292612386866591,A_g=0.8440803319010826,K_g=-1.9765922236284035,S_h=-0.31309122300908526,B_h=-8.173754707313114,E_h=0.21144708219655506,L_h=0.7838752743146618,A_h=2.145266079109171,K_h=-4.082955558233601,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.478, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2009999999999998, MAE_h(kcal/mol): 0.97)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.597, MAE_g(kcal/mol): 0.478, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2009999999999998, MAE_h(kcal/mol): 0.97)"""),
+)
+
+entry(
+ index = 1211,
+ label = "[OH] + CC(C)[C]=O <=> CC(C)C=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06819525760702208,B_g=-2.9063949399706894,E_g=0.19902928510031775,L_g=0.27896060714126897,A_g=0.883085702827339,K_g=0.07946950314067787,S_h=0.6356460682444056,B_h=-5.909090116336462,E_h=0.22492779580929437,L_h=0.4313095310203123,A_h=2.0825246828006145,K_h=-1.5746265189222812,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.669)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.855, MAE_h(kcal/mol): 0.669)"""),
+)
+
+entry(
+ index = 1212,
+ label = "CC + CC(C)[CH]O <=> CC(C)CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18804092745730733,B_g=-0.8156088301762977,E_g=0.04316174102871611,L_g=0.023823990887114024,A_g=0.4884504568557134,K_g=0.18643555699445258,S_h=0.4238471240285947,B_h=-1.1202846865581808,E_h=0.2031563333678394,L_h=0.06571756255476222,A_h=0.7326646895954684,K_h=-0.9265186708292316,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.14400000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.191)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19399999999999998, MAE_g(kcal/mol): 0.14400000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.191)"""),
+)
+
+entry(
+ index = 1213,
+ label = "CC + C[C](C)CO <=> CC(C)CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22190031635194724,B_g=-1.098366614942036,E_g=0.18125292266916346,L_g=0.004178361478663075,A_g=0.01289427691397956,K_g=0.1354595469547631,S_h=0.8936635547812178,B_h=-2.714644800393727,E_h=0.24881043036628434,L_h=0.15195307910738048,A_h=0.19863344032865496,K_h=-1.5326889645022264,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28800000000000003, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.469, MAE_h(kcal/mol): 0.37799999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28800000000000003, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.469, MAE_h(kcal/mol): 0.37799999999999995)"""),
+)
+
+entry(
+ index = 1214,
+ label = "CC + [CH2]C(C)CO <=> CC(C)CO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29106319451192286,B_g=-0.6924131406843475,E_g=-0.01556256389333633,L_g=0.13405209887773972,A_g=0.47811451004007316,K_g=0.15089749304961297,S_h=-0.24270415824044866,B_h=-1.8211645070808717,E_h=0.018809957112718333,L_h=0.3318571973693966,A_h=1.0955663797054582,K_h=-1.2041817867744946,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.171, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.307)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.171, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.307)"""),
+)
+
+entry(
+ index = 1215,
+ label = "CO + CC(C)[CH]O <=> CC(C)CO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6478219602024045,B_g=-3.3488760901023746,E_g=0.38344896594278377,L_g=0.10968565404427294,A_g=-0.11513951534273846,K_g=-0.4217579432892632,S_h=1.832057568760334,B_h=-6.418791573063481,E_h=0.7949442670037518,L_h=0.1721118406272462,A_h=0.6724742929265166,K_h=-2.4446933270371547,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.502, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.089, MAE_h(kcal/mol): 0.86)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.502, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.089, MAE_h(kcal/mol): 0.86)"""),
+)
+
+entry(
+ index = 1216,
+ label = "CO + C[C](C)CO <=> CC(C)CO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09780298043565394,B_g=-3.6912964785081814,E_g=0.16965613695118983,L_g=0.37101650792907753,A_g=-0.4573986336563857,K_g=-1.237073555116181,S_h=1.0080113805806306,B_h=-8.21536972154885,E_h=0.20803841888501412,L_h=0.6494346611239937,A_h=0.27174743574652427,K_h=-3.845602634869335,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.368, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.121, MAE_h(kcal/mol): 0.852)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.368, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.121, MAE_h(kcal/mol): 0.852)"""),
+)
+
+entry(
+ index = 1217,
+ label = "CO + [CH2]C(C)CO <=> CC(C)CO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4127048267521598,B_g=-2.6272070886086514,E_g=0.6154506544308673,L_g=0.23398824280513217,A_g=-0.6972072606967082,K_g=-0.3855234857646463,S_h=0.0655343010863998,B_h=-6.141165109411889,E_h=0.8139814683372395,L_h=0.5092982814966218,A_h=0.3553659785309273,K_h=-2.650583921512961,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.419, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.889, MAE_h(kcal/mol): 0.655)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.419, MAE_g(kcal/mol): 0.32899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.889, MAE_h(kcal/mol): 0.655)"""),
+)
+
+entry(
+ index = 1218,
+ label = "CO + CC(C)[CH]O <=> CC(C)CO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.41188381537389623,B_g=-2.202260395769882,E_g=0.19795903812508128,L_g=0.22972191582165513,A_g=-0.5096208216809397,K_g=-1.1829674391968614,S_h=1.5172656793248454,B_h=-3.9004344662033694,E_h=0.5228889519903785,L_h=0.14723959414109913,A_h=-0.7663041647280735,K_h=-2.709344878728686,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.622, MAE_g(kcal/mol): 0.485, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.071, MAE_h(kcal/mol): 0.8170000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.622, MAE_g(kcal/mol): 0.485, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.071, MAE_h(kcal/mol): 0.8170000000000001)"""),
+)
+
+entry(
+ index = 1219,
+ label = "CO + C[C](C)CO <=> CC(C)CO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15132999011494827,B_g=-1.4717215392074179,E_g=0.19686679977364127,L_g=0.19560596087130788,A_g=-1.0607980139277409,K_g=-0.7895783712101002,S_h=0.771435485842221,B_h=-3.608564921230652,E_h=0.3387404981210889,L_h=0.27544931740744505,A_h=-1.465094804511433,K_h=-2.7934838840832383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.401, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.74, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.401, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.74, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 1220,
+ label = "CO + [CH2]C(C)CO <=> CC(C)CO + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.36169216441879787,B_g=-0.7911617502967514,E_g=-0.3790653516195549,L_g=0.29539549562401035,A_g=-1.2187327473624703,K_g=-0.3143007487002772,S_h=0.09823547750098922,B_h=-1.8227772080024611,E_h=0.025876519332773074,L_h=0.33219439847118337,A_h=-1.635549961464683,K_h=-1.9000329126053208,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46, MAE_g(kcal/mol): 0.312, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.584)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46, MAE_g(kcal/mol): 0.312, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.584)"""),
+)
+
+entry(
+ index = 1221,
+ label = "C + CC(C)[CH]O <=> CC(C)CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3478962410804752,B_g=-1.1299535616289818,E_g=0.010863739844523993,L_g=0.023508781161530667,A_g=0.5829767222370473,K_g=0.2879624104672308,S_h=0.7160245482681611,B_h=-1.5885910428114973,E_h=0.1395499429286122,L_h=0.06176644529686854,A_h=0.6845695498384361,K_h=-0.9227654759571693,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27699999999999997, MAE_h(kcal/mol): 0.218)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.191, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27699999999999997, MAE_h(kcal/mol): 0.218)"""),
+)
+
+entry(
+ index = 1222,
+ label = "C + C[C](C)CO <=> CC(C)CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2520504931269319,B_g=-1.2478713208320944,E_g=-0.09835276484074118,L_g=0.09741446612272561,A_g=0.21210682348265975,K_g=0.033148334397393724,S_h=0.8973874278183419,B_h=-2.9191206163337764,E_h=-0.0631812238326264,L_h=0.27659286897002655,A_h=0.4003456733257985,K_h=-1.742149492381733,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46299999999999997, MAE_h(kcal/mol): 0.397)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46299999999999997, MAE_h(kcal/mol): 0.397)"""),
+)
+
+entry(
+ index = 1223,
+ label = "C + [CH2]C(C)CO <=> CC(C)CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3454845201568258,B_g=1.5710272636836435,E_g=-0.05487581408644171,L_g=-0.024820933275005563,A_g=0.005571148638217433,K_g=0.9251038922934737,S_h=-0.9044539900383967,B_h=3.030946764328522,E_h=0.20925527503494057,L_h=0.05037491242346079,A_h=-0.08253363489169747,K_h=0.1655730714360752,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.423)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18100000000000002, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.423)"""),
+)
+
+entry(
+ index = 1224,
+ label = "C=O + CC(C)[CH]O <=> CC(C)CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4672727615717527,B_g=-3.31130748908808,E_g=-0.21383681174400093,L_g=0.49830259339487687,A_g=0.7681587707879011,K_g=-1.4897104849418727,S_h=0.025737240616817644,B_h=-5.743121200128724,E_h=-0.16278749711696647,L_h=0.631548341811822,A_h=1.7894676035129087,K_h=-3.4111483370519236,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36700000000000005, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.797, MAE_h(kcal/mol): 0.628)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36700000000000005, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.797, MAE_h(kcal/mol): 0.628)"""),
+)
+
+entry(
+ index = 1225,
+ label = "C=O + C[C](C)CO <=> CC(C)CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.47112858286609793,B_g=-1.7476546668913397,E_g=-0.29523422553185147,L_g=0.3638399888280053,A_g=0.576137404237762,K_g=-0.9108681414310813,S_h=0.004669502213874349,B_h=-3.7396628452383895,E_h=-0.38219545749918493,L_h=0.5294717039339565,A_h=1.6859688566405506,K_h=-2.8365869814420783,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.345)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.345)"""),
+)
+
+entry(
+ index = 1226,
+ label = "C=O + [CH2]C(C)CO <=> CC(C)CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8692018139842025,B_g=-0.8154915428365458,E_g=-0.27920984273824184,L_g=0.3726731916030738,A_g=0.5977842488807306,K_g=-0.5763939702934694,S_h=-0.9868336852966698,B_h=-1.7392173088879341,E_h=-0.26230580489649263,L_h=0.5390379525824746,A_h=1.8146770511008423,K_h=-2.0582462034719615,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.217)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.309, MAE_h(kcal/mol): 0.217)"""),
+)
+
+entry(
+ index = 1227,
+ label = "[H][H] + CC(C)[CH]O <=> CC(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8892139663293782,B_g=-1.6952272260222199,E_g=-0.08409502260214526,L_g=0.06565891888488626,A_g=0.26983418601682063,K_g=0.9725319603056668,S_h=1.5219498424561888,B_h=-2.1997387179652153,E_h=0.38803783311057866,L_h=-0.020364014364431617,A_h=0.17371721109010096,K_h=-0.120461428383983,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.281, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.281, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5589999999999999, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 1228,
+ label = "[H][H] + C[C](C)CO <=> CC(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5002378345007841,B_g=0.1732040789786862,E_g=-0.31701301843204094,L_g=0.003027479457347105,A_g=-0.363422152680139,K_g=1.0915053055665471,S_h=1.0026234934107756,B_h=0.3703567666429729,E_h=-0.08692457967366093,L_h=-0.06803398751486316,A_h=-1.094855325208212,K_h=0.08646276077338766,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.239)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.079, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.301, MAE_h(kcal/mol): 0.239)"""),
+)
+
+entry(
+ index = 1229,
+ label = "[H][H] + [CH2]C(C)CO <=> CC(C)CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34003065885836037,B_g=1.7515178186444194,E_g=-0.08542916609182363,L_g=0.0010849078927055,A_g=-0.24330525585667737,K_g=1.6747679156942399,S_h=-0.8281512450710213,B_h=3.2420053322121487,E_h=0.18298291093050467,L_h=0.01210991782938842,A_h=-0.4652788767959696,K_h=1.0488493661905114,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.39799999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.198, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.39799999999999996)"""),
+)
+
+entry(
+ index = 1230,
+ label = "O + CC(C)[CH]O <=> CC(C)CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06356240768682021,B_g=-2.666923514032154,E_g=0.14700501946159525,L_g=0.2662495916956518,A_g=0.609850183957712,K_g=-0.4449441842664759,S_h=0.9571160055870206,B_h=-6.31540278307214,E_h=0.5046214488240129,L_h=0.3370984753645617,A_h=1.1442113038675776,K_h=-2.39473625076156,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.823, MAE_h(kcal/mol): 0.65)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.823, MAE_h(kcal/mol): 0.65)"""),
+)
+
+entry(
+ index = 1231,
+ label = "O + C[C](C)CO <=> CC(C)CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.003958447716628176,B_g=-3.9853211783488405,E_g=-0.272319211527815,L_g=0.42623685357604063,A_g=-0.9138369772185523,K_g=-1.0776800603932863,S_h=1.3904707345942573,B_h=-8.98205507013112,E_h=-0.23158385234021728,L_h=0.5447117276429749,A_h=-0.6923471665557369,K_h=-3.453049239178306,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.436, MAE_g(kcal/mol): 0.34299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.145, MAE_h(kcal/mol): 0.8859999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.436, MAE_g(kcal/mol): 0.34299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.145, MAE_h(kcal/mol): 0.8859999999999999)"""),
+)
+
+entry(
+ index = 1232,
+ label = "O + [CH2]C(C)CO <=> CC(C)CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30127452352907663,B_g=-1.6679212672362198,E_g=1.318331690188076,L_g=-0.03220270522064366,A_g=-1.7832953572584624,K_g=0.9553273736558032,S_h=0.340602434639651,B_h=-5.063616997275824,E_h=1.606858545977863,L_h=0.10016338814816185,A_h=-1.65634647289445,K_h=-0.9252211796332256,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.544, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.904, MAE_h(kcal/mol): 0.695)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.544, MAE_g(kcal/mol): 0.413, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.904, MAE_h(kcal/mol): 0.695)"""),
+)
+
+entry(
+ index = 1233,
+ label = "[O]O + CC(C)[CH]O <=> CC(C)CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42693324715581776,B_g=-7.678904759982184,E_g=0.2877864794576029,L_g=0.7763175713593957,A_g=0.9877939753908889,K_g=-2.8069279454023053,S_h=0.6538915800345677,B_h=-12.850352805242453,E_h=0.40048495204175394,L_h=0.9680383891014205,A_h=2.473091524174594,K_h=-5.63504824700604,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8959999999999999, MAE_g(kcal/mol): 0.7070000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.841, MAE_h(kcal/mol): 1.483)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8959999999999999, MAE_g(kcal/mol): 0.7070000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.841, MAE_h(kcal/mol): 1.483)"""),
+)
+
+entry(
+ index = 1234,
+ label = "[O]O + C[C](C)CO <=> CC(C)CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5651490465947516,B_g=-3.906438111906922,E_g=0.12421462325604525,L_g=0.4851957331775969,A_g=-0.012733006821820632,K_g=-1.7586503549930845,S_h=-0.12709549353870245,B_h=-6.609859979978135,E_h=0.24443414650178988,L_h=0.5985832688827907,A_h=0.44492952334900704,K_h=-3.88434410928115,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.376, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.968, MAE_h(kcal/mol): 0.747)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.376, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.968, MAE_h(kcal/mol): 0.747)"""),
+)
+
+entry(
+ index = 1235,
+ label = "[O]O + [CH2]C(C)CO <=> CC(C)CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9922948770538698,B_g=-5.6706596155382245,E_g=0.3061859308811894,L_g=0.6871205494780409,A_g=1.0843654387591473,K_g=-2.1224023783162758,S_h=-0.5453934603052832,B_h=-10.105565158532478,E_h=0.16212042537212729,L_h=1.013743799311007,A_h=2.8841323367940235,K_h=-4.698398882205734,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.662, MAE_g(kcal/mol): 0.518, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.406, MAE_h(kcal/mol): 1.075)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.662, MAE_g(kcal/mol): 0.518, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.406, MAE_h(kcal/mol): 1.075)"""),
+)
+
+entry(
+ index = 1236,
+ label = "[OH] + CC(C)[CH]O <=> CC(C)CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8648475214959115,B_g=-4.327565635745019,E_g=0.2341715042734946,L_g=0.21447456165390216,A_g=0.9112713166614784,K_g=-0.3821001615356364,S_h=2.023448515859306,B_h=-7.696182651219393,E_h=0.47968322820925546,L_h=0.2801628023737264,A_h=2.031094184319386,K_h=-2.3673496569294805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.562, MAE_g(kcal/mol): 0.426, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.19, MAE_h(kcal/mol): 0.903)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.562, MAE_g(kcal/mol): 0.426, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.19, MAE_h(kcal/mol): 0.903)"""),
+)
+
+entry(
+ index = 1237,
+ label = "[OH] + C[C](C)CO <=> CC(C)CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04942195278797623,B_g=-4.61922992787317,E_g=0.13286456456275128,L_g=0.43423438405537634,A_g=0.5579212142825379,K_g=-1.2686385104269235,S_h=1.1708501909087385,B_h=-9.73951870162539,E_h=-0.046936927276981864,L_h=0.7192059673589327,A_h=1.8231364004804516,K_h=-3.930078841325674,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.531, MAE_g(kcal/mol): 0.406, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2819999999999998, MAE_h(kcal/mol): 0.99)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.531, MAE_g(kcal/mol): 0.406, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2819999999999998, MAE_h(kcal/mol): 0.99)"""),
+)
+
+entry(
+ index = 1238,
+ label = "[OH] + [CH2]C(C)CO <=> CC(C)CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5424172940590776,B_g=-3.6495421855564882,E_g=0.1766347336664306,L_g=0.45388001346382734,A_g=0.6587809960104769,K_g=-0.8034475991357677,S_h=0.04514829534576469,B_h=-7.700470969579074,E_h=0.06638463429960141,L_h=0.759391542141443,A_h=2.051003710242279,K_h=-3.107484083975401,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.428, MAE_g(kcal/mol): 0.324, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.048, MAE_h(kcal/mol): 0.7829999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.428, MAE_g(kcal/mol): 0.324, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.048, MAE_h(kcal/mol): 0.7829999999999999)"""),
+)
+
+entry(
+ index = 1239,
+ label = "CC(C)COO + C=C[C]=O <=> CC(C)CO[O] + C=CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05782265849770935,B_g=-3.146599411782675,E_g=-0.0013854567008198613,L_g=0.2968982396645822,A_g=0.8370724133509038,K_g=-0.794372491222461,S_h=0.6482397963502708,B_h=-6.017874123956392,E_h=0.1343013344747126,L_h=0.49107476108266324,A_h=1.6394424350527004,K_h=-2.6886290023449986,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7609999999999999, MAE_h(kcal/mol): 0.591)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.26899999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7609999999999999, MAE_h(kcal/mol): 0.591)"""),
+)
+
+entry(
+ index = 1240,
+ label = "CC(C)COO + [CH]=C <=> CC(C)CO[O] + C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.22876162572743605,B_g=-3.1712737358829903,E_g=0.03612450064359936,L_g=0.37106049068148445,A_g=0.8085789202499154,K_g=-0.5648631587041062,S_h=0.37380208224818623,B_h=-6.044256444941845,E_h=0.08656538719567063,L_h=0.5612125902543269,A_h=1.7164635649760565,K_h=-2.4397599283088383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32799999999999996, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.595)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32799999999999996, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.595)"""),
+)
+
+entry(
+ index = 1241,
+ label = "CC(C)COO + [CH]=O <=> CC(C)CO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03871948303561116,B_g=-3.0024386103100644,E_g=-0.022819718040487987,L_g=0.3134284241108721,A_g=0.9434886827995912,K_g=-0.2671145858263224,S_h=0.7356628472178776,B_h=-5.905080355408691,E_h=-0.003093453585957575,L_h=0.507854181125926,A_h=1.7908677211311972,K_h=-1.986854865856699,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.778, MAE_h(kcal/mol): 0.598)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.778, MAE_h(kcal/mol): 0.598)"""),
+)
+
+entry(
+ index = 1242,
+ label = "CC(C)COO + C[C]=O <=> CC(C)CO[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10714931532213712,B_g=-3.1349146605598874,E_g=-0.18824618030187323,L_g=0.3756420273905449,A_g=0.9830584990484041,K_g=-0.9791367036254482,S_h=0.553259042527398,B_h=-5.977453974494377,E_h=-0.11925190269279104,L_h=0.5517782898630297,A_h=1.820783323226678,K_h=-2.764711833550339,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.78, MAE_h(kcal/mol): 0.6)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.78, MAE_h(kcal/mol): 0.6)"""),
+)
+
+entry(
+ index = 1243,
+ label = "CC(C)COO + CC[C]=O <=> CC(C)CO[O] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06624535558364598,B_g=-3.1599555075969277,E_g=-0.008679263141644,L_g=0.3194613916493628,A_g=1.0416215338782975,K_g=-0.8450259610778326,S_h=0.5937598270354919,B_h=-6.072464050152187,E_h=0.05210490068480198,L_h=0.4868157645579207,A_h=2.004777837462543,K_h=-2.547085174640603,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.602)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.602)"""),
+)
+
+entry(
+ index = 1244,
+ label = "CC(C)COO + [O]O <=> CC(C)CO[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.40244951498259907,B_g=-3.848674097079089,E_g=-0.002836887530250193,L_g=0.4823881674822848,A_g=0.7850774695471191,K_g=-1.4115677948321386,S_h=0.23917820758915578,B_h=-6.821878837955981,E_h=0.050448217010805756,L_h=0.6223559465587633,A_h=1.8238401245189628,K_h=-3.3755223076022705,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.44, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.733)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.44, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.733)"""),
+)
+
+entry(
+ index = 1245,
+ label = "CC(C)COO + [O][O] <=> CC(C)CO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05399615903830212,B_g=-2.753584197191373,E_g=-0.11813767296514756,L_g=0.3529176053136054,A_g=0.4530590020855637,K_g=-0.2676057265615337,S_h=0.5272652358548731,B_h=-5.163311236064978,E_h=0.08604492462552135,L_h=0.6268348568455406,A_h=0.9777512469246284,K_h=-2.2900279781980104,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.602)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.602)"""),
+)
+
+entry(
+ index = 1246,
+ label = "CC(C)OO + [CH2]C(=C)C <=> CC(C)O[O] + C=C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5738136488189266,B_g=-2.523605715314011,E_g=1.1020391747680187,L_g=0.07953547726928835,A_g=-0.21772928533201868,K_g=-0.459927641919787,S_h=-0.052852607475720646,B_h=-5.314003476270027,E_h=1.1169639887514538,L_h=0.3103789532773215,A_h=0.6924864452716925,K_h=-2.5306869384515345,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.644, MAE_g(kcal/mol): 0.498, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9890000000000001, MAE_h(kcal/mol): 0.757)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.644, MAE_g(kcal/mol): 0.498, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9890000000000001, MAE_h(kcal/mol): 0.757)"""),
+)
+
+entry(
+ index = 1247,
+ label = "CC(C)OO + [CH]=O <=> CC(C)O[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2087714647584638,B_g=-2.735221398061459,E_g=-0.11656162433723077,L_g=0.38807448540425116,A_g=0.666177428873584,K_g=-0.5412004379091511,S_h=0.33580831462729027,B_h=-5.447989601019154,E_h=-0.04133645680382645,L_h=0.5747006343258007,A_h=1.6023576443148821,K_h=-2.3103260184338312,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.552)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.223, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.552)"""),
+)
+
+entry(
+ index = 1248,
+ label = "CC(C)OO + C[C]=O <=> CC(C)O[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.27096307666193314,B_g=-2.7608999950084008,E_g=-0.13251270254349545,L_g=0.39057417183271453,A_g=0.7454050268760236,K_g=-0.8238629267113409,S_h=0.3072415169389569,B_h=-5.531417551876461,E_h=-0.0883173668332153,L_h=0.5475119628795527,A_h=1.7801139381676905,K_h=-2.4815655344716725,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.75, MAE_h(kcal/mol): 0.569)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.22399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.75, MAE_h(kcal/mol): 0.569)"""),
+)
+
+entry(
+ index = 1249,
+ label = "CC(C)OO + CC[C]=O <=> CC(C)O[O] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34148208968779065,B_g=-2.9445939604361517,E_g=-0.19933716436716664,L_g=0.41640670841308064,A_g=0.7935588103029317,K_g=-1.1763553654183454,S_h=0.22211289965524764,B_h=-5.728504265412138,E_h=-0.12646507408753574,L_h=0.5884012617005749,A_h=1.7544573325969526,K_h=-2.941925673456795,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.742, MAE_h(kcal/mol): 0.563)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.742, MAE_h(kcal/mol): 0.563)"""),
+)
+
+entry(
+ index = 1250,
+ label = "CC(C)OO + C[CH]C <=> CC(C)O[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21767064166214267,B_g=-2.8064441351258282,E_g=0.09628557547761313,L_g=0.2997204662773634,A_g=0.5658161183395908,K_g=-0.7806572029302178,S_h=0.31472591530687793,B_h=-5.578141895850142,E_h=0.15878506664793132,L_h=0.4993361880764409,A_h=1.4794038599611703,K_h=-2.6690053643127514,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.5710000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.743, MAE_h(kcal/mol): 0.5710000000000001)"""),
+)
+
+entry(
+ index = 1251,
+ label = "CC(C)OO + [CH2]CC <=> CC(C)O[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.27448169685449153,B_g=-2.75232335828904,E_g=0.08459349379609102,L_g=0.317929325773853,A_g=0.46213410999887056,K_g=-0.8602000106582406,S_h=0.24512320962283257,B_h=-5.4748923845747575,E_h=0.16868118593950177,L_h=0.48429408675325386,A_h=1.427812091387783,K_h=-2.729862832726542,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.737, MAE_h(kcal/mol): 0.5670000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.737, MAE_h(kcal/mol): 0.5670000000000001)"""),
+)
+
+entry(
+ index = 1252,
+ label = "CC(C)OO + C[CH2] <=> CC(C)O[O] + CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2800894977863814,B_g=-2.7500435856226115,E_g=0.0746533917521136,L_g=0.30976319474362374,A_g=0.489256807316508,K_g=-0.6162789962678655,S_h=0.2611549228751766,B_h=-5.545477371729226,E_h=0.11626107552911642,L_h=0.5109769565468215,A_h=1.4169556820019935,K_h=-2.584910341710606,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.755, MAE_h(kcal/mol): 0.5770000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35600000000000004, MAE_g(kcal/mol): 0.266, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.755, MAE_h(kcal/mol): 0.5770000000000001)"""),
+)
+
+entry(
+ index = 1253,
+ label = "CC(C)OO + [O][O] <=> CC(C)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2133016882563827,B_g=-2.52507180706091,E_g=-0.20409463208585496,L_g=0.42025519924869137,A_g=0.21757534569859424,K_g=-0.47172235002359214,S_h=0.15524445507916948,B_h=-4.81816391700994,E_h=0.00844468846214011,L_h=0.6871132190193063,A_h=0.8146778619170166,K_h=-2.5423057155457114,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.5820000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.213, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.5820000000000001)"""),
+)
+
+entry(
+ index = 1254,
+ label = "CC(CCO)OO + [O]O <=> CC(CCO)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08059106332705587,B_g=-4.415047330282502,E_g=0.4086510830719832,L_g=0.4198153717246215,A_g=-0.6775543008295228,K_g=-1.2565652448912075,S_h=0.3455724856616398,B_h=-7.433180452743124,E_h=0.7553891116724079,L_h=0.549183307471018,A_h=-0.8189955021116352,K_h=-3.324876168205633,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.143, MAE_h(kcal/mol): 0.8540000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.529, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.143, MAE_h(kcal/mol): 0.8540000000000001)"""),
+)
+
+entry(
+ index = 1255,
+ label = "CC(CCO)OO + [O][O] <=> CC(CCO)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2921114501109559,B_g=-3.224316935285808,E_g=-0.2109706023788128,L_g=0.359155825696662,A_g=0.2932036884623959,K_g=-0.725927998018466,S_h=0.7827537141282838,B_h=-5.714825629413567,E_h=-0.009866797456632452,L_h=0.6209118461880674,A_h=0.4733936946150573,K_h=-2.522462163751429,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.84, MAE_h(kcal/mol): 0.652)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.84, MAE_h(kcal/mol): 0.652)"""),
+)
+
+entry(
+ index = 1256,
+ label = "CC(CO)COO + [O]O <=> CC(CO)CO[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09059713949964375,B_g=-1.1030874303670517,E_g=-0.49749624293408223,L_g=0.29829102682413655,A_g=0.7387929530975076,K_g=-1.3591037016693461,S_h=-0.2925219558000877,B_h=-0.8664968747111732,E_h=-0.26212254342813024,L_h=0.2833002387120909,A_h=1.278138784946831,K_h=-1.9945225256929826,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.303, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.303, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 1257,
+ label = "CC(CO)COO + [O][O] <=> CC(CO)CO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8156161606350322,B_g=-1.6433422390994528,E_g=-0.6249289375745716,L_g=0.53823160212168,A_g=0.8958846837777702,K_g=-1.3130684208167074,S_h=-0.7187954616698008,B_h=-3.5460287777666615,E_h=-0.6340846805339578,L_h=0.8654559495708746,A_h=1.9533180171463769,K_h=-2.757645271330284,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.414)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.147, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.605, MAE_h(kcal/mol): 0.414)"""),
+)
+
+entry(
+ index = 1258,
+ label = "CC(O)C(C)OO + [O]O <=> CC(O)C(C)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8305776269121397,B_g=-3.996441484249072,E_g=0.04935597865936576,L_g=0.5776987919482098,A_g=0.6010902857699885,K_g=-1.5283420024726697,S_h=-0.40343179645302163,B_h=-7.811285514268459,E_h=0.019931517299096313,L_h=0.8470051849361466,A_h=2.1631963811737496,K_h=-3.871061318054242,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.312, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.022, MAE_h(kcal/mol): 0.772)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.312, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.022, MAE_h(kcal/mol): 0.772)"""),
+)
+
+entry(
+ index = 1259,
+ label = "CC(O)C(C)OO + [O][O] <=> CC(O)C(C)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38001831125503943,B_g=-3.2010647201799847,E_g=-0.2638965144418784,L_g=0.517420429774444,A_g=0.19603845793664318,K_g=-0.8052875442781263,S_h=-0.1493141139629617,B_h=-6.305272089101066,E_h=-0.17064574888034686,L_h=0.9093067537206335,A_h=0.911366612625027,K_h=-3.145756409028208,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.373, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9129999999999999, MAE_h(kcal/mol): 0.654)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.373, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9129999999999999, MAE_h(kcal/mol): 0.654)"""),
+)
+
+entry(
+ index = 1260,
+ label = "CC(O)CCOO + [O][O] <=> CC(O)CCO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22709761159470537,B_g=-2.9738864735392,E_g=-0.2735067458428035,L_g=0.3556005532104311,A_g=0.3153709956755137,K_g=-0.4596857367815486,S_h=0.7554550858010184,B_h=-5.453201557179382,E_h=-0.0842049794831627,L_h=0.5916486549199569,A_h=0.7458668457762968,K_h=-2.13712926991388,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.344, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.773, MAE_h(kcal/mol): 0.595)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.344, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.773, MAE_h(kcal/mol): 0.595)"""),
+)
+
+entry(
+ index = 1261,
+ label = "CC(=O)OO + C[CH2] <=> CC + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20694618053357414,B_g=-0.2413406929158323,E_g=0.3521552376052177,L_g=-0.15879239710666582,A_g=0.3287417524072355,K_g=0.8463967568611833,S_h=0.5473506927873938,B_h=-0.8659910730584929,E_h=0.3479328933741476,L_h=-0.13882422751389703,A_h=0.6614199611548957,K_h=-0.1421522557793585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.223)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22899999999999998, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.223)"""),
+)
+
+entry(
+ index = 1262,
+ label = "CCOO + C[CH2] <=> CC + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18057852046558978,B_g=-2.7099899590973218,E_g=0.19754120197721498,L_g=0.26757640472659566,A_g=0.4826154117030541,K_g=-0.4105936546366248,S_h=0.4352239959845335,B_h=-5.539378430062125,E_h=0.2273908299440852,L_h=0.4385740156261984,A_h=1.4382286732495029,K_h=-2.267589444011716,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.321, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.742, MAE_h(kcal/mol): 0.593)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.321, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.742, MAE_h(kcal/mol): 0.593)"""),
+)
+
+entry(
+ index = 1263,
+ label = "COO + C[CH2] <=> CC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15138863378482423,B_g=-2.7682964278715083,E_g=0.3158474754932559,L_g=0.22089604350532122,A_g=0.3827965551154136,K_g=-0.2940540216755975,S_h=0.47922140930898216,B_h=-5.647114182083022,E_h=0.34037519041888165,L_h=0.40560894269716713,A_h=1.353107386424528,K_h=-2.2784531838562403,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.609)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35700000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.775, MAE_h(kcal/mol): 0.609)"""),
+)
+
+entry(
+ index = 1264,
+ label = "CO + C[CH2] <=> CC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04784590416005946,B_g=-2.28435420313751,E_g=0.041908232585117194,L_g=0.22127722735951505,A_g=0.14246013504620736,K_g=-0.14040760660054832,S_h=0.6940698243583436,B_h=-4.823199942160539,E_h=0.19753387151848048,L_h=0.36779110608589904,A_h=0.6036119635746553,K_h=-1.9384518468328178,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.479)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.479)"""),
+)
+
+entry(
+ index = 1265,
+ label = "C + C[CH2] <=> CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08984210224999059,B_g=-0.07809870735732702,E_g=-0.17655409862035115,L_g=0.11019878615568772,A_g=0.18042458083216537,K_g=0.4163627256606736,S_h=-0.04936330911810025,B_h=0.04351360304797195,E_h=0.01913982775577068,L_h=0.17540321659903518,A_h=0.2298758554550796,K_h=-0.7609602603106252,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.273, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.032, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.273, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 1266,
+ label = "[H][H] + C[CH2] <=> CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04670235259747798,B_g=-0.004537553956653409,E_g=-0.06152454015863014,L_g=0.09127887216195195,A_g=0.10251646540193526,K_g=1.2714973893333772,S_h=0.05131321114147636,B_h=0.07091485779752031,E_h=0.15887303215274529,L_h=0.11279376854769953,A_h=0.17928102926958386,K_h=0.21902677652802457,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 1267,
+ label = "O + C[CH2] <=> CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2374262279516111,B_g=-1.908536244737337,E_g=0.06369435594404114,L_g=0.20498894805146353,A_g=-0.5364796224841353,K_g=0.22883493031478105,S_h=0.2556424179068352,B_h=-4.478433806959694,E_h=0.25603826267849805,L_h=0.2589997680072346,A_h=-0.31290063108198835,K_h=-1.3642350227834938,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6679999999999999, MAE_h(kcal/mol): 0.546)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6679999999999999, MAE_h(kcal/mol): 0.546)"""),
+)
+
+entry(
+ index = 1268,
+ label = "[O]O + C[CH2] <=> CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.579326153787268,B_g=-4.9933105675532685,E_g=0.3345548061836913,L_g=0.5421240757096977,A_g=0.792972373604172,K_g=-1.5246254598942799,S_h=-0.0993716986048362,B_h=-8.282494732180636,E_h=0.4015845208519285,L_h=0.7210532429600257,A_h=2.0805894416947073,K_h=-3.732163785953,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.179, MAE_h(kcal/mol): 0.94)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.179, MAE_h(kcal/mol): 0.94)"""),
+)
+
+entry(
+ index = 1269,
+ label = "[OH] + C[CH2] <=> CC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.018590043350683434,B_g=-3.037727438657931,E_g=0.29913402957860363,L_g=0.23910490300181084,A_g=0.7127551636725756,K_g=0.016185652885768544,S_h=0.6845475584622326,B_h=-6.164358680847837,E_h=0.30464653454694507,L_h=0.40471462673155856,A_h=1.7632392221608795,K_h=-1.9220975933961557,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.652)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.375, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.831, MAE_h(kcal/mol): 0.652)"""),
+)
+
+entry(
+ index = 1270,
+ label = "COO + [CH2]C(O)=CC <=> CC=C(C)O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6660821329100355,B_g=-4.197882490273039,E_g=2.5735334697546675,L_g=-0.09509071070389018,A_g=-1.2479299645019706,K_g=-0.46542548597065947,S_h=0.3553659785309273,B_h=-8.648181996609734,E_h=2.6281820396203397,L_h=0.11384935460546704,A_h=0.08729110261038577,K_h=-3.0496467645602228,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.183, MAE_g(kcal/mol): 0.8320000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7380000000000002, MAE_h(kcal/mol): 1.3430000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.183, MAE_g(kcal/mol): 0.8320000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7380000000000002, MAE_h(kcal/mol): 1.3430000000000002)"""),
+)
+
+entry(
+ index = 1271,
+ label = "C + [CH2]C(O)=CC <=> CC=C(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1675229734594513,B_g=-1.4838827702479478,E_g=-0.06147322694748868,L_g=0.15247354167752974,A_g=0.28281642843561416,K_g=-0.16134339674627066,S_h=0.6975371313397606,B_h=-2.5766269233406245,E_h=0.23447938354034345,L_h=0.18870799920214654,A_h=0.5994262716372578,K_h=-1.6184186794021644,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.375)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19899999999999998, MAE_g(kcal/mol): 0.16, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.473, MAE_h(kcal/mol): 0.375)"""),
+)
+
+entry(
+ index = 1272,
+ label = "[H][H] + [CH2]C(O)=CC <=> CC=C(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07573096918608459,B_g=-0.10545597935446839,E_g=-0.13314312199466213,L_g=0.09299419950582415,A_g=0.06771144733054531,K_g=1.0558866065756278,S_h=0.22020698038427852,B_h=0.022467856021232146,E_h=0.13038686951049142,L_h=0.08026852314273801,A_h=0.055176362894556075,K_h=0.05330709591725944,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.166, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.166, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 1273,
+ label = "[O]O + [CH2]C(O)=CC <=> CC=C(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5754556715754537,B_g=-4.293061166481743,E_g=0.22017032809060605,L_g=0.5066226640585305,A_g=0.6481005176343154,K_g=-1.6537954732548448,S_h=-0.13809851209918186,B_h=-7.330627335047516,E_h=0.30486644830898,L_h=0.6717412470530669,A_h=1.8270948481970795,K_h=-3.90821208292067,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.494, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.038, MAE_h(kcal/mol): 0.8290000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.494, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.038, MAE_h(kcal/mol): 0.8290000000000001)"""),
+)
+
+entry(
+ index = 1274,
+ label = "CC(C)OO + [CH2]C=CC <=> CC=CC + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.40402556361051584,B_g=-2.5049863501283895,E_g=1.9927192328442962,L_g=-0.2615067848944325,A_g=-0.8749269022558445,K_g=0.6540675110441957,S_h=0.13090733208064068,B_h=-5.353104143159831,E_h=1.9437664294153278,L_h=-0.0062382203830566255,A_h=0.15667389453239633,K_h=-1.3396266728117887,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9440000000000001, MAE_g(kcal/mol): 0.679, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.212, MAE_h(kcal/mol): 0.9079999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9440000000000001, MAE_g(kcal/mol): 0.679, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.212, MAE_h(kcal/mol): 0.9079999999999999)"""),
+)
+
+entry(
+ index = 1275,
+ label = "CCOO + [CH2]C=CC <=> CC=CC + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23343845840004493,B_g=-2.6606779631903628,E_g=0.7487697074351575,L_g=0.10669482688059835,A_g=0.6143217637857549,K_g=-0.6141385023173924,S_h=0.43755508186210335,B_h=-5.629418454697946,E_h=0.6563985969217655,L_h=0.3055628418887572,A_h=1.6662059398923477,K_h=-2.583510224092317,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.528, MAE_g(kcal/mol): 0.37200000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.7190000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.528, MAE_g(kcal/mol): 0.37200000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.7190000000000001)"""),
+)
+
+entry(
+ index = 1276,
+ label = "COO + [CH2]C=CC <=> CC=CC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21028886971650457,B_g=-2.895135355354503,E_g=0.1849034911189428,L_g=0.2567493171757442,A_g=0.9276622223918131,K_g=-0.7229811536071984,S_h=0.4982292888075319,B_h=-5.9213099910468685,E_h=0.08513594774244378,L_h=0.4539973008035793,A_h=1.9910039055004243,K_h=-2.769637901819921,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.66)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.397, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.83, MAE_h(kcal/mol): 0.66)"""),
+)
+
+entry(
+ index = 1277,
+ label = "CO + [CH2]C=CC <=> CC=CC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12500631279937088,B_g=-2.174925115148944,E_g=0.35899455560450305,L_g=0.09848471309796211,A_g=0.8371530483969832,K_g=-0.05547691170267043,S_h=0.700909142357629,B_h=-4.689851567321311,E_h=0.560032386398073,L_h=0.26761305702026816,A_h=1.5709026458851572,K_h=-1.8399964555697939,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.465)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29600000000000004, MAE_g(kcal/mol): 0.22699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.465)"""),
+)
+
+entry(
+ index = 1278,
+ label = "C + [CH2]C=CC <=> CC=CC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12073265535715938,B_g=-0.08086229030023223,E_g=-0.19817895188711615,L_g=0.11335821387025577,A_g=0.19577456142220126,K_g=0.2520431626681974,S_h=-0.06351109447567874,B_h=0.017915641147109744,E_h=0.0008796550481395945,L_h=0.17985280505087464,A_h=0.17895848908526604,K_h=-0.8838700619119303,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.171)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.171)"""),
+)
+
+entry(
+ index = 1279,
+ label = "[H][H] + [CH2]C=CC <=> CC=CC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03816236817178942,B_g=0.009500274519907622,E_g=-0.05178969095921864,L_g=0.08544382700929262,A_g=0.10765511697481739,K_g=1.2651712034455065,S_h=0.07098083192613079,B_h=0.08153669250380592,E_h=0.15656393765137888,L_h=0.11993363535509922,A_h=0.09864598319012104,K_h=0.22527232736981567,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.035, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 1280,
+ label = "O + [CH2]C=CC <=> CC=CC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22735417765041271,B_g=-2.941676437859822,E_g=0.48663983354829277,L_g=0.09936436814610171,A_g=1.0718816675342995,K_g=0.21001031228459374,S_h=1.2417723791649933,B_h=-6.8629587287041,E_h=0.7459694721985798,L_h=0.20243794841185872,A_h=1.5732264013039925,K_h=-1.5781891218672468,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.314, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.902, MAE_h(kcal/mol): 0.6829999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.314, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.902, MAE_h(kcal/mol): 0.6829999999999999)"""),
+)
+
+entry(
+ index = 1281,
+ label = "OO + [CH2]C=CC <=> CC=CC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3684435169132692,B_g=-3.2387652694515014,E_g=0.28635704000437606,L_g=0.11974304342800232,A_g=0.5168486539931533,K_g=-0.23532238629481053,S_h=1.4427075835362801,B_h=-6.558612742965269,E_h=0.20885209980454325,L_h=0.20679224090014972,A_h=1.4756579955478424,K_h=-2.1389472236800353,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9590000000000001, MAE_h(kcal/mol): 0.775)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.429, MAE_g(kcal/mol): 0.344, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9590000000000001, MAE_h(kcal/mol): 0.775)"""),
+)
+
+entry(
+ index = 1282,
+ label = "[O]O + [CH2]C=CC <=> CC=CC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6685891497972335,B_g=-5.02327748285989,E_g=0.2574677021317249,L_g=0.5649144719152477,A_g=0.8883636331161765,K_g=-1.8833781103605445,S_h=-0.18426574120904157,B_h=-8.314807394282298,E_h=0.2695409676674408,L_h=0.7509028709268959,A_h=2.1080273487379277,K_h=-4.200675395050882,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.181, MAE_h(kcal/mol): 0.946)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.181, MAE_h(kcal/mol): 0.946)"""),
+)
+
+entry(
+ index = 1283,
+ label = "[OH] + [CH2]C=CC <=> CC=CC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21423998697439825,B_g=-2.94905820980546,E_g=0.46466311826227186,L_g=0.13787126787841247,A_g=1.3120641479700814,K_g=0.11257385478566463,S_h=0.9072908775686469,B_h=-6.1013900403185115,E_h=0.4023029058079091,L_h=0.3620000436856467,A_h=2.5564681618207588,K_h=-1.785047336896007,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.436, MAE_g(kcal/mol): 0.332, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.875, MAE_h(kcal/mol): 0.68)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.436, MAE_g(kcal/mol): 0.332, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.875, MAE_h(kcal/mol): 0.68)"""),
+)
+
+entry(
+ index = 1284,
+ label = "C + CC=C[C]=O <=> CC=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.17304280888652726,B_g=-0.11922258085785306,E_g=0.08967350169909717,L_g=-0.03826499459407237,A_g=0.28260384513231374,K_g=1.00729299562465,S_h=0.3935356771614512,B_h=-0.2878817754211513,E_h=0.26709259445011896,L_h=0.011230262781248824,A_h=0.18809224066844882,K_h=0.144314741106035,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.213, MAE_h(kcal/mol): 0.166)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.129, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.213, MAE_h(kcal/mol): 0.166)"""),
+)
+
+entry(
+ index = 1285,
+ label = "C + [CH2]C=CC=O <=> CC=CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5763060047886555,B_g=-0.13941799467139127,E_g=-0.37391936958793814,L_g=0.2726417517121329,A_g=0.11136432909447268,K_g=-0.328719761031032,S_h=-0.715049597256473,B_h=0.10453234155392184,E_h=-0.20512089630868444,L_h=0.4084678216036207,A_h=0.3337484557228967,K_h=-1.7452429459676901,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.253)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.095, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.253)"""),
+)
+
+entry(
+ index = 1286,
+ label = "C=C + CC=C[C]=O <=> CC=CC=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03322163898473869,B_g=-0.15204104461219442,E_g=-0.19134696434656537,L_g=0.08966617124036268,A_g=0.36375935378192586,K_g=0.4004922825004884,S_h=0.16953151915270337,B_h=-0.23700106134501028,E_h=-0.02966636649850783,L_h=0.08196918956914123,A_h=0.4366900877314328,K_h=-0.32014312431167097,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.079, MAE_h(kcal/mol): 0.062)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.079, MAE_h(kcal/mol): 0.062)"""),
+)
+
+entry(
+ index = 1287,
+ label = "C=C + [CH2]C=CC=O <=> CC=CC=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.028090317870591054,B_g=-0.09160874280500428,E_g=-0.13142779465078994,L_g=0.06940478329821402,A_g=0.48540098602216286,K_g=0.2849642528448217,S_h=0.034519130180744595,B_h=-0.02940246998406595,E_h=0.04052277588429733,L_h=0.14945339267891714,A_h=0.55119185316427,K_h=-0.7832448548634949,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057999999999999996, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057999999999999996, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23600000000000002, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 1288,
+ label = "[H][H] + CC=C[C]=O <=> CC=CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.007623677083876487,B_g=0.011347550121000772,E_g=-0.08867655931120565,L_g=0.08710784114202336,A_g=0.1623110172992242,K_g=1.4135103663967803,S_h=0.14814124056544226,B_h=0.01894923582867377,E_h=0.18291693680189422,L_h=0.0948194837307138,A_h=0.189851550764728,K_h=0.5440739777330739,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.105)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.105)"""),
+)
+
+entry(
+ index = 1289,
+ label = "[H][H] + [CH2]C=CC=O <=> CC=CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1535877714051732,B_g=-0.04585201938427637,E_g=-0.08864723747626765,L_g=0.11854084819554488,A_g=0.03554539440357412,K_g=1.0495237683940848,S_h=-0.06906025173769267,B_h=0.019850882253016854,E_h=0.12384810031932042,L_h=0.15242222846638828,A_h=0.007565033414000515,K_h=-0.05230282307063339,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1290,
+ label = "O + CC=C[C]=O <=> CC=CC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5061388537820538,B_g=-2.507170826831269,E_g=-0.05501509280239715,L_g=0.3720061198582346,A_g=0.11719204378839751,K_g=-0.34535257189960483,S_h=-0.16457612904818367,B_h=-5.288002339138766,E_h=0.3770348145500992,L_h=0.43716656754917504,A_h=0.5646505754008058,K_h=-1.8760549820847823,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.759, MAE_h(kcal/mol): 0.584)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.759, MAE_h(kcal/mol): 0.584)"""),
+)
+
+entry(
+ index = 1291,
+ label = "OO + CC=C[C]=O <=> CC=CC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6091317990017313,B_g=-2.220945735084114,E_g=-0.24855386431057697,L_g=0.4093767984866984,A_g=0.31469659347194,K_g=-0.7101748421980327,S_h=-0.005145982031616629,B_h=-4.953799394974331,E_h=-0.18622297369115218,L_h=0.5192970272104752,A_h=1.328073869846222,K_h=-2.429717199842578,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.674, MAE_h(kcal/mol): 0.534)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.254, MAE_g(kcal/mol): 0.196, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.674, MAE_h(kcal/mol): 0.534)"""),
+)
+
+entry(
+ index = 1292,
+ label = "[O]O + CC=C[C]=O <=> CC=CC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9778098905945045,B_g=-5.033444829124637,E_g=0.18628161736102813,L_g=0.6672183540138825,A_g=0.8030151020704325,K_g=-1.930556942775765,S_h=-0.5116220369154573,B_h=-8.315437813733466,E_h=0.2501445738559627,L_h=0.806343130335894,A_h=2.2499743516727206,K_h=-4.038181116283295,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.212, MAE_h(kcal/mol): 0.987)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.212, MAE_h(kcal/mol): 0.987)"""),
+)
+
+entry(
+ index = 1293,
+ label = "[OH] + CC=C[C]=O <=> CC=CC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.059713916851209484,B_g=-2.842026181823075,E_g=0.23580619657128735,L_g=0.2594102736963665,A_g=0.7507342703760026,K_g=-0.08081097708909077,S_h=0.6061922850491981,B_h=-5.821930961983297,E_h=0.3237057272566363,L_h=0.41167123207059575,A_h=1.9294280521306526,K_h=-1.8046416530933165,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.821, MAE_h(kcal/mol): 0.644)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.821, MAE_h(kcal/mol): 0.644)"""),
+)
+
+entry(
+ index = 1294,
+ label = "CC(=O)OO + C[C]=O <=> CC=O + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08641877802098069,B_g=-0.36501286222552476,E_g=-0.27827154402022625,L_g=0.12145837077187453,A_g=0.7906999313964782,K_g=-0.01837746004738303,S_h=0.20145566694143618,B_h=-0.7936541062664801,E_h=-0.23578420519508383,L_h=0.10247248264952828,A_h=1.2128170671637317,K_h=-0.7993645336206532,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.129)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.139, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.129)"""),
+)
+
+entry(
+ index = 1295,
+ label = "C + C[C]=O <=> CC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.125878637388776,B_g=-0.10407052265364855,E_g=-0.06245550841791122,L_g=0.01769572738507485,A_g=0.2639991408641614,K_g=0.8255562626790096,S_h=0.33052305387971814,B_h=-0.22181968130586777,E_h=0.12080595994450434,L_h=0.05265468508988923,A_h=0.17730180541126978,K_h=-0.08759898187723462,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.062, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 1296,
+ label = "[H][H] + C[C]=O <=> CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13333371392175905,B_g=0.07780548900794716,E_g=-0.07757091432844326,L_g=0.050118346367753405,A_g=0.13932269870784278,K_g=1.5067538014995774,S_h=0.2872880082636571,B_h=0.12967581501324524,E_h=0.18555590194631302,L_h=0.06669251356645026,A_h=0.05030160783611582,K_h=0.6292539082279246,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.125)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.125)"""),
+)
+
+entry(
+ index = 1297,
+ label = "[H][H] + [CH2]C=O <=> CC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18344472983077795,B_g=-0.1278358698708866,E_g=-0.10278769237511165,L_g=0.133480323096449,A_g=0.09637354098242709,K_g=1.0261249441135716,S_h=-0.06925084366478959,B_h=-0.1271687981260474,E_h=0.08563441893638954,L_h=0.1567325382022723,A_h=0.11946448599609145,K_h=-0.041519718272188866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.155, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.155, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 1298,
+ label = "O + C[C]=O <=> CC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4542685277767557,B_g=-2.3668365248180656,E_g=-0.06668518310771578,L_g=0.36178746038234627,A_g=0.655255045359184,K_g=-0.3077839708853096,S_h=-0.09133018537309343,B_h=-5.031971406919003,E_h=0.25534919955745533,L_h=0.45890137769695755,A_h=1.1814500342388206,K_h=-1.8327173100464385,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.726, MAE_h(kcal/mol): 0.5429999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.314, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.726, MAE_h(kcal/mol): 0.5429999999999999)"""),
+)
+
+entry(
+ index = 1299,
+ label = "O + [CH2]C=O <=> CC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.44738522702506334,B_g=-3.060935671011348,E_g=-0.05376158435879823,L_g=0.4486020831749898,A_g=-1.0285439954959557,K_g=-0.7134222354174147,S_h=0.4138703696909447,B_h=-7.239553715730129,E_h=0.07847256075278634,L_h=0.6746514391706621,A_h=-0.717028821114787,K_h=-3.050680359241787,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.031, MAE_h(kcal/mol): 0.7659999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.319, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.031, MAE_h(kcal/mol): 0.7659999999999999)"""),
+)
+
+entry(
+ index = 1300,
+ label = "OO + C[C]=O <=> CC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16066166408396246,B_g=-2.488236251920065,E_g=-0.05939137666689164,L_g=0.2964657425992469,A_g=0.6265636298723642,K_g=-0.29755798095068686,S_h=0.5690121983478312,B_h=-5.307516020289997,E_h=-0.08139741378785051,L_h=0.4208489664061856,A_h=1.6005690123836651,K_h=-1.9949476922995832,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7190000000000001, MAE_h(kcal/mol): 0.565)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7190000000000001, MAE_h(kcal/mol): 0.565)"""),
+)
+
+entry(
+ index = 1301,
+ label = "[O]O + C[C]=O <=> CC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3573012196368343,B_g=-4.627652624959107,E_g=0.40902493646744253,L_g=0.45193011144045125,A_g=0.6356167464094675,K_g=-1.183891076997408,S_h=0.1561241101273091,B_h=-7.831744824596439,E_h=0.49592752476489993,L_h=0.590409807393827,A_h=1.913880149154785,K_h=-3.209054920200586,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.568, MAE_g(kcal/mol): 0.44299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.161, MAE_h(kcal/mol): 0.9259999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.568, MAE_g(kcal/mol): 0.44299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.161, MAE_h(kcal/mol): 0.9259999999999999)"""),
+)
+
+entry(
+ index = 1302,
+ label = "[OH] + C[C]=O <=> CC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07716773909804595,B_g=-2.7705248873267947,E_g=0.1892797749834373,L_g=0.2725244643723809,A_g=0.9416487376572326,K_g=0.26464422123279707,S_h=0.6335422265876051,B_h=-5.7185568329094245,E_h=0.1829389281780977,L_h=0.42560643412487387,A_h=2.112147066546715,K_h=-1.4425756352790593,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.6409999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.6409999999999999)"""),
+)
+
+entry(
+ index = 1303,
+ label = "CCC(C)(O)OO + [O]O <=> CCC(C)(O)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8312373681982445,B_g=-5.773652560757902,E_g=0.009852136539163461,L_g=0.7676383082177518,A_g=0.6490901295634725,K_g=-2.481726804563831,S_h=-0.5283354828301094,B_h=-10.035691225875256,E_h=0.016112348298423576,L_h=1.1061002489069298,A_h=2.3896195905648816,K_h=-5.272667019466199,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.639, MAE_g(kcal/mol): 0.493, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3630000000000002, MAE_h(kcal/mol): 1.031)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.639, MAE_g(kcal/mol): 0.493, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3630000000000002, MAE_h(kcal/mol): 1.031)"""),
+)
+
+entry(
+ index = 1304,
+ label = "CCC(C)(O)OO + [O][O] <=> CCC(C)(O)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6964595539057895,B_g=-2.6078180252559076,E_g=-0.37388271729426564,L_g=0.5418748401127248,A_g=0.24643536173630748,K_g=-0.8750002068431894,S_h=-0.3384985929828505,B_h=-5.8903241419761505,E_h=-0.45640902172722864,L_h=0.9413701802253217,A_h=1.4441003706958346,K_h=-3.2288838110773996,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6409999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33, MAE_g(kcal/mol): 0.235, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.87, MAE_h(kcal/mol): 0.6409999999999999)"""),
+)
+
+entry(
+ index = 1305,
+ label = "COO + [CH2]CC(C)=O <=> CCC(C)=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7133855831237422,B_g=-2.6941048550196673,E_g=1.154312676003714,L_g=0.18842944177023568,A_g=-0.06350376401694424,K_g=-0.9804708471151267,S_h=-0.15558165618095632,B_h=-5.437990855305302,E_h=1.1540561099480067,L_h=0.3777458690473455,A_h=0.9604367033937474,K_h=-3.082054722625432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.649, MAE_g(kcal/mol): 0.469, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.965, MAE_h(kcal/mol): 0.7190000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.649, MAE_g(kcal/mol): 0.469, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.965, MAE_h(kcal/mol): 0.7190000000000001)"""),
+)
+
+entry(
+ index = 1306,
+ label = "CC + C[CH]C(C)=O <=> CCC(C)=O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07221967945226072,B_g=-0.12362085609855104,E_g=-0.2613455148022736,L_g=0.07828929928442392,A_g=0.42681595981606585,K_g=-0.2595275610361184,S_h=0.011252254157452315,B_h=-0.08213045966130017,E_h=-0.10866672028017793,L_h=0.11771983681728126,A_h=0.5284087874174545,K_h=-1.425554310097558,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14800000000000002, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 1307,
+ label = "CC + [CH2]C(=O)CC <=> CCC(C)=O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04822708801425328,B_g=-0.17461885751444403,E_g=-0.0319094868712638,L_g=0.007696981671221454,A_g=0.6046455582562194,K_g=0.32304598597053164,S_h=0.23884100648736895,B_h=-0.3188236417394616,E_h=0.12254327866458004,L_h=0.04474512011536738,A_h=0.9553493650320068,K_h=-0.6637583774912001,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.098, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1308,
+ label = "CC + [CH2]CC(C)=O <=> CCC(C)=O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1471369677188162,B_g=0.20559737612642676,E_g=-0.21690094349502054,L_g=0.08930697876237234,A_g=0.21915872478524548,K_g=0.08651407398452914,S_h=-0.11569663020656018,B_h=0.3499927522785412,E_h=-0.06914821724250664,L_h=0.1397551957731781,A_h=0.48413281666109487,K_h=-0.9485833516200664,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.12)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.067, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.12)"""),
+)
+
+entry(
+ index = 1309,
+ label = "CO + C[CH]C(C)=O <=> CCC(C)=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6848700986465504,B_g=-2.103211237349364,E_g=-0.6963276056485687,L_g=0.5766578668079113,A_g=-1.1922258085785307,K_g=-2.019907904290544,S_h=-0.22854171196540118,B_h=-4.128734273030532,E_h=-0.4134232117081405,L_h=0.6873404632400758,A_h=-1.7924804220527866,K_h=-4.070625726642178,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.324, MAE_g(kcal/mol): 0.262, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7290000000000001, MAE_h(kcal/mol): 0.6)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.324, MAE_g(kcal/mol): 0.262, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7290000000000001, MAE_h(kcal/mol): 0.6)"""),
+)
+
+entry(
+ index = 1310,
+ label = "CO + [CH2]C(=O)CC <=> CCC(C)=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.414581424188191,B_g=-2.0764917152621236,E_g=-0.2574090584618489,L_g=0.4008588054372133,A_g=-1.060255559981388,K_g=-1.1240891946413845,S_h=0.10707601073479216,B_h=-4.225789546675268,E_h=0.07570164735114662,L_h=0.5418015355253799,A_h=-1.5021282820381097,K_h=-3.0730455888407353,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.722, MAE_h(kcal/mol): 0.588)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.722, MAE_h(kcal/mol): 0.588)"""),
+)
+
+entry(
+ index = 1311,
+ label = "CO + [CH2]CC(C)=O <=> CCC(C)=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34648146254471734,B_g=-2.0327875202870547,E_g=-0.23041830940143232,L_g=0.385178954204125,A_g=-0.07387636312625695,K_g=-1.08585352188225,S_h=0.1597306958246814,B_h=-4.294585901898519,E_h=-0.09910047163165983,L_h=0.5398589639607382,A_h=0.46442854358276797,K_h=-2.969334258665078,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.231, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.591, MAE_h(kcal/mol): 0.447)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.231, MAE_g(kcal/mol): 0.17600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.591, MAE_h(kcal/mol): 0.447)"""),
+)
+
+entry(
+ index = 1312,
+ label = "C + C[CH]C(C)=O <=> CCC(C)=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2066309708079908,B_g=-0.03605119605625439,E_g=-0.26929173207046786,L_g=0.13337769667416605,A_g=-0.1727495905371474,K_g=-0.15849917875728595,S_h=-0.1850720916698362,B_h=0.11895868434341118,E_h=-0.08694657104986443,L_h=0.19823759555699216,A_h=-0.40730227866483587,K_h=-1.4476703040995345,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.316, MAE_h(kcal/mol): 0.19899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.316, MAE_h(kcal/mol): 0.19899999999999998)"""),
+)
+
+entry(
+ index = 1313,
+ label = "C + [CH2]C(=O)CC <=> CCC(C)=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.021133712531553762,B_g=-0.08339862902236808,E_g=-0.0012828302785369088,L_g=0.02331818923443376,A_g=0.4104543759206694,K_g=0.5600470473155419,S_h=0.09599968758696775,B_h=-0.07614147487521641,E_h=0.18044657220836885,L_h=0.11997028764877171,A_h=0.5830573572831268,K_h=-0.6144317206667723,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.321, MAE_h(kcal/mol): 0.207)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.321, MAE_h(kcal/mol): 0.207)"""),
+)
+
+entry(
+ index = 1314,
+ label = "C + [CH2]CC(C)=O <=> CCC(C)=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.001590709545385767,B_g=0.09721654373689421,E_g=-0.05634190583334103,L_g=0.03731203495858781,A_g=0.19069455351919512,K_g=0.46708216964465576,S_h=0.06073285061530451,B_h=0.18535797956048156,E_h=0.09909314117292534,L_h=0.10575652816258277,A_h=0.35081376365680483,K_h=-0.6372441082485258,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 1315,
+ label = "C=C + C[CH]C(C)=O <=> CCC(C)=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.37792913051570787,B_g=-0.05587275647433326,E_g=-0.5225957336409988,L_g=0.2334457888587794,A_g=0.047765269113979984,K_g=-0.7167209418479381,S_h=-0.3826646068581926,B_h=0.18842944177023568,E_h=-0.3806194088712681,L_h=0.2688592350051326,A_h=-0.09590439162341931,K_h=-1.9326094712214237,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.212, MAE_h(kcal/mol): 0.159)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10800000000000001, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.212, MAE_h(kcal/mol): 0.159)"""),
+)
+
+entry(
+ index = 1316,
+ label = "C=C + [CH2]C(=O)CC <=> CCC(C)=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13050415685024336,B_g=-0.09126421124448295,E_g=-0.24050502062009968,L_g=0.11506621075539347,A_g=0.5758661772645857,K_g=0.030531360629178432,S_h=-0.08601560279058337,B_h=0.011846021314946541,E_h=-0.0991591153015358,L_h=0.19238788948686386,A_h=0.7744629652995682,K_h=-1.1014893903629315,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.076, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1317,
+ label = "C=C + [CH2]CC(C)=O <=> CCC(C)=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12116515242249468,B_g=0.011222932322514327,E_g=-0.2352270903312621,L_g=0.11527879405869387,A_g=0.3645950260776585,K_g=-0.005233947536430588,S_h=-0.07886840552444917,B_h=0.13576742622161192,E_h=-0.08226240791852109,L_h=0.15079486662733002,A_h=0.6249582594095096,K_h=-1.038747994054375,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.099)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.099)"""),
+)
+
+entry(
+ index = 1318,
+ label = "[H][H] + C[CH]C(C)=O <=> CCC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.46428926486681255,B_g=-0.004926068269581731,E_g=-0.4335526513930682,L_g=0.2653772671062467,A_g=-0.5624587682391913,K_g=0.11737530525675992,S_h=-0.4412276416880862,B_h=0.24184649456851254,E_h=-0.21127115118692713,L_h=0.24484465219092166,A_h=-0.9733822935188685,K_h=-1.0918791589620065,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.17800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.121, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.237, MAE_h(kcal/mol): 0.17800000000000002)"""),
+)
+
+entry(
+ index = 1319,
+ label = "[H][H] + [CH2]C(=O)CC <=> CCC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18269702303985932,B_g=-0.07861916992747627,E_g=-0.13904414127593193,L_g=0.1371895352161043,A_g=0.06652391301555684,K_g=0.9686907999287907,S_h=-0.08831003637448082,B_h=-0.020510623539121548,E_h=0.058966210060290826,L_h=0.16149000592096058,A_h=0.03833096872268284,K_h=-0.10544864889573391,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16699999999999998, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16699999999999998, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 1320,
+ label = "[H][H] + [CH2]CC(C)=O <=> CCC(C)=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.014228420403657944,B_g=0.057676049323019424,E_g=-0.06868639834223335,L_g=0.07041638660357456,A_g=0.22602736461946885,K_g=1.26002522141389,S_h=0.11975770434547132,B_h=0.08891846444944403,E_h=0.10193002870317554,L_h=0.10560991898789283,A_h=0.3333965937036409,K_h=0.22013367579693358,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.166, MAE_h(kcal/mol): 0.10400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.037000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.166, MAE_h(kcal/mol): 0.10400000000000001)"""),
+)
+
+entry(
+ index = 1321,
+ label = "O + C[CH]C(C)=O <=> CCC(C)=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6502410115847883,B_g=-3.0432032913326,E_g=-0.11634171057519588,L_g=0.5011028286314545,A_g=-1.5226462360359658,K_g=-1.2826470170685464,S_h=0.13615594053454028,B_h=-7.231607498461935,E_h=0.07726303506159439,L_h=0.6964742148232586,A_h=-1.5218472160339058,K_h=-3.749588286364898,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.441, MAE_g(kcal/mol): 0.353, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.055, MAE_h(kcal/mol): 0.789)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.441, MAE_g(kcal/mol): 0.353, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.055, MAE_h(kcal/mol): 0.789)"""),
+)
+
+entry(
+ index = 1322,
+ label = "O + [CH2]C(=O)CC <=> CCC(C)=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.487262922540725,B_g=-3.060591139450826,E_g=0.16371113491751307,L_g=0.4067671551772175,A_g=-1.393461561757932,K_g=-0.5328437149518249,S_h=0.34962622934181636,B_h=-7.307690329667276,E_h=0.3497288557640993,L_h=0.6325599451171825,A_h=-1.2459507406436565,K_h=-2.843147742009453,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47200000000000003, MAE_g(kcal/mol): 0.369, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.075, MAE_h(kcal/mol): 0.813)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47200000000000003, MAE_g(kcal/mol): 0.369, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.075, MAE_h(kcal/mol): 0.813)"""),
+)
+
+entry(
+ index = 1323,
+ label = "O + [CH2]CC(C)=O <=> CCC(C)=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32240090560189594,B_g=-2.82397126196001,E_g=0.6195703722396545,L_g=0.235476325928235,A_g=-0.9826113410655997,K_g=-0.056085339777633664,S_h=0.5778380706641653,B_h=-7.323912634846717,E_h=0.7121760574325503,L_h=0.462288049632295,A_h=-0.22403347984368577,K_h=-2.3137273512866376,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.536, MAE_g(kcal/mol): 0.423, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.141, MAE_h(kcal/mol): 0.883)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.536, MAE_g(kcal/mol): 0.423, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.141, MAE_h(kcal/mol): 0.883)"""),
+)
+
+entry(
+ index = 1324,
+ label = "OO + [CH2]C(=O)CC <=> CCC(C)=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4828426559238235,B_g=-2.9705804366499424,E_g=-0.06811462256094261,L_g=0.35511674293395434,A_g=-1.2922132657170644,K_g=-1.131060460897891,S_h=0.2651500228854773,B_h=-5.685254558878608,E_h=0.07793743726516808,L_h=0.46221474504495,A_h=-0.5711600227570388,K_h=-3.378388516967458,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.49, MAE_g(kcal/mol): 0.371, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.948, MAE_h(kcal/mol): 0.768)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.49, MAE_g(kcal/mol): 0.371, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.948, MAE_h(kcal/mol): 0.768)"""),
+)
+
+entry(
+ index = 1325,
+ label = "[O]O + C[CH]C(C)=O <=> CCC(C)=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.159641919503693,B_g=-4.865181479333001,E_g=-0.1310905935490031,L_g=0.769294991891748,A_g=0.08202050278028271,K_g=-2.8775349239329766,S_h=-0.7792131025595219,B_h=-7.880660975731735,E_h=-0.0870345365546784,L_h=0.8975340369930318,A_h=0.9436572833504846,K_h=-5.213517547937546,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5760000000000001, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.198, MAE_h(kcal/mol): 0.973)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5760000000000001, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.198, MAE_h(kcal/mol): 0.973)"""),
+)
+
+entry(
+ index = 1326,
+ label = "[O]O + [CH2]C(=O)CC <=> CCC(C)=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7565180023175205,B_g=-4.788695472897263,E_g=0.12364284747475454,L_g=0.6123058876337684,A_g=0.587961434176505,K_g=-2.1568921866620827,S_h=-0.3127833437422363,B_h=-7.881995119221414,E_h=0.17253700723384696,L_h=0.7751593588793453,A_h=1.621262897391149,K_h=-4.4119245548616055,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.456, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.171, MAE_h(kcal/mol): 0.9359999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.456, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.171, MAE_h(kcal/mol): 0.9359999999999999)"""),
+)
+
+entry(
+ index = 1327,
+ label = "[O]O + [CH2]CC(C)=O <=> CCC(C)=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6510546925043175,B_g=-4.8161773626928905,E_g=0.21091928916767133,L_g=0.5721349737687269,A_g=0.769309652809217,K_g=-1.9004434182944527,S_h=-0.1947189753644338,B_h=-7.985317935084144,E_h=0.2382545697886092,L_h=0.7407648464970871,A_h=1.9989647836860873,K_h=-4.098576765796813,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.584, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.181, MAE_h(kcal/mol): 0.9470000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.584, MAE_g(kcal/mol): 0.465, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.181, MAE_h(kcal/mol): 0.9470000000000001)"""),
+)
+
+entry(
+ index = 1328,
+ label = "[OH] + C[CH]C(C)=O <=> CCC(C)=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6535397180153119,B_g=-2.7717637348529247,E_g=-0.329929286722224,L_g=0.5535009476656365,A_g=-0.653158534161118,K_g=-1.5304971573406119,S_h=-0.22748612590763367,B_h=-5.224931072187157,E_h=-0.09169670830981826,L_h=0.6996483034552956,A_h=-0.6509667269995034,K_h=-3.722194362074084,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.608)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.807, MAE_h(kcal/mol): 0.608)"""),
+)
+
+entry(
+ index = 1329,
+ label = "[OH] + [CH2]C(=O)CC <=> CCC(C)=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5776108264433958,B_g=-2.7156930559927597,E_g=-0.12634778674778377,L_g=0.48186770491213543,A_g=-0.26911580106084,K_g=-1.0410644190144758,S_h=-0.12658969188602218,B_h=-5.229930445044084,E_h=0.11517616763641093,L_h=0.6313797412609286,A_h=0.10276570099890815,K_h=-3.0991053696418716,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.578)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.325, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.578)"""),
+)
+
+entry(
+ index = 1330,
+ label = "[OH] + [CH2]CC(C)=O <=> CCC(C)=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2103255220101771,B_g=-2.543713163622735,E_g=0.3481674680536516,L_g=0.17335801861211061,A_g=0.4499875398758097,K_g=1.2342146762097272,S_h=0.8173828011900459,B_h=-5.308454319008011,E_h=0.4377236824129968,L_h=0.33593293242577665,A_h=1.2170833941472086,K_h=-0.6316802900690429,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.588)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.588)"""),
+)
+
+entry(
+ index = 1331,
+ label = "CC + CCC(C)[O] <=> CCC(C)O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06617205099630101,B_g=-0.036212466148413315,E_g=-0.025224108505402878,L_g=0.028302901173891462,A_g=0.43331074625482985,K_g=0.42680129889859686,S_h=0.07017448146533616,B_h=-0.044173344334076645,E_h=0.2053261491532504,L_h=0.04110921258305705,A_h=0.6876336815894557,K_h=-0.4892128245641011,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16899999999999998, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16899999999999998, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 1332,
+ label = "CC + CC[C](C)O <=> CCC(C)O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.45713473714194386,B_g=-1.1191924482067408,E_g=-0.04671701351494697,L_g=0.015833790866512706,A_g=0.4121110595946656,K_g=-0.13114190676014456,S_h=1.1795587758853205,B_h=-1.837980579417807,E_h=0.2610742878290972,L_h=-0.025964484837587034,A_h=0.9604220424762784,K_h=-1.4580575641263163,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.385)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.24600000000000002, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.49, MAE_h(kcal/mol): 0.385)"""),
+)
+
+entry(
+ index = 1333,
+ label = "CO + CCC(C)[O] <=> CCC(C)O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.43132419193778126,B_g=-2.164589168333304,E_g=-0.28381337082350566,L_g=0.42772493669914335,A_g=-0.6419869150497451,K_g=-1.0568908794222538,S_h=0.121568327652892,B_h=-4.349454385526226,E_h=-0.026140415847214958,L_h=0.5247582189676753,A_h=-0.6369582203578805,K_h=-2.9429079549272177,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.526)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.201, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.526)"""),
+)
+
+entry(
+ index = 1334,
+ label = "CO + CC[C](C)O <=> CCC(C)O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1579787161871367,B_g=-1.6335194243952273,E_g=-0.06471328970813618,L_g=0.19339216233348988,A_g=-1.3337109926130497,K_g=-0.3478156060343957,S_h=0.927867475236379,B_h=-4.584703467233691,E_h=0.4511457523558601,L_h=0.23755817620883202,A_h=-0.6625341908825392,K_h=-2.435896776555759,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8290000000000001, MAE_g(kcal/mol): 0.5920000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.06, MAE_h(kcal/mol): 0.8220000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8290000000000001, MAE_g(kcal/mol): 0.5920000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.06, MAE_h(kcal/mol): 0.8220000000000001)"""),
+)
+
+entry(
+ index = 1335,
+ label = "CO + [CH2]C(O)CC <=> CCC(C)O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2838720144933817,B_g=-3.759674997583566,E_g=-0.03676225055350056,L_g=0.41865715924457103,A_g=-0.3699242695776375,K_g=-0.8794937780474357,S_h=0.8763856635440092,B_h=-8.46722229228995,E_h=0.010717130669834062,L_h=0.7092731957736897,A_h=0.46843830451053764,K_h=-3.435272876747152,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.498, MAE_g(kcal/mol): 0.385, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.111, MAE_h(kcal/mol): 0.846)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.498, MAE_g(kcal/mol): 0.385, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.111, MAE_h(kcal/mol): 0.846)"""),
+)
+
+entry(
+ index = 1336,
+ label = "CO + CCC(C)[O] <=> CCC(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9334166324983928,B_g=3.569801455442634,E_g=-0.2628409283841109,L_g=-0.026360329609249854,A_g=-1.3956826907544844,K_g=1.0834344704998662,S_h=-0.9154496781401416,B_h=4.417525025334761,E_h=0.23115135527488198,L_h=-0.04454719772953598,A_h=-1.4736494498545905,K_h=0.24026311548186127,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.765, MAE_g(kcal/mol): 0.414, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.557)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.765, MAE_g(kcal/mol): 0.414, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.557)"""),
+)
+
+entry(
+ index = 1337,
+ label = "CO + CC[C](C)O <=> CCC(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29701552700433415,B_g=-1.4868662669528878,E_g=0.027525872548034815,L_g=0.3613769546932145,A_g=-0.7798288610932197,K_g=-1.144995662952169,S_h=0.27456966235930547,B_h=-3.7068810337777207,E_h=0.2913564128613027,L_h=0.4712751920407879,A_h=-0.5546371687694834,K_h=-3.1456611130646595,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.479, MAE_g(kcal/mol): 0.34, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.86, MAE_h(kcal/mol): 0.638)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.479, MAE_g(kcal/mol): 0.34, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.86, MAE_h(kcal/mol): 0.638)"""),
+)
+
+entry(
+ index = 1338,
+ label = "CO + [CH2]C(O)CC <=> CCC(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1877843614016,B_g=0.5486921667358067,E_g=-0.2957107053495937,L_g=-0.031000509988186212,A_g=-0.01935241105907108,K_g=0.7219182370906964,S_h=0.9302058915726834,B_h=0.22560952847160254,E_h=0.04830039260159825,L_h=-0.10227456026369687,A_h=-0.12330564637296768,K_h=-0.3252817758845531,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.294)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.276, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.385, MAE_h(kcal/mol): 0.294)"""),
+)
+
+entry(
+ index = 1339,
+ label = "CO + [CH2]CC(C)O <=> CCC(C)O + [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3448321093294556,B_g=2.3173559283602136,E_g=-0.8831809987908875,L_g=0.05361497518410829,A_g=-2.4475668668610773,K_g=0.7484618281683085,S_h=0.07784947176035413,B_h=3.0748122293957496,E_h=-0.4093181548168224,L_h=-0.08169796259596485,A_h=-3.360905372885684,K_h=-0.043865465067227785,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.255, MAE_g(kcal/mol): 0.715, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.182, MAE_h(kcal/mol): 0.745)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.255, MAE_g(kcal/mol): 0.715, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.182, MAE_h(kcal/mol): 0.745)"""),
+)
+
+entry(
+ index = 1340,
+ label = "C + CCC(C)[O] <=> CCC(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09120556757460697,B_g=-0.10933379202501713,E_g=-0.12246997407723506,L_g=0.05052885205688521,A_g=0.7879803312059799,K_g=0.7214637486491575,S_h=0.1349610757608173,B_h=-0.27344810217292753,E_h=-0.10890862541841632,L_h=0.10934112248375161,A_h=1.4618987245031922,K_h=-0.27145421739714437,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12300000000000001, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 1341,
+ label = "C + CC[C](C)O <=> CCC(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3101223872216141,B_g=-0.9666969151530076,E_g=-0.13402277704280174,L_g=0.07570897780988112,A_g=0.4095014162851848,K_g=0.09254704152301986,S_h=0.7332804481291662,B_h=-1.415145058694573,E_h=0.1972992968389766,L_h=0.10273637916397016,A_h=0.7769113385168899,K_h=-1.2943977424199444,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.409, MAE_h(kcal/mol): 0.32299999999999995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.163, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.409, MAE_h(kcal/mol): 0.32299999999999995)"""),
+)
+
+entry(
+ index = 1342,
+ label = "C + C[CH]C(C)O <=> CCC(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0813827528703815,B_g=0.7122713533960988,E_g=-0.11531544635236635,L_g=0.04459851094067745,A_g=-0.7255614750817411,K_g=0.4584982024665602,S_h=-0.2189534719406796,B_h=1.3867981747682745,E_h=0.2752220731866757,L_h=0.0742135642280438,A_h=-1.4954062513785764,K_h=-0.5802644525052837,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.301)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.131, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.48100000000000004, MAE_h(kcal/mol): 0.301)"""),
+)
+
+entry(
+ index = 1343,
+ label = "C + [CH2]C(O)CC <=> CCC(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05384221940487769,B_g=-0.0049993728569266965,E_g=-0.04684163131343341,L_g=0.03462908706176204,A_g=0.2827357933895347,K_g=0.6379844845807101,S_h=0.16655535290649776,B_h=0.01568718169182277,E_h=0.1751319896258588,L_h=0.11756589718385682,A_h=0.13359027997746645,K_h=-0.5091370114044629,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.18)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.18)"""),
+)
+
+entry(
+ index = 1344,
+ label = "C + [CH2]CC(C)O <=> CCC(C)O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20533347961198486,B_g=0.6270107878551686,E_g=-0.1625236006025246,L_g=-0.027415915667017367,A_g=-0.2619099601248298,K_g=0.6466051040524781,S_h=0.2274641345314302,B_h=1.6978661911666386,E_h=0.23614339767307418,L_h=-0.0898494327087251,A_h=-0.6820552024925036,K_h=-0.1371528829224318,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.40700000000000003, MAE_h(kcal/mol): 0.26899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.40700000000000003, MAE_h(kcal/mol): 0.26899999999999996)"""),
+)
+
+entry(
+ index = 1345,
+ label = "C=O + CC[C](C)O <=> CCC(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9326835866249432,B_g=-2.2082200587210283,E_g=-0.28280909797687964,L_g=0.5363989874380558,A_g=0.37700549271516126,K_g=-1.6413556847824042,S_h=-0.7851214522995262,B_h=-4.0789604582233006,E_h=-0.12365750839222352,L_h=0.6964155711533825,A_h=1.4309495277261475,K_h=-3.65308279712525,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.439)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5920000000000001, MAE_h(kcal/mol): 0.439)"""),
+)
+
+entry(
+ index = 1346,
+ label = "C=O + C[CH]C(C)O <=> CCC(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4944834243942042,B_g=0.6524914624162789,E_g=-0.26583175554778554,L_g=0.16912101346357156,A_g=0.2706991801474913,K_g=-0.08004860938070311,S_h=-0.7458375239413588,B_h=1.3284110709480088,E_h=-0.03075860484994783,L_h=0.20261387942148662,A_h=0.6157878555326542,K_h=-1.1375259255017167,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.191)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27399999999999997, MAE_h(kcal/mol): 0.191)"""),
+)
+
+entry(
+ index = 1347,
+ label = "C=O + [CH2]C(O)CC <=> CCC(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.19924186840361818,B_g=0.24061497750111716,E_g=-0.20418259759066892,L_g=0.10881332945486787,A_g=0.6193944412300266,K_g=0.33685657022632326,S_h=-0.14078145999600764,B_h=0.4197493975960111,E_h=-0.029380478607862463,L_h=0.13584806126769142,A_h=1.1338093829233271,K_h=-0.6549838183860077,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 1348,
+ label = "C=O + [CH2]CC(C)O <=> CCC(C)O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7317557127123908,B_g=-0.5334448125680538,E_g=-0.1853873013954196,L_g=0.2938707602072351,A_g=0.4476784453744433,K_g=-0.3269237986410804,S_h=-0.8564248244099748,B_h=-1.1270213781351832,E_h=-0.10162947989506117,L_h=0.4171104324515923,A_h=1.5039169139693271,K_h=-1.717093984427223,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.239, MAE_h(kcal/mol): 0.17600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.08199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.239, MAE_h(kcal/mol): 0.17600000000000002)"""),
+)
+
+entry(
+ index = 1349,
+ label = "[H][H] + CCC(C)[O] <=> CCC(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3989895384599166,B_g=-0.03854355202598324,E_g=-0.21160835228871397,L_g=0.19155221719113122,A_g=0.0848500598517984,K_g=0.6321494394280507,S_h=-0.30638385326702083,B_h=0.058387103820265594,E_h=-0.02979098429699427,L_h=0.17217048429712217,A_h=0.24705845072873966,K_h=-0.4589746822843025,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.092)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.092)"""),
+)
+
+entry(
+ index = 1350,
+ label = "[H][H] + CC[C](C)O <=> CCC(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.038844100834097596,B_g=0.4483235257430789,E_g=-0.0950467279514832,L_g=0.07801074185251305,A_g=-0.2044684854813143,K_g=1.0922090296050586,S_h=-0.10280235329258063,B_h=0.7650653172019434,E_h=0.32638134469472757,L_h=0.07776883671427466,A_h=-0.2918695449727175,K_h=0.047457389847131125,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32899999999999996, MAE_h(kcal/mol): 0.21100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.081, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32899999999999996, MAE_h(kcal/mol): 0.21100000000000002)"""),
+)
+
+entry(
+ index = 1351,
+ label = "[H][H] + C[CH]C(C)O <=> CCC(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13658843759987555,B_g=-0.6377352489837371,E_g=-0.174706823019258,L_g=0.1403489629306723,A_g=0.1833934166196365,K_g=0.8468878975963947,S_h=0.5293470861354701,B_h=-1.1750285523874016,E_h=0.007931556350725346,L_h=0.20079592565533147,A_h=0.13383218511570483,K_h=-0.441564842789873,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.231)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.109, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.231)"""),
+)
+
+entry(
+ index = 1352,
+ label = "[H][H] + [CH2]C(O)CC <=> CCC(C)O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.021316973999916177,B_g=0.2424475921847413,E_g=-0.07446279982501668,L_g=0.037656566519109154,A_g=0.2861591176185446,K_g=1.43535513342558,S_h=0.25091427202308486,B_h=0.310342300983649,E_h=0.07370043211662904,L_h=0.04654841296405355,A_h=0.40483191407131053,K_h=0.44090510150376827,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.105)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.065, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.105)"""),
+)
+
+entry(
+ index = 1353,
+ label = "O + CCC(C)[O] <=> CCC(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8483100065908872,B_g=-2.036269488185941,E_g=-0.5226910296045472,L_g=0.5038957334092978,A_g=-1.5300353384403385,K_g=-1.0718303543231582,S_h=-0.4126828353759563,B_h=-4.290708089227969,E_h=-0.22695100242001542,L_h=0.486053396849533,A_h=-1.8344106460141072,K_h=-2.850991332855364,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.287, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.596)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.287, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.596)"""),
+)
+
+entry(
+ index = 1354,
+ label = "O + CC[C](C)O <=> CCC(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.36348812680874953,B_g=-4.024157948724204,E_g=0.03410129403287829,L_g=0.3228993767958417,A_g=0.21881419322472417,K_g=-0.9660371738669028,S_h=1.726564937112193,B_h=-8.348908688315175,E_h=0.599074409618002,L_h=0.3258902039595163,A_h=0.8352104768323416,K_h=-3.1693898079882254,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.45299999999999996, MAE_g(kcal/mol): 0.36, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.178, MAE_h(kcal/mol): 0.9520000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.45299999999999996, MAE_g(kcal/mol): 0.36, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.178, MAE_h(kcal/mol): 0.9520000000000001)"""),
+)
+
+entry(
+ index = 1355,
+ label = "O + C[CH]C(C)O <=> CCC(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3073074910675674,B_g=-3.119293452996675,E_g=-0.15728232260735953,L_g=0.41733767667236166,A_g=-0.932192445889732,K_g=-0.7180257635026787,S_h=0.6355800941157951,B_h=-7.438201816976254,E_h=-0.05518369335329057,L_h=0.5723255656958238,A_h=-0.559797811718569,K_h=-2.8965574643489953,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.29100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.978, MAE_h(kcal/mol): 0.7490000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.29100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.978, MAE_h(kcal/mol): 0.7490000000000001)"""),
+)
+
+entry(
+ index = 1356,
+ label = "O + [CH2]C(O)CC <=> CCC(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10753049917633097,B_g=-1.028771239716725,E_g=0.6757216861458986,L_g=-0.05692101207336627,A_g=-1.0592586175934964,K_g=0.9968177700930541,S_h=0.9660664957018408,B_h=-3.5794410086784967,E_h=0.921123453200642,L_h=-0.07554770771772218,A_h=-1.4981038601928713,K_h=-0.32816997662594477,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.615, MAE_h(kcal/mol): 0.489)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.615, MAE_h(kcal/mol): 0.489)"""),
+)
+
+entry(
+ index = 1357,
+ label = "O + [CH2]CC(C)O <=> CCC(C)O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0003665229367248311,B_g=-0.7903334084597533,E_g=0.4462416754624819,L_g=-0.021998706662224365,A_g=-1.353686492664553,K_g=0.7609969126042978,S_h=0.7417837802611823,B_h=-2.8006310813493727,E_h=0.7245938545287877,L_h=-0.043689534057599864,A_h=-1.7119186805606688,K_h=-0.5075169800241391,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.461)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.255, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.55, MAE_h(kcal/mol): 0.461)"""),
+)
+
+entry(
+ index = 1358,
+ label = "OO + CCC(C)[O] <=> CCC(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16161462371944701,B_g=-1.946793908872675,E_g=-0.43372858240269613,L_g=0.3464228188748414,A_g=-0.36595116094354035,K_g=-0.9251185532109428,S_h=0.5154925191272715,B_h=-4.257801659968814,E_h=-0.30905214024637756,L_h=0.40512513242069037,A_h=0.5776621396545373,K_h=-2.9113503300752095,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.647, MAE_h(kcal/mol): 0.52)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.19, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.647, MAE_h(kcal/mol): 0.52)"""),
+)
+
+entry(
+ index = 1359,
+ label = "OO + [CH2]CC(C)O <=> CCC(C)O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.680617621764368,B_g=0.7040759005309315,E_g=1.095815615302431,L_g=0.3697849908616821,A_g=-1.5098032723331276,K_g=0.09948898594458816,S_h=-1.7712367526402153,B_h=-0.20974641577015185,E_h=1.2552530927777326,L_h=0.4553607661281956,A_h=-1.2140412537723924,K_h=-1.3219675977203864,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.412, MAE_g(kcal/mol): 0.948, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.489, MAE_h(kcal/mol): 0.997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.412, MAE_g(kcal/mol): 0.948, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.489, MAE_h(kcal/mol): 0.997)"""),
+)
+
+entry(
+ index = 1360,
+ label = "[O]O + CCC(C)[O] <=> CCC(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.2267009560068682,B_g=-5.0619456526843605,E_g=0.008290748828715678,L_g=0.7582626514963305,A_g=0.8852188663190775,K_g=-2.533091328916449,S_h=-0.7643982454571042,B_h=-8.25609041981898,E_h=0.0013707957833508683,L_h=0.8654779409470782,A_h=2.549804774831101,K_h=-4.622286729165456,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.23, MAE_h(kcal/mol): 1.004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.46799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.23, MAE_h(kcal/mol): 1.004)"""),
+)
+
+entry(
+ index = 1361,
+ label = "[O]O + CC[C](C)O <=> CCC(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9071369379352224,B_g=-6.724530345961866,E_g=0.24012383676590582,L_g=0.8233351336824571,A_g=0.5461778193898743,K_g=-2.9375640505097693,S_h=-0.1913982775577068,B_h=-11.596719743845046,E_h=0.43759173415577585,L_h=1.0734650466209508,A_h=2.066031150647997,K_h=-5.9210974077435665,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.785, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.653, MAE_h(kcal/mol): 1.305)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.785, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.653, MAE_h(kcal/mol): 1.305)"""),
+)
+
+entry(
+ index = 1362,
+ label = "[O]O + C[CH]C(C)O <=> CCC(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7713475203374069,B_g=-6.308468169109307,E_g=0.29044743597822514,L_g=0.7123886407358508,A_g=1.0498829608720752,K_g=-2.312664434770136,S_h=0.04613057681618724,B_h=-11.49278116944862,E_h=0.11361477992596315,L_h=1.0496410557338367,A_h=2.9192232427560585,K_h=-5.149405355845638,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.722, MAE_g(kcal/mol): 0.565, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.565, MAE_h(kcal/mol): 1.219)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.722, MAE_g(kcal/mol): 0.565, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.565, MAE_h(kcal/mol): 1.219)"""),
+)
+
+entry(
+ index = 1363,
+ label = "[O]O + [CH2]C(O)CC <=> CCC(C)O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17219247567332566,B_g=-4.483982964221707,E_g=0.3744105103231495,L_g=0.39555888377217224,A_g=0.290799297997481,K_g=-1.2082208695372023,S_h=0.6390327401797431,B_h=-7.701981044078379,E_h=0.42348060109186986,L_h=0.48143520784680016,A_h=0.9162706895184052,K_h=-3.189724500517719,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.53, MAE_g(kcal/mol): 0.419, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.8740000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.53, MAE_g(kcal/mol): 0.419, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.8740000000000001)"""),
+)
+
+entry(
+ index = 1364,
+ label = "[OH] + CCC(C)[O] <=> CCC(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7376054187825192,B_g=-2.908850643646746,E_g=0.06118733905684331,L_g=0.48661051171335473,A_g=-0.06470595924940169,K_g=-1.0386233762558883,S_h=-0.24576828999146821,B_h=-5.556348442032484,E_h=0.19777577665671886,L_h=0.6051586903676341,A_h=0.9392956604034592,K_h=-3.118120579599156,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.606)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.317, MAE_g(kcal/mol): 0.248, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.777, MAE_h(kcal/mol): 0.606)"""),
+)
+
+entry(
+ index = 1365,
+ label = "[OH] + CC[C](C)O <=> CCC(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08627949930502524,B_g=-2.062446556326828,E_g=0.18931642727710976,L_g=0.21916605524398003,A_g=0.3057461033571196,K_g=-0.2589704461722967,S_h=0.4840888339086879,B_h=-4.674545569483682,E_h=0.3561796594504564,L_h=0.34717052566576007,A_h=1.214774299645842,K_h=-2.183882935722499,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.621, MAE_h(kcal/mol): 0.466)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.621, MAE_h(kcal/mol): 0.466)"""),
+)
+
+entry(
+ index = 1366,
+ label = "[OH] + C[CH]C(C)O <=> CCC(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31974727954000814,B_g=-4.285400837104194,E_g=0.19330419682867592,L_g=0.4750357173715846,A_g=0.5819357970967488,K_g=-0.9821348612478575,S_h=0.6263803684040018,B_h=-9.071992468344657,E_h=0.058277146939248146,L_h=0.804972334552543,A_h=1.9951162928504766,K_h=-3.590356061734162,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.489, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.197, MAE_h(kcal/mol): 0.922)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.489, MAE_g(kcal/mol): 0.373, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.197, MAE_h(kcal/mol): 0.922)"""),
+)
+
+entry(
+ index = 1367,
+ label = "[OH] + [CH2]C(O)CC <=> CCC(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.23338714518890344,B_g=-4.746068855356166,E_g=0.2079211315452622,L_g=0.48683775593412415,A_g=0.4852397159300039,K_g=-1.0237645364010637,S_h=0.9822668095050784,B_h=-9.954704317776537,E_h=0.08451285875001156,L_h=0.7625876221496836,A_h=1.7696020603424225,K_h=-3.563673191940595,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.4, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3019999999999998, MAE_h(kcal/mol): 1.016)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.4, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3019999999999998, MAE_h(kcal/mol): 1.016)"""),
+)
+
+entry(
+ index = 1368,
+ label = "[OH] + [CH2]CC(C)O <=> CCC(C)O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20649902255076985,B_g=-2.9340307693997416,E_g=0.35129757393328165,L_g=0.22327111213529813,A_g=-0.018370129588648535,K_g=-0.23193571435947313,S_h=0.8729036956451233,B_h=-5.910790782762866,E_h=0.5242304259387914,L_h=0.36408189396624374,A_h=0.09363194941572534,K_h=-2.013369135099373,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.672)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.386, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.672)"""),
+)
+
+entry(
+ index = 1369,
+ label = "CCC(C)OO + [CH]=O <=> CCC(C)O[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24096683952037293,B_g=-2.8733052492431725,E_g=-0.13399345520786377,L_g=0.4118105107865513,A_g=0.6923691579319405,K_g=-0.568682327704779,S_h=0.3011059229781833,B_h=-5.552074784590273,E_h=-0.03826499459407237,L_h=0.6192331711378676,A_h=1.5314501169760961,K_h=-2.36291472939511,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.718, MAE_h(kcal/mol): 0.5329999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.718, MAE_h(kcal/mol): 0.5329999999999999)"""),
+)
+
+entry(
+ index = 1370,
+ label = "CCC(C)OO + C[C]=O <=> CCC(C)O[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25054774908636,B_g=-2.7552921940765107,E_g=-0.15757554095673937,L_g=0.3870408907226871,A_g=0.8904234920205703,K_g=-0.7710029887768857,S_h=0.3669407728726974,B_h=-5.519021746156427,E_h=-0.1337075673172184,L_h=0.5612858948416718,A_h=1.8701026495923714,K_h=-2.4083489126315203,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.735, MAE_h(kcal/mol): 0.5589999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.735, MAE_h(kcal/mol): 0.5589999999999999)"""),
+)
+
+entry(
+ index = 1371,
+ label = "CCC(CO)OO + [O]O <=> CCC(CO)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5525919707825588,B_g=-4.978297788065018,E_g=0.40077817039113384,L_g=0.5591454008911988,A_g=0.10013406631322386,K_g=-1.1362797475168522,S_h=-0.11273512487782356,B_h=-9.503829792393853,E_h=0.5042182735936157,L_h=0.8850869180618567,A_h=1.1586449771158016,K_h=-3.7890114934390207,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.57, MAE_g(kcal/mol): 0.42200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.308, MAE_h(kcal/mol): 0.981)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.57, MAE_g(kcal/mol): 0.42200000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.308, MAE_h(kcal/mol): 0.981)"""),
+)
+
+entry(
+ index = 1372,
+ label = "CCC(O)COO + [O]O <=> CCC(O)CO[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8512935032958273,B_g=-3.066851351210086,E_g=0.29412732626294247,L_g=0.4800937338983873,A_g=0.13120055043002055,K_g=-0.8532800576128758,S_h=-0.7454123573347581,B_h=-5.680057263635849,E_h=0.49135331851457403,L_h=0.6951693931685181,A_h=1.4264119737694942,K_h=-2.983240138884418,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8190000000000001, MAE_h(kcal/mol): 0.596)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8190000000000001, MAE_h(kcal/mol): 0.596)"""),
+)
+
+entry(
+ index = 1373,
+ label = "CCC(O)COO + [O][O] <=> CCC(O)CO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.37033477526676933,B_g=0.6785219213824765,E_g=-0.4592239178812754,L_g=0.18540196231288855,A_g=0.4787889122436469,K_g=0.25647075974383327,S_h=-0.570690873398031,B_h=1.075502914149141,E_h=-0.23947875639727018,L_h=0.3145939670496571,A_h=0.9586040887101234,K_h=-0.7365058499723447,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.276)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.086, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.431, MAE_h(kcal/mol): 0.276)"""),
+)
+
+entry(
+ index = 1374,
+ label = "CC(=O)OO + C[CH]C <=> CCC + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.035244845595459755,B_g=-0.050829400864999576,E_g=0.20387471832382004,L_g=-0.0609820862122774,A_g=0.3951703694592439,K_g=0.43552454479264785,S_h=0.28824096789914166,B_h=-0.6311524970401592,E_h=0.2696802463833962,L_h=-0.07608283120534044,A_h=0.7760683357624228,K_h=-0.41804873116960783,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.212)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20600000000000002, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.271, MAE_h(kcal/mol): 0.212)"""),
+)
+
+entry(
+ index = 1375,
+ label = "CC(=O)OO + [CH2]CC <=> CCC + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08342062039857155,B_g=0.015914425912592168,E_g=0.7002274096953208,L_g=-0.24491795677826667,A_g=-0.12415597958616928,K_g=0.9659272169858855,S_h=0.42705053449556973,B_h=-0.6022045154976321,E_h=0.6963422665660376,L_h=-0.24067362117099309,A_h=0.22585143360984092,K_h=0.048564289116040125,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.405, MAE_h(kcal/mol): 0.29600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.239, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.405, MAE_h(kcal/mol): 0.29600000000000004)"""),
+)
+
+entry(
+ index = 1376,
+ label = "CO + C[CH]C <=> CCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08483539893432941,B_g=-2.2088358172547258,E_g=0.06974198440000086,L_g=0.20104516125230437,A_g=0.3661051005769648,K_g=-0.1891918094786233,S_h=0.6552916976528564,B_h=-4.671195549842016,E_h=0.2542423002885464,L_h=0.38037750373302975,A_h=0.8773239622620247,K_h=-2.021278700073895,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.275, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.45899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.275, MAE_g(kcal/mol): 0.21, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.62, MAE_h(kcal/mol): 0.45899999999999996)"""),
+)
+
+entry(
+ index = 1377,
+ label = "CO + [CH2]CC <=> CCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.003262054136850997,B_g=-2.216019666814532,E_g=0.018582712891948936,L_g=0.23704504409741725,A_g=0.2221275605727166,K_g=-0.3016996901356775,S_h=0.5948593958456664,B_h=-4.684331731894235,E_h=0.17870192302955867,L_h=0.3899804046752203,A_h=0.7024631996093422,K_h=-2.1077707826822203,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.619, MAE_h(kcal/mol): 0.47700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.619, MAE_h(kcal/mol): 0.47700000000000004)"""),
+)
+
+entry(
+ index = 1378,
+ label = "C=CC + C[CH]C <=> CCC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.016574167198696862,B_g=-0.1104406912939261,E_g=-0.2198991011174297,L_g=0.07676456386764863,A_g=0.4069577471043145,K_g=-0.042194120475762556,S_h=0.04845433223502268,B_h=0.015628538021946796,E_h=-0.013158173428421438,L_h=0.1423575086239244,A_h=0.35632626862514627,K_h=-1.2365164402523592,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.214, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.214, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1379,
+ label = "C=CC + [CH2]CC <=> CCC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.00815880057149474,B_g=-0.12002160085991319,E_g=-0.2434225431964293,L_g=0.09054582628850227,A_g=0.42215378806092596,K_g=0.057258213175153116,S_h=0.06726428934774101,B_h=-0.00894315965608588,E_h=-0.04277322671578779,L_h=0.14110400018032548,A_h=0.4102857753697759,K_h=-1.0404486604807779,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.109)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.109)"""),
+)
+
+entry(
+ index = 1380,
+ label = "O + C[CH]C <=> CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19889000638436236,B_g=-2.638151463499255,E_g=-0.0783552734130344,L_g=0.20559737612642676,A_g=-0.10281701421004961,K_g=-0.030443395124364475,S_h=1.1439254159769323,B_h=-5.858040801709427,E_h=0.12307107169346379,L_h=0.2435251696187123,A_h=0.04966385792621462,K_h=-1.7700272269490236,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32799999999999996, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.753, MAE_h(kcal/mol): 0.601)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32799999999999996, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.753, MAE_h(kcal/mol): 0.601)"""),
+)
+
+entry(
+ index = 1381,
+ label = "O + [CH2]CC <=> CCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21725280551427636,B_g=-2.001442478738347,E_g=0.059281419785874194,L_g=0.2059125858520101,A_g=-0.5756829157962232,K_g=0.06877436384704731,S_h=0.35535864807219275,B_h=-4.69364874494578,E_h=0.2667773847245356,L_h=0.2487297953202049,A_h=-0.325662959738747,K_h=-1.5594304779656698,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.688, MAE_h(kcal/mol): 0.569)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.315, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.688, MAE_h(kcal/mol): 0.569)"""),
+)
+
+entry(
+ index = 1382,
+ label = "O=COO + C[CH]C <=> CCC + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24705112027000514,B_g=0.3761038462908182,E_g=0.41003653977280313,L_g=-0.2133676623849932,A_g=-1.052536586933963,K_g=1.3818427846637547,S_h=0.01462426517532076,B_h=-0.3761551595019596,E_h=0.4976428521087722,L_h=-0.1584332046286755,A_h=-0.6836532424966241,K_h=0.29864288884339235,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6729999999999999, MAE_g(kcal/mol): 0.517, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.547)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6729999999999999, MAE_g(kcal/mol): 0.517, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7, MAE_h(kcal/mol): 0.547)"""),
+)
+
+entry(
+ index = 1383,
+ label = "O=COO + [CH2]CC <=> CCC + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.013942532513012574,B_g=-0.3140588435620388,E_g=0.19219729755976697,L_g=-0.05851172161875204,A_g=0.2933942803894928,K_g=0.6777082404629472,S_h=0.28593187339777526,B_h=-1.053262302348678,E_h=0.2543229353346258,L_h=-0.01306287746487298,A_h=0.6570436772904014,K_h=-0.3447661352008451,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.21899999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.20800000000000002, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.21899999999999997)"""),
+)
+
+entry(
+ index = 1384,
+ label = "OO + C[CH]C <=> CCC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2093725623746925,B_g=-2.062373251739483,E_g=0.31570086631856603,L_g=0.12233069536127963,A_g=-0.05225884031822641,K_g=0.015987730499937132,S_h=0.5507666865576692,B_h=-5.006109548503699,E_h=0.2641750718737893,L_h=0.2638378707720024,A_h=0.8551493245901726,K_h=-1.9177872836602718,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.59)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.327, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.59)"""),
+)
+
+entry(
+ index = 1385,
+ label = "OO + [CH2]CC <=> CCC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3574111765178518,B_g=-3.3361577441980232,E_g=0.1921826366422979,L_g=0.16156331050830555,A_g=0.030802587602354808,K_g=-0.21983312698881918,S_h=1.3782361989663825,B_h=-6.525559704531424,E_h=0.27383661648585583,L_h=0.2374042365754076,A_h=0.8851015789793256,K_h=-2.173165805052665,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.415, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.943, MAE_h(kcal/mol): 0.77)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.415, MAE_g(kcal/mol): 0.34600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.943, MAE_h(kcal/mol): 0.77)"""),
+)
+
+entry(
+ index = 1386,
+ label = "[O]O + C[CH]C <=> CCC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5129195281114631,B_g=-4.987798062584926,E_g=0.3498021603514443,L_g=0.5156977719718374,A_g=0.8447620645633908,K_g=-1.6451015491957321,S_h=-0.05171638637187367,B_h=-8.274460549407628,E_h=0.4158202717143209,L_h=0.705424704938079,A_h=2.0584661172339964,K_h=-3.924060534704652,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.177, MAE_h(kcal/mol): 0.9329999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.599, MAE_g(kcal/mol): 0.47700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.177, MAE_h(kcal/mol): 0.9329999999999999)"""),
+)
+
+entry(
+ index = 1387,
+ label = "[O]O + [CH2]CC <=> CCC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5980847976888449,B_g=-5.005259215290497,E_g=0.3150997687023373,L_g=0.5470281526030759,A_g=0.8446740990585767,K_g=-1.6604955125381748,S_h=-0.10794833532419726,B_h=-8.305783599580133,E_h=0.3664936148898931,L_h=0.7120734310102673,A_h=2.1488946561827467,K_h=-3.8486007924917436,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.596, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.194, MAE_h(kcal/mol): 0.9590000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.596, MAE_g(kcal/mol): 0.475, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.194, MAE_h(kcal/mol): 0.9590000000000001)"""),
+)
+
+entry(
+ index = 1388,
+ label = "[OH] + C[CH]C <=> CCC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1343306563096506,B_g=-3.0650700497376038,E_g=0.3356617054526003,L_g=0.18486683882527033,A_g=0.7579474417707472,K_g=0.02826624888021898,S_h=0.8810405048404144,B_h=-6.239268638655659,E_h=0.3572572368844274,L_h=0.33618949848148405,A_h=1.7604976305941777,K_h=-1.8739804622629197,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39399999999999996, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.85, MAE_h(kcal/mol): 0.6659999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39399999999999996, MAE_g(kcal/mol): 0.311, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.85, MAE_h(kcal/mol): 0.6659999999999999)"""),
+)
+
+entry(
+ index = 1389,
+ label = "[OH] + [CH2]CC <=> CCC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06590815448185913,B_g=-3.0280145808347236,E_g=0.287581226613037,L_g=0.2552025903827654,A_g=0.6825683346039184,K_g=-0.14031231063699984,S_h=0.6257499489528351,B_h=-6.122516422391332,E_h=0.3089715052002981,L_h=0.40661321554379315,A_h=1.7431171129346863,K_h=-2.0407117461790456,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.838, MAE_h(kcal/mol): 0.659)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37200000000000005, MAE_g(kcal/mol): 0.295, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.838, MAE_h(kcal/mol): 0.659)"""),
+)
+
+entry(
+ index = 1390,
+ label = "C + C[CH]C=CO <=> CCC=CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4642159602794676,B_g=-0.8437431307992957,E_g=0.06167114933332008,L_g=0.1772504922001283,A_g=0.36940380700748826,K_g=-0.20358149997444017,S_h=-0.2747236019927299,B_h=-1.7558281283803032,E_h=0.21942262129968743,L_h=0.3268431635950009,A_h=0.47540957076704393,K_h=-1.8698314226191948,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.405, MAE_h(kcal/mol): 0.312)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.195, MAE_g(kcal/mol): 0.151, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.405, MAE_h(kcal/mol): 0.312)"""),
+)
+
+entry(
+ index = 1391,
+ label = "[H][H] + C[CH]C=CO <=> CCC=CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.060029126576792845,B_g=0.22091803488152467,E_g=-0.09018663381051194,L_g=0.047809251866386966,A_g=0.08427828407050766,K_g=0.966821532951494,S_h=0.05898087097775982,B_h=0.5552162750095087,E_h=0.20427056309548283,L_h=0.05626860124599608,A_h=0.017512465916712433,K_h=-0.12647973500500473,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.212, MAE_h(kcal/mol): 0.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.212, MAE_h(kcal/mol): 0.141)"""),
+)
+
+entry(
+ index = 1392,
+ label = "O + C[CH]C=CO <=> CCC=CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9557891925560766,B_g=0.6666392477738573,E_g=1.278893822196484,L_g=-0.11667158121824824,A_g=1.9745396951827447,K_g=1.5980326736615291,S_h=-0.6077023595485045,B_h=-3.1318798506438053,E_h=1.4431547415190844,L_h=0.1564979635227684,A_h=3.2028313607349985,K_h=-0.2232564512178291,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.61, MAE_g(kcal/mol): 0.521, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.016, MAE_h(kcal/mol): 0.7709999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.61, MAE_g(kcal/mol): 0.521, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.016, MAE_h(kcal/mol): 0.7709999999999999)"""),
+)
+
+entry(
+ index = 1393,
+ label = "[O]O + C[CH]C=CO <=> CCC=CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9747604197609537,B_g=-2.9391400991376866,E_g=0.2622618221440856,L_g=0.43008534441165136,A_g=0.648980172682455,K_g=-1.3645722238852804,S_h=-0.8951076551519135,B_h=-5.350919666456951,E_h=0.18608369497519678,L_h=0.6454615524898967,A_h=1.5495930023439752,K_h=-3.5167655864985505,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.364, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.539)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.364, MAE_g(kcal/mol): 0.265, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.539)"""),
+)
+
+entry(
+ index = 1394,
+ label = "[OH] + C[CH]C=CO <=> CCC=CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1461098926798123,B_g=-4.4733757904328915,E_g=0.6718072211816775,L_g=0.548934071874045,A_g=0.6718878562277569,K_g=-1.4418865721580165,S_h=-0.756408045436503,B_h=-9.412697529406591,E_h=0.6453442651501446,L_h=0.9255877025699506,A_h=2.4346872508645667,K_h=-4.232430942288722,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.423, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3259999999999998, MAE_h(kcal/mol): 0.963)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.423, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3259999999999998, MAE_h(kcal/mol): 0.963)"""),
+)
+
+entry(
+ index = 1395,
+ label = "CC(=O)OO + CC[C]=O <=> CCC=O + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0848427293930639,B_g=-0.3969076881793196,E_g=-0.29892144627530326,L_g=0.11508087167286249,A_g=0.8035355646405817,K_g=-0.13325307887567958,S_h=0.23479459326592678,B_h=-0.8740765690426427,E_h=-0.24405296264759604,L_h=0.07667659836283466,A_h=1.2683159702426055,K_h=-0.8458836247497686,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.157)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.149, MAE_g(kcal/mol): 0.098, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.233, MAE_h(kcal/mol): 0.157)"""),
+)
+
+entry(
+ index = 1396,
+ label = "CCOO + CC[C]=O <=> CCC=O + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.29892144627530326,B_g=-2.8813101101812424,E_g=-0.18557789332251648,L_g=0.39904818212979265,A_g=0.7740744509866399,K_g=-1.076360577821077,S_h=0.28842422936750406,B_h=-5.637804499490211,E_h=-0.10971497587921095,L_h=0.5700531234881298,A_h=1.728089672528968,K_h=-2.8609460958168103,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.741, MAE_h(kcal/mol): 0.568)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.318, MAE_g(kcal/mol): 0.23600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.741, MAE_h(kcal/mol): 0.568)"""),
+)
+
+entry(
+ index = 1397,
+ label = "CCO + CC[C]=O <=> CCC=O + CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12708083262123343,B_g=-1.9437224466629208,E_g=-0.1733726795295796,L_g=0.2941126653454734,A_g=0.5844501444426812,K_g=-0.3697849908616821,S_h=0.42182391741787356,B_h=-4.1922966807173525,E_h=0.04453253681206698,L_h=0.4158202717143209,A_h=1.1458533266241049,K_h=-1.7536069993837509,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.562, MAE_h(kcal/mol): 0.409)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22699999999999998, MAE_g(kcal/mol): 0.157, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.562, MAE_h(kcal/mol): 0.409)"""),
+)
+
+entry(
+ index = 1398,
+ label = "COO + CC[C]=O <=> CCC=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13183830033992175,B_g=-2.856716421127006,E_g=-0.018971227204877258,L_g=0.33526586068093756,A_g=0.7836260387176889,K_g=-0.5957683727287441,S_h=0.5275437932867839,B_h=-5.72583597843278,E_h=0.022247942259197247,L_h=0.4897039652993123,A_h=1.8437569809005905,K_h=-2.2658887775853125,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7759999999999999, MAE_h(kcal/mol): 0.601)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7759999999999999, MAE_h(kcal/mol): 0.601)"""),
+)
+
+entry(
+ index = 1399,
+ label = "CC + CC[C]=O <=> CCC=O + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07197777431402233,B_g=-0.12406068362262083,E_g=-0.07154527724868703,L_g=0.02332551969316825,A_g=0.32917424947257085,K_g=0.5109403042531491,S_h=0.31589145824566295,B_h=-0.2970741706742101,E_h=0.06977863669367335,L_h=0.035611368532184585,A_h=0.3257142729498884,K_h=-0.24410427585873753,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.128, MAE_h(kcal/mol): 0.10400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.128, MAE_h(kcal/mol): 0.10400000000000001)"""),
+)
+
+entry(
+ index = 1400,
+ label = "CCC + CC[C]=O <=> CCC=O + C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0935439839109114,B_g=-0.2101202691656112,E_g=-0.17880454945184157,L_g=0.039518503037671286,A_g=0.5211443028115684,K_g=0.22586609452730994,S_h=0.35668546110313665,B_h=-0.4104690368381383,E_h=-0.03443116467593063,L_h=0.02697608814294757,A_h=0.5406359925865949,K_h=-0.5030014174436892,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10400000000000001, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.10400000000000001, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 1401,
+ label = "CO + CC[C]=O <=> CCC=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15583089177792922,B_g=-2.116303436649175,E_g=-0.10267040503535968,L_g=0.30856099951116633,A_g=0.5362450478046314,K_g=-0.26684335885314603,S_h=0.4569734670497849,B_h=-4.538990726565371,E_h=0.08139008332911599,L_h=0.43957095801408996,A_h=1.244821849998544,K_h=-1.7673442790521974,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.604, MAE_h(kcal/mol): 0.45899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23600000000000002, MAE_g(kcal/mol): 0.174, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.604, MAE_h(kcal/mol): 0.45899999999999996)"""),
+)
+
+entry(
+ index = 1402,
+ label = "C=CC + CC[C]=O <=> CCC=O + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.032957742470296814,B_g=-0.1738271679711184,E_g=-0.1820519426712236,L_g=0.07610482258154394,A_g=0.41656064804650506,K_g=0.15163786938179713,S_h=0.14818522331784922,B_h=-0.25440357038070527,E_h=-0.022145315836914297,L_h=0.09748044025133606,A_h=0.39467922872403266,K_h=-0.6837558689189069,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.08199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.111, MAE_h(kcal/mol): 0.08199999999999999)"""),
+)
+
+entry(
+ index = 1403,
+ label = "CCC + CC[C]=O <=> CCC=O + [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07265217651759602,B_g=-0.15436480003102987,E_g=-0.19201403609140452,L_g=0.05464856986567232,A_g=0.4820509663804978,K_g=0.3521552376052177,S_h=0.32000384559571554,B_h=-0.3101223872216141,E_h=-0.046174559568594224,L_h=0.06027836217376572,A_h=0.4864858939148683,K_h=-0.33272219150006715,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.077)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.102, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.077)"""),
+)
+
+entry(
+ index = 1404,
+ label = "C + CC[C]=O <=> CCC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08557577526651357,B_g=-0.08350858590338553,E_g=-0.06167114933332008,L_g=0.02812697016426354,A_g=0.2486858125677979,K_g=0.7310226668389411,S_h=0.272348533362753,B_h=-0.16895974337141265,E_h=0.11321893515430033,L_h=0.07166256458843898,A_h=0.1816707588170298,K_h=-0.16200313803237534,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.201, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.201, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 1405,
+ label = "C=C + CC[C]=O <=> CCC=O + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.004486240745511933,B_g=-0.08647009123212215,E_g=-0.17480211898280643,L_g=0.08333998535249211,A_g=0.32375704046777787,K_g=0.42724112642266665,S_h=0.17626088027097128,B_h=-0.13708690879382132,E_h=-0.005402548087324011,L_h=0.09095633197763409,A_h=0.38100059272546194,K_h=-0.3337557861816312,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.071)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.1, MAE_h(kcal/mol): 0.071)"""),
+)
+
+entry(
+ index = 1406,
+ label = "[H][H] + CC[C]=O <=> CCC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12107718691768071,B_g=0.06134860914900223,E_g=-0.07005719412558421,L_g=0.05524966748190104,A_g=0.13351697539012147,K_g=1.4736861021482628,S_h=0.2769227396130789,B_h=0.10439306283796639,E_h=0.1970940439944107,L_h=0.0637896519075896,A_h=0.08007793121564111,K_h=0.6436949119348829,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 1407,
+ label = "O + CC[C]=O <=> CCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4642232907382021,B_g=-2.378902459895047,E_g=-0.018172207202817127,L_g=0.3499560999848687,A_g=0.7480513224791768,K_g=-0.29736738902358995,S_h=-0.09102963656497905,B_h=-5.119519075585096,E_h=0.32243755789556844,L_h=0.43709326296183004,A_h=1.3692563870166239,K_h=-1.7658342045528914,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.321, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.745, MAE_h(kcal/mol): 0.5579999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.321, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.745, MAE_h(kcal/mol): 0.5579999999999999)"""),
+)
+
+entry(
+ index = 1408,
+ label = "OO + CC[C]=O <=> CCC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18130423588030498,B_g=-2.5505231597870823,E_g=-0.049121403979861866,L_g=0.30101062701463477,A_g=0.6605622974829596,K_g=-0.3578729954181251,S_h=0.543810081218632,B_h=-5.407444833758655,E_h=-0.0822477470010521,L_h=0.42372250623010826,A_h=1.6949120162966365,K_h=-2.0004162145155178,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.747, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.23199999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.747, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 1409,
+ label = "[O]O + CC[C]=O <=> CCC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8347853102257408,B_g=-4.926449453435923,E_g=0.13895617577111796,L_g=0.6417816622051792,A_g=0.7688844862026161,K_g=-1.91366023539275,S_h=-0.34585837355228516,B_h=-8.122192260574666,E_h=0.19989427923098838,L_h=0.7901721383675943,A_h=2.1032332287255673,K_h=-3.9826602218282185,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.195, MAE_h(kcal/mol): 0.965)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.47, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.195, MAE_h(kcal/mol): 0.965)"""),
+)
+
+entry(
+ index = 1410,
+ label = "[OH] + CC[C]=O <=> CCC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10139490521555727,B_g=-2.83285577794622,E_g=0.20548741924540928,L_g=0.28181215558898814,A_g=0.9759259626997387,K_g=-0.2755446133709935,S_h=0.6002985962266629,B_h=-5.795563301915312,E_h=0.1905039615920982,L_h=0.42979212606227146,A_h=2.2463677659753483,K_h=-1.9385031600439593,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36700000000000005, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.66)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36700000000000005, MAE_g(kcal/mol): 0.28600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.851, MAE_h(kcal/mol): 0.66)"""),
+)
+
+entry(
+ index = 1411,
+ label = "CCCC(O)OO + [O]O <=> CCCC(O)O[O] + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.7031441214554761,B_g=-3.6605305431994988,E_g=-0.27805163025819135,L_g=0.8342575171968571,A_g=0.5257111786031597,K_g=-2.168437659168915,S_h=-1.5261721866872588,B_h=-7.788868971458368,E_h=-0.49891835192857464,L_h=1.2209978591114299,A_h=2.455916259359669,K_h=-4.678137494263585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.462, MAE_g(kcal/mol): 0.332, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.122, MAE_h(kcal/mol): 0.794)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.462, MAE_g(kcal/mol): 0.332, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.122, MAE_h(kcal/mol): 0.794)"""),
+)
+
+entry(
+ index = 1412,
+ label = "CCCC(O)OO + [O][O] <=> CCCC(O)O[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7863456389081872,B_g=-1.327318832596569,E_g=-0.4409784060911133,L_g=0.45087452538268374,A_g=0.3427136067551861,K_g=-0.39646786065524986,S_h=-0.8271396417656609,B_h=-2.922646566985069,E_h=-0.4884504568557134,L_h=0.7692583395980757,A_h=0.941978608300285,K_h=-2.227821705377072,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.213, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.447)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.213, MAE_g(kcal/mol): 0.14300000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.606, MAE_h(kcal/mol): 0.447)"""),
+)
+
+entry(
+ index = 1413,
+ label = "CC + C[CH]CC <=> CCCC + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.014763543891276197,B_g=-0.06823190990069455,E_g=-0.18971227204877256,L_g=0.07077557908156488,A_g=0.31086276355379827,K_g=0.013143512510952445,S_h=0.051914308757705085,B_h=0.07642736276586178,E_h=0.041021247078243096,L_h=0.12877416858890214,A_h=0.2424842444784138,K_h=-1.1626767294197748,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.149)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.242, MAE_h(kcal/mol): 0.149)"""),
+)
+
+entry(
+ index = 1414,
+ label = "CC + [CH2]CCC <=> CCCC + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.01738051765949149,B_g=-0.11445778268043026,E_g=-0.21453320532377812,L_g=0.08916770004641691,A_g=0.3339976913198696,K_g=0.1747434753129305,S_h=0.07772485396186768,B_h=-0.03669627642489009,E_h=-0.013040886088669492,L_h=0.13486577979726885,A_h=0.2871267381714982,K_h=-0.8260693947904244,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.205, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.205, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 1415,
+ label = "CO + C[CH]CC <=> CCCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20520153135476396,B_g=-2.191316020879279,E_g=0.09552320776922547,L_g=0.18741783846487514,A_g=0.19715268766428667,K_g=-0.3120429674100522,S_h=0.846213495392821,B_h=-4.7150463539917755,E_h=0.30842172079521085,L_h=0.3409982794113139,A_h=0.5564771139118421,K_h=-2.1101898340646046,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.496)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.649, MAE_h(kcal/mol): 0.496)"""),
+)
+
+entry(
+ index = 1416,
+ label = "CO + [CH2]CCC <=> CCCC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18345206028951244,B_g=-1.9476882248382834,E_g=0.011648098929115133,L_g=0.25873587149279276,A_g=-0.05255938912634078,K_g=-0.5027741732229198,S_h=0.4044800520520547,B_h=-4.392212951324545,E_h=0.14766476074769996,L_h=0.4260022788965367,A_h=0.35269769155157044,K_h=-2.35119332587865,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.523)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.354, MAE_g(kcal/mol): 0.259, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.523)"""),
+)
+
+entry(
+ index = 1417,
+ label = "C=CC + C[CH]CC <=> CCCC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08056907195085238,B_g=-0.10701003660618169,E_g=-0.22429737635812766,L_g=0.059904508778306394,A_g=0.4794853058234241,K_g=-0.054523952067185875,S_h=0.13275460768173383,B_h=0.004801450471095287,E_h=-0.018546060598276452,L_h=0.12352556013500257,A_h=0.38968718632584043,K_h=-1.206564185863206,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11599999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.11599999999999999)"""),
+)
+
+entry(
+ index = 1418,
+ label = "C=CC + [CH2]CCC <=> CCCC + [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.018685339314231893,B_g=-0.09600701804570226,E_g=-0.18031462395114795,L_g=0.06171513208572706,A_g=0.3840354026415435,K_g=0.003122775420895561,S_h=0.11712606965978703,B_h=-0.020781850512297924,E_h=0.01532065875509794,L_h=0.1024284998971213,A_h=0.2885928299183975,K_h=-1.037655755702935,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.10300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10099999999999999, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16399999999999998, MAE_h(kcal/mol): 0.10300000000000001)"""),
+)
+
+entry(
+ index = 1419,
+ label = "CCCC + C[CH]CC <=> CCCC + [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11600450947340904,B_g=-0.013378087190456335,E_g=-0.3860879310872026,L_g=0.07862650038621076,A_g=0.24363512649972974,K_g=0.04951724875152468,S_h=0.18994684672827644,B_h=0.10632097348513901,E_h=-0.13768800641005005,L_h=0.13004233794997008,A_h=0.16896707383014714,K_h=-0.9098198858320482,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.262, MAE_h(kcal/mol): 0.183)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.124, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.262, MAE_h(kcal/mol): 0.183)"""),
+)
+
+entry(
+ index = 1420,
+ label = "C + C[CH]CC <=> CCCC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.011933986819760503,B_g=-0.07751227065856729,E_g=-0.1957599005047323,L_g=0.08674131820529853,A_g=0.26290690251272136,K_g=0.27014939574240404,S_h=0.005160642949085622,B_h=0.09904182796178385,E_h=0.05189231738150158,L_h=0.1787972189931071,A_h=0.19348745829703837,K_h=-0.9943547359582633,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33899999999999997, MAE_h(kcal/mol): 0.203)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.047, MAE_g(kcal/mol): 0.036000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33899999999999997, MAE_h(kcal/mol): 0.203)"""),
+)
+
+entry(
+ index = 1421,
+ label = "C + [CH2]CCC <=> CCCC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04725946746129972,B_g=-0.08825872316333933,E_g=-0.18712462011549527,L_g=0.09870462685999701,A_g=0.25030584394812166,K_g=0.3556591968803071,S_h=-0.00015393963342442908,B_h=0.02493822061475751,E_h=0.01480019618494868,L_h=0.17731646632873882,A_h=0.19501952417254814,K_h=-0.7934195315869764,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.17600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.17600000000000002)"""),
+)
+
+entry(
+ index = 1422,
+ label = "C=C + C[CH]CC <=> CCCC + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01864868702055941,B_g=-0.08074500296048029,E_g=-0.2252430055348777,L_g=0.08346460315097853,A_g=0.35282230935005693,K_g=0.10333014632146438,S_h=0.04966385792621462,B_h=0.0577273625341609,E_h=-0.004288318359680524,L_h=0.13978451760811608,A_h=0.31504112503246134,K_h=-1.0446490133356445,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.13)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.075, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21600000000000003, MAE_h(kcal/mol): 0.13)"""),
+)
+
+entry(
+ index = 1423,
+ label = "C=C + [CH2]CCC <=> CCCC + [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04650443021164657,B_g=-0.08706385838961637,E_g=-0.19084116269388507,L_g=0.09388118501269825,A_g=0.3366439869230229,K_g=0.2863277181694381,S_h=0.035266836971663246,B_h=-0.010247981310826278,E_h=0.004816111388564281,L_h=0.14324449413079848,A_h=0.3190435555014965,K_h=-0.7222334468162797,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.071, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 1424,
+ label = "[H][H] + C[CH]CC <=> CCCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07394233725486743,B_g=0.008078165525415277,E_g=-0.051195923801724406,L_g=0.05618063574118211,A_g=0.1282756973949564,K_g=1.2164749660722454,S_h=0.16199580757364088,B_h=0.08910172591780645,E_h=0.212627286052809,L_h=0.07693316441854205,A_h=0.1069587233950402,K_h=0.15107342405924087,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.127)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.046, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.127)"""),
+)
+
+entry(
+ index = 1425,
+ label = "[H][H] + [CH2]CCC <=> CCCC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04702489278179583,B_g=-0.009170403876855275,E_g=-0.054619248030734334,L_g=0.08710784114202336,A_g=0.12579800234269653,K_g=1.263866381790766,S_h=0.0666192089791053,B_h=0.05302853848534857,E_h=0.1525834985585472,L_h=0.1208939254493183,A_h=0.12009490544725816,K_h=0.224641907918649,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.196, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.196, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 1426,
+ label = "O + C[CH]CC <=> CCCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.055645512253563865,B_g=-2.188339854633073,E_g=-0.04843234085881919,L_g=0.19689612160857928,A_g=-0.3630043165322727,K_g=-0.15452607012318878,S_h=0.5053838165324006,B_h=-4.978825581093902,E_h=0.21145441265528955,L_h=0.24459541659394876,A_h=-0.21045747026739803,K_h=-1.8538583530367265,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6940000000000001, MAE_h(kcal/mol): 0.56)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6940000000000001, MAE_h(kcal/mol): 0.56)"""),
+)
+
+entry(
+ index = 1427,
+ label = "O + [CH2]CCC <=> CCCC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25202117129199386,B_g=-1.8798888120029245,E_g=0.2664768359164212,L_g=0.14207895119201353,A_g=-0.8636233348872505,K_g=0.2520285017507284,S_h=0.3413428109718352,B_h=-4.596402879373948,E_h=0.4681963993722993,L_h=0.20344222125848474,A_h=-0.7185682174490313,K_h=-1.3765648543749174,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36200000000000004, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.708, MAE_h(kcal/mol): 0.589)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36200000000000004, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.708, MAE_h(kcal/mol): 0.589)"""),
+)
+
+entry(
+ index = 1428,
+ label = "[O]O + C[CH]CC <=> CCCC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4925261919120935,B_g=-5.006666663367521,E_g=0.3315933008549547,L_g=0.5105737813164243,A_g=0.8959140056127081,K_g=-1.711434870284192,S_h=-0.01894190536993927,B_h=-8.302089048377946,E_h=0.4012839720438141,L_h=0.6957191775736054,A_h=2.0920176268617876,K_h=-3.9903425425819705,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.606, MAE_g(kcal/mol): 0.484, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.183, MAE_h(kcal/mol): 0.941)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.606, MAE_g(kcal/mol): 0.484, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.183, MAE_h(kcal/mol): 0.941)"""),
+)
+
+entry(
+ index = 1429,
+ label = "[O]O + [CH2]CCC <=> CCCC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6201641393971488,B_g=-5.0045848130869235,E_g=0.31120729511431955,L_g=0.5438174116773664,A_g=0.8606618295585138,K_g=-1.7606589006863367,S_h=-0.11482430561715509,B_h=-8.332422486621292,E_h=0.3413428109718352,L_h=0.7191033409366496,A_h=2.0924794457620606,K_h=-3.97332121740047,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.596, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.187, MAE_h(kcal/mol): 0.951)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.596, MAE_g(kcal/mol): 0.47600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.187, MAE_h(kcal/mol): 0.951)"""),
+)
+
+entry(
+ index = 1430,
+ label = "[OH] + C[CH]CC <=> CCCC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1059031373372727,B_g=-3.0427341419735923,E_g=0.31296660521059877,L_g=0.20111846583964932,A_g=0.9139982473107113,K_g=-0.08196185911040672,S_h=0.7978837809562848,B_h=-6.183630456860829,E_h=0.3094113327243679,L_h=0.38450455200055134,A_h=1.9931443994508973,K_h=-2.05411915520444,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40700000000000003, MAE_g(kcal/mol): 0.32, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.669)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40700000000000003, MAE_g(kcal/mol): 0.32, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.669)"""),
+)
+
+entry(
+ index = 1431,
+ label = "[OH] + [CH2]CCC <=> CCCC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.042597295706159874,B_g=-3.026130652939958,E_g=0.26668208876098715,L_g=0.25487271973971304,A_g=0.8151616721934933,K_g=-1.8574942605690372,S_h=0.6384756253159213,B_h=-6.126101016712499,E_h=0.24515253145777055,L_h=0.4525825222678214,A_h=1.8993878322366855,K_h=-3.8291970682215313,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.828, MAE_h(kcal/mol): 0.65)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.828, MAE_h(kcal/mol): 0.65)"""),
+)
+
+entry(
+ index = 1432,
+ label = "COO + CCC[C]=O <=> CCCC=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3435786008858567,B_g=-2.847377416699257,E_g=-0.14049557210536226,L_g=0.40321188269098673,A_g=0.6199588865525828,K_g=-1.0759354112144761,S_h=0.2714175651034719,B_h=-5.649086075482601,E_h=-0.07282810752722393,L_h=0.5626200383313502,A_h=1.642074069738385,K_h=-2.881178161924021,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.768, MAE_h(kcal/mol): 0.599)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.242, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.768, MAE_h(kcal/mol): 0.599)"""),
+)
+
+entry(
+ index = 1433,
+ label = "CO + CCC[C]=O <=> CCCC=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09902716704431488,B_g=-2.121640010607888,E_g=-0.07606083982913694,L_g=0.2813063539363079,A_g=0.6059137276172873,K_g=-0.2521311281730113,S_h=0.5439566903933218,B_h=-4.573275282066612,E_h=0.1228291665552254,L_h=0.3945106281731392,A_h=1.3201643048717,K_h=-1.6835204834232287,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.613, MAE_h(kcal/mol): 0.47100000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.242, MAE_g(kcal/mol): 0.18, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.613, MAE_h(kcal/mol): 0.47100000000000003)"""),
+)
+
+entry(
+ index = 1434,
+ label = "C + CCC[C]=O <=> CCCC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09754641437994654,B_g=-0.04437126671990805,E_g=-0.07444813890754769,L_g=0.025202117129199387,A_g=0.2505037663339531,K_g=0.7059598284256972,S_h=0.27965700072104616,B_h=-0.11174551294866653,E_h=0.11398863332142248,L_h=0.06494053392890557,A_h=0.17785158981635701,K_h=-0.16032446298217562,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.131)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19399999999999998, MAE_h(kcal/mol): 0.131)"""),
+)
+
+entry(
+ index = 1435,
+ label = "[H][H] + CCC[C]=O <=> CCCC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15170384351040758,B_g=0.082482321680556,E_g=-0.071618581836032,L_g=0.04484041607891584,A_g=0.15091948442581646,K_g=1.4678950397480104,S_h=0.31344308502834106,B_h=0.11802038562539562,E_h=0.2024452788705932,L_h=0.04902610801631341,A_h=0.07672791157397614,K_h=0.639237993024309,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1436,
+ label = "O + CCC[C]=O <=> CCCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.33574967095741426,B_g=-2.2984433448252126,E_g=-0.05749278785465701,L_g=0.31451333200357756,A_g=0.5941996545595616,K_g=-0.3805974174950646,S_h=0.09889521878709392,B_h=-5.066871720953942,E_h=0.3014211327037666,L_h=0.39525100450532336,A_h=1.3412833564857851,K_h=-1.9860851676895765,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.309, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.727, MAE_h(kcal/mol): 0.55)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.309, MAE_g(kcal/mol): 0.228, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.727, MAE_h(kcal/mol): 0.55)"""),
+)
+
+entry(
+ index = 1437,
+ label = "O + CC[CH]C=O <=> CCCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7363225885039821,B_g=-2.694625317589817,E_g=-0.22640121801492818,L_g=0.46268389440395774,A_g=-1.8010277369372094,K_g=-1.1234734361076868,S_h=0.039129988724742965,B_h=-6.7700378337856195,E_h=-0.007198510477275683,L_h=0.6709862098034137,A_h=-1.593370501906389,K_h=-3.595956532207318,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.564, MAE_g(kcal/mol): 0.428, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.848)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.564, MAE_g(kcal/mol): 0.428, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.097, MAE_h(kcal/mol): 0.848)"""),
+)
+
+entry(
+ index = 1438,
+ label = "O + C[CH]CC=O <=> CCCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34520596272491494,B_g=-2.9140772607244423,E_g=2.102668783403011,L_g=-0.2748188979562784,A_g=-2.354367414510687,K_g=1.302996370515509,S_h=0.6202447744432282,B_h=-7.521145957557083,E_h=2.202802849716235,L_h=-0.055542885831280905,A_h=-1.5335392977154276,K_h=-1.053555520698058,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.95, MAE_g(kcal/mol): 0.636, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.359, MAE_h(kcal/mol): 0.986)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.95, MAE_g(kcal/mol): 0.636, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.359, MAE_h(kcal/mol): 0.986)"""),
+)
+
+entry(
+ index = 1439,
+ label = "O + [CH2]CCC=O <=> CCCC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7543115342384369,B_g=-2.5379001098462792,E_g=0.02271709161820503,L_g=0.2778390469548909,A_g=-1.5009260868056524,K_g=0.06908957357263067,S_h=0.15748024499319094,B_h=-7.201039485539083,E_h=0.1284809502395223,L_h=0.5095621780110637,A_h=-0.6195263894872475,K_h=-2.394633624339277,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9570000000000001, MAE_g(kcal/mol): 0.628, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3319999999999999, MAE_h(kcal/mol): 0.9990000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.9570000000000001, MAE_g(kcal/mol): 0.628, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3319999999999999, MAE_h(kcal/mol): 0.9990000000000001)"""),
+)
+
+entry(
+ index = 1440,
+ label = "OO + CCC[C]=O <=> CCCC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34305080785697295,B_g=-2.3424041058559886,E_g=-0.17259565090372297,L_g=0.33685657022632326,A_g=0.45526547016464725,K_g=-0.6946342696808999,S_h=0.3172989063226863,B_h=-5.1338134701173646,E_h=-0.18279964946214225,L_h=0.46941325552222574,A_h=1.4368798688423554,K_h=-2.474432998123007,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.5670000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.282, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7120000000000001, MAE_h(kcal/mol): 0.5670000000000001)"""),
+)
+
+entry(
+ index = 1441,
+ label = "[O]O + CCC[C]=O <=> CCCC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7769919735629695,B_g=-4.9165533341443535,E_g=0.1484491198322911,L_g=0.6234042021577961,A_g=0.7989980106839284,K_g=-1.88977760083576,S_h=-0.2724145074913635,B_h=-8.128892299857995,E_h=0.21945194313462535,L_h=0.7619718636159859,A_h=2.1083278975460424,K_h=-3.9081974220032016,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.473, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.202, MAE_h(kcal/mol): 0.971)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.473, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.202, MAE_h(kcal/mol): 0.971)"""),
+)
+
+entry(
+ index = 1442,
+ label = "[OH] + CCC[C]=O <=> CCCC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12569537592041358,B_g=-2.9542481745894835,E_g=0.20423391080181036,L_g=0.29475041525537465,A_g=0.9674812742375987,K_g=0.30973387290868576,S_h=0.5542853067502276,B_h=-5.982050172120906,E_h=0.2341128606036186,L_h=0.45253853951541445,A_h=2.2747879544889917,K_h=-1.3367458025291314,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.3, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.862, MAE_h(kcal/mol): 0.6729999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.3, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.862, MAE_h(kcal/mol): 0.6729999999999999)"""),
+)
+
+entry(
+ index = 1443,
+ label = "COO + CCCC[O] <=> CCCCO + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.77611231851483,B_g=-2.687104266928223,E_g=-0.22234014387601703,L_g=0.5318027898115264,A_g=0.06390693924734155,K_g=-1.6235133482226394,S_h=-0.4264274455031375,B_h=-5.080484382823902,E_h=-0.04984711939457703,L_h=0.7269102794888884,A_h=0.9949558335744919,K_h=-3.827415766749049,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.741, MAE_h(kcal/mol): 0.562)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.741, MAE_h(kcal/mol): 0.562)"""),
+)
+
+entry(
+ index = 1444,
+ label = "CC + CCCC[O] <=> CCCCO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5679419513725947,B_g=0.4844187045517403,E_g=1.3172027995429636,L_g=-0.13313579153592767,A_g=-0.592520979509362,K_g=0.7105120432998197,S_h=-0.6151574360814874,B_h=0.6267468913407266,E_h=1.5600902192517745,L_h=-0.05831379923292063,A_h=-0.35017601374690366,K_h=-0.34824077264099657,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.315, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5529999999999999, MAE_h(kcal/mol): 0.335)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.315, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5529999999999999, MAE_h(kcal/mol): 0.335)"""),
+)
+
+entry(
+ index = 1445,
+ label = "CC + CCC[CH]O <=> CCCCO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24706578118747416,B_g=-1.0680111853224854,E_g=0.5240984776815705,L_g=-0.06353308585188223,A_g=-0.06436142768888034,K_g=0.2083243067756595,S_h=0.7328552815225653,B_h=-1.6295243243849267,E_h=0.7500452072549599,L_h=-0.08729843306912029,A_h=0.02438110575093577,K_h=-0.8217370936783368,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.31, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.424, MAE_h(kcal/mol): 0.332)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.31, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.424, MAE_h(kcal/mol): 0.332)"""),
+)
+
+entry(
+ index = 1446,
+ label = "CO + CCCC[O] <=> CCCCO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7602931885657863,B_g=-2.316996735882223,E_g=-0.4164653520829566,L_g=0.5489853850851866,A_g=-0.9985037756019882,K_g=-1.6548437288538782,S_h=-0.3431534342792559,B_h=-4.368051759335644,E_h=-0.057236221798949626,L_h=0.6634211763894133,A_h=-1.2359006817186615,K_h=-3.738563276428215,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.304, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.757, MAE_h(kcal/mol): 0.637)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.304, MAE_g(kcal/mol): 0.247, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.757, MAE_h(kcal/mol): 0.637)"""),
+)
+
+entry(
+ index = 1447,
+ label = "C + C[CH]CCO <=> CCCCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13367824548228038,B_g=-0.333176679941606,E_g=-0.07933755488345694,L_g=0.10990556780630786,A_g=0.25120749037246476,K_g=0.28220800036065097,S_h=-0.1946383403183543,B_h=-0.8369697869286209,E_h=0.04986911077078052,L_h=0.31026166593756954,A_h=0.5081107471816334,K_h=-1.1449736715759653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.281)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.084, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.281)"""),
+)
+
+entry(
+ index = 1448,
+ label = "C + [CH2]CCCO <=> CCCCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02600113713125952,B_g=0.44215127948863275,E_g=-0.11011082065087374,L_g=0.0379864371621615,A_g=-0.374315214359601,K_g=0.41408295299424525,S_h=0.07654465010561373,B_h=0.5605088662158152,E_h=0.11843822177326192,L_h=0.09874860961240399,A_h=-0.6412465387175611,K_h=-0.5595265847453926,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.441, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.529, MAE_h(kcal/mol): 0.321)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.441, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.529, MAE_h(kcal/mol): 0.321)"""),
+)
+
+entry(
+ index = 1449,
+ label = "C=O + CCCC[O] <=> CCCCO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8173974621075148,B_g=0.32205637404137455,E_g=-0.48680843409918617,L_g=0.3410129403287829,A_g=0.3068969853784356,K_g=-0.4841841298722364,S_h=-1.0436447404890186,B_h=0.9792173386715278,E_h=-0.1896902806725691,L_h=0.3489518271382427,A_h=0.8291775092938509,K_h=-1.447633651805862,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.336, MAE_h(kcal/mol): 0.26899999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.182, MAE_g(kcal/mol): 0.156, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.336, MAE_h(kcal/mol): 0.26899999999999996)"""),
+)
+
+entry(
+ index = 1450,
+ label = "C=O + CCC[CH]O <=> CCCCO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34887852255089774,B_g=-3.2774627611109084,E_g=-0.20127973593180826,L_g=0.4645898136749269,A_g=0.7630274496737534,K_g=-1.3669912752676645,S_h=0.2458855773312202,B_h=-5.574366709601876,E_h=-0.11941317278494996,L_h=0.5703023590851026,A_h=1.6140423955376695,K_h=-3.181015915541137,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36200000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7709999999999999, MAE_h(kcal/mol): 0.619)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.36200000000000004, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7709999999999999, MAE_h(kcal/mol): 0.619)"""),
+)
+
+entry(
+ index = 1451,
+ label = "C=O + CC[CH]CO <=> CCCCO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4897552785104538,B_g=-1.7478892415708436,E_g=-0.3086269736397768,L_g=0.37611850720828716,A_g=0.49906496110326454,K_g=-0.865947090306086,S_h=-0.0005131321114147635,B_h=-3.756647518126218,E_h=-0.368956649024684,L_h=0.5246336011691887,A_h=1.6618369864865878,K_h=-2.736584863386075,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.36700000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.177, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.494, MAE_h(kcal/mol): 0.36700000000000005)"""),
+)
+
+entry(
+ index = 1452,
+ label = "C=O + C[CH]CCO <=> CCCCO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8545775488088816,B_g=-0.5500189797667505,E_g=-0.32438012946021005,L_g=0.3620660178142571,A_g=0.3099171343770482,K_g=-0.7723884454777057,S_h=-1.0615163988837213,B_h=-0.9718062448909517,E_h=-0.22648918351974212,L_h=0.4752629615923539,A_h=1.215140822582567,K_h=-2.2694000673191366,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.122, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.251, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 1453,
+ label = "C=O + [CH2]CCCO <=> CCCCO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7517092213876906,B_g=-0.036234457524616806,E_g=-0.45132168336548806,L_g=0.34107158399865883,A_g=0.13340701850910403,K_g=-0.8223675131295035,S_h=-0.9360922499364842,B_h=0.3997152538746318,E_h=-0.21252465963052602,L_h=0.34367389684940514,A_h=0.5135792693975679,K_h=-1.851512606241688,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.237)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.157, MAE_g(kcal/mol): 0.131, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.285, MAE_h(kcal/mol): 0.237)"""),
+)
+
+entry(
+ index = 1454,
+ label = "[H][H] + CCCC[O] <=> CCCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6011929121922714,B_g=-0.1241119968337623,E_g=-0.23626801547156062,L_g=0.2627822847142349,A_g=-0.2278673097618275,K_g=0.4273510833036841,S_h=-0.6041250956860701,B_h=0.0536076447253738,E_h=0.008877185527475408,L_h=0.2588678197500137,A_h=-0.24281411512146614,K_h=-0.7694122792314999,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.254, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.254, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 1455,
+ label = "[H][H] + CCC[CH]O <=> CCCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.146469895973977,B_g=0.020320031612024635,E_g=-0.0021478244092075103,L_g=0.046401803789363615,A_g=0.13462387465903047,K_g=1.3643376492057768,S_h=0.23399557326386666,B_h=0.1034767554961543,E_h=0.3370764839883582,L_h=0.06653857393302584,A_h=0.08828804499827732,K_h=0.4137824041861308,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.17300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.06, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.17300000000000001)"""),
+)
+
+entry(
+ index = 1456,
+ label = "[H][H] + CC[CH]CO <=> CCCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2890693097361398,B_g=-0.6530339163626316,E_g=-0.23428146115451204,L_g=0.10519208284002651,A_g=-0.008122148277822257,K_g=0.7944971090209473,S_h=0.836529959404551,B_h=-1.1329663801688599,E_h=-0.0475233639757416,L_h=0.0896148580292212,A_h=-0.3629163510274588,K_h=-0.3868063160431832,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.212)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.08900000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.268, MAE_h(kcal/mol): 0.212)"""),
+)
+
+entry(
+ index = 1457,
+ label = "[H][H] + C[CH]CCO <=> CCCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15177714809775256,B_g=1.977911706200613,E_g=-0.0946508831798204,L_g=-0.05568949500597085,A_g=-0.38918138467316016,K_g=1.6300081346614033,S_h=-0.6781847202806894,B_h=3.901871236115331,E_h=0.252849513128992,L_h=-0.09418173382081259,A_h=-0.8096564976838865,K_h=1.0942175752983108,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.43200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.209, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.573, MAE_h(kcal/mol): 0.43200000000000005)"""),
+)
+
+entry(
+ index = 1458,
+ label = "[H][H] + [CH2]CCCO <=> CCCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.012307840215219829,B_g=0.06724229797153751,E_g=-0.12974178914185572,L_g=0.0867999618751745,A_g=0.08957820573554873,K_g=0.9772747671068861,S_h=0.10532403109724747,B_h=0.26333206911932217,E_h=0.10470827256354977,L_h=0.09502473657527971,A_h=-0.08207181599142417,K_h=0.08041513231742795,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.122)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.183, MAE_h(kcal/mol): 0.122)"""),
+)
+
+entry(
+ index = 1459,
+ label = "O + CCCC[O] <=> CCCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9565588907231988,B_g=-2.0620873638488377,E_g=-0.5406140012103914,L_g=0.5366115707413562,A_g=-1.7450963367930004,K_g=-1.3749301620771246,S_h=-0.4981193319265145,B_h=-4.266693506413759,E_h=-0.21735543193655935,L_h=0.5081913822277128,A_h=-2.1405745855190927,K_h=-3.200346335224004,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.606)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.297, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.728, MAE_h(kcal/mol): 0.606)"""),
+)
+
+entry(
+ index = 1460,
+ label = "O + CCC[CH]O <=> CCCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9499248255684792,B_g=-4.469475986386139,E_g=0.09715056960828374,L_g=0.22681905416279446,A_g=0.29505829452222354,K_g=-0.7496273711070937,S_h=2.3739177479555895,B_h=-8.507532484870948,E_h=0.7417397975087752,L_h=0.20547275832794032,A_h=0.751877821938584,K_h=-2.839240607503966,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5379999999999999, MAE_g(kcal/mol): 0.431, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2930000000000001, MAE_h(kcal/mol): 1.006)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5379999999999999, MAE_g(kcal/mol): 0.431, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2930000000000001, MAE_h(kcal/mol): 1.006)"""),
+)
+
+entry(
+ index = 1461,
+ label = "O + CC[CH]CO <=> CCCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5846480668285127,B_g=-1.5495710109677718,E_g=0.7794916599914329,L_g=0.14747416882060305,A_g=-1.9384665077502867,K_g=0.3380587654587807,S_h=0.2634346955416051,B_h=-5.514506183575977,E_h=1.0095361159974057,L_h=0.29392940387711103,A_h=-1.8609249152567815,K_h=-1.8254894777342248,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46399999999999997, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.882, MAE_h(kcal/mol): 0.695)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46399999999999997, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.882, MAE_h(kcal/mol): 0.695)"""),
+)
+
+entry(
+ index = 1462,
+ label = "O + C[CH]CCO <=> CCCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.062330890619424775,B_g=-3.4814547667744806,E_g=-0.2229045891985733,L_g=0.4016578254392734,A_g=-1.0938290609853825,K_g=-1.093968339701338,S_h=0.9396841747163874,B_h=-7.681338472282039,E_h=-0.021133712531553762,L_h=0.5002598258769875,A_h=-1.2247583844422265,K_h=-3.206115406248053,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.33399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.036, MAE_h(kcal/mol): 0.804)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41600000000000004, MAE_g(kcal/mol): 0.33399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.036, MAE_h(kcal/mol): 0.804)"""),
+)
+
+entry(
+ index = 1463,
+ label = "O + [CH2]CCCO <=> CCCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4207023572314957,B_g=-1.3372662650992806,E_g=-0.1806078423005278,L_g=0.27161548748930336,A_g=-1.0778559914029144,K_g=-0.3252377931321461,S_h=0.03808906358444445,B_h=-3.503907961878244,E_h=0.1666726402462497,L_h=0.25853061864822685,A_h=-0.9978073820222111,K_h=-1.7966148007790428,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.462)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.249, MAE_g(kcal/mol): 0.19899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.462)"""),
+)
+
+entry(
+ index = 1464,
+ label = "OO + CCCC[O] <=> CCCCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.1941024060145617,B_g=-0.4540266226385173,E_g=-0.4704101979101172,L_g=0.4585641765951707,A_g=-0.4719495942443615,K_g=-0.8768181606093444,S_h=-0.7612461482012707,B_h=-2.630615751920192,E_h=-0.4135624904240959,L_h=0.6105319166200203,A_h=0.49527511393752977,K_h=-2.9490655402641948,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.203, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.395, MAE_h(kcal/mol): 0.302)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.203, MAE_g(kcal/mol): 0.161, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.395, MAE_h(kcal/mol): 0.302)"""),
+)
+
+entry(
+ index = 1465,
+ label = "[O]O + CCCC[O] <=> CCCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.38664423513485,B_g=-5.0845674483390155,E_g=0.0009309682592810709,L_g=0.8171702178867454,A_g=0.2923973380016013,K_g=-2.787714813059189,S_h=-1.0627772377860547,B_h=-8.082666427078259,E_h=0.14230619541278292,L_h=0.9490451705203398,A_h=1.4245793590858702,K_h=-5.082155727415367,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.216, MAE_h(kcal/mol): 0.973)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.216, MAE_h(kcal/mol): 0.973)"""),
+)
+
+entry(
+ index = 1466,
+ label = "[O]O + CCC[CH]O <=> CCCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2642043937087272,B_g=-7.5349858636478135,E_g=0.28637170092184505,L_g=0.722577978376801,A_g=0.946215613448824,K_g=-2.716228179480378,S_h=0.8466386619994218,B_h=-12.420560679180184,E_h=0.46676695991907247,L_h=0.8757259222579044,A_h=2.314980859730237,K_h=-5.443371412016422,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.879, MAE_g(kcal/mol): 0.6990000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7930000000000001, MAE_h(kcal/mol): 1.449)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.879, MAE_g(kcal/mol): 0.6990000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7930000000000001, MAE_h(kcal/mol): 1.449)"""),
+)
+
+entry(
+ index = 1467,
+ label = "[O]O + CC[CH]CO <=> CCCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6409166680745088,B_g=-6.58009831751608,E_g=0.17870192302955867,L_g=0.728215101143629,A_g=0.8067902883186983,K_g=-2.6699656544069703,S_h=0.3408809920715619,B_h=-11.976672080971474,E_h=0.011171619111372853,L_h=1.0356692013858864,A_h=2.446995091079786,K_h=-5.647744601534188,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.753, MAE_g(kcal/mol): 0.593, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6380000000000001, MAE_h(kcal/mol): 1.2830000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.753, MAE_g(kcal/mol): 0.593, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6380000000000001, MAE_h(kcal/mol): 1.2830000000000001)"""),
+)
+
+entry(
+ index = 1468,
+ label = "[O]O + C[CH]CCO <=> CCCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8987802149778963,B_g=-5.333172625860735,E_g=0.28053665576918574,L_g=0.6598439125269789,A_g=0.7629614755451429,K_g=-2.2068639238551464,S_h=-0.6013981650368374,B_h=-9.18728592332082,E_h=0.25012991293849374,L_h=0.9524318424556771,A_h=2.3169820749647543,K_h=-4.807065602485912,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.628, MAE_g(kcal/mol): 0.496, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3030000000000002, MAE_h(kcal/mol): 0.996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.628, MAE_g(kcal/mol): 0.496, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3030000000000002, MAE_h(kcal/mol): 0.996)"""),
+)
+
+entry(
+ index = 1469,
+ label = "[O]O + [CH2]CCCO <=> CCCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8630515591059598,B_g=-5.139164704993547,E_g=0.11763920177120178,L_g=0.6610607686769054,A_g=0.5048706844209859,K_g=-2.4093678463956154,S_h=-0.3518326974208999,B_h=-8.471781837622808,E_h=0.14032697155446883,L_h=0.8154035773317317,A_h=1.6678992758600164,K_h=-4.572666853991648,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.479, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2109999999999999, MAE_h(kcal/mol): 0.985)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5920000000000001, MAE_g(kcal/mol): 0.479, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2109999999999999, MAE_h(kcal/mol): 0.985)"""),
+)
+
+entry(
+ index = 1470,
+ label = "[OH] + CCCC[O] <=> CCCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3838594716319156,B_g=-2.8768971740230755,E_g=0.1449671519334052,L_g=0.37946119639121767,A_g=0.6436875814761484,K_g=-0.6430425011075128,S_h=0.09761238850855702,B_h=-5.56230810498363,E_h=0.25301078322115095,L_h=0.5658601010919978,A_h=1.7416143688941144,K_h=-2.6022028938652837,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.779, MAE_h(kcal/mol): 0.584)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.779, MAE_h(kcal/mol): 0.584)"""),
+)
+
+entry(
+ index = 1471,
+ label = "[OH] + CCC[CH]O <=> CCCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9469559897810083,B_g=-4.34757045763146,E_g=0.22871031251629462,L_g=0.19030603920626682,A_g=1.169560030171467,K_g=-2.0583048471418373,S_h=2.099736599909212,B_h=-7.832800410654207,E_h=0.4178874610774489,L_h=0.30330506059853224,A_h=2.6362455442282857,K_h=-4.163473316973312,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.43, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.22, MAE_h(kcal/mol): 0.9059999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.575, MAE_g(kcal/mol): 0.43, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.22, MAE_h(kcal/mol): 0.9059999999999999)"""),
+)
+
+entry(
+ index = 1472,
+ label = "[OH] + CC[CH]CO <=> CCCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1510367717655684,B_g=-4.597348508550698,E_g=0.08695390150859893,L_g=0.47494775186677063,A_g=0.35063783264717696,K_g=-1.2216722613150037,S_h=1.0381395659794115,B_h=-9.680794396703336,E_h=-0.05539627665659097,L_h=0.749649362483297,A_h=1.584317385369286,K_h=-3.8591933053630916,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.522, MAE_g(kcal/mol): 0.40399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.29, MAE_h(kcal/mol): 1.008)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.522, MAE_g(kcal/mol): 0.40399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.29, MAE_h(kcal/mol): 1.008)"""),
+)
+
+entry(
+ index = 1473,
+ label = "[OH] + C[CH]CCO <=> CCCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.32069290871675826,B_g=-3.338444847323186,E_g=0.3318132146169896,L_g=0.34372521006054657,A_g=0.3845925175053652,K_g=-0.5556707634510474,S_h=0.2294653497659478,B_h=-7.043463944582345,E_h=0.32817730708467924,L_h=0.5984953033779767,A_h=1.7480211898280644,K_h=-2.7957050130797905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.7120000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.382, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.935, MAE_h(kcal/mol): 0.7120000000000001)"""),
+)
+
+entry(
+ index = 1474,
+ label = "[OH] + [CH2]CCCO <=> CCCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3143593923701531,B_g=-3.0422649926145846,E_g=0.08269490498385638,L_g=0.3883017296250206,A_g=0.12855425482686725,K_g=-0.8580301948728297,S_h=0.24098883089657644,B_h=-5.916963029017311,E_h=0.1988093713382829,L_h=0.5415742913046104,A_h=1.0141982877525457,K_h=-2.724768163906067,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.632)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34600000000000003, MAE_g(kcal/mol): 0.278, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.632)"""),
+)
+
+entry(
+ index = 1475,
+ label = "CCCCOO + [CH]=O <=> CCCCO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09380788042535328,B_g=-2.966556014804704,E_g=0.0037825167070002575,L_g=0.29191352772512447,A_g=0.9127227474909089,K_g=-0.2447786780623112,S_h=0.7948049882877962,B_h=-5.848342604803688,E_h=0.03766389697784364,L_h=0.4662611582663922,A_h=1.7391366738418546,K_h=-1.921701748624493,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35200000000000004, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.5920000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35200000000000004, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.5920000000000001)"""),
+)
+
+entry(
+ index = 1476,
+ label = "CCCCOO + C[C]=O <=> CCCCO[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.035538063944839625,B_g=-2.953581102844644,E_g=-0.06925084366478959,L_g=0.32881505699458047,A_g=1.0624766889779405,K_g=-0.5647458713643543,S_h=0.674988640272449,B_h=-5.856098230144785,E_h=-0.061627166580913106,L_h=0.5006703315661193,A_h=2.034840048732714,K_h=-2.1901138256468213,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.785, MAE_h(kcal/mol): 0.603)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.785, MAE_h(kcal/mol): 0.603)"""),
+)
+
+entry(
+ index = 1477,
+ label = "CCCCOO + CC[C]=O <=> CCCCO[O] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14546562312735098,B_g=-3.1272103484299314,E_g=-0.11887804929733173,L_g=0.35255108237688054,A_g=0.935527804613928,K_g=-1.0828187119661685,S_h=0.5380336797358486,B_h=-6.003909600067176,E_h=-0.049194708567206834,L_h=0.5068718996555035,A_h=1.8350410654652738,K_h=-2.778001955235981,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.754, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.245, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.754, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 1478,
+ label = "CCCCOO + [O][O] <=> CCCCO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06518976952587846,B_g=-2.7119325306619637,E_g=-0.12557808858066163,L_g=0.34843869502682795,A_g=0.49065692493479685,K_g=-0.21470913633340605,S_h=0.5419041619476628,B_h=-5.093701199922199,E_h=0.07909564974521854,L_h=0.632537953740979,A_h=0.9720114977355176,K_h=-2.2514037911259477,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.6)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.319, MAE_g(kcal/mol): 0.233, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.6)"""),
+)
+
+entry(
+ index = 1479,
+ label = "CCCOO + [CH]=O <=> CCCO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03051669971170944,B_g=-2.91920858183859,E_g=-0.015958408664999146,L_g=0.30856099951116633,A_g=0.914584684009471,K_g=-0.2360774235444637,S_h=0.7206647286470974,B_h=-5.79785773549921,E_h=0.004786789553626294,L_h=0.5114314449883604,A_h=1.744253334038533,K_h=-1.9985689389144248,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.583)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.583)"""),
+)
+
+entry(
+ index = 1480,
+ label = "CCCOO + C[C]=O <=> CCCO[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11015480340328075,B_g=-3.0565080739357113,E_g=-0.18048322450204132,L_g=0.3724899301347113,A_g=0.9459590473931166,K_g=-0.889536506513696,S_h=0.5329903241265149,B_h=-5.8674897630181935,E_h=-0.10249447402573177,L_h=0.5581337975858384,A_h=1.7617584694965112,K_h=-2.71176393011107,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.763, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.261, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.763, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 1481,
+ label = "CCCOO + CC[C]=O <=> CCCO[O] + CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10316154577057096,B_g=-3.092090120632958,E_g=-0.1705138006231259,L_g=0.3626744458892204,A_g=1.0326783742222116,K_g=-0.9760579109569597,S_h=0.5355120019311818,B_h=-5.915790155619791,E_h=-0.09796425052781287,L_h=0.5579138838238034,A_h=1.8773158209871157,K_h=-2.77839046954891,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.353, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.764, MAE_h(kcal/mol): 0.5870000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.353, MAE_g(kcal/mol): 0.264, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.764, MAE_h(kcal/mol): 0.5870000000000001)"""),
+)
+
+entry(
+ index = 1482,
+ label = "CCCOO + [O][O] <=> CCCO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.037114112572756396,B_g=-2.662092741726121,E_g=-0.1156453169954187,L_g=0.34824077264099657,A_g=0.40565292544957404,K_g=-0.20207875593386837,S_h=0.5139457923342927,B_h=-5.055135656520012,E_h=0.07878777047836968,L_h=0.6328311720903589,A_h=0.9240629671531753,K_h=-2.2549590636121786,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.308, MAE_g(kcal/mol): 0.22899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.759, MAE_h(kcal/mol): 0.606)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.308, MAE_g(kcal/mol): 0.22899999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.759, MAE_h(kcal/mol): 0.606)"""),
+)
+
+entry(
+ index = 1483,
+ label = "CC + C[CH]O <=> CCO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5506420687591828,B_g=-1.6743354186289043,E_g=-0.04135844818002995,L_g=0.0633864766771923,A_g=0.449327798589705,K_g=-0.06400223521089,S_h=1.158417732895032,B_h=-2.403298226563452,E_h=0.22593939911465488,L_h=0.028654763193147297,A_h=0.6908810748088375,K_h=-1.2960690870114098,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.503, MAE_h(kcal/mol): 0.385)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.264, MAE_g(kcal/mol): 0.20800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.503, MAE_h(kcal/mol): 0.385)"""),
+)
+
+entry(
+ index = 1484,
+ label = "CC + [CH2]CO <=> CCO + C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07614880533395091,B_g=0.2944571969059948,E_g=-0.09252505014681636,L_g=0.04359423809405141,A_g=-0.007044570843851253,K_g=0.38913007146201867,S_h=-0.04647510837670858,B_h=0.5254692734649213,E_h=0.1363392020029027,L_h=0.07515186294605937,A_h=0.051884986922767086,K_h=-0.6885719803074711,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08900000000000001, MAE_g(kcal/mol): 0.068, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 1485,
+ label = "C + C[CH]O <=> CCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.056202627117385606,B_g=-0.3995393228650039,E_g=-0.005358565334917031,L_g=0.07159659045982851,A_g=0.3920989072494898,K_g=0.26691666344049103,S_h=0.023919286850662476,B_h=-0.559871116305914,E_h=0.1430099194512946,L_h=0.14674112294715339,A_h=0.7683420322562634,K_h=-0.9748630461832367,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 1486,
+ label = "C + [CH2]CO <=> CCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06408287025696947,B_g=-1.592219619885073,E_g=-0.03222469659684715,L_g=0.16589561162039304,A_g=0.4634242707361419,K_g=0.2801774632911954,S_h=0.6721004395310572,B_h=-3.7046452438636996,E_h=-0.05752944014832949,L_h=0.3754294440872445,A_h=1.082012361505374,K_h=-1.4582701474296165,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.515, MAE_h(kcal/mol): 0.395)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.515, MAE_h(kcal/mol): 0.395)"""),
+)
+
+entry(
+ index = 1487,
+ label = "[H][H] + C[CH]O <=> CCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07120074568816569,B_g=0.04910674306239287,E_g=-0.033984006693126345,L_g=0.07839192570670689,A_g=0.005541826803279445,K_g=1.2024664594306225,S_h=0.09539858997073905,B_h=0.1976731502344359,E_h=0.3295700942442336,L_h=0.09668142024927595,A_h=-0.018846609406390817,K_h=0.16314668959495682,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29600000000000004, MAE_h(kcal/mol): 0.187)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.046, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29600000000000004, MAE_h(kcal/mol): 0.187)"""),
+)
+
+entry(
+ index = 1488,
+ label = "[H][H] + [CH2]CO <=> CCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22582211177490294,B_g=-0.7799681398091752,E_g=-0.17462618797317853,L_g=0.11904664984822513,A_g=0.1113789900119417,K_g=0.9901323917271933,S_h=0.7996724128875019,B_h=-1.386556269630036,E_h=-0.010299294521967754,L_h=0.11412791203737793,A_h=-0.046423795165567106,K_h=-0.17793222486243654,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27699999999999997, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27699999999999997, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 1489,
+ label = "O + C[CH]O <=> CCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.125893298306245,B_g=-3.535040420123651,E_g=0.11972105205179882,L_g=0.3240502588171577,A_g=0.5831893055403478,K_g=-0.7801953840299446,S_h=1.1211056979364444,B_h=-7.068482800243181,E_h=0.5808875414977158,L_h=0.36569459488783296,A_h=1.0155324312422243,K_h=-2.776242645139702,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39799999999999996, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.958, MAE_h(kcal/mol): 0.738)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.39799999999999996, MAE_g(kcal/mol): 0.29600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.958, MAE_h(kcal/mol): 0.738)"""),
+)
+
+entry(
+ index = 1490,
+ label = "O + [CH2]CO <=> CCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6046382277974849,B_g=-3.0750541345339877,E_g=0.2909678985483744,L_g=0.3691179191168429,A_g=-1.4210020952234357,K_g=-0.5220166274009734,S_h=0.37124375214984695,B_h=-7.58162224211668,E_h=0.34280890271873454,L_h=0.5460971843437948,A_h=-0.9262401133973206,K_h=-2.8236120694820195,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.505, MAE_g(kcal/mol): 0.40299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.109, MAE_h(kcal/mol): 0.885)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.505, MAE_g(kcal/mol): 0.40299999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.109, MAE_h(kcal/mol): 0.885)"""),
+)
+
+entry(
+ index = 1491,
+ label = "[O]O + C[CH]O <=> CCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4375697427795724,B_g=-7.3692002089084365,E_g=0.27531736915022414,L_g=0.7713401898786726,A_g=0.7155260770742152,K_g=-2.71737173104296,S_h=0.5816352482886344,B_h=-12.27214088118283,E_h=0.44584583069081907,L_h=0.9628924070698038,A_h=2.175628839187456,K_h=-5.575568904834334,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.862, MAE_g(kcal/mol): 0.6779999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7830000000000001, MAE_h(kcal/mol): 1.4380000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.862, MAE_g(kcal/mol): 0.6779999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.7830000000000001, MAE_h(kcal/mol): 1.4380000000000002)"""),
+)
+
+entry(
+ index = 1492,
+ label = "[O]O + [CH2]CO <=> CCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6374200392581538,B_g=-6.682035676677988,E_g=0.2691231315195745,L_g=0.7205767631422834,A_g=0.9716083225051202,K_g=-2.1966159425443195,S_h=0.4103224276634484,B_h=-12.224544212619746,E_h=0.10333014632146438,L_h=1.0353833134952408,A_h=2.753408266181745,K_h=-5.0211223279919475,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7709999999999999, MAE_g(kcal/mol): 0.605, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.673, MAE_h(kcal/mol): 1.31)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7709999999999999, MAE_g(kcal/mol): 0.605, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.673, MAE_h(kcal/mol): 1.31)"""),
+)
+
+entry(
+ index = 1493,
+ label = "[OH] + C[CH]O <=> CCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.036886868351987,B_g=-2.1124769371897676,E_g=0.27521474272794116,L_g=0.2044098418114383,A_g=0.754076959558933,K_g=-0.014360368660878883,S_h=0.6128996547912625,B_h=-4.918657175801154,E_h=0.3506964763170529,L_h=0.3693891460900193,A_h=1.8861343628447154,K_h=-1.930293046261323,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.499)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6609999999999999, MAE_h(kcal/mol): 0.499)"""),
+)
+
+entry(
+ index = 1494,
+ label = "[OH] + [CH2]CO <=> CCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24005053217856087,B_g=-4.636859681129635,E_g=0.17498538045116885,L_g=0.48342176216384874,A_g=0.5294423820990185,K_g=-0.9844366252904894,S_h=0.94488880041788,B_h=-9.795508745439474,E_h=0.03658631954387264,L_h=0.780144070818803,A_h=1.9044385183047532,K_h=-3.613564294087579,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.402, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2930000000000001, MAE_h(kcal/mol): 1.003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.402, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2930000000000001, MAE_h(kcal/mol): 1.003)"""),
+)
+
+entry(
+ index = 1495,
+ label = "CCOO + [CH]=O <=> CCO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08817808811725987,B_g=-2.7410197909204457,E_g=-0.04485507699638483,L_g=0.3371204667407651,A_g=0.7361173356594163,K_g=-0.3690885972819049,S_h=0.5253959688775763,B_h=-5.504617394743141,E_h=0.001568718169182277,L_h=0.5078321897497224,A_h=1.628124206766638,K_h=-2.0725625893804334,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.574)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.331, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.574)"""),
+)
+
+entry(
+ index = 1496,
+ label = "CCOO + C[CH]C <=> CCO[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15503920223460355,B_g=-2.6907694962954714,E_g=0.18829749351301472,L_g=0.2410254831902489,A_g=0.5270453220928382,K_g=-0.5290172154924178,S_h=0.47507236966525707,B_h=-5.5619269211294355,E_h=0.2092259532000026,L_h=0.42342928788072837,A_h=1.4758705788511433,K_h=-2.3688524009700527,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.368, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.624)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.368, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.624)"""),
+)
+
+entry(
+ index = 1497,
+ label = "CCOO + [CH2]CC <=> CCO[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3101663699740211,B_g=-2.5540637713558443,E_g=0.09940835089850868,L_g=0.29312305341631645,A_g=0.3313660566341853,K_g=-0.656625841142535,S_h=0.2435471609949158,B_h=-5.280473958018438,E_h=0.175725756783353,L_h=0.47650180911848394,A_h=1.2454962522021176,K_h=-2.5756812941638745,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.772, MAE_h(kcal/mol): 0.6)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.294, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.772, MAE_h(kcal/mol): 0.6)"""),
+)
+
+entry(
+ index = 1498,
+ label = "CCOO + [O][O] <=> CCO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12212544251671373,B_g=-2.4520017943954473,E_g=-0.16916499621597852,L_g=0.38462916979903783,A_g=0.23474328005478534,K_g=-0.32672587625524896,S_h=0.2923093724967873,B_h=-4.7369131123967785,E_h=0.03322163898473869,L_h=0.64563015304079,A_h=0.8318018135208008,K_h=-2.3399264108037285,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.586)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.297, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.586)"""),
+)
+
+entry(
+ index = 1499,
+ label = "CC(C)OO + [CH2]O <=> CO + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12052007205385896,B_g=-4.61829895961389,E_g=0.2929324614892195,L_g=0.46728742248922167,A_g=-0.29595261048783217,K_g=-1.4866097008971804,S_h=0.934347600757674,B_h=-8.5563753314189,E_h=0.4729025538798461,L_h=0.5833285842563032,A_h=1.0723068341409003,K_h=-3.786958964993362,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.67, MAE_g(kcal/mol): 0.5670000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.357, MAE_h(kcal/mol): 1.141)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.67, MAE_g(kcal/mol): 0.5670000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.357, MAE_h(kcal/mol): 1.141)"""),
+)
+
+entry(
+ index = 1500,
+ label = "CCOO + [CH2]O <=> CO + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11018412523821873,B_g=-4.456149212406824,E_g=0.8149564193489275,L_g=0.30178765564049137,A_g=-0.29068934111646355,K_g=-1.1006317266909953,S_h=0.9734189458125411,B_h=-8.276894261707481,E_h=0.9639626540450403,L_h=0.3942760534936353,A_h=1.049391820136864,K_h=-3.277015603128105,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.725, MAE_g(kcal/mol): 0.586, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.4080000000000001, MAE_h(kcal/mol): 1.1420000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.725, MAE_g(kcal/mol): 0.586, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.4080000000000001, MAE_h(kcal/mol): 1.1420000000000001)"""),
+)
+
+entry(
+ index = 1501,
+ label = "COO + [CH2]O <=> CO + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0631519019976884,B_g=-4.76565584109474,E_g=0.13961591705722265,L_g=0.4565189786082461,A_g=0.45580792411099996,K_g=-1.4930898264184755,S_h=1.0873782572990256,B_h=-8.512612492773954,E_h=0.2738659383207938,L_h=0.5589621394228365,A_h=1.7110023732188564,K_h=-3.7175321903189444,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.462, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2919999999999998, MAE_h(kcal/mol): 1.044)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.59, MAE_g(kcal/mol): 0.462, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.2919999999999998, MAE_h(kcal/mol): 1.044)"""),
+)
+
+entry(
+ index = 1502,
+ label = "C + [CH2]O <=> CO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.11716272195345952,B_g=-0.606632112573268,E_g=0.011310897827328288,L_g=0.1052653874273715,A_g=0.3939315219331139,K_g=0.3897018472433094,S_h=0.017798353807357798,B_h=-0.8805347031877343,E_h=0.12166362361644044,L_h=0.1506629183701091,A_h=0.7449871907281571,K_h=-0.7379792721779783,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.162)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.217, MAE_h(kcal/mol): 0.162)"""),
+)
+
+entry(
+ index = 1503,
+ label = "C=O + [CH2]O <=> CO + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5206751534525605,B_g=-3.325323326188437,E_g=-0.1827703276272043,L_g=0.519898124826704,A_g=0.5926529277665828,K_g=-1.3597561124967166,S_h=0.05651783684296896,B_h=-5.682615593734188,E_h=-0.12775523482480713,L_h=0.5850219202239719,A_h=1.6222598397790406,K_h=-3.143161426636196,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.387, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.7020000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.387, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.7020000000000001)"""),
+)
+
+entry(
+ index = 1504,
+ label = "[H][H] + C[O] <=> CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4125435566600009,B_g=-0.2743717399734741,E_g=-0.16247228739138314,L_g=0.20083257794900394,A_g=0.21589667064839452,K_g=0.7328699424400342,S_h=-0.2715201915257549,B_h=-0.43440298460626986,E_h=-0.04684163131343341,L_h=0.1939566076560461,A_h=0.5414130212124515,K_h=-0.3438424974002986,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.069)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.086, MAE_h(kcal/mol): 0.069)"""),
+)
+
+entry(
+ index = 1505,
+ label = "[H][H] + [CH2]O <=> CO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.014074480770233513,B_g=-0.10114566961858439,E_g=-0.030502038794240446,L_g=0.10749384688265848,A_g=0.1067388096330053,K_g=1.3040006433621352,S_h=0.051459820316166284,B_h=-0.05361497518410829,E_h=0.26075907810351384,L_h=0.12683892748299505,A_h=0.19732861867391455,K_h=0.3318498669106621,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.15)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.15)"""),
+)
+
+entry(
+ index = 1506,
+ label = "O + C[O] <=> CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.8946751580865782,B_g=-2.033139382306311,E_g=-0.5185933031719635,L_g=0.5156684501368994,A_g=-1.2721424697020127,K_g=-1.099297583201317,S_h=-0.4846166269375717,B_h=-4.286471084079431,E_h=-0.34675268951789373,L_h=0.5334814648617262,A_h=-1.3463780253062603,K_h=-2.8846161470705,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.555)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.316, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.664, MAE_h(kcal/mol): 0.555)"""),
+)
+
+entry(
+ index = 1507,
+ label = "O + [CH2]O <=> CO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.20665296218419427,B_g=-2.861657150314057,E_g=0.15264947268715767,L_g=0.3363141162799705,A_g=0.638116432837931,K_g=-0.4710992610311599,S_h=0.6312697843799111,B_h=-6.206376870313973,E_h=0.5234900496066073,L_h=0.4044800520520547,A_h=1.2440668127488907,K_h=-2.3128696876147017,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8190000000000001, MAE_h(kcal/mol): 0.63)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.326, MAE_g(kcal/mol): 0.226, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8190000000000001, MAE_h(kcal/mol): 0.63)"""),
+)
+
+entry(
+ index = 1508,
+ label = "OO + [CH2]O <=> CO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.38472446576258623,B_g=-3.7010166667901236,E_g=1.5463162872896556,L_g=0.11074857056077496,A_g=-0.48217558417898426,K_g=-0.4919397552133338,S_h=0.7117362299084805,B_h=-7.216294170165572,E_h=1.6835278138819632,L_h=0.17376119384250793,A_h=0.7930090258978446,K_h=-2.6117691425138014,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8029999999999999, MAE_g(kcal/mol): 0.5489999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.369, MAE_h(kcal/mol): 1.051)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.8029999999999999, MAE_g(kcal/mol): 0.5489999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.369, MAE_h(kcal/mol): 1.051)"""),
+)
+
+entry(
+ index = 1509,
+ label = "[O]O + [CH2]O <=> CO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6380064759569135,B_g=-7.746916756120845,E_g=0.3088322264843427,L_g=0.8413167489581773,A_g=0.8590198068019868,K_g=-2.831235746565896,S_h=0.38770063200879185,B_h=-13.097609178357024,E_h=0.3801209376773223,L_h=1.0508285900488252,A_h=2.6141735329787164,K_h=-5.695194660922584,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.92, MAE_g(kcal/mol): 0.721, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.919, MAE_h(kcal/mol): 1.5490000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.92, MAE_g(kcal/mol): 0.721, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.919, MAE_h(kcal/mol): 1.5490000000000002)"""),
+)
+
+entry(
+ index = 1510,
+ label = "[OH] + [CH2]O <=> CO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07784214130161964,B_g=-2.066514960924474,E_g=0.2888787178090429,L_g=0.20786981833412072,A_g=0.8468365843852532,K_g=0.2700760911550591,S_h=0.6177597489322338,B_h=-4.933765251252952,E_h=0.29747734590460745,L_h=0.36944045930116076,A_h=2.0694984576294138,K_h=-1.5499302034457623,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.518)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.20199999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.518)"""),
+)
+
+entry(
+ index = 1511,
+ label = "COCOO + [CH2]OC <=> COC + COCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0805609306759436,B_g=-1.2598272990280586,E_g=0.4408684492100958,L_g=0.3458437126348161,A_g=-0.12816574051393895,K_g=-0.6655323485049484,S_h=-0.85496606312181,B_h=-3.7470592781014966,E_h=0.3754587659221824,L_h=0.5894495172996079,A_h=1.1071265131297594,K_h=-2.560668514675626,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.406, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7659999999999999, MAE_h(kcal/mol): 0.5920000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5329999999999999, MAE_g(kcal/mol): 0.406, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7659999999999999, MAE_h(kcal/mol): 0.5920000000000001)"""),
+)
+
+entry(
+ index = 1512,
+ label = "COO + [CH2]OC <=> COC + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3306330107607356,B_g=-2.757659932247753,E_g=0.35150282677784755,L_g=0.2426675059467762,A_g=0.4059094915052815,K_g=-0.5822216849873942,S_h=0.33780952986180784,B_h=-5.706087722602047,E_h=0.309352689054492,L_h=0.407940028574737,A_h=1.6160802630658597,K_h=-2.5410375461846435,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.305, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8240000000000001, MAE_h(kcal/mol): 0.66)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38, MAE_g(kcal/mol): 0.305, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8240000000000001, MAE_h(kcal/mol): 0.66)"""),
+)
+
+entry(
+ index = 1513,
+ label = "CO + [CH2]OC <=> COC + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2576363026826183,B_g=-2.0721007704801604,E_g=-0.006626734695984947,L_g=0.31165445309712386,A_g=0.404751279025231,K_g=-0.43290024056569804,S_h=0.20204210364019587,B_h=-4.368410951813634,E_h=0.23712567914349678,L_h=0.47606198159441415,A_h=1.121200993899993,K_h=-2.248251693870114,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.43799999999999994)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.239, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.597, MAE_h(kcal/mol): 0.43799999999999994)"""),
+)
+
+entry(
+ index = 1514,
+ label = "C + [CH2]OC <=> COC + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.07153061633121804,B_g=-0.13924206366176334,E_g=-0.17128349879024807,L_g=0.09270831161517878,A_g=0.3804801301553126,K_g=0.4914192926431845,S_h=0.06461066328585323,B_h=-0.20144833648270166,E_h=-0.04768463406790052,L_h=0.1404442588942208,A_h=0.5365382661540112,K_h=-0.5625394032852707,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.096)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.096)"""),
+)
+
+entry(
+ index = 1515,
+ label = "[H][H] + [CH2]OC <=> COC + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.008965151032289368,B_g=0.028801372367837228,E_g=-0.07864849176241427,L_g=0.09076574005053717,A_g=0.1048402208207707,K_g=1.3562155009279544,S_h=0.11411325111990892,B_h=0.09795692006907836,E_h=0.19688146069111032,L_h=0.10186405457456506,A_h=0.14739353377452358,K_h=0.42253497191511985,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.04, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18600000000000003, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 1516,
+ label = "O + [CH2]OC <=> COC + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18697068048207086,B_g=-2.4952588313877118,E_g=0.11129102450712773,L_g=0.26962160271352026,A_g=0.38569208631553975,K_g=-0.12444186747681465,S_h=0.4430455954542413,B_h=-5.5227236278173475,E_h=0.4722794648874139,L_h=0.34516197997250797,A_h=0.8515134170578621,K_h=-1.8196251107466275,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.221, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.557)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.221, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.738, MAE_h(kcal/mol): 0.557)"""),
+)
+
+entry(
+ index = 1517,
+ label = "O=CO + [CH2]OC <=> COC + [O]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4299973789068373,B_g=-3.574507609950181,E_g=-0.034174598620223255,L_g=0.47831243242590454,A_g=0.7171461084545391,K_g=-1.155375592520216,S_h=0.034460486510868624,B_h=-6.436238064851582,E_h=0.0520975702260675,L_h=0.6794602201004919,A_h=1.6420960611145883,K_h=-3.1374216774470853,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.331, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.922, MAE_h(kcal/mol): 0.708)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.434, MAE_g(kcal/mol): 0.331, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.922, MAE_h(kcal/mol): 0.708)"""),
+)
+
+entry(
+ index = 1518,
+ label = "O=COO + [CH2]OC <=> COC + [O]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.036498354039058684,B_g=-0.02243853418629416,E_g=0.49138264034951207,L_g=-0.1319995704320807,A_g=-0.31572285769476954,K_g=0.9975508159665039,S_h=0.2732135274934236,B_h=-0.691035014442262,E_h=0.5671649227467381,L_h=-0.0861402205890698,A_h=0.12335695958410915,K_h=-0.04282453992692927,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.408, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45899999999999996, MAE_h(kcal/mol): 0.35)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.408, MAE_g(kcal/mol): 0.303, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.45899999999999996, MAE_h(kcal/mol): 0.35)"""),
+)
+
+entry(
+ index = 1519,
+ label = "OO + [CH2]OC <=> COC + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.49682184073050856,B_g=-2.3671370736261803,E_g=0.04808047883956334,L_g=0.29587197544175264,A_g=0.34372521006054657,K_g=-0.26792093628711705,S_h=0.1499591943315974,B_h=-5.257353691169836,E_h=-0.035090905962035325,L_h=0.4452740549095283,A_h=1.5029712847925767,K_h=-2.1231940678596017,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.603)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.28300000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.603)"""),
+)
+
+entry(
+ index = 1520,
+ label = "[O]O + [CH2]OC <=> COC + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6839977740571453,B_g=-4.846906645707901,E_g=0.23433277436565347,L_g=0.5879541037177706,A_g=0.6872011845241204,K_g=-1.7726295397997696,S_h=-0.2663375572004658,B_h=-7.9787791658929725,E_h=0.3426622935440446,L_h=0.7761929535609094,A_h=1.8949235828673767,K_h=-4.034244659942871,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.462, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.158, MAE_h(kcal/mol): 0.909)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.462, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.158, MAE_h(kcal/mol): 0.909)"""),
+)
+
+entry(
+ index = 1521,
+ label = "[OH] + [CH2]OC <=> COC + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08611089875413182,B_g=-2.84136644053697,E_g=0.29186221451398303,L_g=0.2645635861867176,A_g=0.8222282344135482,K_g=-0.07411826826449534,S_h=0.5446237621381611,B_h=-5.794258480260573,E_h=0.31284198741211233,L_h=0.4533888727286161,A_h=2.0435559641680303,K_h=-1.9711090404950002,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.28, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8029999999999999, MAE_h(kcal/mol): 0.63)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.358, MAE_g(kcal/mol): 0.28, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8029999999999999, MAE_h(kcal/mol): 0.63)"""),
+)
+
+entry(
+ index = 1522,
+ label = "COO + CO[C]=O <=> COC=O + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3045585690421312,B_g=-2.89459290140815,E_g=-0.05954531630031606,L_g=0.3954415964324203,A_g=0.47509436104146063,K_g=-0.8195526169754568,S_h=0.23804931694404333,B_h=-5.619214456139527,E_h=0.03995833056174109,L_h=0.6009143547603606,A_h=1.4326355332350817,K_h=-2.7295256316247554,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.556)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.311, MAE_g(kcal/mol): 0.237, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.556)"""),
+)
+
+entry(
+ index = 1523,
+ label = "CO + CO[C]=O <=> COC=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0939471591413087,B_g=-2.272002380169883,E_g=-0.12084261223817681,L_g=0.3212720149567834,A_g=-0.0219107411574104,K_g=-0.39516303900050936,S_h=0.5178749182159829,B_h=-4.690364699432726,E_h=0.05171638637187367,L_h=0.4846972619836512,A_h=0.22230349158234455,K_h=-2.106304690935321,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.47100000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.18100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.623, MAE_h(kcal/mol): 0.47100000000000003)"""),
+)
+
+entry(
+ index = 1524,
+ label = "CO + [CH2]OC=O <=> COC=O + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.020664563172545974,B_g=-2.628915085493789,E_g=-0.9855361941006637,L_g=0.31344308502834106,A_g=-0.8475036561300924,K_g=0.3372230931630481,S_h=0.5594606106167822,B_h=-4.937335184656651,E_h=-0.7897176499260556,L_h=0.48500514125050004,A_h=-0.6321934221804577,K_h=-1.535313268729176,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6829999999999999, MAE_g(kcal/mol): 0.525, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.631)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6829999999999999, MAE_g(kcal/mol): 0.525, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8109999999999999, MAE_h(kcal/mol): 0.631)"""),
+)
+
+entry(
+ index = 1525,
+ label = "C + CO[C]=O <=> COC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06527773503069242,B_g=-0.25751168488413184,E_g=-0.1119727571694359,L_g=0.05380556711120521,A_g=0.3985936936882538,K_g=0.7097203537564939,S_h=0.28222266127811996,B_h=-0.4610858543998375,E_h=0.040984594784570616,L_h=0.11987499168522327,A_h=0.2749215243785613,K_h=-0.18606903405772776,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.21100000000000002, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 1526,
+ label = "C + [CH2]OC=O <=> COC=O + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02853014539466085,B_g=-0.10651889587097041,E_g=-0.10443704559037338,L_g=0.05611466161257165,A_g=0.32393297147740574,K_g=0.5545931860170764,S_h=0.16209843399592383,B_h=-0.20990035540357627,E_h=0.02564194465326919,L_h=0.14741552515072706,A_h=0.315744849070973,K_h=-0.5820677453539698,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.163)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.044000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.163)"""),
+)
+
+entry(
+ index = 1527,
+ label = "C=O + CO[C]=O <=> COC=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3740219960102212,B_g=-0.15731164444229753,E_g=-0.36771780149855404,L_g=0.2326174470217813,A_g=0.16212775583086178,K_g=-0.10579318045625526,S_h=-0.2980417912271637,B_h=-0.03395468485818835,E_h=-0.15174782626281458,L_h=0.2141740128457878,A_h=0.3061492785875169,K_h=-0.9304477967109218,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.122)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.122)"""),
+)
+
+entry(
+ index = 1528,
+ label = "C=O + [CH2]OC=O <=> COC=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3935356771614512,B_g=-0.17005198172285266,E_g=-0.3904129017405556,L_g=0.24964610266201695,A_g=0.23510980299151016,K_g=-0.2400358712610919,S_h=-0.3816896558465046,B_h=-0.005637122766827903,E_h=-0.23568890923153538,L_h=0.2707651542761017,A_h=0.47991780288875935,K_h=-1.337566813907395,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 1529,
+ label = "[H][H] + CO[C]=O <=> COC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10467162026987727,B_g=-0.0876796169233141,E_g=-0.08783355655673854,L_g=0.11706009553117656,A_g=0.22031693726529597,K_g=1.2656037005108418,S_h=0.04513363442829571,B_h=-0.13028424308820846,E_h=0.11117373716737576,L_h=0.1586971011431174,A_h=0.2165857337694372,K_h=0.32578024707849884,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.121)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.121)"""),
+)
+
+entry(
+ index = 1530,
+ label = "[H][H] + [CH2]OC=O <=> COC=O + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03468040027290352,B_g=0.07196311339655334,E_g=-0.07295272532571039,L_g=0.06750619448597939,A_g=0.12462512894517706,K_g=1.2894203609392214,S_h=0.13788592879588146,B_h=0.15288404736666156,E_h=0.14372097394854075,L_h=0.11133500725953469,A_h=0.07441881707260971,K_h=0.22927475783885085,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.13699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.028999999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.13699999999999998)"""),
+)
+
+entry(
+ index = 1531,
+ label = "O + CO[C]=O <=> COC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.47228679534614837,B_g=-2.0110160578456,E_g=-0.42155269044469723,L_g=0.4122136860169485,A_g=-0.5172078464711437,K_g=-0.5141510451788586,S_h=-0.04120450854660551,B_h=-4.284719104441886,E_h=-0.23797601235669832,L_h=0.4912946748446982,A_h=-0.4962500649492178,K_h=-2.035785677909464,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.631, MAE_h(kcal/mol): 0.509)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.271, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.631, MAE_h(kcal/mol): 0.509)"""),
+)
+
+entry(
+ index = 1532,
+ label = "O + [CH2]OC=O <=> COC=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14778937854618637,B_g=-3.293589770326801,E_g=0.18214723863477206,L_g=0.34563112933151574,A_g=-0.6651804864856926,K_g=-0.428531287159938,S_h=0.8298225896624867,B_h=-7.745142785107096,E_h=0.22110862680862162,L_h=0.5690708420177073,A_h=-0.11098314524027886,K_h=-2.66202676759751,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.493, MAE_g(kcal/mol): 0.36700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.08, MAE_h(kcal/mol): 0.7879999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.493, MAE_g(kcal/mol): 0.36700000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.08, MAE_h(kcal/mol): 0.7879999999999999)"""),
+)
+
+entry(
+ index = 1533,
+ label = "OO + CO[C]=O <=> COC=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.42117150659050345,B_g=-2.083924800418903,E_g=-0.20072262106798652,L_g=0.35645821688236723,A_g=0.22953132389455824,K_g=-0.4898872267676747,S_h=0.20300239373441498,B_h=-4.747857487287383,E_h=-0.2112271684345202,L_h=0.5218553573088145,A_h=1.2062563065963574,K_h=-2.3131482450466123,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.46299999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21899999999999997, MAE_g(kcal/mol): 0.163, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.46299999999999997)"""),
+)
+
+entry(
+ index = 1534,
+ label = "[O]O + CO[C]=O <=> COC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6079882474391498,B_g=-4.818039299211454,E_g=0.29388542112470406,L_g=0.5482450087530024,A_g=0.6721370918247298,K_g=-1.6307778328285252,S_h=-0.11519815901261443,B_h=-8.025320248398291,E_h=0.35057918897730095,L_h=0.7076531643933659,A_h=1.9480254259400704,K_h=-3.6976666471484587,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.579, MAE_g(kcal/mol): 0.45399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.172, MAE_h(kcal/mol): 0.935)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.579, MAE_g(kcal/mol): 0.45399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.172, MAE_h(kcal/mol): 0.935)"""),
+)
+
+entry(
+ index = 1535,
+ label = "[O]O + [CH2]OC=O <=> COC=O + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.580403731221239,B_g=-4.783564151783116,E_g=0.1818466898266577,L_g=0.5694520258719011,A_g=0.7211192170886361,K_g=-1.7991364785837096,S_h=-0.12749866876909974,B_h=-7.877069050951832,E_h=0.2522337545952943,L_h=0.7333610831752455,A_h=1.9204848924745666,K_h=-3.9760481480497023,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.457, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.166, MAE_h(kcal/mol): 0.9229999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.586, MAE_g(kcal/mol): 0.457, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.166, MAE_h(kcal/mol): 0.9229999999999999)"""),
+)
+
+entry(
+ index = 1536,
+ label = "[OH] + CO[C]=O <=> COC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.18239647423174493,B_g=-2.8760761626448117,E_g=0.2128765216497819,L_g=0.30460255179453816,A_g=0.521979975107301,K_g=-0.07547440313037722,S_h=0.4617749175208802,B_h=-5.761557303845983,E_h=0.26493010912344245,L_h=0.46253728522926785,A_h=1.5059547814975172,K_h=-1.891822798822685,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34299999999999997, MAE_g(kcal/mol): 0.27, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7979999999999999, MAE_h(kcal/mol): 0.622)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34299999999999997, MAE_g(kcal/mol): 0.27, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7979999999999999, MAE_h(kcal/mol): 0.622)"""),
+)
+
+entry(
+ index = 1537,
+ label = "[OH] + [CH2]OC=O <=> COC=O + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05072677444271662,B_g=-2.599146092572999,E_g=0.2133310100913207,L_g=0.24719772944469506,A_g=0.5292371292544527,K_g=0.29799780847475665,S_h=0.6361005566859445,B_h=-5.250426407665737,E_h=0.33184253645192757,L_h=0.39966394066349037,A_h=1.3267250654390745,K_h=-1.5766643864504715,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.5710000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.345, MAE_g(kcal/mol): 0.256, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.76, MAE_h(kcal/mol): 0.5710000000000001)"""),
+)
+
+entry(
+ index = 1538,
+ label = "COCOO + [CH]=O <=> COCO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6704877386094681,B_g=-1.7149314991005467,E_g=-0.05018432049636388,L_g=0.3837715061271017,A_g=0.7641563403188659,K_g=-0.29191352772512447,S_h=-0.4856575520778702,B_h=-4.019525098804002,E_h=-0.03925460652322941,L_h=0.6687870721830648,A_h=1.723200256553059,K_h=-2.1090829347956954,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.262, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.619, MAE_h(kcal/mol): 0.408)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.262, MAE_g(kcal/mol): 0.179, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.619, MAE_h(kcal/mol): 0.408)"""),
+)
+
+entry(
+ index = 1539,
+ label = "COCOO + C[C]=O <=> COCO[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.0242630075950094,B_g=-1.817403981750075,E_g=-0.22321246846542214,L_g=0.4759740160896002,A_g=0.8718407791286213,K_g=-1.1425106374411744,S_h=-0.8265312136906976,B_h=-4.223715026853405,E_h=-0.2585452795656959,L_h=0.734665904829986,A_h=2.0135597270264705,K_h=-3.04305668215791,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.616, MAE_h(kcal/mol): 0.41600000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.244, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.616, MAE_h(kcal/mol): 0.41600000000000004)"""),
+)
+
+entry(
+ index = 1540,
+ label = "COO + [CH]=O <=> CO[O] + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03546475935749466,B_g=-2.805014695672601,E_g=-0.0015540572517132839,L_g=0.31595010191553896,A_g=0.7202468924992311,K_g=-0.24359847420605724,S_h=0.5985392861303838,B_h=-5.6056017942695675,E_h=0.05076342673638911,L_h=0.5096428130571431,A_h=1.5961120934730912,K_h=-2.069131934692689,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.5760000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.335, MAE_g(kcal/mol): 0.24600000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7559999999999999, MAE_h(kcal/mol): 0.5760000000000001)"""),
+)
+
+entry(
+ index = 1541,
+ label = "COO + C[C]=O <=> CO[O] + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12268255738053545,B_g=-2.8311477810610817,E_g=-0.020569267208997523,L_g=0.3334552373735168,A_g=0.7535491665300493,K_g=-0.5547984388616423,S_h=0.5238858943782702,B_h=-5.677323002527881,E_h=0.02178612335892396,L_h=0.49369906530961294,A_h=1.7586503549930845,K_h=-2.3052460105308255,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.593)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.32899999999999996, MAE_g(kcal/mol): 0.244, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.593)"""),
+)
+
+entry(
+ index = 1542,
+ label = "COO + [CH2]CCC <=> CO[O] + CCCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3163239553109982,B_g=-1.9683014747996879,E_g=2.0819968897717307,L_g=-0.3495455942957369,A_g=-1.9761084133519269,K_g=0.8383405827119716,S_h=0.3215432419299598,B_h=-4.840345885140526,E_h=2.118033424910516,L_h=-0.15930552921808058,A_h=-1.0822615971023466,K_h=-1.1440500337754187,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 1.219, MAE_g(kcal/mol): 0.794, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.472, MAE_h(kcal/mol): 0.9440000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 1.219, MAE_g(kcal/mol): 0.794, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.472, MAE_h(kcal/mol): 0.9440000000000001)"""),
+)
+
+entry(
+ index = 1543,
+ label = "COO + C[CH]C <=> CO[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05645919317309299,B_g=-2.8643620895870865,E_g=0.20803108842627963,L_g=0.23141525178932387,A_g=0.5664392073320229,K_g=-0.5214081993260102,S_h=0.5898160402363327,B_h=-5.790351345755086,E_h=0.22470788204725947,L_h=0.4186278374096331,A_h=1.510528987747843,K_h=-2.4811403678650716,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.618)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.359, MAE_g(kcal/mol): 0.284, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.782, MAE_h(kcal/mol): 0.618)"""),
+)
+
+entry(
+ index = 1544,
+ label = "COO + [CH2]CC <=> CO[O] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1145750700201822,B_g=-2.7728193209106924,E_g=0.23578420519508383,L_g=0.24143598887938073,A_g=0.4072289740774908,K_g=-0.48695504327387606,S_h=0.5304173331107066,B_h=-5.651123943010791,E_h=0.2678769535347101,L_h=0.40157719039319395,A_h=1.383616755677503,K_h=-2.4004540085744672,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.629)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.34700000000000003, MAE_g(kcal/mol): 0.27899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7829999999999999, MAE_h(kcal/mol): 0.629)"""),
+)
+
+entry(
+ index = 1545,
+ label = "COO + [O][O] <=> CO[O] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.035266836971663246,B_g=-2.4273054789189286,E_g=-0.13965989980962965,L_g=0.3507184676932564,A_g=0.19317224857145496,K_g=-0.2699807951915106,S_h=0.4143395190499526,B_h=-4.726232634020618,E_h=0.041343787262560945,L_h=0.6189766050821602,A_h=0.7743896607122231,K_h=-2.372979449237574,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.609)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.299, MAE_g(kcal/mol): 0.225, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.609)"""),
+)
+
+entry(
+ index = 1546,
+ label = "CC + C[CH]C <=> C[CH2] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.025253430340340863,B_g=-0.10651889587097041,E_g=-0.23544700409329702,L_g=0.08636746480983921,A_g=0.352587734670553,K_g=0.1273740509706133,S_h=0.07301869945432085,B_h=0.02367005125368959,E_h=-0.0136713055398362,L_h=0.14318585046092253,A_h=0.3131645275964302,K_h=-1.0185745716170402,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.13699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.069, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23, MAE_h(kcal/mol): 0.13699999999999998)"""),
+)
+
+entry(
+ index = 1547,
+ label = "CC + [CH2]CC <=> C[CH2] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.02207201124956933,B_g=-0.11966240838192285,E_g=-0.23108538114627153,L_g=0.08847863692537423,A_g=0.38460717842283426,K_g=0.24011650630717138,S_h=0.10239917806218332,B_h=-0.025473344102375763,E_h=-0.011853351773681037,L_h=0.12334962912537466,A_h=0.3828112160328826,K_h=-0.7971507350828352,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.161, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 1548,
+ label = "CCC + [CH2]CC <=> C[CH]C + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03468040027290352,B_g=-0.13293786915009626,E_g=-0.2410767964013904,L_g=0.08180791947698231,A_g=0.42389110678100167,K_g=0.08021720993159653,S_h=0.11746327076157388,B_h=-0.049290004530755285,E_h=-0.021771462441454968,L_h=0.10996421147618383,A_h=0.4244335607273544,K_h=-0.9338051468113212,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09300000000000001, MAE_g(kcal/mol): 0.064, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 1549,
+ label = "CC(C)C=O + [CH2]C(=C)C <=> C[C](C)C=O + C=C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21129314256313064,B_g=-0.17006664264032165,E_g=0.06271940493235309,L_g=-0.08282685324107734,A_g=1.0934845294248612,K_g=0.21341164513740016,S_h=0.3699389304951065,B_h=-0.32260615844646184,E_h=0.12075464673336285,L_h=-0.016075696004751092,A_h=1.4827905318965078,K_h=-0.8468732366789257,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.204, MAE_g(kcal/mol): 0.141, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17600000000000002, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 1550,
+ label = "CC(C)C=O + [CH]=O <=> C[C](C)C=O + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18123093129296,B_g=0.0316969035679634,E_g=-0.13183830033992175,L_g=0.012938259666386537,A_g=1.1110996217638565,K_g=0.7817054585292507,S_h=0.38055343474265757,B_h=-0.09207056170527757,E_h=-0.027943708695901123,L_h=0.05030160783611582,A_h=1.4635700690946576,K_h=-0.015914425912592168,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.154, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.154, MAE_g(kcal/mol): 0.111, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.146, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 1551,
+ label = "CC(C)C=O + [H] <=> C[C](C)C=O + [H][H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10076448576439057,B_g=-0.007301136899558636,E_g=-0.21473845816834408,L_g=0.12405335316388633,A_g=0.09009866830569797,K_g=0.8703966787579255,S_h=0.0037385339545932777,B_h=0.11243457606970918,E_h=-0.00210384165680053,L_h=0.133480323096449,A_h=-0.004794120012360791,K_h=-0.3523091772386422,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.129)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.129)"""),
+)
+
+entry(
+ index = 1552,
+ label = "CC(C)C=O + [O][O] <=> C[C](C)C=O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3092573930909435,B_g=0.17109290686315115,E_g=-0.24337856044402234,L_g=0.027005409977885555,A_g=0.35057918897730095,K_g=0.7778789590698436,S_h=0.3686047870054281,B_h=0.3925314043148252,E_h=0.00014660917468993246,L_h=0.14748882973807204,A_h=0.029109251634686088,K_h=-0.3153636652167792,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39799999999999996, MAE_h(kcal/mol): 0.23600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.096, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39799999999999996, MAE_h(kcal/mol): 0.23600000000000002)"""),
+)
+
+entry(
+ index = 1553,
+ label = "CO + [CH2]O <=> C[O] + CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2877058444115234,B_g=-1.8626695644355917,E_g=0.12557808858066163,L_g=0.26701928986277396,A_g=0.27941509558280775,K_g=-0.2916496312106826,S_h=0.33405633498974563,B_h=-4.322104443987819,E_h=0.33036178378755926,L_h=0.38380815842077415,A_h=1.0074322743406054,K_h=-2.0311748193654653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5820000000000001, MAE_h(kcal/mol): 0.43700000000000006)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.5820000000000001, MAE_h(kcal/mol): 0.43700000000000006)"""),
+)
+
+entry(
+ index = 1554,
+ label = "COO + O=[C]CCO <=> O=CCCO + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.670736974206441,B_g=-3.0175613466793307,E_g=-0.06631132971225644,L_g=0.47046884157999325,A_g=0.7195065161670469,K_g=-1.1956344718900715,S_h=-0.19904394601778677,B_h=-6.1283148152503175,E_h=-0.05645919317309299,L_h=0.7077118080632419,A_h=2.206819941102739,K_h=-3.2139003534240884,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.616)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.312, MAE_g(kcal/mol): 0.23800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8079999999999999, MAE_h(kcal/mol): 0.616)"""),
+)
+
+entry(
+ index = 1555,
+ label = "CO + O=[C]CCO <=> O=CCCO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.510896321500742,B_g=-2.364065611416426,E_g=-0.15940082518162904,L_g=0.43301752790545,A_g=-0.3230826382642041,K_g=-0.8683148284773283,S_h=-0.0536076447253738,B_h=-5.0227423593722715,E_h=0.11860682232415534,L_h=0.5938697839165094,A_h=0.400426308371878,K_h=-2.652702424087231,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.25, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.49700000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.25, MAE_g(kcal/mol): 0.19399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6709999999999999, MAE_h(kcal/mol): 0.49700000000000005)"""),
+)
+
+entry(
+ index = 1556,
+ label = "C + O=[C]CCO <=> O=CCCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.002001215234517578,B_g=-0.15473132296775471,E_g=-0.07858251763380379,L_g=0.05947201171297109,A_g=0.5723768789069652,K_g=0.6528506548942691,S_h=0.1102794212017672,B_h=-0.38596331328871614,E_h=0.06795335246878369,L_h=0.14276068385432172,A_h=0.8705726097675534,K_h=-0.3343935360915324,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.156)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20800000000000002, MAE_h(kcal/mol): 0.156)"""),
+)
+
+entry(
+ index = 1557,
+ label = "[H][H] + O=[C]CCO <=> O=CCCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0839704048036588,B_g=0.11041869991772262,E_g=-0.07136201578032463,L_g=0.05763206657061245,A_g=0.1827263448747973,K_g=1.411970970062536,S_h=0.23675915620677193,B_h=0.146411252304101,E_h=0.18444900267740397,L_h=0.07043837797977803,A_h=0.13494641484334832,K_h=0.5709840917474108,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.175, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 1558,
+ label = "O + O=[C]CCO <=> O=CCCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4511237609796566,B_g=-2.2924543600391285,E_g=-0.13926405503796682,L_g=0.3810812277715414,A_g=-0.8696416415082723,K_g=-0.5124870310461278,S_h=-0.0008210113782636216,B_h=-5.10459426160166,E_h=0.21972317010780176,L_h=0.4227255638422167,A_h=-0.6884180406740468,K_h=-2.03387242817976,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.588)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.313, MAE_g(kcal/mol): 0.251, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7440000000000001, MAE_h(kcal/mol): 0.588)"""),
+)
+
+entry(
+ index = 1559,
+ label = "OO + O=[C]CCO <=> O=CCCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5235706846526867,B_g=-4.995568348843493,E_g=0.1302402603358015,L_g=0.6232209406894338,A_g=0.1076771083510209,K_g=-1.5834817130735535,S_h=0.2615654285643084,B_h=-10.172968726596174,E_h=0.3210007879836071,L_h=0.923747757427592,A_h=1.3319370215993018,K_h=-4.196819573756537,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.573, MAE_g(kcal/mol): 0.41700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.411, MAE_h(kcal/mol): 1.088)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.573, MAE_g(kcal/mol): 0.41700000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.411, MAE_h(kcal/mol): 1.088)"""),
+)
+
+entry(
+ index = 1560,
+ label = "[O]O + O=[C]CCO <=> O=CCCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9822961313400164,B_g=-4.979690575224573,E_g=0.2719526885910902,L_g=0.6377645708186752,A_g=0.8021647688572309,K_g=-1.9251763860646443,S_h=-0.573806318360192,B_h=-8.526620999415577,E_h=0.2533406538642033,L_h=0.8434719038261193,A_h=2.4301496969079133,K_h=-4.10590722453131,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.242, MAE_h(kcal/mol): 0.991)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.585, MAE_g(kcal/mol): 0.466, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.242, MAE_h(kcal/mol): 0.991)"""),
+)
+
+entry(
+ index = 1561,
+ label = "[OH] + O=[C]CCO <=> O=CCCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09775166722451245,B_g=-2.4580787446863455,E_g=0.18329812065608803,L_g=0.23131262536704092,A_g=0.8346973447209269,K_g=-0.12357687334614406,S_h=0.8738053420694664,B_h=-5.004027698223101,E_h=0.28682618936338383,L_h=0.31058420612188736,A_h=1.5873815171203054,K_h=-1.5773754409477174,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.747, MAE_h(kcal/mol): 0.561)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.342, MAE_g(kcal/mol): 0.249, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.747, MAE_h(kcal/mol): 0.561)"""),
+)
+
+entry(
+ index = 1562,
+ label = "COO + O=[C]CO <=> O=CCO + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5896034569330323,B_g=-4.3226908806865785,E_g=0.2119748752254388,L_g=0.5308791520109799,A_g=0.8403344674877548,K_g=-1.3386004085889591,S_h=0.08806813123624242,B_h=-9.255246606248337,E_h=0.1601851842662202,L_h=0.9226188667824794,A_h=2.6811079516834053,K_h=-3.9926516370833367,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.51, MAE_g(kcal/mol): 0.37200000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.265, MAE_h(kcal/mol): 0.9490000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.51, MAE_g(kcal/mol): 0.37200000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.265, MAE_h(kcal/mol): 0.9490000000000001)"""),
+)
+
+entry(
+ index = 1563,
+ label = "CO + O=[C]CO <=> O=CCO + C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.26940901941021983,B_g=-3.032082985432369,E_g=-0.11510286304906596,L_g=0.44502481931255544,A_g=0.46443587404150244,K_g=-0.8483393284258249,S_h=0.6620137283123899,B_h=-6.621222191016605,E_h=0.05897354051902532,L_h=0.6332196864032872,A_h=1.2318469380384849,K_h=-2.756406423804154,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.355, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9009999999999999, MAE_h(kcal/mol): 0.682)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.355, MAE_g(kcal/mol): 0.253, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9009999999999999, MAE_h(kcal/mol): 0.682)"""),
+)
+
+entry(
+ index = 1564,
+ label = "C + O=[C]CO <=> O=CCO + [CH3]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1896902806725691,B_g=-1.3694616398611899,E_g=0.20108914400471134,L_g=0.14628663450561458,A_g=0.4792507311439202,K_g=0.40716299994888033,S_h=0.22604935599567233,B_h=-3.3311803627173,E_h=0.21846966166420284,L_h=0.37209408536304855,A_h=1.0876714756484054,K_h=-1.1881574039808849,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.539, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.266, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.539, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 1565,
+ label = "[H][H] + O=[C]CO <=> O=CCO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12419996233857626,B_g=-1.0294676332965023,E_g=-0.0021991376203489865,L_g=0.1966542164703409,A_g=0.3354711135255034,K_g=0.9348020891992126,S_h=0.29332097580214783,B_h=-2.407000108224373,E_h=0.18395786194219274,L_h=0.3179366562325875,A_h=0.7182456772647136,K_h=-0.45709808484827136,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39799999999999996, MAE_h(kcal/mol): 0.303)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17600000000000002, MAE_g(kcal/mol): 0.132, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39799999999999996, MAE_h(kcal/mol): 0.303)"""),
+)
+
+entry(
+ index = 1566,
+ label = "O + O=[C]CO <=> O=CCO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.7614367401283676,B_g=-4.164140388718152,E_g=-0.03009886356384313,L_g=0.6222093373840732,A_g=-0.8054414839115508,K_g=-1.259761324899448,S_h=-0.2163878113836058,B_h=-9.019740958485166,E_h=0.3248052960668108,L_h=0.8468805671376602,A_h=-0.45792642668526945,K_h=-3.5105420270329635,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5579999999999999, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.307, MAE_h(kcal/mol): 0.982)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5579999999999999, MAE_g(kcal/mol): 0.408, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.307, MAE_h(kcal/mol): 0.982)"""),
+)
+
+entry(
+ index = 1567,
+ label = "OO + O=[C]CO <=> O=CCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.922069082377392,B_g=-2.892371772411598,E_g=0.1123979237760367,L_g=0.488193890800006,A_g=0.5595412456628617,K_g=-0.7071766845756237,S_h=-0.16802144465339708,B_h=-7.712265677682878,E_h=-0.029299843561782998,L_h=0.8407376427181522,A_h=2.4032689047285136,K_h=-3.2079480209316773,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.074, MAE_h(kcal/mol): 0.768)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.37799999999999995, MAE_g(kcal/mol): 0.268, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.074, MAE_h(kcal/mol): 0.768)"""),
+)
+
+entry(
+ index = 1568,
+ label = "[O]O + O=[C]CO <=> O=CCO + [O][O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-1.266549329687592,B_g=-6.386515563255493,E_g=0.3474784049326089,L_g=0.8246985990070734,A_g=1.0606000915419092,K_g=-2.5460515799590393,S_h=-0.6576081226129574,B_h=-11.778713042846391,E_h=0.23456734904515741,L_h=1.1894329038006874,A_h=3.1654093688953933,K_h=-5.420346441131368,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.77, MAE_g(kcal/mol): 0.588, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6909999999999998, MAE_h(kcal/mol): 1.3030000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.77, MAE_g(kcal/mol): 0.588, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.6909999999999998, MAE_h(kcal/mol): 1.3030000000000002)"""),
+)
+
+entry(
+ index = 1569,
+ label = "[OH] + O=[C]CO <=> O=CCO + [O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6272233711584689,B_g=-4.340965714311678,E_g=0.36334884809279405,L_g=0.5351601399119259,A_g=0.7892411701083133,K_g=-0.9517427793346345,S_h=0.07801807231124755,B_h=-9.219723203220967,E_h=0.3825839718121132,L_h=0.8747436407874819,A_h=2.547891525101398,K_h=-3.410048768241749,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.547, MAE_g(kcal/mol): 0.4, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.318, MAE_h(kcal/mol): 0.987)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.547, MAE_g(kcal/mol): 0.4, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.318, MAE_h(kcal/mol): 0.987)"""),
+)
+
+entry(
+ index = 1570,
+ label = "CC(=O)OO + [O]O <=> OO + CC(=O)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5157344242655099,B_g=-0.47157574084890225,E_g=-0.3779144695982389,L_g=0.26443163792949664,A_g=0.5557294071209234,K_g=-0.6608848376672775,S_h=-0.3273856175413537,B_h=-0.8520265491692769,E_h=-0.32497389661770426,L_h=0.2637792271021264,A_h=1.0839109503176085,K_h=-1.9069821874856236,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23800000000000002, MAE_h(kcal/mol): 0.188)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.168, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23800000000000002, MAE_h(kcal/mol): 0.188)"""),
+)
+
+entry(
+ index = 1571,
+ label = "CCCCOO + [O]O <=> OO + CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4338018869900411,B_g=-3.7087869530486897,E_g=-0.027313289244734414,L_g=0.48619267556548845,A_g=0.7448772338471398,K_g=-1.386702878804726,S_h=0.20494496529905656,B_h=-6.649319839345931,E_h=0.03591191734029895,L_h=0.6365037319163417,A_h=1.7789630561463745,K_h=-3.3781246204530166,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41700000000000004, MAE_g(kcal/mol): 0.327, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9, MAE_h(kcal/mol): 0.6990000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41700000000000004, MAE_g(kcal/mol): 0.327, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9, MAE_h(kcal/mol): 0.6990000000000001)"""),
+)
+
+entry(
+ index = 1572,
+ label = "[H][H] + [O]O <=> OO + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34444359501652727,B_g=-1.0464889584780033,E_g=-0.025949823920118045,L_g=0.22372560057683694,A_g=0.20064198602190705,K_g=0.6020872281578801,S_h=-0.22434868956926912,B_h=-1.259849290404262,E_h=0.14119196568513945,L_h=0.22407746259609276,A_h=0.4078374021524541,K_h=-0.476325878108856,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.166, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.19899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.166, MAE_g(kcal/mol): 0.135, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.255, MAE_h(kcal/mol): 0.19899999999999998)"""),
+)
+
+entry(
+ index = 1573,
+ label = "O + [O]O <=> OO + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.520726466663702,B_g=-2.0093007305017276,E_g=-0.3898704477942029,L_g=0.42321670457742794,A_g=-0.6088532415698203,K_g=-0.797282683340056,S_h=0.04649709975291207,B_h=-4.348010285155531,E_h=-0.27334547575064455,L_h=0.44132293765163455,A_h=-0.42676464660492436,K_h=-2.4790365262082714,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23800000000000002, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.595, MAE_h(kcal/mol): 0.47700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23800000000000002, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.595, MAE_h(kcal/mol): 0.47700000000000004)"""),
+)
+
+entry(
+ index = 1574,
+ label = "[CH3] + C[CH2] <=> [CH2] + CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10469361164608076,B_g=-0.09780298043565394,E_g=-0.15984798316443335,L_g=0.11095382340534087,A_g=0.20364747410305065,K_g=0.5282035345728887,S_h=-0.005160642949085622,B_h=-0.057815328038974864,E_h=0.023376832904309724,L_h=0.12571003683788257,A_h=0.3435786008858567,K_h=-0.5028034950578578,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.08800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.038, MAE_g(kcal/mol): 0.03, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.08800000000000001)"""),
+)
+
+entry(
+ index = 1575,
+ label = "[CH3] + [H] <=> [CH2] + [H][H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10830752780218758,B_g=0.09128620262068643,E_g=-0.092239162256171,L_g=0.10267040503535968,A_g=0.001707996885137713,K_g=1.3002327875726039,S_h=0.0001026264222829527,B_h=0.22366695690696092,E_h=0.08649208260832565,L_h=0.13533492915627665,A_h=-0.013040886088669492,K_h=0.12211078159924474,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.14)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22699999999999998, MAE_h(kcal/mol): 0.14)"""),
+)
+
+entry(
+ index = 1576,
+ label = "C=C(C)CO + [CH2]C(=C)C <=> [CH2]C(=C)CO + C=C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.48586280492243605,B_g=-1.722716446276582,E_g=0.6600564958302793,L_g=0.09209988354021556,A_g=0.19851615298890302,K_g=-0.4494597468469259,S_h=-0.22459059470750753,B_h=-3.9397403859377405,E_h=0.653231838748463,L_h=0.3625278367145304,A_h=1.367885591233273,K_h=-2.4955593801958265,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.35100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.564)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.48, MAE_g(kcal/mol): 0.35100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7509999999999999, MAE_h(kcal/mol): 0.564)"""),
+)
+
+entry(
+ index = 1577,
+ label = "C=C(C)CO + [CH]=O <=> [CH2]C(=C)CO + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.34140145464171123,B_g=-1.9354170369167365,E_g=-0.14549494496228896,L_g=0.32748824396363657,A_g=0.846682644751829,K_g=-0.29803446076842915,S_h=0.0440633874530592,B_h=-4.2563575595981185,E_h=-0.17332136631843814,L_h=0.5587422256608016,A_h=1.9235197023906478,K_h=-2.06256384366658,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.226, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.41)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.226, MAE_g(kcal/mol): 0.162, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.41)"""),
+)
+
+entry(
+ index = 1578,
+ label = "C=C(C)CO + [H] <=> [CH2]C(=C)CO + [H][H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.046599726175195026,B_g=0.42690392532087973,E_g=-0.2014116841890292,L_g=0.09988483071625097,A_g=-0.13444061319066805,K_g=1.1950187133563739,S_h=-0.04067671551772176,B_h=0.8036455215215993,E_h=0.04580803663186939,L_h=0.14994453341412842,A_h=-0.3194027479794868,K_h=0.028317562091360448,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07400000000000001, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.22699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07400000000000001, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.22699999999999998)"""),
+)
+
+entry(
+ index = 1579,
+ label = "C=CC + [C]=O <=> [CH2]C=C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.023413485197982208,B_g=-0.02166883601917202,E_g=-0.1913909470989723,L_g=0.10039063236893123,A_g=0.18186868120286118,K_g=0.4611591589871825,S_h=0.044715798280429396,B_h=0.1543134868198884,E_h=-0.014719561138869217,L_h=0.16904037841749212,A_h=0.06820991852449107,K_h=-0.629701066210729,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.163)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.163)"""),
+)
+
+entry(
+ index = 1580,
+ label = "COC + [CH]=O <=> [CH2]OC + C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16220106041820676,B_g=-0.2096877721002759,E_g=-0.15731164444229753,L_g=0.16002391417406125,A_g=-0.11957444287710892,K_g=0.38641047127152045,S_h=-0.15638800664175093,B_h=-0.11994096581383375,E_h=0.23059424041106022,L_h=0.20278247997238008,A_h=-0.6009876593477056,K_h=-0.648965511764986,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.359, MAE_h(kcal/mol): 0.24600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.086, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.359, MAE_h(kcal/mol): 0.24600000000000002)"""),
+)
+
+entry(
+ index = 1581,
+ label = "COC + C[C]=O <=> [CH2]OC + CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13312846107719314,B_g=-0.14664582698360493,E_g=-0.2365758947384095,L_g=0.1376293627401741,A_g=-0.0076676598362834655,K_g=0.023963269603069454,S_h=-0.03854355202598324,B_h=-0.06290266640071551,E_h=0.10429043641568345,L_h=0.12493300821202592,A_h=-0.5547397951917664,K_h=-0.8926299600996537,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.245, MAE_h(kcal/mol): 0.175)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.245, MAE_h(kcal/mol): 0.175)"""),
+)
+
+entry(
+ index = 1582,
+ label = "C + C[CH]C <=> [CH3] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.028141631081732534,B_g=-0.06300529282299847,E_g=-0.18059318138305877,L_g=0.09283292941366522,A_g=0.20118443996825983,K_g=0.2834615088042499,S_h=-0.02501885566083697,B_h=0.10160015806012318,E_h=0.03827965551154136,L_h=0.17916374192983192,A_h=0.16718577235766446,K_h=-0.9700176129597347,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.20199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33799999999999997, MAE_h(kcal/mol): 0.20199999999999999)"""),
+)
+
+entry(
+ index = 1583,
+ label = "C + [CH2]CC <=> [CH3] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0551397106008836,B_g=-0.08561975801892055,E_g=-0.1869926718582743,L_g=0.10487687311444317,A_g=0.2411940837411424,K_g=0.3987036505692713,S_h=-0.01955033344490249,B_h=0.04461317185814644,E_h=0.023420815656716706,L_h=0.1733726795295796,A_h=0.2590657421358451,K_h=-0.758313964707472,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.163)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.27, MAE_h(kcal/mol): 0.163)"""),
+)
+
+entry(
+ index = 1584,
+ label = "C + C[O] <=> [CH3] + CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.13903681081719743,B_g=-0.2634346955416051,E_g=-0.08144872699899196,L_g=0.07946217268194337,A_g=0.6156559072754333,K_g=0.6143437551619585,S_h=0.09139615950170388,B_h=-0.592520979509362,E_h=-0.1252408874788748,L_h=0.14012904916863742,A_h=1.159407344824189,K_h=-0.45647499585583917,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10300000000000001, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14300000000000002, MAE_h(kcal/mol): 0.11199999999999999)"""),
+)
+
+entry(
+ index = 1585,
+ label = "O + [CH2] <=> [CH3] + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4096920082122817,B_g=-1.7376192688838135,E_g=-0.3372450845392516,L_g=0.3393562566547866,A_g=-0.9579736692589566,K_g=0.09923975034761527,S_h=0.15874108389552435,B_h=-4.065098560756367,E_h=-0.2224427702983,L_h=0.3667501809456005,A_h=-1.1457946829542291,K_h=-1.4253490572529923,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.504)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.504)"""),
+)
+
+entry(
+ index = 1586,
+ label = "C + [O][O] <=> [CH3] + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5112994967311394,B_g=0.3001676242601677,E_g=-0.04532422635539261,L_g=-0.0573021959275601,A_g=0.005659114143031392,K_g=1.3620065633282068,S_h=0.5331955769710808,B_h=0.5927482237301314,E_h=0.2654945544459987,L_h=0.12310039352840177,A_h=-0.4803063172016877,K_h=0.17683998651099653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.396)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.636, MAE_h(kcal/mol): 0.396)"""),
+)
+
+entry(
+ index = 1587,
+ label = "C=C + C[CH]C <=> [CH]=C + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.02347945932659268,B_g=-0.09271564207391328,E_g=-0.1998869487722539,L_g=0.09028926023279489,A_g=0.2904620968956942,K_g=0.2057586462185857,S_h=0.025055507954509455,B_h=0.014814857102417672,E_h=0.0212656607887747,L_h=0.13457989190662348,A_h=0.3073294824437709,K_h=-0.8901595955061282,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.040999999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 1588,
+ label = "C=C + [CH2]CC <=> [CH]=C + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0846301460897635,B_g=-0.09447495217019246,E_g=-0.19782708986786035,L_g=0.1065702090821119,A_g=0.2918548840552485,K_g=0.2091746399888611,S_h=-0.031550294393273455,B_h=0.008840533233802926,E_h=0.002946844411267642,L_h=0.14287064073533914,A_h=0.3712657435260504,K_h=-0.8651334093865569,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.105)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.057, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.172, MAE_h(kcal/mol): 0.105)"""),
+)
+
+entry(
+ index = 1589,
+ label = "[H][H] + [C]=C <=> [CH]=C + [H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.01590709545385767,B_g=-0.05501509280239715,E_g=-0.11736064433929091,L_g=0.09671807254294844,A_g=0.10920917422653068,K_g=1.34135666107313,S_h=0.13979184806685058,B_h=-0.004237005148539048,E_h=0.07692583395980755,L_h=0.17308679163893423,A_h=0.038286985970275855,K_h=0.24315131622325295,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.19699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.313, MAE_h(kcal/mol): 0.19699999999999998)"""),
+)
+
+entry(
+ index = 1590,
+ label = "C=C=C + [C]=O <=> [CH]=C=C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08007793121564111,B_g=0.15572826535564624,E_g=-0.21446723119516767,L_g=0.09194594390679112,A_g=0.18128224450410146,K_g=0.5753163928594984,S_h=0.03981905184578566,B_h=0.33992070197734287,E_h=-0.046980910029388846,L_h=0.061223991350515795,A_h=0.13117855905381706,K_h=-0.2900442607478278,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.068, MAE_h(kcal/mol): 0.055)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.068, MAE_h(kcal/mol): 0.055)"""),
+)
+
+entry(
+ index = 1591,
+ label = "C=C=C + [O][O] <=> [CH]=C=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3258902039595163,B_g=0.3681356376464203,E_g=-0.18555590194631302,L_g=-0.00012461779848644256,A_g=0.12172226728631641,K_g=1.0564510518981842,S_h=0.38113987144141737,B_h=0.7070593972358717,E_h=0.07208040073630528,L_h=0.08376515195909291,A_h=-0.21341897559613465,K_h=0.04872555920819905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.217)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.217)"""),
+)
+
+entry(
+ index = 1592,
+ label = "C=CC + [C]=O <=> [CH]=CC + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.04316174102871611,B_g=0.06656056530922934,E_g=-0.10198867237305151,L_g=0.056613132806517405,A_g=0.06760882090826234,K_g=0.5582584153843247,S_h=0.1276159561088517,B_h=0.24636938760769697,E_h=0.09692332538751434,L_h=0.08509929544877129,A_h=-0.03182152136644984,K_h=-0.43266566588619415,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.222, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.222, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 1593,
+ label = "C=CC=C + [O]O <=> [CH]=CC=C + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06459600236838424,B_g=-1.413788923828691,E_g=0.00047647981774228044,L_g=0.17000066851171114,A_g=0.5323085914642067,K_g=-0.15248820259499873,S_h=0.08391176113378283,B_h=-1.7449643885357795,E_h=0.1375780495290326,L_h=0.18440501992499703,A_h=0.6138526144267472,K_h=-1.130708598878635,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.276)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.268, MAE_g(kcal/mol): 0.22, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.35700000000000004, MAE_h(kcal/mol): 0.276)"""),
+)
+
+entry(
+ index = 1594,
+ label = "C=CC=C + [C]=O <=> [CH]=CC=C + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.017893649770906257,B_g=0.08644809985591866,E_g=-0.19238055902812937,L_g=0.08084029892402875,A_g=0.1517331653453456,K_g=0.42957221230023657,S_h=0.06214762915106236,B_h=0.27399055611928025,E_h=-0.009185064794324268,L_h=0.11731666158688395,A_h=0.008129478736556754,K_h=-0.5987738608098876,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.204, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.204, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 1595,
+ label = "C=CC=C + [O][O] <=> [CH]=CC=C + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3279867151575824,B_g=0.38852164338705547,E_g=-0.11864347461782783,L_g=-0.012359153426361305,A_g=0.01933041968286759,K_g=1.065203619627173,S_h=0.3752535130776167,B_h=0.7345999307013756,E_h=0.1545553919581268,L_h=0.10062520704843514,A_h=-0.36032136863544695,K_h=0.08280486186487383,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.282)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.455, MAE_h(kcal/mol): 0.282)"""),
+)
+
+entry(
+ index = 1596,
+ label = "C=O + [C]=O <=> [CH]=O + [CH]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5394997714827479,B_g=0.07689651212486956,E_g=-0.37679290941186094,L_g=0.25829604396872297,A_g=-0.11542540323338381,K_g=-0.11467769644246516,S_h=-0.5556121197811715,B_h=0.4532642549301297,E_h=-0.19284970838713716,L_h=0.20562669796136473,A_h=0.123708821603365,K_h=-1.121912048397239,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.106, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.2, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 1597,
+ label = "O + [C]=O <=> [CH]=O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.029006625212403134,B_g=1.0951192217226537,E_g=-0.7126305458740891,L_g=0.11907597168316313,A_g=-1.9870454577837957,K_g=1.1772863336776265,S_h=0.6267395608819921,B_h=-0.20690219778116717,E_h=-0.55650643574678,L_h=0.1282830278536909,A_h=-2.7914093642613755,K_h=-0.08106021268606364,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.441)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.363, MAE_g(kcal/mol): 0.27399999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.564, MAE_h(kcal/mol): 0.441)"""),
+)
+
+entry(
+ index = 1598,
+ label = "[H][H] + C[CH]C <=> [H] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06578353668337268,B_g=0.00885519415127192,E_g=-0.05110795829691045,L_g=0.058218503269372175,A_g=0.10077914668185955,K_g=1.2291493292241902,S_h=0.14276068385432172,B_h=0.10442971513163889,E_h=0.22919412279277138,L_h=0.07960145139789883,A_h=0.07990933066474767,K_h=0.14789933542720385,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.136)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.215, MAE_h(kcal/mol): 0.136)"""),
+)
+
+entry(
+ index = 1599,
+ label = "[H][H] + [CH2]CC <=> [H] + CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.055520894455077414,B_g=-0.01614167013336156,E_g=-0.05703829941311822,L_g=0.09318479143292106,A_g=0.10700270614744721,K_g=1.2214450170942341,S_h=0.03460709568555855,B_h=0.06746954219230691,E_h=0.1606030204140865,L_h=0.11700878232003509,A_h=0.17675935146491706,K_h=0.15327256167958986,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.12)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.188, MAE_h(kcal/mol): 0.12)"""),
+)
+
+entry(
+ index = 1600,
+ label = "CC(C)(C)OO + [H] <=> [H][H] + CC(C)(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5763133352473899,B_g=-2.6292156343019033,E_g=-0.08874986389855061,L_g=0.4805189005049881,A_g=0.047985182876014894,K_g=-0.17134214246012405,S_h=-0.1957599005047323,B_h=-5.023856589099915,E_h=0.073773736703974,L_h=0.6853025957118858,A_h=0.8682195325137798,K_h=-2.4766614575782944,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.281, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.685, MAE_h(kcal/mol): 0.504)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.281, MAE_g(kcal/mol): 0.207, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.685, MAE_h(kcal/mol): 0.504)"""),
+)
+
+entry(
+ index = 1601,
+ label = "CC(C)COO + [H] <=> [H][H] + CC(C)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3989822080011821,B_g=-2.9491095230166016,E_g=0.04280254855072577,L_g=0.420958923287203,A_g=0.23002979508850402,K_g=-0.02968102741597682,S_h=0.13797389430069543,B_h=-5.584841935133473,E_h=0.15879972756540034,L_h=0.5940457149261372,A_h=1.1388014253215193,K_h=-2.2555968135220796,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.525)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.218, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.525)"""),
+)
+
+entry(
+ index = 1602,
+ label = "CC(C)OO + [H] <=> [H][H] + CC(C)O[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6005844841173082,B_g=-2.673117751662804,E_g=-0.048476323611226155,L_g=0.47988115059508685,A_g=0.025737240616817644,K_g=-0.1640703273955034,S_h=-0.2046297555734732,B_h=-5.147074269968068,E_h=0.08936562243224831,L_h=0.6773490479849569,A_h=0.9732063625092405,K_h=-2.4447373097895615,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.516)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.6990000000000001, MAE_h(kcal/mol): 0.516)"""),
+)
+
+entry(
+ index = 1603,
+ label = "CCCCOO + [H] <=> [H][H] + CCCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.328778404700908,B_g=-2.8692295141867916,E_g=0.018238181331427596,L_g=0.40961870362493674,A_g=0.29725010168383803,K_g=0.024168522447635364,S_h=0.16488400831503253,B_h=-5.413954281114888,E_h=0.15204104461219442,L_h=0.62502423353812,A_h=1.1000892727446425,K_h=-2.3015734507048426,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7140000000000001, MAE_h(kcal/mol): 0.535)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.289, MAE_g(kcal/mol): 0.21100000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7140000000000001, MAE_h(kcal/mol): 0.535)"""),
+)
+
+entry(
+ index = 1604,
+ label = "CCCOO + [H] <=> [H][H] + CCCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3547502199972295,B_g=-2.804193684294338,E_g=0.024447079879546234,L_g=0.4097726432583612,A_g=0.2281018844413314,K_g=0.058636339417238476,S_h=0.13405942933647422,B_h=-5.3538151976570765,E_h=0.15176981763901806,L_h=0.6315043590594149,A_h=1.058943407867913,K_h=-2.2632864647345667,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.54)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.214, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.713, MAE_h(kcal/mol): 0.54)"""),
+)
+
+entry(
+ index = 1605,
+ label = "CCOO + [H] <=> [H][H] + CCO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.519766176569483,B_g=-2.619781333910607,E_g=-0.014558291046710291,L_g=0.4466008679404722,A_g=0.04808047883956334,K_g=-0.021976715286020874,S_h=-0.07006452458431871,B_h=-5.113588734468889,E_h=0.12074731627462837,L_h=0.6408360330284293,A_h=0.9755960920566863,K_h=-2.2441832892724682,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.526)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.287, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.698, MAE_h(kcal/mol): 0.526)"""),
+)
+
+entry(
+ index = 1606,
+ label = "COO + [H] <=> [H][H] + CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4487853446433522,B_g=-2.6275222983342346,E_g=0.02725464557485844,L_g=0.4152558263917646,A_g=0.05290392068686212,K_g=-0.025744571075552135,S_h=0.0262650336457014,B_h=-5.17144804526027,E_h=0.1360386531947883,L_h=0.6296350920821183,A_h=0.9875813920875883,K_h=-2.3582159053462974,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.5479999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.28600000000000003, MAE_g(kcal/mol): 0.222, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.5479999999999999)"""),
+)
+
+entry(
+ index = 1607,
+ label = "O + [H] <=> [OH] + [H][H]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3621613137778056,B_g=-1.3725331020709441,E_g=-0.38023822501707427,L_g=0.3170350098082444,A_g=-1.1919839034402924,K_g=0.3701295224222035,S_h=0.11151093826916261,B_h=-3.4424127435545517,E_h=-0.24312199438831497,L_h=0.4031312476449072,A_h=-1.6121657981016388,K_h=-1.4240075833045793,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27399999999999997, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.584, MAE_h(kcal/mol): 0.467)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.27399999999999997, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.584, MAE_h(kcal/mol): 0.467)"""),
+)
+
+entry(
+ index = 1608,
+ label = "[OH] + [OH] <=> [O] + O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9543964053965223,B_g=-2.740022848532554,E_g=-0.02025405748341417,L_g=0.5218773486850181,A_g=0.10630631256767002,K_g=-0.9832784128104389,S_h=-0.3477642928232543,B_h=-5.5262349175511725,E_h=-0.056334575374606545,L_h=0.6348470482423454,A_h=1.4532707745726896,K_h=-3.0939740485277234,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.61)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.303, MAE_g(kcal/mol): 0.25, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.762, MAE_h(kcal/mol): 0.61)"""),
+)
+
+entry(
+ index = 1609,
+ label = "CC(=O)COO + [O][O] <=> [O]O + CC(=O)CO[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5318760943988714,B_g=0.03496628816354889,E_g=-0.6665879345627158,L_g=0.3339903608611351,A_g=0.16830000208530796,K_g=-0.39416609661261787,S_h=-0.5399395990068176,B_h=0.2554518259797383,E_h=-0.4391164695725512,L_h=0.41966143209119705,A_h=0.1929669957268891,K_h=-1.5021282820381097,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.40700000000000003, MAE_h(kcal/mol): 0.261)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09699999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.40700000000000003, MAE_h(kcal/mol): 0.261)"""),
+)
+
+entry(
+ index = 1610,
+ label = "O + [O][O] <=> [O]O + [OH]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13297452144376873,B_g=-2.0261168028386627,E_g=-0.3312341083769644,L_g=0.25676397809321316,A_g=-0.6025710384343569,K_g=-0.04171764065802028,S_h=0.9023941311340031,B_h=-4.5102040151150025,E_h=-0.15297934333021002,L_h=0.2962531592959465,A_h=-0.8955328217585143,K_h=-1.5342723435888774,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.474)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.251, MAE_g(kcal/mol): 0.193, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.608, MAE_h(kcal/mol): 0.474)"""),
+)
+
+entry(
+ index = 1611,
+ label = "OO + [O][O] <=> [O]O + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07484398367921051,B_g=-1.4007626986574904,E_g=-0.441696791047094,L_g=0.2634200346241361,A_g=-0.21355092385335558,K_g=0.16978808520841077,S_h=0.7848795471612878,B_h=-3.5969974573476162,E_h=-0.38620521842695454,L_h=0.43649216534560137,A_h=0.27015672620113856,K_h=-1.7068533335751315,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.517, MAE_h(kcal/mol): 0.418)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.153, MAE_g(kcal/mol): 0.12, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.517, MAE_h(kcal/mol): 0.418)"""),
+)
+
+entry(
+ index = 1612,
+ label = "OCCCCOO + [O]O <=> [O]OCCCCO + OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.638057789168055,B_g=-5.142881247571936,E_g=0.1933408491223484,L_g=0.6453222737739411,A_g=0.5620995757612011,K_g=-2.120782346935952,S_h=-0.4168611968546194,B_h=-9.190657934338688,E_h=0.28071258677881367,L_h=0.9841873896935165,A_h=1.827043534985938,K_h=-4.521214364134216,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.62, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.319, MAE_h(kcal/mol): 0.9640000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.62, MAE_g(kcal/mol): 0.455, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.319, MAE_h(kcal/mol): 0.9640000000000001)"""),
+)
+
+entry(
+ index = 1613,
+ label = "OCCCCOO + [O][O] <=> [O]OCCCCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25033516578305964,B_g=1.8940072755255648,E_g=-0.4176235645630071,L_g=0.03723139991250834,A_g=0.5483036524228784,K_g=0.7185462260728279,S_h=-0.764940699403457,B_h=3.303698472921672,E_h=-0.18862003369733257,L_h=0.1602291670186272,A_h=0.7910298020395304,K_h=0.49627938678415584,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.546)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.711, MAE_h(kcal/mol): 0.546)"""),
+)
+
+entry(
+ index = 1614,
+ label = "OCOO + [O][O] <=> [O]OCO + [O]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2479894189880207,B_g=-3.15490482152886,E_g=-0.3568613921127645,L_g=0.4810906762862788,A_g=0.15792007251726073,K_g=-0.6778841714725751,S_h=0.47793124857171077,B_h=-6.673854884730291,E_h=-0.33757495518230396,L_h=0.7690750781297131,A_h=0.9396988356338566,K_h=-2.9175958809170006,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.93, MAE_h(kcal/mol): 0.706)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.376, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.93, MAE_h(kcal/mol): 0.706)"""),
+)
+
+entry(
+ index = 1615,
+ label = "C#C + C[CH2] <=> [CH]=CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14458596807921137,B_g=-0.26183665553748486,E_g=-0.1736219151265525,L_g=0.13048216547403987,A_g=0.3958154498278796,K_g=0.4850271326267035,S_h=0.024982203367164488,B_h=-0.5198394811568279,E_h=-0.08064237653819734,L_h=0.2081263843898281,A_h=0.5616084350259897,K_h=-0.5860555149055359,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.06, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.163, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1616,
+ label = "C#C + [CH3] <=> [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16571235015203062,B_g=-0.21305245265940984,E_g=-0.17063841842161237,L_g=0.14182971559504062,A_g=0.29419330039155295,K_g=0.7260746071931559,S_h=0.021969384827286376,B_h=-0.43422705359664193,E_h=-0.06862042421362288,L_h=0.183371425243433,A_h=0.5246702534628612,K_h=-0.24382571842682663,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.126, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 1617,
+ label = "C#C + [C]#C <=> [CH]=CC#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7182310163472445,B_g=-0.24387703163796812,E_g=-0.0696686798126559,L_g=-0.040618071847845785,A_g=0.4369393233284057,K_g=1.5903430224490422,S_h=0.8904088311031013,B_h=-0.16664331841131175,E_h=0.14764276937149645,L_h=0.008583967178095545,A_h=0.18698534139953985,K_h=0.9763951120587466,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.213, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.213, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 1618,
+ label = "C#C + [H] <=> [CH]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.048732889666933545,B_g=0.12204480747063426,E_g=-0.13358294951873195,L_g=0.10029533640538278,A_g=0.03177020815530836,K_g=1.322656660841429,S_h=0.065109134479799,B_h=0.2654065889411847,E_h=0.034460486510868624,L_h=0.1376293627401741,A_h=0.017519796375446928,K_h=0.16904037841749212,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.028999999999999998, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.142)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.028999999999999998, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.142)"""),
+)
+
+entry(
+ index = 1619,
+ label = "C#C + [OH] <=> [CH]=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.27968632255598413,B_g=-2.252547342688529,E_g=0.5418821705714593,L_g=0.06621603374870798,A_g=3.0933802813702296,K_g=0.8003541455498102,S_h=0.9083391331676798,B_h=-4.053567749167004,E_h=0.5568949500597085,L_h=0.12723477225465787,A_h=5.21608320849462,K_h=-0.3332866368226235,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.321, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.919, MAE_h(kcal/mol): 0.6629999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.504, MAE_g(kcal/mol): 0.321, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.919, MAE_h(kcal/mol): 0.6629999999999999)"""),
+)
+
+entry(
+ index = 1620,
+ label = "C#CC#C + [H] <=> C#C[C]=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12190552875467883,B_g=0.06707369742064409,E_g=-0.12549745353458217,L_g=0.11019878615568772,A_g=0.04458385002320846,K_g=1.1664958984204474,S_h=-0.01371528829224318,B_h=0.16240631326277266,E_h=0.052427440869119844,L_h=0.13835507815488926,A_h=0.04770662544410401,K_h=0.0016713445914652298,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.028999999999999998, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.131)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.028999999999999998, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.209, MAE_h(kcal/mol): 0.131)"""),
+)
+
+entry(
+ index = 1621,
+ label = "C#CC#C + [H] <=> [CH]=CC#C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.03409396357414379,B_g=0.07721905230918742,E_g=-0.11817432525882005,L_g=0.09013532059937046,A_g=0.08620619471768028,K_g=1.295467989395181,S_h=0.09475350960210333,B_h=0.16064700316649347,E_h=0.06300529282299847,L_h=0.12057138526500043,A_h=0.06073285061530451,K_h=0.154086242599119,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.026000000000000002, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.204, MAE_h(kcal/mol): 0.129)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.026000000000000002, MAE_g(kcal/mol): 0.021, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.204, MAE_h(kcal/mol): 0.129)"""),
+)
+
+entry(
+ index = 1622,
+ label = "C#CC + [CH3] <=> C[C]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16869584685697078,B_g=-0.19178679187063516,E_g=-0.2009571957474904,L_g=0.1328059208928753,A_g=0.3863298362254409,K_g=0.6098575144164464,S_h=0.05236879719924387,B_h=-0.4003749951607365,E_h=-0.15599949232882263,L_h=0.155178480950559,A_h=0.5577819355665825,K_h=-0.3136629987903759,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09699999999999999, MAE_h(kcal/mol): 0.07400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.078, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.09699999999999999, MAE_h(kcal/mol): 0.07400000000000001)"""),
+)
+
+entry(
+ index = 1623,
+ label = "C#CC + [H] <=> C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10401187898377258,B_g=0.08329600260008511,E_g=-0.10239917806218332,L_g=0.06225025557334532,A_g=0.08643343893844967,K_g=1.436176144803844,S_h=0.24656730999352838,B_h=0.20384539648888206,E_h=0.07545241175417372,L_h=0.10239917806218332,A_h=-0.013458722236535797,K_h=0.3047858132629006,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24, MAE_h(kcal/mol): 0.14800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.024, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.24, MAE_h(kcal/mol): 0.14800000000000002)"""),
+)
+
+entry(
+ index = 1624,
+ label = "C#CC + [H] <=> [CH]=CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06679513998873322,B_g=0.11469235735993415,E_g=-0.15456272241686128,L_g=0.10684143605528826,A_g=0.051305880682741854,K_g=1.1739069922010235,S_h=0.04590333259541785,B_h=0.26863199078436323,E_h=0.02424182703498033,L_h=0.1210918478351497,A_h=0.0859203068270349,K_h=0.02347945932659268,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.193, MAE_h(kcal/mol): 0.11800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.03, MAE_g(kcal/mol): 0.022000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.193, MAE_h(kcal/mol): 0.11800000000000001)"""),
+)
+
+entry(
+ index = 1625,
+ label = "C#CC=C + [H] <=> C=[C]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0035772638624343516,B_g=0.07383238037384998,E_g=-0.10884265128980584,L_g=0.0839997266385968,A_g=0.0429564881841502,K_g=1.252416205247482,S_h=0.11343151845760074,B_h=0.20395535336989953,E_h=0.07238094954441965,L_h=0.11656162433723077,A_h=0.006853978916754342,K_h=0.0822550774597866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027999999999999997, MAE_g(kcal/mol): 0.019, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23199999999999998, MAE_h(kcal/mol): 0.14300000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027999999999999997, MAE_g(kcal/mol): 0.019, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23199999999999998, MAE_h(kcal/mol): 0.14300000000000002)"""),
+)
+
+entry(
+ index = 1626,
+ label = "C#CC=C + [H] <=> [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06186907171915149,B_g=0.11538875093971132,E_g=-0.1232689940792952,L_g=0.09552320776922547,A_g=0.08858126334765719,K_g=1.2848461546888954,S_h=0.06164915795711659,B_h=0.22841709416691475,E_h=0.05442132564490292,L_h=0.11670823351192071,A_h=0.07520317615720086,K_h=0.15112473727038234,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027000000000000003, MAE_g(kcal/mol): 0.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.182, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.027000000000000003, MAE_g(kcal/mol): 0.02, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.182, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1627,
+ label = "C=C(C)C + [CH]=O <=> [CH2]C(C)(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.19001282085688695,B_g=-0.48082677977183697,E_g=-0.18301956322417715,L_g=0.06389227832987256,A_g=0.6045722536688743,K_g=0.5035658627662454,S_h=0.3928026312880015,B_h=-0.7190080449731012,E_h=-0.06131928731406425,L_h=0.11160623423271107,A_h=0.629437169696287,K_h=-0.528416117876189,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.099)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.13699999999999998, MAE_g(kcal/mol): 0.085, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.099)"""),
+)
+
+entry(
+ index = 1628,
+ label = "C=C(C)C + [H] <=> [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10769909972722437,B_g=0.04208416359474511,E_g=-0.11427452121206784,L_g=0.06241885612423874,A_g=0.05873896583952143,K_g=1.187864185631505,S_h=0.2253236405809572,B_h=0.15009847304755283,E_h=0.13080470565835772,L_h=0.0759655438655885,A_h=0.027892395484759646,K_h=0.03489298357620392,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.146)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027999999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.146)"""),
+)
+
+entry(
+ index = 1629,
+ label = "C=C(C)C + [OH] <=> C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.49191043337839585,B_g=-2.3931821935098467,E_g=1.0312782566039227,L_g=-0.15349980590035928,A_g=4.471528514831799,K_g=1.1846241228708576,S_h=1.0171744539987513,B_h=-4.802740631832559,E_h=1.2445506230253673,L_h=-0.017519796375446928,A_h=7.403712008630447,K_h=-0.10882799037233684,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.41600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.878, MAE_h(kcal/mol): 0.7)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5770000000000001, MAE_g(kcal/mol): 0.41600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.878, MAE_h(kcal/mol): 0.7)"""),
+)
+
+entry(
+ index = 1630,
+ label = "C=C(C)C + [OH] <=> [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3084803644650868,B_g=-2.3765273912650704,E_g=0.8402098496892684,L_g=-0.08196185911040672,A_g=4.038980136285356,K_g=0.8187609274321312,S_h=0.7283323884833809,B_h=-4.633201782221121,E_h=1.0224743756637924,L_h=0.05225884031822641,A_h=6.935163747238892,K_h=-0.5344490854146797,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.515, MAE_g(kcal/mol): 0.364, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.815, MAE_h(kcal/mol): 0.65)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.515, MAE_g(kcal/mol): 0.364, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.815, MAE_h(kcal/mol): 0.65)"""),
+)
+
+entry(
+ index = 1631,
+ label = "C=C(C)C + [O]O <=> C[C](C)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.8149124365965205,B_g=-3.048202664189527,E_g=0.22316115525428068,L_g=0.014829518019886667,A_g=1.5303578786246563,K_g=0.0044495884518394495,S_h=1.4638632874440374,B_h=-4.239387547627759,E_h=0.19553265628396294,L_h=-0.027701803557662733,A_h=1.7630486302337827,K_h=-0.8772726490508832,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.527, MAE_g(kcal/mol): 0.389, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.578)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.527, MAE_g(kcal/mol): 0.389, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.731, MAE_h(kcal/mol): 0.578)"""),
+)
+
+entry(
+ index = 1632,
+ label = "C=C(C)C + [O]O <=> [CH2]C(C)(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10958302762199001,B_g=-2.3137493426628413,E_g=0.08141207470531948,L_g=0.15121270277519633,A_g=1.1913828058240636,K_g=-0.4245801699020444,S_h=0.3945252890906082,B_h=-3.1310588392655423,E_h=0.09698196905739032,L_h=0.1518944354375045,A_h=1.6140204041614663,K_h=-1.4220650117399378,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40399999999999997, MAE_g(kcal/mol): 0.321, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.562, MAE_h(kcal/mol): 0.45399999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.40399999999999997, MAE_g(kcal/mol): 0.321, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.562, MAE_h(kcal/mol): 0.45399999999999996)"""),
+)
+
+entry(
+ index = 1633,
+ label = "C=C(C)C=O + [CH3] <=> [CH2]C(C)(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.10791901348925928,B_g=-0.2543009439584223,E_g=-0.31760678558953515,L_g=0.10137291383935379,A_g=0.7023605731870594,K_g=0.42022587741375333,S_h=0.25632415056914337,B_h=-0.33382176031024163,E_h=-0.2074886344799269,L_h=0.1580007075633402,A_h=0.8099130637395937,K_h=-0.6576887576590369,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12, MAE_h(kcal/mol): 0.08900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.111, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12, MAE_h(kcal/mol): 0.08900000000000001)"""),
+)
+
+entry(
+ index = 1634,
+ label = "C=C(C)C=O + [H] <=> C=C(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07690384258360405,B_g=-0.07254955009531307,E_g=-0.1723024325543431,L_g=0.07088553596258233,A_g=0.5179555532620623,K_g=1.110740429285866,S_h=0.2638745230656749,B_h=-0.12187620691974083,E_h=-0.06998388953823925,L_h=0.11835025626844797,A_h=0.6441787222113597,K_h=-0.05307252123775555,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07, MAE_g(kcal/mol): 0.052000000000000005, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.11699999999999999)"""),
+)
+
+entry(
+ index = 1635,
+ label = "C=C(C)C=O + [H] <=> C[C](C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.042641278458566856,B_g=0.02578855382795912,E_g=-0.21209949302392525,L_g=0.11717738287092849,A_g=0.02487224648614704,K_g=0.9367153389289162,S_h=0.020151431061131212,B_h=0.19888267592562786,E_h=0.014756213432541701,L_h=0.14699768900286075,A_h=-0.08270956590132539,K_h=-0.35914116477919306,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.17300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.035, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.17300000000000001)"""),
+)
+
+entry(
+ index = 1636,
+ label = "C=C(C)C=O + [O]O <=> [CH2]C(C)(C=O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20339090804734328,B_g=-4.2862071875649885,E_g=-0.3398547278487324,L_g=0.47510902195892957,A_g=0.832454224348171,K_g=-1.8107112729254797,S_h=0.8642317629622137,B_h=-6.193145392298206,E_h=-0.08405837030847277,L_h=0.4896673130056398,A_h=1.0525732392276355,K_h=-3.3930934171888585,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.61, MAE_g(kcal/mol): 0.483, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.042, MAE_h(kcal/mol): 0.821)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.61, MAE_g(kcal/mol): 0.483, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.042, MAE_h(kcal/mol): 0.821)"""),
+)
+
+entry(
+ index = 1637,
+ label = "C=C(C)CO + [H] <=> C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2228386150699628,B_g=-0.9952857042175444,E_g=-0.24385504026176463,L_g=0.17653210724414764,A_g=0.03856554340218673,K_g=0.6952353672971286,S_h=0.6012295644859439,B_h=-1.7413651332971414,E_h=0.04884284654795099,L_h=0.22404814076115478,A_h=-0.09341936611242495,K_h=-0.7665680612425151,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37799999999999995, MAE_h(kcal/mol): 0.3)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14, MAE_g(kcal/mol): 0.10099999999999999, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37799999999999995, MAE_h(kcal/mol): 0.3)"""),
+)
+
+entry(
+ index = 1638,
+ label = "C=C(C)CO + [H] <=> [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06637730384086692,B_g=-0.8301158080118665,E_g=-0.2434152127376948,L_g=0.21078001045171588,A_g=0.07779815854921265,K_g=0.5131907550846395,S_h=0.12597393335232446,B_h=-1.3631501148907885,E_h=-0.0012315170673954327,L_h=0.2606197993875584,A_h=0.06112869538696732,K_h=-0.9848544614383556,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.297, MAE_h(kcal/mol): 0.22399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.297, MAE_h(kcal/mol): 0.22399999999999998)"""),
+)
+
+entry(
+ index = 1639,
+ label = "C=C(C)CO + [O]O <=> C[C](CO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.31479921989422294,B_g=-3.890736269297631,E_g=0.14040760660054832,L_g=0.4102271316999,A_g=1.4930751655010064,K_g=-1.2042844131967776,S_h=0.1612334398652532,B_h=-6.805333992592222,E_h=0.02407322648408691,L_h=0.6063315637651536,A_h=2.617215673353533,K_h=-3.0111765171215845,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.995, MAE_h(kcal/mol): 0.765)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.524, MAE_g(kcal/mol): 0.39399999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.995, MAE_h(kcal/mol): 0.765)"""),
+)
+
+entry(
+ index = 1640,
+ label = "C=C(C)CO + [O]O <=> [CH2]C(C)(CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.30356162665423964,B_g=-3.511099141896785,E_g=0.016178322427034045,L_g=0.40472928764902744,A_g=1.366140942054463,K_g=-1.3548666965208072,S_h=0.20064931648064152,B_h=-6.114064403470457,E_h=-0.08798016573142846,L_h=0.5694300344956976,A_h=2.4429266864821404,K_h=-3.186015288398063,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.465, MAE_g(kcal/mol): 0.354, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.883, MAE_h(kcal/mol): 0.6779999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.465, MAE_g(kcal/mol): 0.354, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.883, MAE_h(kcal/mol): 0.6779999999999999)"""),
+)
+
+entry(
+ index = 1641,
+ label = "C=C(C)COO + [O]O <=> C[C](COO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.44299428224309984,B_g=-5.4713884252996685,E_g=0.20255523575161063,L_g=0.5679859341250018,A_g=1.616336829121567,K_g=-1.959211705968912,S_h=0.02259247381971859,B_h=-9.44200470342711,E_h=0.06601078090414209,L_h=0.8686080468267081,A_h=2.9284156380091173,K_h=-4.168985821941653,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.696, MAE_g(kcal/mol): 0.53, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3519999999999999, MAE_h(kcal/mol): 1.032)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.696, MAE_g(kcal/mol): 0.53, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.3519999999999999, MAE_h(kcal/mol): 1.032)"""),
+)
+
+entry(
+ index = 1642,
+ label = "C=C(C)COO + [O]O <=> [CH2]C(C)(COO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.28352748293286034,B_g=-5.334499438891679,E_g=0.015591885728274314,L_g=0.5854104345369002,A_g=1.57195090148419,K_g=-2.019995869795358,S_h=0.15406425122291548,B_h=-8.929920847611378,E_h=-0.033881380270843385,L_h=0.8385824878502102,A_h=2.6683896057790535,K_h=-4.036429136645751,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7090000000000001, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.314, MAE_h(kcal/mol): 0.995)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.7090000000000001, MAE_g(kcal/mol): 0.529, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.314, MAE_h(kcal/mol): 0.995)"""),
+)
+
+entry(
+ index = 1643,
+ label = "C=C(C)O + [CH3] <=> [CH2]C(C)(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06871572017717134,B_g=-0.3745424585803704,E_g=-0.26446829022316914,L_g=0.11258118524439911,A_g=0.525183385574276,K_g=0.35007338732462073,S_h=0.2330499440871166,B_h=-0.48974794805171934,E_h=-0.12919200473676848,L_h=0.13408875117141222,A_h=0.6807137285440908,K_h=-0.715152223678756,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.08)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.102, MAE_h(kcal/mol): 0.08)"""),
+)
+
+entry(
+ index = 1644,
+ label = "C=C(C)O + [H] <=> C[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.39825649258646695,B_g=0.5253080033727625,E_g=-0.17897315000273503,L_g=0.012769659115493114,A_g=-0.1517331653453456,K_g=1.475372107657197,S_h=0.4535281514445715,B_h=0.922508909901462,E_h=0.24661129274593535,L_h=0.026015798048728514,A_h=-0.40467064397915153,K_h=0.4239644113683466,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46399999999999997, MAE_h(kcal/mol): 0.3)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11599999999999999, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.46399999999999997, MAE_h(kcal/mol): 0.3)"""),
+)
+
+entry(
+ index = 1645,
+ label = "C=C(C)O + [H] <=> [CH2]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.301721681511881,B_g=0.34601964364444404,E_g=-0.16333728152205373,L_g=0.01994617821656531,A_g=0.0950320670340142,K_g=1.412278849329385,S_h=0.42270357246601314,B_h=0.593466608686112,E_h=0.11058730046861603,L_h=0.04305178414769866,A_h=-0.08477675526445344,K_h=0.33312536673046445,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.2)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.062, MAE_g(kcal/mol): 0.049, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.314, MAE_h(kcal/mol): 0.2)"""),
+)
+
+entry(
+ index = 1646,
+ label = "C=C(O)CC + [H] <=> CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3716249360040408,B_g=0.568594362199965,E_g=-0.1742669954951882,L_g=0.008503332132016081,A_g=-0.1488669559801574,K_g=1.4571632481607077,S_h=0.4442257993104953,B_h=0.9467214151015043,E_h=0.24375974429821617,L_h=0.008129478736556754,A_h=-0.40528640251284925,K_h=0.4256357559598118,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.433, MAE_h(kcal/mol): 0.28800000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.091, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.433, MAE_h(kcal/mol): 0.28800000000000003)"""),
+)
+
+entry(
+ index = 1647,
+ label = "C=C(O)CC + [O]O <=> [CH2]C(O)(CC)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.9565515602644642,B_g=-3.5877904011770885,E_g=0.0952886330897216,L_g=0.14394088771057564,A_g=1.5990149551319517,K_g=-0.7924005978228813,S_h=1.6755376138613618,B_h=-4.7496021364661924,E_h=0.4012326588326726,L_h=0.04483308562018134,A_h=2.235885209985018,K_h=-1.925660196341121,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.637, MAE_g(kcal/mol): 0.441, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.052, MAE_h(kcal/mol): 0.7020000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.637, MAE_g(kcal/mol): 0.441, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.052, MAE_h(kcal/mol): 0.7020000000000001)"""),
+)
+
+entry(
+ index = 1648,
+ label = "C=C + C[C]=O <=> [CH2]CC(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.052581380502544274,B_g=-0.2731182315298752,E_g=-0.22456860333130402,L_g=0.11042603037645711,A_g=0.513315372883126,K_g=0.34209051776275384,S_h=0.13968189118583313,B_h=-0.4311702523043568,E_h=-0.1262524907842353,L_h=0.1510294413068339,A_h=0.5367288580811082,K_h=-0.635829329712768,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 1649,
+ label = "C=C + [CH2]C=O <=> [CH2]CCC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.09836742575821017,B_g=-0.23661987749081648,E_g=-0.014521638753037807,L_g=0.020774520053563426,A_g=1.1278203981372432,K_g=0.7143458732179613,S_h=0.2558330098339321,B_h=-0.42179459558293564,E_h=-0.0018179537661551623,L_h=0.12178091095619238,A_h=1.7422301274278122,K_h=-0.33119745608329193,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.132, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.16, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 1650,
+ label = "C=C + [CH2]CO <=> [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.022086672167038322,B_g=-1.8966315797525146,E_g=-0.10053724154362116,L_g=0.21126382072819266,A_g=0.9068803718795151,K_g=0.14228420403657943,S_h=0.6690216468625687,B_h=-4.2742072266166184,E_h=-0.1902107432427184,L_h=0.4334720163469888,A_h=1.8365951227169872,K_h=-1.6020204432130951,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.402)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.248, MAE_g(kcal/mol): 0.172, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.535, MAE_h(kcal/mol): 0.402)"""),
+)
+
+entry(
+ index = 1651,
+ label = "C=C + [CH]=C <=> [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.12742536418175476,B_g=-0.24015315860084385,E_g=-0.2144379093602297,L_g=0.13334837483922804,A_g=0.42840666936145155,K_g=0.4793167052725306,S_h=0.029908271636746222,B_h=-0.3720647635281106,E_h=-0.10657753954084641,L_h=0.19142759939264478,A_h=0.47977119371406945,K_h=-0.5395217628589514,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.141, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 1652,
+ label = "C=C + [CH]=O <=> [CH2]CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05577746051078479,B_g=-0.3653134110336392,E_g=-0.15226095837422932,L_g=0.09476084006083783,A_g=0.43695398424587467,K_g=0.7206793895645663,S_h=0.24201509511940597,B_h=-0.5458112964531495,E_h=-0.03739267000466727,L_h=0.16176123289413694,A_h=0.4521573556612207,K_h=-0.293042418370237,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.10800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.10800000000000001)"""),
+)
+
+entry(
+ index = 1653,
+ label = "C=C + [H] <=> C[CH2]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0017886319312171758,B_g=0.08563441893638954,E_g=-0.10760380376367591,L_g=0.08690258829745745,A_g=0.019806899500609872,K_g=1.2837978990898624,S_h=0.0696393579777179,B_h=0.26551654582220213,E_h=0.09781031089438842,L_h=0.1667166229986567,A_h=-0.08509929544877129,K_h=0.0023677381712424086,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.21600000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.036000000000000004, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.354, MAE_h(kcal/mol): 0.21600000000000003)"""),
+)
+
+entry(
+ index = 1654,
+ label = "C=C + [OH] <=> [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3985790327707849,B_g=-2.2064827400009523,E_g=0.6737571232050535,L_g=-0.053270443623586954,A_g=3.4749966326293893,K_g=1.0863006798650545,S_h=0.7685912678532363,B_h=-4.081855989423427,E_h=0.7481686098189287,L_h=0.1195597819596399,A_h=5.919125514343987,K_h=-0.1788558626629831,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.507, MAE_g(kcal/mol): 0.35600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.626)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.507, MAE_g(kcal/mol): 0.35600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.765, MAE_h(kcal/mol): 0.626)"""),
+)
+
+entry(
+ index = 1655,
+ label = "C=C + [O]O <=> [CH2]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14401419229792065,B_g=-2.057557140350919,E_g=0.05755143152453298,L_g=0.14273869247811824,A_g=0.9749070289356437,K_g=-0.041673657905613296,S_h=0.43476950754299465,B_h=-2.7106936831358333,E_h=0.10673147917427082,L_h=0.16694386721942608,A_h=1.122755051151706,K_h=-1.0416068729608285,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.442, MAE_h(kcal/mol): 0.348)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.35100000000000003, MAE_g(kcal/mol): 0.276, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.442, MAE_h(kcal/mol): 0.348)"""),
+)
+
+entry(
+ index = 1656,
+ label = "C=C=C + [CH2]O <=> [CH2]C(=C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1529866737889445,B_g=-0.015628538021946796,E_g=-0.20174155483208153,L_g=0.11173085203119751,A_g=0.3379194867428253,K_g=0.2594982392011804,S_h=0.03574331678940553,B_h=-0.1558015699429912,E_h=-0.08556111434904458,L_h=0.10582983274992773,A_h=0.539338501390589,K_h=-0.7054686876904859,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11900000000000001, MAE_h(kcal/mol): 0.09300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.069, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11900000000000001, MAE_h(kcal/mol): 0.09300000000000001)"""),
+)
+
+entry(
+ index = 1657,
+ label = "C=C=C + [CH3] <=> C=[C]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06896495577414422,B_g=-0.20222536510855832,E_g=-0.1939566076560461,L_g=0.11406193790876742,A_g=0.34302881648076944,K_g=0.5377258004689998,S_h=0.07438949523767172,B_h=-0.29307174020517496,E_h=-0.037055468902880424,L_h=0.12402403132894836,A_h=0.4941828755860898,K_h=-0.4268306207335348,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08800000000000001, MAE_h(kcal/mol): 0.065)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08800000000000001, MAE_h(kcal/mol): 0.065)"""),
+)
+
+entry(
+ index = 1658,
+ label = "C=C=C + [CH3] <=> [CH2]C(=C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.0698592717397528,B_g=-0.22871031251629462,E_g=-0.20518687043729494,L_g=0.11623175369417843,A_g=0.41757958181060006,K_g=0.5259237619064602,S_h=0.09703328226853179,B_h=-0.3514735049429095,E_h=-0.07361246661181509,L_h=0.131251863641162,A_h=0.5287826408129138,K_h=-0.45151960575131944,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08900000000000001, MAE_h(kcal/mol): 0.068)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08800000000000001, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.08900000000000001, MAE_h(kcal/mol): 0.068)"""),
+)
+
+entry(
+ index = 1659,
+ label = "C=C=C + [H] <=> C=[C]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05370294068892226,B_g=0.08988608500239759,E_g=-0.11181148707727698,L_g=0.0705190130258575,A_g=0.047596668563086565,K_g=1.3179285149576787,S_h=0.1775143887145702,B_h=0.2313492776607134,E_h=0.10110901732491191,L_h=0.10289764925612908,A_h=-0.054370012433761446,K_h=0.17373920246630445,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.154)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.25, MAE_h(kcal/mol): 0.154)"""),
+)
+
+entry(
+ index = 1660,
+ label = "C=C=C + [H] <=> [CH2]C=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05019165095509837,B_g=0.07195578293781885,E_g=-0.10847612835308101,L_g=0.06969067118885938,A_g=0.08763563417090713,K_g=1.3088314156681684,S_h=0.18554857148757847,B_h=0.16697318905436406,E_h=0.09078040096800617,L_h=0.09275229436758577,A_h=0.021727479689047986,K_h=0.17656142907908565,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.128)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.031, MAE_g(kcal/mol): 0.023, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.20600000000000002, MAE_h(kcal/mol): 0.128)"""),
+)
+
+entry(
+ index = 1661,
+ label = "C=C=C + [OH] <=> C=[C]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.28412125009035455,B_g=-2.0830671367469673,E_g=0.8106167877781055,L_g=-0.06646526934568087,A_g=4.13322784423478,K_g=1.0628725337496032,S_h=0.5642474001704085,B_h=-3.754939521241081,E_h=0.9761018937093668,L_h=0.037561270555560695,A_h=6.802731679741475,K_h=-0.010203998558419297,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.552, MAE_g(kcal/mol): 0.377, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8490000000000001, MAE_h(kcal/mol): 0.6779999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.552, MAE_g(kcal/mol): 0.377, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8490000000000001, MAE_h(kcal/mol): 0.6779999999999999)"""),
+)
+
+entry(
+ index = 1662,
+ label = "C=C=O + C[CH2] <=> [CH2]C(=O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7682833885863876,B_g=-0.20850756824402195,E_g=-0.0384189342274968,L_g=-0.11678886855800019,A_g=0.6515238418633252,K_g=1.49047285265026,S_h=1.084966536375376,B_h=-0.5000985557848285,E_h=0.08879384665095759,L_h=-0.038059741749506465,A_h=0.4454866382128287,K_h=0.73038491692904,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.163)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.142, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.207, MAE_h(kcal/mol): 0.163)"""),
+)
+
+entry(
+ index = 1663,
+ label = "C=C=O + [CH3] <=> [CH2]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.49228428677385516,B_g=-0.1644368503322282,E_g=-0.12615719482068688,L_g=-0.030355429619550515,A_g=0.5042109431348812,K_g=1.3357195383063019,S_h=0.7748368186950274,B_h=-0.3704520626065213,E_h=0.0077702862585664195,L_h=0.01883194848892182,A_h=0.3438351669415641,K_h=0.5277710375075533,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.151, MAE_h(kcal/mol): 0.11699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.156, MAE_g(kcal/mol): 0.102, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.151, MAE_h(kcal/mol): 0.11699999999999999)"""),
+)
+
+entry(
+ index = 1664,
+ label = "C=C=O + [H] <=> C[C]=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.411202082711588,B_g=0.11017679477948422,E_g=-0.036769581012235056,L_g=0.0037825167070002575,A_g=0.14223289082543797,K_g=1.7359259329161452,S_h=0.53386264871592,B_h=0.26898385280361903,E_h=0.33144669168026475,L_h=0.0007257154147151656,A_h=-0.026536260618877774,K_h=0.9014631628747221,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.304, MAE_h(kcal/mol): 0.196)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.091, MAE_g(kcal/mol): 0.071, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.304, MAE_h(kcal/mol): 0.196)"""),
+)
+
+entry(
+ index = 1665,
+ label = "C=C=O + [O]O <=> O=[C]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5255352475935319,B_g=-2.875489725946052,E_g=0.1616659369305885,L_g=0.12410466637502782,A_g=1.9374182521512537,K_g=-0.07545974221290823,S_h=0.9347874282817437,B_h=-3.74352599699147,E_h=0.160610350872821,L_h=0.07573829964481911,A_h=2.346333231737679,K_h=-0.7249163947131055,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.532, MAE_g(kcal/mol): 0.377, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.5479999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.532, MAE_g(kcal/mol): 0.377, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.721, MAE_h(kcal/mol): 0.5479999999999999)"""),
+)
+
+entry(
+ index = 1666,
+ label = "C=CC(C)=O + [H] <=> C[CH]C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16173191105919899,B_g=-0.012139239664326404,E_g=-0.3002555897649817,L_g=0.16636476097940084,A_g=0.009353665345217688,K_g=0.80640177400577,S_h=-0.09373457583800832,B_h=0.15830858683018903,E_h=-0.09193128298932213,L_h=0.18410447111688266,A_h=-0.1018127413634236,K_h=-0.418803768419261,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23800000000000002, MAE_h(kcal/mol): 0.149)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23800000000000002, MAE_h(kcal/mol): 0.149)"""),
+)
+
+entry(
+ index = 1667,
+ label = "C=CC(C)=O + [O]O <=> [CH2]C(OO)C(C)=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2736167027238209,B_g=-4.857968307938257,E_g=-0.2927638609383261,L_g=0.6425586908310359,A_g=0.6886746067297542,K_g=-2.247929153685796,S_h=0.15776613288383629,B_h=-7.487528473800681,E_h=-0.059120149693715256,L_h=0.7694416010664379,A_h=1.0631071084291073,K_h=-4.1278546179823925,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.638, MAE_g(kcal/mol): 0.48100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.162, MAE_h(kcal/mol): 0.892)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.638, MAE_g(kcal/mol): 0.48100000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.162, MAE_h(kcal/mol): 0.892)"""),
+)
+
+entry(
+ index = 1668,
+ label = "C=CC(C)O + [O]O <=> [CH2]C(OO)C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.1375267363178911,B_g=-3.48575774605163,E_g=-0.025414700432499788,L_g=0.38006229400744634,A_g=1.2948155785678108,K_g=-0.8999677492928848,S_h=0.5862094545389603,B_h=-6.3545107804206795,E_h=-0.19564261316498036,L_h=0.5626493601662882,A_h=2.1733857188147,K_h=-2.6386352737757313,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46799999999999997, MAE_g(kcal/mol): 0.349, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.893, MAE_h(kcal/mol): 0.682)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.46799999999999997, MAE_g(kcal/mol): 0.349, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.893, MAE_h(kcal/mol): 0.682)"""),
+)
+
+entry(
+ index = 1669,
+ label = "C=CC + [CH2]O <=> C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4281647642232132,B_g=-2.369446168127547,E_g=-0.2103035306339736,L_g=0.20292175868833545,A_g=0.599162375122816,K_g=-0.4598396764149731,S_h=1.2567338454421009,B_h=-3.6061312089307993,E_h=0.03404998082173681,L_h=0.11346084029253872,A_h=1.0245782173205928,K_h=-1.700813035577906,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33299999999999996, MAE_g(kcal/mol): 0.27699999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.584)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.33299999999999996, MAE_g(kcal/mol): 0.27699999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7170000000000001, MAE_h(kcal/mol): 0.584)"""),
+)
+
+entry(
+ index = 1670,
+ label = "C=CC + [CH3] <=> C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09837475621694468,B_g=-0.1872932206663887,E_g=-0.2175826761573287,L_g=0.12882548180004363,A_g=0.32859514323254563,K_g=0.44823556023826494,S_h=0.020906468310784368,B_h=-0.1912443379242824,E_h=-0.07233696679201267,L_h=0.15469467067408224,A_h=0.47537291847337143,K_h=-0.5902265459254645,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.085)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.12300000000000001, MAE_h(kcal/mol): 0.085)"""),
+)
+
+entry(
+ index = 1671,
+ label = "C=CC + [CH3] <=> [CH2]C(C)C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04459851094067745,B_g=-0.18494014341261528,E_g=-0.23059424041106022,L_g=0.1156526474541532,A_g=0.4121183900534001,K_g=0.4537553956653409,S_h=0.0896295189466902,B_h=-0.21110255063603373,E_h=-0.09898318429190787,L_h=0.14861772038318452,A_h=0.4836929891370251,K_h=-0.6034653543999654,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.083)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.115, MAE_h(kcal/mol): 0.083)"""),
+)
+
+entry(
+ index = 1672,
+ label = "C=CC + [CH]=O <=> C[CH]CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24080556942821404,B_g=-0.44095641471490976,E_g=-0.13468251832890643,L_g=0.04084531606861518,A_g=0.6064268597287021,K_g=0.7631154151785674,S_h=0.5107277209498486,B_h=-0.7476041644963725,E_h=-0.02882336374404072,L_h=0.0735684838594081,A_h=0.6052759777073861,K_h=-0.12963183226083827,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.146, MAE_g(kcal/mol): 0.09, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 1673,
+ label = "C=CC + [CH]=O <=> [CH2]C(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11930321590393253,B_g=-0.4252252502706801,E_g=-0.18491815203641176,L_g=0.08238702571700754,A_g=0.5327044362358695,K_g=0.588152026103602,S_h=0.3323556685633423,B_h=-0.6446918543227745,E_h=-0.07282810752722393,L_h=0.12029282783308956,A_h=0.5967653151166354,K_h=-0.37715943234858573,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.08800000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.12, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.109, MAE_h(kcal/mol): 0.08800000000000001)"""),
+)
+
+entry(
+ index = 1674,
+ label = "C=CC + [OH] <=> C[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.41193512858503767,B_g=-2.222404496372279,E_g=0.8834155734703915,L_g=-0.11365143221963564,A_g=3.9602216876419236,K_g=1.129411107682629,S_h=0.7419817026470136,B_h=-4.231455991277033,E_h=1.082415536735771,L_h=0.02472563731145711,A_h=6.718966527782383,K_h=-0.08938028334971732,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.535, MAE_g(kcal/mol): 0.385, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.812, MAE_h(kcal/mol): 0.665)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.535, MAE_g(kcal/mol): 0.385, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.812, MAE_h(kcal/mol): 0.665)"""),
+)
+
+entry(
+ index = 1675,
+ label = "C=CC + [O]O <=> C[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6699526151218497,B_g=-2.776792429544789,E_g=0.13732881393205973,L_g=0.053351078669666416,A_g=1.3789179316286906,K_g=0.07157459908362503,S_h=1.2801473306400832,B_h=-3.8255978129828936,E_h=0.10249447402573177,L_h=0.015819129949043713,A_h=1.5665336924793973,K_h=-0.7655344665609514,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.35600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.52)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.35600000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.659, MAE_h(kcal/mol): 0.52)"""),
+)
+
+entry(
+ index = 1676,
+ label = "C=CC + [O]O <=> [CH2]C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12623049940803183,B_g=-2.2041076713709753,E_g=0.07074625724662689,L_g=0.14918949616447527,A_g=1.0587601463995506,K_g=-0.24864916027412542,S_h=0.43613297286761105,B_h=-2.977214501804662,E_h=0.09294288629468268,L_h=0.1393886728364533,A_h=1.367350467745655,K_h=-1.1716492109107985,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.423)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.377, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.524, MAE_h(kcal/mol): 0.423)"""),
+)
+
+entry(
+ index = 1677,
+ label = "C=CC=C + [H] <=> C=C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.024197844282573353,B_g=0.10610105972310412,E_g=-0.10626232981526301,L_g=0.07650799781194124,A_g=0.006494786438764007,K_g=1.2149868829491426,S_h=0.11931787682140152,B_h=0.26769369206634763,E_h=0.08955621435934523,L_h=0.1358407308089569,A_h=-0.0989905147506424,K_h=-0.03295041201156231,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.195)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.195)"""),
+)
+
+entry(
+ index = 1678,
+ label = "C=CC=C + [H] <=> [CH2]CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08503332132016082,B_g=0.08900642995425799,E_g=-0.1091798523915927,L_g=0.06288800548324651,A_g=0.06763814274320033,K_g=1.280161991557552,S_h=0.1924978463678813,B_h=0.22260404039045892,E_h=0.10514810008761956,L_h=0.11692081681522112,A_h=-0.062125637774858876,K_h=0.07643469322459628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.179)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.034, MAE_g(kcal/mol): 0.026000000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.29100000000000004, MAE_h(kcal/mol): 0.179)"""),
+)
+
+entry(
+ index = 1679,
+ label = "C=CC=CO + [H] <=> C[CH]C=CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3013991413275631,B_g=0.4714877753440882,E_g=-0.15276676002690961,L_g=0.011384202414673254,A_g=-0.03677691147096955,K_g=1.4710911197562513,S_h=0.40131329387875214,B_h=0.7498546153278629,E_h=0.15525178553790397,L_h=0.02133163491738517,A_h=-0.149731950110828,K_h=0.42982144789720944,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.204)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.084, MAE_g(kcal/mol): 0.07200000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.204)"""),
+)
+
+entry(
+ index = 1680,
+ label = "C=CC=O + [CH3] <=> C=CC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.28588056018663377,B_g=-0.24902301366958476,E_g=-0.1160998054369575,L_g=-0.007535711579062527,A_g=1.5531922575826131,K_g=0.8437064785056232,S_h=0.5474386582922077,B_h=-0.5362083955109589,E_h=-0.10961967991566249,L_h=0.054714543994282785,A_h=2.3554963051557993,K_h=-0.024183183365104357,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.14400000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.19699999999999998, MAE_g(kcal/mol): 0.13699999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.19899999999999998, MAE_h(kcal/mol): 0.14400000000000002)"""),
+)
+
+entry(
+ index = 1681,
+ label = "C=CC=O + [CH3] <=> CC[CH]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2683680942699213,B_g=-0.20069329923304854,E_g=-0.014162446275047475,L_g=-0.015218032332814989,A_g=1.0494431333480054,K_g=1.028595308707097,S_h=0.49375770897948895,B_h=-0.44252513288409207,E_h=0.007513720202859038,L_h=0.03725339128871183,A_h=1.5413389058089324,K_h=0.11600450947340904,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.12300000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.14400000000000002, MAE_g(kcal/mol): 0.11, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.157, MAE_h(kcal/mol): 0.12300000000000001)"""),
+)
+
+entry(
+ index = 1682,
+ label = "C=CC=O + [CH3] <=> [CH2]C(C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.007616346625141991,B_g=-0.32185845165554317,E_g=-0.3348187026981332,L_g=0.13766601503384657,A_g=0.674013689260761,K_g=0.3920109417446758,S_h=0.16387240500967198,B_h=-0.4509038472176218,E_h=-0.24293873291995255,L_h=0.1831515114813981,A_h=0.8588585367098277,K_h=-0.6364524187052002,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.106, MAE_h(kcal/mol): 0.084)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.10400000000000001, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.106, MAE_h(kcal/mol): 0.084)"""),
+)
+
+entry(
+ index = 1683,
+ label = "C=CC=O + [H] <=> C=CC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0713913376152626,B_g=-0.08587632407462793,E_g=-0.17590901825171543,L_g=0.0804884369047729,A_g=0.5445211357158781,K_g=1.1057923696400809,S_h=0.2620052560883782,B_h=-0.14055421577523824,E_h=-0.07662528515169319,L_h=0.13486577979726885,A_h=0.6647040066679503,K_h=-0.03954049441387478,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.053, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.198, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 1684,
+ label = "C=CCC + [H] <=> C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1509854585544269,B_g=0.04876954196060602,E_g=-0.08144872699899196,L_g=0.05361497518410829,A_g=0.07287209027963092,K_g=1.384371792927156,S_h=0.24657464045226288,B_h=0.18345206028951244,E_h=0.1673250510736199,L_h=0.10238451714471433,A_h=-0.011039670854151912,K_h=0.22820451086361432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.184)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.044000000000000004, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.294, MAE_h(kcal/mol): 0.184)"""),
+)
+
+entry(
+ index = 1685,
+ label = "C=CCC + [H] <=> [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08319337617780218,B_g=0.053541670596763326,E_g=-0.11642234562127536,L_g=0.07342920514345266,A_g=0.09051650445356428,K_g=1.295306719303022,S_h=0.17761701513685316,B_h=0.19606044931284664,E_h=0.12275586196788044,L_h=0.11889271021480072,A_h=0.03323629990220768,K_h=0.1228291665552254,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.266, MAE_h(kcal/mol): 0.165)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.037000000000000005, MAE_g(kcal/mol): 0.027000000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.266, MAE_h(kcal/mol): 0.165)"""),
+)
+
+entry(
+ index = 1686,
+ label = "C=CCC + [OH] <=> CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4060780920561749,B_g=-2.2626560452834,E_g=0.8057713545546032,L_g=-0.0866093699480776,A_g=3.6849922839965137,K_g=1.0326270610110702,S_h=0.8086375639197915,B_h=-4.401156110980631,E_h=0.9702741790154419,L_h=0.05391552399222266,A_h=6.36667201146121,K_h=-0.2055314019978163,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.527, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.665)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.527, MAE_g(kcal/mol): 0.381, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.826, MAE_h(kcal/mol): 0.665)"""),
+)
+
+entry(
+ index = 1687,
+ label = "C=CCC + [O]O <=> CC[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7973193356337286,B_g=-3.34748330294282,E_g=0.08847863692537423,L_g=0.09072175729813019,A_g=1.177235020466485,K_g=-0.26504006600445984,S_h=1.4413221268354601,B_h=-4.514345724299993,E_h=0.18028530211620994,L_h=0.033170325773597215,A_h=1.312855837513407,K_h=-1.255304405988874,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.536, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.779, MAE_h(kcal/mol): 0.624)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.536, MAE_g(kcal/mol): 0.41, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.779, MAE_h(kcal/mol): 0.624)"""),
+)
+
+entry(
+ index = 1688,
+ label = "C=CCC + [O]O <=> [CH2]C(CC)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07285742936216193,B_g=-2.0325676065250198,E_g=0.049194708567206834,L_g=0.15617542333845053,A_g=1.0649104012777932,K_g=-0.27220925464679757,S_h=0.3559450847709525,B_h=-2.7409611472505704,E_h=0.057294865468825604,L_h=0.16860055089342232,A_h=1.4441443534482414,K_h=-1.2412885688885165,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.371, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.505, MAE_h(kcal/mol): 0.41200000000000003)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.371, MAE_g(kcal/mol): 0.299, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.505, MAE_h(kcal/mol): 0.41200000000000003)"""),
+)
+
+entry(
+ index = 1689,
+ label = "C=CCCO + [H] <=> C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.01922779326058464,B_g=-0.1469243844155158,E_g=-0.12208879022304124,L_g=0.11172352157246301,A_g=0.1187021182877038,K_g=1.2042624218205742,S_h=0.10209129879533446,B_h=-0.2621665261805372,E_h=0.025378048138827304,L_h=0.20361815226811264,A_h=0.1306434355661988,K_h=-0.09014998151683945,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.19399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.038, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.292, MAE_h(kcal/mol): 0.19399999999999998)"""),
+)
+
+entry(
+ index = 1690,
+ label = "C=CCCO + [O]O <=> OCC[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.10689274926642975,B_g=-5.046771603103951,E_g=0.16397503143195494,L_g=0.5045261528604645,A_g=0.6806330934980114,K_g=-1.6291797928244052,S_h=0.4249540232975037,B_h=-8.28543424613317,E_h=0.30312179913016984,L_h=0.7010484210735844,A_h=0.9373970715912245,K_h=-3.5781288565650224,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.65, MAE_g(kcal/mol): 0.514, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.228, MAE_h(kcal/mol): 0.95)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.65, MAE_g(kcal/mol): 0.514, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.228, MAE_h(kcal/mol): 0.95)"""),
+)
+
+entry(
+ index = 1691,
+ label = "C=CCCO + [O]O <=> [CH2]C(CCO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05770537115795741,B_g=-5.006695985202458,E_g=0.1208939254493183,L_g=0.47299784984339455,A_g=0.9151344684145583,K_g=-1.5190469807973281,S_h=0.6360785653097409,B_h=-8.189427228087467,E_h=0.2330646050045856,L_h=0.6558708038928818,A_h=1.2058824532008978,K_h=-3.3571668389310902,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6609999999999999, MAE_g(kcal/mol): 0.507, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.207, MAE_h(kcal/mol): 0.9279999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.6609999999999999, MAE_g(kcal/mol): 0.507, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.207, MAE_h(kcal/mol): 0.9279999999999999)"""),
+)
+
+entry(
+ index = 1692,
+ label = "C=CCO + [CH3] <=> CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.24598087329476864,B_g=-0.08331066351755412,E_g=-0.26863199078436323,L_g=0.17281556466575787,A_g=0.35620898128539435,K_g=0.2932036884623959,S_h=-0.27271505629947784,B_h=-0.0303847514544885,E_h=-0.06502849943371954,L_h=0.20372810914913012,A_h=0.6263217247341258,K_h=-0.7534245487315628,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.1)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.042, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.14, MAE_h(kcal/mol): 0.1)"""),
+)
+
+entry(
+ index = 1693,
+ label = "C=CCOO + [CH2]OO <=> [CH2]C(COO)COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.9207276084289792,B_g=-1.820827305979085,E_g=-0.4289857756014768,L_g=0.5239005552957391,A_g=0.7507782531284095,K_g=-1.5424531355365756,S_h=-0.7939766464507982,B_h=-3.8029686868695025,E_h=-0.5024736244148055,L_h=0.7717506955678043,A_h=1.7887345576394587,K_h=-3.4138019631138112,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.382)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.23399999999999999, MAE_g(kcal/mol): 0.166, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.557, MAE_h(kcal/mol): 0.382)"""),
+)
+
+entry(
+ index = 1694,
+ label = "C=CCOO + [O]O <=> OOC[CH]COO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.006113602584570183,B_g=-5.424136288297103,E_g=0.008561975801892054,L_g=0.550187580317644,A_g=1.3068448613511197,K_g=-1.8170594501895536,S_h=0.7762515972307853,B_h=-8.854483096774674,E_h=0.16976609383220728,L_h=0.7154674334043394,A_h=2.3088159439345253,K_h=-3.8053584164169485,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.713, MAE_g(kcal/mol): 0.55, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.334, MAE_h(kcal/mol): 1.04)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.713, MAE_g(kcal/mol): 0.55, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.334, MAE_h(kcal/mol): 1.04)"""),
+)
+
+entry(
+ index = 1695,
+ label = "C=CCOO + [O]O <=> [CH2]C(COO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03749529642695022,B_g=-6.185221166406214,E_g=0.020789180971032422,L_g=0.6119173733208401,A_g=1.6225310667522166,K_g=-1.9734621177487737,S_h=1.08913023693657,B_h=-10.757631454342155,E_h=-0.003569933403699855,L_h=0.8427315274939351,A_h=2.805241939893371,K_h=-4.1633413687160905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.818, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5719999999999998, MAE_h(kcal/mol): 1.21)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.818, MAE_g(kcal/mol): 0.606, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.5719999999999998, MAE_h(kcal/mol): 1.21)"""),
+)
+
+entry(
+ index = 1696,
+ label = "C=CO + C[CH2] <=> CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07925691983737748,B_g=-0.4075075315094017,E_g=-0.3063545314320828,L_g=0.1195597819596399,A_g=0.41713242382779575,K_g=0.16335927289825722,S_h=0.3048737787677145,B_h=-0.5051419113941623,E_h=-0.17027922594362202,L_h=0.10144621842669876,A_h=0.5920591606090887,K_h=-0.8268537538750156,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.107)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.095, MAE_g(kcal/mol): 0.066, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.107)"""),
+)
+
+entry(
+ index = 1697,
+ label = "C=CO + C[CH2] <=> [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.012908937831448551,B_g=-0.6208092197657844,E_g=-0.2616387331516534,L_g=0.13355362768379397,A_g=0.6178110621433753,K_g=0.118291612598572,S_h=0.2493822061475751,B_h=-0.9183745311752058,E_h=-0.18037326762102388,L_h=0.12393606582413438,A_h=0.9058174553630131,K_h=-0.8357089480262874,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.147)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.135, MAE_g(kcal/mol): 0.092, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.192, MAE_h(kcal/mol): 0.147)"""),
+)
+
+entry(
+ index = 1698,
+ label = "C=CO + [CH3] <=> [CH2]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06563692750868275,B_g=-0.4933618642078262,E_g=-0.2458855773312202,L_g=0.11417189478978489,A_g=0.5839516732487354,K_g=0.4504786806110209,S_h=0.32275276762115174,B_h=-0.7526621810231753,E_h=-0.17445025696355063,L_h=0.11996295719003722,A_h=0.7512254111112138,K_h=-0.526231641173309,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.09699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11800000000000001, MAE_g(kcal/mol): 0.078, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.125, MAE_h(kcal/mol): 0.09699999999999999)"""),
+)
+
+entry(
+ index = 1699,
+ label = "C=CO + [H] <=> C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.36142826790435595,B_g=0.5125016919635969,E_g=-0.22779400517448256,L_g=0.01842144279979001,A_g=-0.051019992792096486,K_g=1.5317799876191487,S_h=0.5129855022400736,B_h=0.8407889559292935,E_h=0.09778831951818494,L_h=0.009668875070801044,A_h=-0.22796993618411043,K_h=0.554248654456555,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33299999999999996, MAE_h(kcal/mol): 0.223)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33299999999999996, MAE_h(kcal/mol): 0.223)"""),
+)
+
+entry(
+ index = 1700,
+ label = "C=CO + [H] <=> [CH2]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.34444359501652727,B_g=0.24206640833054743,E_g=-0.18027797165747544,L_g=0.02050329308038705,A_g=0.15229028020916732,K_g=1.5069957066378157,S_h=0.5435022019517831,B_h=0.4258043565107053,E_h=0.058101215929620226,L_h=0.02331085877569926,A_h=0.013979184806685058,K_h=0.5114461059058293,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.149)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.064, MAE_g(kcal/mol): 0.054000000000000006, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.149)"""),
+)
+
+entry(
+ index = 1701,
+ label = "C=COO + [CH3] <=> [CH2]C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.08358189049073049,B_g=-0.5312530054064393,E_g=-0.21816178239735395,L_g=0.11735331388055643,A_g=0.5745540251511108,K_g=0.3701075310459999,S_h=0.2869214853269323,B_h=-0.739166806492967,E_h=-0.08941693564338979,L_h=0.12877416858890214,A_h=0.6740723329306368,K_h=-0.5838637077439214,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.096)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.125, MAE_g(kcal/mol): 0.087, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.131, MAE_h(kcal/mol): 0.096)"""),
+)
+
+entry(
+ index = 1702,
+ label = "C=O + CC[CH]O <=> CCC(O)C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1590709545385767,B_g=-3.195266327320998,E_g=0.06702971466823711,L_g=0.29258059946996373,A_g=1.870065997298699,K_g=-0.4607120010043782,S_h=0.8088941299754989,B_h=-5.636800226643585,E_h=0.11300635185099991,L_h=0.4214207421874763,A_h=3.304035674023459,K_h=-1.9678763081930872,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.435, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.816, MAE_h(kcal/mol): 0.615)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.435, MAE_g(kcal/mol): 0.301, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.816, MAE_h(kcal/mol): 0.615)"""),
+)
+
+entry(
+ index = 1703,
+ label = "C=O + C[CH]CO <=> CC(C[O])CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2638818535244094,B_g=-1.8632633315930858,E_g=-0.1622743650055517,L_g=0.1708216798899748,A_g=1.2306007600536204,K_g=0.049253352237082805,S_h=1.0498169867434646,B_h=-4.253872534087124,E_h=-0.3497068643878959,L_h=0.33388773443885217,A_h=2.151365020776272,K_h=-1.3784561127284172,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.429)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.322, MAE_g(kcal/mol): 0.203, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.624, MAE_h(kcal/mol): 0.429)"""),
+)
+
+entry(
+ index = 1704,
+ label = "C=O + C[CH]C <=> CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5416622568094244,B_g=-0.33506793829510606,E_g=0.13159639520168337,L_g=-0.15309663066996196,A_g=1.8759376947450306,K_g=1.2986054257335455,S_h=0.9353445431455655,B_h=-0.8957673964380181,E_h=0.06436142768888034,L_h=-0.14218157761429648,A_h=3.0882123079624098,K_h=0.6304267816254441,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.436, MAE_h(kcal/mol): 0.313)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.293, MAE_g(kcal/mol): 0.204, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.436, MAE_h(kcal/mol): 0.313)"""),
+)
+
+entry(
+ index = 1705,
+ label = "C=O + [CH3] <=> [CH2]OC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3739486914228762,B_g=-0.3712804044435194,E_g=-0.32396962377107824,L_g=0.20815570622476606,A_g=0.4698384221288265,K_g=0.3009813051796968,S_h=-0.09448228262892697,B_h=-0.6305807212588685,E_h=-0.34965555117675434,L_h=0.15042834369060518,A_h=0.9479675930863687,K_h=-0.5328950281629665,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.152)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.1, MAE_g(kcal/mol): 0.073, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.22899999999999998, MAE_h(kcal/mol): 0.152)"""),
+)
+
+entry(
+ index = 1706,
+ label = "C=O + [CH]=O <=> [CH2]OC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.4033658223244112,B_g=-0.338461940689178,E_g=-0.4278495544976299,L_g=0.2738805992382628,A_g=0.2507016887197845,K_g=0.03279647237813788,S_h=-0.2654945544459987,B_h=-0.31433007053521517,E_h=-0.3105915365806219,L_h=0.25468945827135064,A_h=0.4731297981006155,K_h=-0.8863844092578625,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.134)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.115, MAE_g(kcal/mol): 0.094, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.162, MAE_h(kcal/mol): 0.134)"""),
+)
+
+entry(
+ index = 1707,
+ label = "C=O + [H] <=> C[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07324594367509026,B_g=-0.07350984018953212,E_g=-0.10865205936270894,L_g=0.06771144733054531,A_g=0.3112512778667266,K_g=1.268440588041092,S_h=0.2992366560008866,B_h=-0.16726640740374393,E_h=-9.52959635484561e-05,L_h=0.09583841749480886,A_h=0.32284073312596573,K_h=0.19710870491187968,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.165, MAE_h(kcal/mol): 0.11)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.053, MAE_g(kcal/mol): 0.043, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.165, MAE_h(kcal/mol): 0.11)"""),
+)
+
+entry(
+ index = 1708,
+ label = "C=O + [H] <=> [CH2]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3592364607427415,B_g=-0.021514896385747585,E_g=-0.23280803894887822,L_g=0.20324429887265336,A_g=-0.02037134482316611,K_g=0.8350785285751207,S_h=-0.27328683208076854,B_h=0.0924077628070644,E_h=-0.09272297253264779,L_h=0.21885817597713114,A_h=0.15249553305373326,K_h=-0.3827965551154136,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.135)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.068, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.203, MAE_h(kcal/mol): 0.135)"""),
+)
+
+entry(
+ index = 1709,
+ label = "C=[C]C + C=O <=> C=C(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11231728872995723,B_g=-0.26018730232222315,E_g=-0.08973214536897314,L_g=0.0245277149256257,A_g=1.5022528998365963,K_g=0.8050236477636845,S_h=0.4268819339446763,B_h=-0.6087212933125995,E_h=-0.21401274275362886,L_h=0.04526558268551664,A_h=2.522806695311951,K_h=0.06363571227416517,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.222)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.187, MAE_g(kcal/mol): 0.126, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.319, MAE_h(kcal/mol): 0.222)"""),
+)
+
+entry(
+ index = 1710,
+ label = "CC(C)=C=O + [H] <=> C[C](C)C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.40786672398739204,B_g=0.149731950110828,E_g=-0.053292434999790445,L_g=-0.021023755650536314,A_g=0.10033931915778976,K_g=1.5142675217024364,S_h=0.5449316414050099,B_h=0.2400212103436229,E_h=0.21831572203077837,L_h=0.027130027776372,A_h=-0.11302834322720343,K_h=0.4115759361070474,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.19899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.19899999999999998)"""),
+)
+
+entry(
+ index = 1711,
+ label = "CC(C)=CO + [H] <=> CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.3347014153583812,B_g=2.9150448812773955,E_g=-0.007301136899558636,L_g=-0.09777365860071595,A_g=-0.1950928287598931,K_g=2.211511434692817,S_h=-0.8976586547915184,B_h=4.154508165941023,E_h=0.30413340243553033,L_h=-0.0036359075323103246,A_h=-0.5679712732075328,K_h=1.44001730518072,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.33799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.909, MAE_h(kcal/mol): 0.73)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.402, MAE_g(kcal/mol): 0.33799999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.909, MAE_h(kcal/mol): 0.73)"""),
+)
+
+entry(
+ index = 1712,
+ label = "CC(C)=CO + [H] <=> C[C](C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.5682058478870367,B_g=1.6831832823214419,E_g=-0.07027710788761912,L_g=0.05918612382232572,A_g=0.05068279169030964,K_g=1.4006234199415353,S_h=-1.1662393323647402,B_h=2.6948818836455244,E_h=0.16371113491751307,L_h=0.1589096844464178,A_h=-0.18263104891124884,K_h=0.48083411023057143,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.705, MAE_h(kcal/mol): 0.55)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.267, MAE_g(kcal/mol): 0.217, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.705, MAE_h(kcal/mol): 0.55)"""),
+)
+
+entry(
+ index = 1713,
+ label = "CC(C)=CO + [O]O <=> CC(C)([CH]O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4035124314991011,B_g=-2.9897275948644473,E_g=0.18227185643325852,L_g=0.11659094617216877,A_g=2.169148713666161,K_g=-0.7849015385374913,S_h=0.9725319603056668,B_h=-4.139128863516049,E_h=0.2052675054833744,L_h=0.07665460698663118,A_h=3.2070023917549273,K_h=-1.842276228236222,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5479999999999999, MAE_g(kcal/mol): 0.40700000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.58)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.5479999999999999, MAE_g(kcal/mol): 0.40700000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.58)"""),
+)
+
+entry(
+ index = 1714,
+ label = "CC(C)=CO + [O]O <=> C[C](C)C(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6733686088921252,B_g=-3.4790723676857698,E_g=0.3267112153377799,L_g=0.3775259552853106,A_g=2.178392422130361,K_g=-1.196953954462281,S_h=-0.5719297209241611,B_h=-5.988339705715104,E_h=0.09648349786344455,L_h=0.593393304098767,A_h=3.5548986328354024,K_h=-2.7415329230318606,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.556, MAE_g(kcal/mol): 0.396, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.02, MAE_h(kcal/mol): 0.7490000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.556, MAE_g(kcal/mol): 0.396, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.02, MAE_h(kcal/mol): 0.7490000000000001)"""),
+)
+
+entry(
+ index = 1715,
+ label = "CC(C)=O + [CH2]O <=> CC(C)([O])CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.022555821526046106,B_g=-2.5075300193092596,E_g=-0.21967918735539477,L_g=0.3098951430008447,A_g=2.0607678812766284,K_g=-1.1898140876548813,S_h=0.43580310222455865,B_h=-3.5556023568739143,E_h=0.11137165955320717,L_h=0.2840552759617441,A_h=3.6167457131783505,K_h=-2.5042899565486123,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.391, MAE_g(kcal/mol): 0.293, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.514)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.391, MAE_g(kcal/mol): 0.293, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.675, MAE_h(kcal/mol): 0.514)"""),
+)
+
+entry(
+ index = 1716,
+ label = "CC(C)=O + [CH3] <=> CC(C)(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16558040189480971,B_g=-0.22734684719167825,E_g=-0.1416757759616162,L_g=0.017937632523313235,A_g=1.7012088803495693,K_g=0.6607455589513221,S_h=0.3462615487826825,B_h=-0.3724679387585079,E_h=-0.03424057274883372,L_h=0.0434036461669545,A_h=2.7074242985402477,K_h=-0.22653316627214914,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.129, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.124)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.18899999999999997, MAE_g(kcal/mol): 0.129, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.17300000000000001, MAE_h(kcal/mol): 0.124)"""),
+)
+
+entry(
+ index = 1717,
+ label = "CC(C)=O + [CH]=O <=> CC(C)([O])C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0017959623899516724,B_g=-0.2171721704681969,E_g=-0.3408003570254825,L_g=0.12678028381311907,A_g=1.5575318891534353,K_g=0.20106715262850788,S_h=0.1802999630336789,B_h=-0.19971101776262598,E_h=-0.2493748756888406,L_h=0.1330111737374412,A_h=2.3527034003779566,K_h=-0.6132808386454565,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.129)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.196, MAE_g(kcal/mol): 0.134, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.179, MAE_h(kcal/mol): 0.129)"""),
+)
+
+entry(
+ index = 1718,
+ label = "CC(C)=O + [H] <=> CC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04338898524948551,B_g=-0.12904539556207853,E_g=-0.23574022244267687,L_g=0.12031481920929306,A_g=0.4343443409363938,K_g=0.8525323508219572,S_h=0.11680352947546918,B_h=-0.15009114258881834,E_h=-0.096549471992055,L_h=0.14557558000836843,A_h=0.5630232135617476,K_h=-0.33483336361560223,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.10400000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.051, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.159, MAE_h(kcal/mol): 0.10400000000000001)"""),
+)
+
+entry(
+ index = 1719,
+ label = "CC(C)=O + [H] <=> C[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.17633418485831626,B_g=0.07387636312625695,E_g=-0.3202457507339539,L_g=0.2033762471298743,A_g=-0.3374649983012865,K_g=0.9565955430168713,S_h=-0.22332242534643956,B_h=0.43734982901753744,E_h=-0.00056444532255624,L_h=0.23921485988282828,A_h=-0.6595873464712716,K_h=-0.294061352134332,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.24600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.094, MAE_g(kcal/mol): 0.07400000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.382, MAE_h(kcal/mol): 0.24600000000000002)"""),
+)
+
+entry(
+ index = 1720,
+ label = "CC(C)C=O + [H] <=> CC(C)C[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.011120305900231376,B_g=-0.07238094954441965,E_g=-0.2028777759359285,L_g=0.09836742575821017,A_g=0.33014187002552436,K_g=0.9528790004384814,S_h=0.16413630152411388,B_h=-0.07012316825419469,E_h=-0.06709568879684759,L_h=0.1360679750297263,A_h=0.36128165872966606,K_h=-0.24462473842888677,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.11699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.033, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.11699999999999999)"""),
+)
+
+entry(
+ index = 1721,
+ label = "CC(C)C=O + [H] <=> CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2997058053598944,B_g=0.042523991118814906,E_g=-0.28997828661921743,L_g=0.2128765216497819,A_g=-0.09728984832423918,K_g=0.803968061705917,S_h=-0.27871870200303056,B_h=0.309294045384616,E_h=-0.06022704896262424,L_h=0.24529181017372595,A_h=-0.15557432572222182,K_h=-0.4679471637753264,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.204)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08199999999999999, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.318, MAE_h(kcal/mol): 0.204)"""),
+)
+
+entry(
+ index = 1722,
+ label = "CC=C(C)O + [H] <=> CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3511656256760607,B_g=2.228312846112283,E_g=0.006018306621021727,L_g=-0.1838332441437063,A_g=-0.2098123898987623,K_g=2.364637387197717,S_h=-0.031110466869203664,B_h=3.596389029272653,E_h=0.3704887149001938,L_h=-0.1430099194512946,A_h=-0.8492263139326992,K_h=1.7024990410868404,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.805, MAE_h(kcal/mol): 0.652)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.29100000000000004, MAE_g(kcal/mol): 0.254, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.805, MAE_h(kcal/mol): 0.652)"""),
+)
+
+entry(
+ index = 1723,
+ label = "CC=C(C)O + [H] <=> C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.004896746434643743,B_g=1.5256224022821714,E_g=-0.11456773956144771,L_g=-0.034343199171116674,A_g=0.009998745713853393,K_g=1.7093310286273913,S_h=-0.36163352074892186,B_h=2.7018384889845612,E_h=0.13768067595131556,L_h=-0.0007696981671221453,A_h=-0.4358764068119037,K_h=0.9589999334817861,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.47700000000000004)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.16399999999999998, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.603, MAE_h(kcal/mol): 0.47700000000000004)"""),
+)
+
+entry(
+ index = 1724,
+ label = "CC=C(C)O + [O]O <=> C[CH]C(C)(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6721737441184022,B_g=-3.388299297176497,E_g=0.26880792179399116,L_g=0.10279502283384613,A_g=2.1432795247921224,K_g=-0.4763038867326525,S_h=1.2209758677352265,B_h=-4.665675714414942,E_h=0.3949871079908815,L_h=0.07260086330645454,A_h=3.0350298298436362,K_h=-1.5580230298886466,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.58, MAE_g(kcal/mol): 0.41100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.634)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.58, MAE_g(kcal/mol): 0.41100000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8540000000000001, MAE_h(kcal/mol): 0.634)"""),
+)
+
+entry(
+ index = 1725,
+ label = "CC=C(C)O + [O]O <=> C[C](O)C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6349203528296904,B_g=-2.4829656520899617,E_g=0.3045072558309897,L_g=0.010717130669834062,A_g=2.0553286808956317,K_g=-0.01919847142564665,S_h=0.9565735516406677,B_h=-3.17943986691322,E_h=0.3790726820782893,L_h=-0.0321220701745642,A_h=2.8841836500051645,K_h=-0.7202029097468241,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47700000000000004, MAE_g(kcal/mol): 0.337, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.45299999999999996)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.47700000000000004, MAE_g(kcal/mol): 0.337, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.596, MAE_h(kcal/mol): 0.45299999999999996)"""),
+)
+
+entry(
+ index = 1726,
+ label = "CC=C=O + [CH3] <=> CC=C(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.47342301644999535,B_g=-0.0833619767286956,E_g=-0.17485343219394794,L_g=-0.026726852545974684,A_g=0.49424884971470023,K_g=1.1540267881130688,S_h=0.7761049880560954,B_h=-0.25555445240202124,E_h=-0.05416475958919554,L_h=0.004068404597645625,A_h=0.3029678594967454,K_h=0.4062540230658028,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.133, MAE_h(kcal/mol): 0.102)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.152, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.133, MAE_h(kcal/mol): 0.102)"""),
+)
+
+entry(
+ index = 1727,
+ label = "CC=CC + [H] <=> C[CH]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.22063947744961385,B_g=0.041827597539037725,E_g=-0.06371634732024464,L_g=0.019491689775026518,A_g=0.08959286665301772,K_g=1.3539503891789952,S_h=0.3639792675439608,B_h=0.09816950337237877,E_h=0.18476421240298735,L_h=0.0492606826958173,A_h=-0.06334249392478532,K_h=0.21190890109682836,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.261, MAE_h(kcal/mol): 0.16699999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.059000000000000004, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.261, MAE_h(kcal/mol): 0.16699999999999998)"""),
+)
+
+entry(
+ index = 1728,
+ label = "CC=CC + [OH] <=> C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6503802903007437,B_g=-2.577491917471295,E_g=0.9641679068896063,L_g=-0.19962305225781202,A_g=4.170649836074385,K_g=1.0800258071883253,S_h=1.266094841246053,B_h=-5.13271390130719,E_h=1.1403481521144978,L_h=-0.06974931485873535,A_h=6.9726150609134345,K_h=-0.27285433501543327,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.43, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.879, MAE_h(kcal/mol): 0.682)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.593, MAE_g(kcal/mol): 0.43, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.879, MAE_h(kcal/mol): 0.682)"""),
+)
+
+entry(
+ index = 1729,
+ label = "CC=CC + [O]O <=> C[CH]C(C)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.7048309377805848,B_g=-2.8035559343844367,E_g=0.18341540799583997,L_g=0.018003606651923704,A_g=1.4944826135780296,K_g=-0.03685021605831452,S_h=1.360709072132201,B_h=-3.9739736282278404,E_h=0.09530329400719058,L_h=-0.019953508675299804,A_h=1.6673275000787255,K_h=-0.8766935428108581,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.52, MAE_g(kcal/mol): 0.384, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.718, MAE_h(kcal/mol): 0.562)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.52, MAE_g(kcal/mol): 0.384, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.718, MAE_h(kcal/mol): 0.562)"""),
+)
+
+entry(
+ index = 1730,
+ label = "CC=CC=O + [H] <=> C[CH]CC=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24981470321291038,B_g=0.13004966840870455,E_g=-0.1369549605366004,L_g=0.02615507676468395,A_g=0.1555669952634873,K_g=1.303450858957048,S_h=0.3914758182570576,B_h=0.2732135274934236,E_h=0.07369310165789454,L_h=0.06545366604032034,A_h=-0.04979580618343555,K_h=0.1100228551460598,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28600000000000003, MAE_h(kcal/mol): 0.17600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.063, MAE_g(kcal/mol): 0.051, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28600000000000003, MAE_h(kcal/mol): 0.17600000000000002)"""),
+)
+
+entry(
+ index = 1731,
+ label = "CC=CCO + [H] <=> C[CH]CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.051870326005298104,B_g=-0.848617885857736,E_g=-0.23227291546125994,L_g=0.1844416722186695,A_g=0.13347299263771448,K_g=0.6350889533805839,S_h=0.3140954958557113,B_h=-1.4326795159874888,E_h=-0.0037458644133277737,L_h=0.24675790192062527,A_h=-0.024762289605129592,K_h=-0.8457003632814062,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.308, MAE_h(kcal/mol): 0.23600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11699999999999999, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.308, MAE_h(kcal/mol): 0.23600000000000002)"""),
+)
+
+entry(
+ index = 1732,
+ label = "CC=CCO + [O]O <=> CC([CH]CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.06286601410704304,B_g=-3.8526472057131858,E_g=0.3165292081555642,L_g=0.32328789110877,A_g=1.0460491309539335,K_g=-0.844234271534507,S_h=0.3587159981725922,B_h=-6.723753317336009,E_h=0.2957326967257972,L_h=0.5206165097826846,A_h=1.6267020977721454,K_h=-2.6527170850046997,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.53, MAE_g(kcal/mol): 0.402, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.003, MAE_h(kcal/mol): 0.778)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.53, MAE_g(kcal/mol): 0.402, fit_method_h: robustLS, RMSE_h(kcal/mol): 1.003, MAE_h(kcal/mol): 0.778)"""),
+)
+
+entry(
+ index = 1733,
+ label = "CC=CCO + [O]O <=> C[CH]C(CO)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07652265872941025,B_g=-3.654702828505574,E_g=0.14401419229792065,L_g=0.29477240663157817,A_g=1.7940198183870308,K_g=-0.8867655931120564,S_h=0.7616713148078715,B_h=-6.478622777254442,E_h=-0.05830646877418613,L_h=0.49052497667757605,A_h=2.79170991306949,K_h=-2.660941859704805,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.528, MAE_g(kcal/mol): 0.379, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9329999999999999, MAE_h(kcal/mol): 0.7020000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.528, MAE_g(kcal/mol): 0.379, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.9329999999999999, MAE_h(kcal/mol): 0.7020000000000001)"""),
+)
+
+entry(
+ index = 1734,
+ label = "CC=CO + [CH3] <=> CC(C)[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.14611070349598668,B_g=-0.07589223927824353,E_g=-0.2463327353140245,L_g=0.1356134865881875,A_g=0.36205868735552266,K_g=0.3130399097979437,S_h=-0.11775648911095374,B_h=-0.06709568879684759,E_h=-0.03973841679970619,L_h=0.16722975511007146,A_h=0.5111235657215115,K_h=-0.8068709233647777,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.094)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.055999999999999994, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.13699999999999998, MAE_h(kcal/mol): 0.094)"""),
+)
+
+entry(
+ index = 1735,
+ label = "CC=CO + [CH3] <=> C[CH]C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.565141716136017,B_g=0.9152370948368412,E_g=-0.16074962958877645,L_g=0.08891113399070953,A_g=0.6008043978793431,K_g=0.6636630815276516,S_h=-0.8573044794581145,B_h=1.4261260858788487,E_h=-0.20770854824196178,L_h=0.17087299310111626,A_h=0.7016055359374062,K_h=-0.20193214675917845,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.318)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.188, MAE_g(kcal/mol): 0.155, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.318)"""),
+)
+
+entry(
+ index = 1736,
+ label = "CC=CO + [H] <=> CC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3540098436650454,B_g=0.4475831494108948,E_g=-0.15613877104477805,L_g=0.007044570843851253,A_g=-0.029541748700021388,K_g=1.3964377280041373,S_h=0.31495315952764735,B_h=0.9247960130266248,E_h=0.2533919670753447,L_h=0.018384790506117528,A_h=-0.18812156250338682,K_h=0.3600208198273326,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38799999999999996, MAE_h(kcal/mol): 0.248)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.083, MAE_g(kcal/mol): 0.07, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.38799999999999996, MAE_h(kcal/mol): 0.248)"""),
+)
+
+entry(
+ index = 1737,
+ label = "CC=O + C[CH]O <=> CC([O])C(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05233214490557138,B_g=-3.2232980015217136,E_g=-0.008261426993777694,L_g=0.3528809530199329,A_g=1.9148331087902695,K_g=-1.0644852346711924,S_h=0.38103724501913444,B_h=-5.7321768252381196,E_h=0.12570270637914807,L_h=0.5430477135102443,A_h=3.5550305810926233,K_h=-2.828464833164256,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7959999999999999, MAE_h(kcal/mol): 0.565)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.42, MAE_g(kcal/mol): 0.28800000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.7959999999999999, MAE_h(kcal/mol): 0.565)"""),
+)
+
+entry(
+ index = 1738,
+ label = "CC=O + [CH2]CO <=> CC([O])CCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.09398381143498119,B_g=0.7573463441545185,E_g=-0.24596621237729965,L_g=0.03258388907483749,A_g=1.3790058971335046,K_g=0.5736303873505643,S_h=0.019110505920832695,B_h=1.0589947210790545,E_h=-0.20363281318558166,L_h=0.051555116279714736,A_h=2.14557395837602,K_h=-0.08171262351343385,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.218)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.22399999999999998, MAE_g(kcal/mol): 0.14800000000000002, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.284, MAE_h(kcal/mol): 0.218)"""),
+)
+
+entry(
+ index = 1739,
+ label = "CC=O + [CH]=C <=> C=CC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.05797659813113378,B_g=-0.12096723003666326,E_g=-0.17281556466575787,L_g=0.042963818642884705,A_g=1.397478653144436,K_g=0.613126899012032,S_h=0.34566778162518824,B_h=-0.36400125892016433,E_h=-0.21369753302804553,L_h=0.04416601387534215,A_h=2.2905191189332217,K_h=-0.10788969165432129,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.11800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.17800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.174, MAE_g(kcal/mol): 0.11800000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.249, MAE_h(kcal/mol): 0.17800000000000002)"""),
+)
+
+entry(
+ index = 1740,
+ label = "CC=O + [H] <=> CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.002880870282657172,B_g=-0.09961360374307461,E_g=-0.17348996686933155,L_g=0.09668142024927595,A_g=0.38316307805213845,K_g=1.0237791973185328,S_h=0.1861716604800107,B_h=-0.1464918873501805,E_h=-0.06346711172327174,L_h=0.1384283827422342,A_h=0.4790014955469472,K_h=-0.14160980183300573,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.115)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.045, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.115)"""),
+)
+
+entry(
+ index = 1741,
+ label = "CC=O + [H] <=> C[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.25806879974795355,B_g=0.08297346241576728,E_g=-0.2955567657161693,L_g=0.20781850512297922,A_g=-0.23535170812974857,K_g=0.7199463436911168,S_h=-0.2807712304486896,B_h=0.41284410546811523,E_h=-0.030472716959302454,L_h=0.2532600188181238,A_h=-0.32896899662800494,K_h=-0.5967653151166354,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.24100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.386, MAE_h(kcal/mol): 0.24100000000000002)"""),
+)
+
+entry(
+ index = 1742,
+ label = "CCC(C)=O + [H] <=> CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.15924688554820463,B_g=0.05803524180100976,E_g=-0.2899856170779519,L_g=0.1979003944552053,A_g=-0.40246417590006806,K_g=0.9369719049846237,S_h=-0.19015943003157684,B_h=0.40272807241450986,E_h=0.06867906788349885,L_h=0.22522101415867424,A_h=-0.8184897004589549,K_h=-0.31945406119062825,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.272)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.105, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.423, MAE_h(kcal/mol): 0.272)"""),
+)
+
+entry(
+ index = 1743,
+ label = "CCC=C=O + [H] <=> CC[CH]C=O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.16610086446495897,B_g=0.1970280698658002,E_g=-0.10815358816876317,L_g=0.041666327446878794,A_g=0.07911764112142204,K_g=1.3723425101438471,S_h=0.2729789528139197,B_h=0.3704740539827248,E_h=0.11906131076569414,L_h=0.08039314094122446,A_h=-0.049231360860879314,K_h=0.24170721585255714,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.266, MAE_h(kcal/mol): 0.16399999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.040999999999999995, MAE_g(kcal/mol): 0.032, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.266, MAE_h(kcal/mol): 0.16399999999999998)"""),
+)
+
+entry(
+ index = 1744,
+ label = "CCC=CO + [H] <=> CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06946342696808999,B_g=-0.2269876547136879,E_g=-0.019748255830733898,L_g=0.10813892725129418,A_g=0.09627091456014414,K_g=1.2511187140514766,S_h=0.14028298880206186,B_h=-0.6034067107300894,E_h=0.37593524573992476,L_h=0.18110631349447354,A_h=0.07940352901206742,K_h=0.007191180018541186,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.259)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.133, MAE_g(kcal/mol): 0.099, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.259)"""),
+)
+
+entry(
+ index = 1745,
+ label = "CCC=CO + [O]O <=> CCC([CH]O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.046093924522514755,B_g=-3.0912837701721636,E_g=0.2113811080679446,L_g=0.23678847804170985,A_g=1.906381089869395,K_g=-0.7401417575046548,S_h=0.44939377271831543,B_h=-4.434443724093979,E_h=0.24669192779201482,L_h=0.24165590264141565,A_h=2.7629451929953253,K_h=-1.7045955522849063,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.52, MAE_g(kcal/mol): 0.38299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.591)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.52, MAE_g(kcal/mol): 0.38299999999999995, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.77, MAE_h(kcal/mol): 0.591)"""),
+)
+
+entry(
+ index = 1746,
+ label = "CCC=CO + [O]O <=> CC[CH]C(O)OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.5651343856772826,B_g=-3.4490834610029437,E_g=0.2715055306082859,L_g=0.14667514881854293,A_g=2.0522645491446125,K_g=-0.4601695470580255,S_h=1.0916812365761748,B_h=-4.840690416701048,E_h=0.35430306201442524,L_h=0.14335445101181593,A_h=2.9112550341116608,K_h=-1.484637807497601,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.588, MAE_g(kcal/mol): 0.415, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8859999999999999, MAE_h(kcal/mol): 0.664)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.588, MAE_g(kcal/mol): 0.415, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.8859999999999999, MAE_h(kcal/mol): 0.664)"""),
+)
+
+entry(
+ index = 1747,
+ label = "CCC=O + [CH2]O <=> CCC([O])CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.13486577979726885,B_g=-2.9455982332827775,E_g=-0.21162301320618299,L_g=0.3342322659993735,A_g=1.3880370222944045,K_g=-1.039517692221497,S_h=0.8231958549665016,B_h=-4.854948158939644,E_h=-0.08278287048867035,L_h=0.38130114153357636,A_h=2.462345071669822,K_h=-2.446372002087354,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41, MAE_g(kcal/mol): 0.304, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.608)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.41, MAE_g(kcal/mol): 0.304, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.769, MAE_h(kcal/mol): 0.608)"""),
+)
+
+entry(
+ index = 1748,
+ label = "CCC=O + [H] <=> CCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03654233679146566,B_g=-0.06947808788555898,E_g=-0.17955958670149477,L_g=0.09145480317157985,A_g=0.4029333252590758,K_g=1.1086585790052692,S_h=0.2156767568863596,B_h=-0.08108953452100164,E_h=-0.05526432839937003,L_h=0.13464586603523393,A_h=0.4428696644446134,K_h=-0.014895492148497134,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.11699999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.04, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.11699999999999999)"""),
+)
+
+entry(
+ index = 1749,
+ label = "CCC=O + [H] <=> CC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.2624011008600411,B_g=0.15813265582056113,E_g=-0.306992281341984,L_g=0.20317832474404285,A_g=-0.16559506281227868,K_g=0.6929775860069036,S_h=-0.29505829452222354,B_h=0.5117979679250851,E_h=-0.06428812310153538,L_h=0.2586772278229168,A_h=-0.23810796061391928,K_h=-0.6338574363131884,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.233)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.092, MAE_g(kcal/mol): 0.077, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.37, MAE_h(kcal/mol): 0.233)"""),
+)
+
+entry(
+ index = 1750,
+ label = "CCCC=O + [H] <=> CCC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.21833771340698188,B_g=0.06419282713798692,E_g=-0.2795543742987632,L_g=0.18760109993323754,A_g=-0.09228314500857798,K_g=0.7722198449268121,S_h=-0.19518079426470705,B_h=0.32928420635358824,E_h=-0.03975307771717518,L_h=0.22575613764629246,A_h=-0.16570501969329615,K_h=-0.5144149416933005,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33, MAE_h(kcal/mol): 0.20800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.07200000000000001, MAE_g(kcal/mol): 0.061, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.33, MAE_h(kcal/mol): 0.20800000000000002)"""),
+)
+
+entry(
+ index = 1751,
+ label = "CCCC=O + [OH] <=> CCC[CH]OO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.05991916969577538,B_g=-1.631298295398675,E_g=-0.30724884739769137,L_g=0.2699368124391036,A_g=0.4225862851262613,K_g=-0.5487654713231517,S_h=0.44252513288409207,B_h=-2.25879289353032,E_h=-0.19717467904049013,L_h=0.20171223299714353,A_h=0.654426703522186,K_h=-1.7770424759579369,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.385)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.258, MAE_g(kcal/mol): 0.21600000000000003, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.47700000000000004, MAE_h(kcal/mol): 0.385)"""),
+)
+
+entry(
+ index = 1752,
+ label = "COC=O + [H] <=> COC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.026800157133319652,B_g=-0.026638887041160724,E_g=-0.16662132703510824,L_g=0.08914570867021342,A_g=0.27789769062476694,K_g=1.0917838629984578,S_h=0.2109706023788128,B_h=-0.02704206227155804,E_h=-0.03171889494416688,L_h=0.12032214966802757,A_h=0.24614214338692758,K_h=-0.020327362070759133,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.114)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.031, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.18, MAE_h(kcal/mol): 0.114)"""),
+)
+
+entry(
+ index = 1753,
+ label = "C[CH2] + C=C <=> [CH2]CCC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.04010493973643102,B_g=-0.18655284433420452,E_g=-0.21067005357069846,L_g=0.10565390174029982,A_g=0.44469494866950304,K_g=0.38697491659407673,S_h=0.06956605339037294,B_h=-0.19726997500403862,E_h=-0.08691724921492645,L_h=0.16920897896838552,A_h=0.4917491632862369,K_h=-0.7168162378114867,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.085, MAE_g(kcal/mol): 0.057999999999999996, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.152, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 1754,
+ label = "C[CH2] + C=O <=> CCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4009541014007617,B_g=-0.28327824733588747,E_g=0.06617205099630101,L_g=-0.08498200810901933,A_g=1.6645199343834136,K_g=1.2908571308511827,S_h=0.7579474417707472,B_h=-0.7729968735526688,E_h=-0.048754881043137036,L_h=-0.05000838948673596,A_h=2.7110528756138237,K_h=0.591296792900701,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.28)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.245, MAE_g(kcal/mol): 0.17, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.379, MAE_h(kcal/mol): 0.28)"""),
+)
+
+entry(
+ index = 1755,
+ label = "C[CH2] + CC=O <=> CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.277824386037422,B_g=-0.2423596266799273,E_g=-0.018560721515745445,L_g=-0.0486156023271816,A_g=1.8817434180627517,K_g=0.7974073011385426,S_h=0.5015353256967899,B_h=-0.5266861296148477,E_h=0.005204625701492602,L_h=-0.010335946815640236,A_h=3.1999651513698106,K_h=0.007220501853479173,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.196)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.221, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.275, MAE_h(kcal/mol): 0.196)"""),
+)
+
+entry(
+ index = 1756,
+ label = "C[CH]O + C=C <=> [CH2]CC(C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.15181380039142506,B_g=0.1491308524945993,E_g=-0.1152348113062869,L_g=0.0027342611079672397,A_g=0.4790674696755578,K_g=0.5224491244663088,S_h=0.3807293657522856,B_h=0.030047550352701652,E_h=-0.025121482083119925,L_h=0.045060329840950736,A_h=0.5686896581635135,K_h=-0.5370880505590985,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.08199999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.114, MAE_g(kcal/mol): 0.075, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.107, MAE_h(kcal/mol): 0.08199999999999999)"""),
+)
+
+entry(
+ index = 1757,
+ label = "C[O] + C=O <=> COC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.349384324203578,B_g=-0.29804912168589814,E_g=-0.35727922826063085,L_g=0.22502309177284277,A_g=0.44849212629397234,K_g=-0.0622869078670178,S_h=-0.21218745852873921,B_h=-0.3306623325956737,E_h=-0.31494582906891283,L_h=0.2289595481132675,A_h=0.8302111039754149,K_h=-1.0755908796539548,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.113)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.107, MAE_g(kcal/mol): 0.083, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.142, MAE_h(kcal/mol): 0.113)"""),
+)
+
+entry(
+ index = 1758,
+ label = "O=CO + C[CH]C <=> CC(C)C([O])O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.6185734298517629,B_g=-1.6101719133258554,E_g=0.10860807661030195,L_g=-0.0516577427019977,A_g=1.696539378135695,K_g=0.3657605690164435,S_h=1.1377165174288137,B_h=-2.6036616551534486,E_h=0.0429564881841502,L_h=-0.03484900082379694,A_h=2.3121439721999866,K_h=-0.5381216452406624,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38299999999999995, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.489, MAE_h(kcal/mol): 0.37200000000000005)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.38299999999999995, MAE_g(kcal/mol): 0.252, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.489, MAE_h(kcal/mol): 0.37200000000000005)"""),
+)
+
+entry(
+ index = 1759,
+ label = "O=CO + [CH2]CC <=> CCCC([O])O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3496188988830819,B_g=-1.2060730451279948,E_g=0.05903218418890129,L_g=0.0013414739484128818,A_g=1.4815956671227848,K_g=0.43496742992882603,S_h=0.7038486563101622,B_h=-1.9539997498086854,E_h=0.01963829894971645,L_h=0.034152607244019764,A_h=2.0759126090220983,K_h=-0.3945912632192186,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.306)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.302, MAE_g(kcal/mol): 0.198, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.39, MAE_h(kcal/mol): 0.306)"""),
+)
+
+entry(
+ index = 1760,
+ label = "O=CO + [H] <=> [O]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.07510054973491789,B_g=-0.2947797370903127,E_g=-0.14557558000836843,L_g=0.10492818632558466,A_g=0.4032705263608627,K_g=1.0989530516407957,S_h=0.26798691041572753,B_h=-0.3457190948363297,E_h=-0.012249196545343856,L_h=0.14281932752419768,A_h=0.36013077670835003,K_h=0.023105605931133352,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.126)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.079, MAE_g(kcal/mol): 0.055, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.185, MAE_h(kcal/mol): 0.126)"""),
+)
+
+entry(
+ index = 1761,
+ label = "[CH2]CC + C=O <=> CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3479402238328822,B_g=-0.211579030453776,E_g=0.04017824432377599,L_g=-0.06211097685738988,A_g=1.5340524298268425,K_g=1.1242064819811366,S_h=0.6378745276996927,B_h=-0.600239952556787,E_h=-0.0009822814704225475,L_h=-0.03643971036918271,A_h=2.5881577349299882,K_h=0.46002293788333554,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.331, MAE_h(kcal/mol): 0.24600000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.21600000000000003, MAE_g(kcal/mol): 0.152, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.331, MAE_h(kcal/mol): 0.24600000000000002)"""),
+)
+
+entry(
+ index = 1762,
+ label = "[CH2]O + C=CC <=> [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24488130448459414,B_g=-2.51494844354857,E_g=-0.19616307573512962,L_g=0.2454824021008229,A_g=0.6244011445456877,K_g=-0.654089502420399,S_h=0.9407470912328895,B_h=-3.9306872694006376,E_h=-0.00594500203367676,L_h=0.21207017118898727,A_h=0.9581056175161775,K_h=-2.0351039452471555,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.5579999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.336, MAE_g(kcal/mol): 0.271, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.5579999999999999)"""),
+)
+
+entry(
+ index = 1763,
+ label = "[CH2]O + O=C=O <=> O=[C]OCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=1.0597204364937698,B_g=-1.4689432953470438,E_g=-0.2879550800084963,L_g=0.04005362652528954,A_g=0.16712712868778848,K_g=0.38152838575434567,S_h=1.6862180922375234,B_h=-2.0214106483311163,E_h=0.03706279936161492,L_h=-0.05659847188904842,A_h=0.10735456816670302,K_h=-0.513168763708436,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.521, MAE_h(kcal/mol): 0.371)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.292, MAE_g(kcal/mol): 0.215, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.521, MAE_h(kcal/mol): 0.371)"""),
+)
+
+entry(
+ index = 1764,
+ label = "[CH3] + C=C(C)O <=> CC[C](C)O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.03723873037124284,B_g=-0.0349296358698764,E_g=-0.2988114893942858,L_g=0.11235394102362974,A_g=0.22167307213117785,K_g=0.4322991429494693,S_h=0.16327863785217778,B_h=0.06536570053550637,E_h=-0.0822477470010521,L_h=0.1128230903826375,A_h=0.3023960837154547,K_h=-0.5772956167178125,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.111)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.061, MAE_g(kcal/mol): 0.047, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.156, MAE_h(kcal/mol): 0.111)"""),
+)
+
+entry(
+ index = 1765,
+ label = "[CH3] + C=CCO <=> [CH2]C(C)CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.0748293227617415,B_g=-0.2559063144212771,E_g=-0.35057918897730095,L_g=0.1298004328117317,A_g=0.4288098445918489,K_g=0.3832657044744214,S_h=0.2786380669569511,B_h=-0.28682618936338383,E_h=-0.19424982600542598,L_h=0.13527628548640067,A_h=0.44709933913441796,K_h=-0.6166381887458559,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11599999999999999, MAE_h(kcal/mol): 0.098)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.09699999999999999, MAE_g(kcal/mol): 0.065, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11599999999999999, MAE_h(kcal/mol): 0.098)"""),
+)
+
+entry(
+ index = 1766,
+ label = "[CH3] + C=CO <=> CC[CH]O",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.14478389046504278,B_g=-0.2130891049530823,E_g=-0.3137802861301279,L_g=0.10665817458692585,A_g=0.27560325704086946,K_g=0.5496744482062292,S_h=0.3768662139992059,B_h=-0.21646844642968527,E_h=-0.1553470815014524,L_h=0.09039921711381234,A_h=0.30881756556687373,K_h=-0.3897604909131854,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.107)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.077, MAE_g(kcal/mol): 0.057, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.121, MAE_h(kcal/mol): 0.107)"""),
+)
+
+entry(
+ index = 1767,
+ label = "[CH3] + C=C <=> [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.08019521855539305,B_g=-0.16657734428270124,E_g=-0.19078251902400908,L_g=0.11749992305524637,A_g=0.34330737391268035,K_g=0.6053639432122001,S_h=0.05128388930653838,B_h=-0.20056868143456205,E_h=-0.07221967945226072,L_h=0.1707703666788333,A_h=0.3789627251972718,K_h=-0.46903940212676637,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.099)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.066, MAE_g(kcal/mol): 0.048, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.154, MAE_h(kcal/mol): 0.099)"""),
+)
+
+entry(
+ index = 1768,
+ label = "[CH3] + C=O <=> CC[O]",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.3238596668900608,B_g=-0.2287396343512326,E_g=0.004398275240697973,L_g=-0.03737800908719827,A_g=1.2912383147053765,K_g=1.3876265166052724,S_h=0.6929555946307002,B_h=-0.6644547710709773,E_h=-0.08759898187723462,L_h=-0.013466052695270294,A_h=1.9426082169352772,K_h=0.6823924035942905,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.306, MAE_h(kcal/mol): 0.22899999999999998)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.201, MAE_g(kcal/mol): 0.138, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.306, MAE_h(kcal/mol): 0.22899999999999998)"""),
+)
+
+entry(
+ index = 1769,
+ label = "[CH3] + CC=O <=> CC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.24471270393370076,B_g=-0.23318189234433753,E_g=-0.07351717064826663,L_g=-0.012219874710405866,A_g=1.501556506256819,K_g=0.9811525797774349,S_h=0.5237905984147216,B_h=-0.5364136483555249,E_h=-0.08884515986209907,L_h=0.02166883601917202,A_h=2.408077685658344,K_h=0.17128349879024807,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.168)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.193, MAE_g(kcal/mol): 0.133, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.23399999999999999, MAE_h(kcal/mol): 0.168)"""),
+)
+
+entry(
+ index = 1770,
+ label = "[CH3] + CCC=O <=> CCC(C)[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.26577311187790953,B_g=-0.1315377515318074,E_g=-0.12730074638326833,L_g=0.00046914935900778387,A_g=1.2497259268919223,K_g=0.8946458362516403,S_h=0.5058822877263464,B_h=-0.3247539828556693,E_h=-0.10332281586272989,L_h=0.04672434397368146,A_h=1.9031703489436855,K_h=0.09081705326167866,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.11900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.16899999999999998, MAE_g(kcal/mol): 0.114, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.168, MAE_h(kcal/mol): 0.11900000000000001)"""),
+)
+
+entry(
+ index = 1771,
+ label = "[CH]=C + C#C <=> [CH]=CC=C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.16385041363346847,B_g=-0.25399306469157346,E_g=-0.1631980028060983,L_g=0.14456397670300788,A_g=0.35246311687206655,K_g=0.629305221439066,S_h=0.033075029810048756,B_h=-0.4913386575971051,E_h=-0.0673009416414135,L_h=0.17767565880672914,A_h=0.6020798976991455,K_h=-0.2708164674872432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.091)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.067, MAE_g(kcal/mol): 0.05, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.11800000000000001, MAE_h(kcal/mol): 0.091)"""),
+)
+
+entry(
+ index = 1772,
+ label = "[CH]=C + C=O <=> C=CC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.11688416452154865,B_g=-0.09696730813992133,E_g=-0.07180917376312891,L_g=0.01629560976678599,A_g=1.2589842962735913,K_g=1.0930813541944637,S_h=0.4759593551721311,B_h=-0.4435587275656561,E_h=-0.19071654489539858,L_h=0.01189733452608802,A_h=1.9558543558685129,K_h=0.4759740160896002,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32299999999999995, MAE_h(kcal/mol): 0.22)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17800000000000002, MAE_g(kcal/mol): 0.12300000000000001, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.32299999999999995, MAE_h(kcal/mol): 0.22)"""),
+)
+
+entry(
+ index = 1773,
+ label = "[H] + C=C(C)C <=> C[C](C)C",
+ degeneracy = 1.0,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.21152771724263453,B_g=0.05547691170267043,E_g=-0.05926675886840519,L_g=0.027335280620937902,A_g=0.003980439092831666,K_g=1.3209340030388224,S_h=0.32817730708467924,B_h=0.16824135841543197,E_h=0.21388812495514248,L_h=0.045998628558966304,A_h=-0.06377499099012061,K_h=0.17675935146491706,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.17800000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.055999999999999994, MAE_g(kcal/mol): 0.045, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.28300000000000003, MAE_h(kcal/mol): 0.17800000000000002)"""),
+)
+
+entry(
+ index = 1774,
+ label = "[H] + C=C(O)CC <=> [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.2396326960306946,B_g=0.509950692323992,E_g=-0.17543253843397313,L_g=0.02953441824128689,A_g=-0.08619153380021127,K_g=1.347631533749859,S_h=0.3593757394586969,B_h=0.8104115349335396,E_h=0.1228071751790219,L_h=0.023538102996468652,A_h=-0.2653772671062467,K_h=0.32372038817410537,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.205)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.08, MAE_g(kcal/mol): 0.063, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.315, MAE_h(kcal/mol): 0.205)"""),
+)
+
+entry(
+ index = 1775,
+ label = "[H] + C=CCCO <=> [CH2]CCCO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.18557789332251648,B_g=0.042289416439311014,E_g=-0.16547044501379227,L_g=0.06713234109052006,A_g=0.1985674662000445,K_g=1.2752799060403774,S_h=0.35815155285003597,B_h=0.23974998337044653,E_h=0.06623802512491148,L_h=0.1076404560573484,A_h=-0.027166680070044483,K_h=0.12167828453390943,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.193)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.048, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.299, MAE_h(kcal/mol): 0.193)"""),
+)
+
+entry(
+ index = 1776,
+ label = "[H] + C=CCO <=> C[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.1712541769553101,B_g=-0.7668172968394882,E_g=-0.2560602540547015,L_g=0.17180396136039733,A_g=0.00040317523039731427,K_g=0.8001269013290407,S_h=0.49421952787976225,B_h=-1.2363551701602005,E_h=0.029585731452428366,L_h=0.22058083377973786,A_h=-0.19669819922274787,K_h=-0.6006431277871841,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11199999999999999, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36200000000000004, MAE_h(kcal/mol): 0.27699999999999997)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.11199999999999999, MAE_g(kcal/mol): 0.081, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.36200000000000004, MAE_h(kcal/mol): 0.27699999999999997)"""),
+)
+
+entry(
+ index = 1777,
+ label = "[H] + C=CC <=> C[CH]C",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.12300509756485332,B_g=0.07386903266752246,E_g=-0.08762830371217263,L_g=0.0555502162900154,A_g=0.012410466637502782,K_g=1.3242766922217528,S_h=0.23555696097431447,B_h=0.20243061795312423,E_h=0.14776738716998292,L_h=0.08683661416884698,A_h=-0.037172756242632374,K_h=0.17221446704952917,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.172)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.043, MAE_g(kcal/mol): 0.034, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.278, MAE_h(kcal/mol): 0.172)"""),
+)
+
+entry(
+ index = 1778,
+ label = "[H] + C=CC <=> [CH2]CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.06505782126865751,B_g=0.0583797733615311,E_g=-0.11797640287298863,L_g=0.07369310165789454,A_g=0.04821242709678429,K_g=1.245356973486162,S_h=0.1764588026568027,B_h=0.18671411442636346,E_h=0.10712732394593365,L_h=0.10247981310826278,A_h=0.015775147196636728,K_h=0.08102356039239116,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.155)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.033, MAE_g(kcal/mol): 0.025, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.253, MAE_h(kcal/mol): 0.155)"""),
+)
+
+entry(
+ index = 1779,
+ label = "[H] + CC=CCO <=> CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.183356764325964,B_g=-1.225029611415403,E_g=-0.2420224255781405,L_g=0.2028777759359285,A_g=0.13004966840870455,K_g=0.630617373552541,S_h=0.6330144335587213,B_h=-2.4246225310221026,E_h=-0.029380478607862463,L_h=0.304998396566201,A_h=0.000659741286104696,K_h=-0.9579809997176911,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.342)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.17300000000000001, MAE_g(kcal/mol): 0.127, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.413, MAE_h(kcal/mol): 0.342)"""),
+)
+
+entry(
+ index = 1780,
+ label = "[H] + CC=CO <=> C[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=-0.6815347399223544,B_g=1.786315506257075,E_g=-0.08890380353197504,L_g=0.07948416405814687,A_g=0.06614272916136302,K_g=1.4708345537005438,S_h=-1.236201230526776,B_h=2.7927508382097885,E_h=0.08255562626790096,L_h=0.17547652118638016,A_h=-0.04514829534576469,K_h=0.5701190976167403,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.275, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.526)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.275, MAE_g(kcal/mol): 0.21899999999999997, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.68, MAE_h(kcal/mol): 0.526)"""),
+)
+
+entry(
+ index = 1781,
+ label = "[H] + CCC=CO <=> CC[CH]CO",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.4570247802609264,B_g=0.09974555200029553,E_g=-0.09379321950788429,L_g=-0.006641395613453938,A_g=0.23965468740689808,K_g=1.5147000187677713,S_h=0.5865393251820127,B_h=0.2159259924833325,E_h=0.2272515512281298,L_h=0.020620580420139,A_h=0.11615111864809899,K_h=0.4811639808736237,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.272, MAE_h(kcal/mol): 0.18100000000000002)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.073, MAE_g(kcal/mol): 0.059000000000000004, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.272, MAE_h(kcal/mol): 0.18100000000000002)"""),
+)
+
+entry(
+ index = 1782,
+ label = "[H] + CCCC=O <=> CCCC[O]",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.030201489986126085,B_g=-0.10092575585654949,E_g=-0.16786017456123814,L_g=0.08759898187723462,A_g=0.4216553168669802,K_g=1.061069240900917,S_h=0.19975500051503298,B_h=-0.13972587393824012,E_h=-0.05537428528038748,L_h=0.1376000409052361,A_h=0.5026715468006369,K_h=-0.11170886065499402,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.11900000000000001)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.054000000000000006, MAE_g(kcal/mol): 0.039, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.184, MAE_h(kcal/mol): 0.11900000000000001)"""),
+)
+
+entry(
+ index = 1783,
+ label = "[OH] + C=CCC <=> [CH2]C(O)CC",
+ degeneracy = 1.0,
+ duplicate = True,
+ kinetics = KineticsModel(Tmin=None, Tmax=None, Pmin=None, Pmax=None, uncertainty=None, solute=SoluteTSDiffData(S_g=0.20278981043111455,B_g=-2.09583679586246,E_g=0.6351549275091943,L_g=-0.01061450424755111,A_g=3.4751652331802823,K_g=0.7980157292135057,S_h=0.47862031169275343,B_h=-3.977177038694815,E_h=0.7974806057258876,L_h=0.12395805720033788,A_h=6.028833159764464,K_h=-0.4184812282349432,comment='fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.342, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.6409999999999999)'), comment="""fit_method_g: robustLS, RMSE_g(kcal/mol): 0.483, MAE_g(kcal/mol): 0.342, fit_method_h: robustLS, RMSE_h(kcal/mol): 0.784, MAE_h(kcal/mol): 0.6409999999999999)"""),
+)
+
diff --git a/input/kinetics/libraries/HydrazinePDep/reactions.py b/input/kinetics/libraries/HydrazinePDep/reactions.py
index ad1d4ba16c..7cceacf401 100644
--- a/input/kinetics/libraries/HydrazinePDep/reactions.py
+++ b/input/kinetics/libraries/HydrazinePDep/reactions.py
@@ -139,11 +139,11 @@
index = 7,
label = "N2H3 + NH2 <=> N2H2 + NH3",
duplicate = True,
- kinetics = Arrhenius(A=(9.2e+05, 'cm^3/(mol*s)'), n=1.94, Ea=(-1.152, 'kcal/mol'), T0=(1, 'K')),
+ kinetics = Arrhenius(A=(6.08e-01, 'cm^3/(mol*s)'), n=3.57, Ea=(1194, 'cal/mol'), T0=(1, 'K')),
longDesc =
u"""
-Taken from the Nitrogen_Dean_and_Bozzelli library
-The same rate appears in the NOx2018 library
+Taken from https://doi.org/10.1021/acs.jpca.0c03144
+Also available from D&B (the same rate appears in the NOx2018 library)
D&B estimated this rate of the direct hydrogen transfer reaction (not including the well-skipping rate)
""",
)
diff --git a/input/kinetics/libraries/LithiumAnalogyKinetics/dictionary.txt b/input/kinetics/libraries/LithiumAnalogyKinetics/dictionary.txt
new file mode 100644
index 0000000000..4e6cb3bfa7
--- /dev/null
+++ b/input/kinetics/libraries/LithiumAnalogyKinetics/dictionary.txt
@@ -0,0 +1,1098 @@
+[Li]O[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC[=O]OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OCCO[C]=O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u1 p0 c0 {1,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+[Li]O[C](OC)OC
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[Li]OC(=O)OC
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {3,D}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+[CH3]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+O=CCCO[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC=C
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+C=O
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+[Li]N[CH2]
+multiplicity 2
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u1 p0 c0 {1,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]
+multiplicity 2
+1 Li u1 p0 c0
+
+N=C
+1 N u0 p1 c0 {2,D} {5,S}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]O[CH]O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u1 p0 c0 {1,S} {2,S} {5,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+
+O=[CH]
+multiplicity 2
+1 O u0 p2 c0 {2,D}
+2 C u1 p0 c0 {1,D} {3,S}
+3 H u0 p0 c0 {2,S}
+
+[Li]O
+1 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[Li]OC1OCCC1
+1 O u0 p2 c0 {5,S} {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 C u0 p0 c0 {4,S} {5,S} {10,S} {11,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {3,S} {12,S}
+6 C u0 p0 c0 {1,S} {4,S} {13,S} {14,S}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+
+O=CCCCO[Li]
+1 O u0 p2 c0 {5,S} {7,S}
+2 O u0 p2 c0 {6,D}
+3 C u0 p0 c0 {4,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {3,S} {6,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 C u0 p0 c0 {2,D} {4,S} {14,S}
+7 Li u0 p0 c0 {1,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+
+[Li]OC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C=C
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]OC(=O)O[Li]
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+[Li]O[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]OC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+COCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+[Li]NC
+1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+CNC
+1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]N(C)C
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+[H]
+multiplicity 2
+1 H u1 p0 c0
+
+CNCC
+1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+[Li]NCC
+1 N u0 p1 c0 {2,S} {4,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]N(C)CC
+1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+5 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+O
+1 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[Li]N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CO
+1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CN
+1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+CCO
+1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+[Li]OCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+CCN
+1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+COC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+[Li][H]
+1 Li u0 p0 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]F
+1 F u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+CF
+1 F u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]Cl
+1 Cl u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+CCl
+1 Cl u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {8,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u1 p0 c0 {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+
+[Li]OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+O=C=O
+1 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,D} {2,D}
+
+[Li]OCO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {2,S}
+
+[Li]OCF
+1 F u0 p3 c0 {3,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+[Li]OCCl
+1 Cl u0 p3 c0 {3,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+[Li]OC(=O)OCC
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+[Li]O[Li]
+1 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 Li u0 p0 c0 {1,S}
+
+O=C
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+[Li]OCO[Li]
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 Li u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[Li][O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+[Li]OC(=O)[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u1 p2 c0 {4,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+
+O1CC1
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[Li]NCCC[CH2]
+multiplicity 2
+1 N u0 p1 c0 {3,S} {6,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {2,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+5 C u1 p0 c0 {4,S} {14,S} {15,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+
+N1CCCC1
+1 N u0 p1 c0 {4,S} {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+O=C1OCCO1
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]OCCCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {6,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {5,S} {13,S} {14,S}
+4 C u0 p0 c0 {2,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {15,S} {16,S}
+6 C u0 p0 c0 {1,S} {4,S} {17,S} {18,S}
+7 C u1 p0 c0 {5,S} {19,S} {20,S}
+8 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {5,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {7,S}
+20 H u0 p0 c0 {7,S}
+
+O1CCCCCC1
+1 O u0 p2 c0 {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+4 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+7 C u0 p0 c0 {1,S} {5,S} {18,S} {19,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {7,S}
+
+[Li]OCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+O1CCCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[Li]CC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+[Li]O[CH]OC
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+4 C u1 p0 c0 {1,S} {2,S} {9,S}
+5 Li u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+
+[Li]OC1OCCCC1
+1 O u0 p2 c0 {6,S} {7,S}
+2 O u0 p2 c0 {6,S} {8,S}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {4,S} {15,S}
+7 C u0 p0 c0 {1,S} {5,S} {16,S} {17,S}
+8 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+O=CCCCCO[Li]
+1 O u0 p2 c0 {6,S} {8,S}
+2 O u0 p2 c0 {7,D}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {13,S} {14,S}
+6 C u0 p0 c0 {1,S} {4,S} {15,S} {16,S}
+7 C u0 p0 c0 {2,D} {5,S} {17,S}
+8 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {7,S}
+
+[Lip]
+1 Li u0 p0 c+1
+
+[Li]OC1OCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {2,S} {3,S} {9,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC[=O]OCCO[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {8,S} {11,S}
+2 O u0 p2 c0 {9,S} {11,S}
+3 O u0 p2 c0 {10,S} {11,S}
+4 O u0 p2 c0 {7,S} {12,S}
+5 O u0 p2 c0 {12,S} {13,S}
+6 O u0 p2 c0 {12,D}
+7 C u0 p0 c0 {4,S} {8,S} {14,S} {15,S}
+8 C u0 p0 c0 {1,S} {7,S} {16,S} {17,S}
+9 C u0 p0 c0 {2,S} {10,S} {18,S} {19,S}
+10 C u0 p0 c0 {3,S} {9,S} {20,S} {21,S}
+11 C u1 p0 c0 {1,S} {2,S} {3,S}
+12 C u0 p0 c0 {4,S} {5,S} {6,D}
+13 Li u0 p0 c0 {5,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {8,S}
+18 H u0 p0 c0 {9,S}
+19 H u0 p0 c0 {9,S}
+20 H u0 p0 c0 {10,S}
+21 H u0 p0 c0 {10,S}
+
+[Li]OC[=O]OCC[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {8,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {9,S} {10,S}
+5 C u0 p0 c0 {4,S} {7,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {5,S}
+8 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+[Li]OC[=O]OCCC1[O[Li]]OCCO1
+1 O u0 p2 c0 {7,S} {10,S}
+2 O u0 p2 c0 {7,S} {11,S}
+3 O u0 p2 c0 {9,S} {12,S}
+4 O u0 p2 c0 {7,S} {13,S}
+5 O u0 p2 c0 {12,S} {14,S}
+6 O u0 p2 c0 {12,D}
+7 C u0 p0 c0 {1,S} {2,S} {4,S} {8,S}
+8 C u0 p0 c0 {7,S} {9,S} {15,S} {16,S}
+9 C u0 p0 c0 {3,S} {8,S} {17,S} {18,S}
+10 C u0 p0 c0 {1,S} {11,S} {19,S} {20,S}
+11 C u0 p0 c0 {2,S} {10,S} {21,S} {22,S}
+12 C u0 p0 c0 {3,S} {5,S} {6,D}
+13 Li u0 p0 c0 {4,S}
+14 Li u0 p0 c0 {5,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {9,S}
+18 H u0 p0 c0 {9,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {10,S}
+21 H u0 p0 c0 {11,S}
+22 H u0 p0 c0 {11,S}
+
+COCCOC
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+
+[Li]OCCOC
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {3,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+O=C1OCC[F]O1
+1 F u0 p3 c0 {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 O u0 p2 c0 {7,D}
+5 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+7 C u0 p0 c0 {2,S} {3,S} {4,D}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+
+O=C1OC[CH]O1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u1 p0 c0 {2,S} {4,S} {9,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+
+[Li]C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+[Li]O[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 Li u0 p0 c0 {1,S}
+
+CCC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+
+[Li]OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {4,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
+C[CH]C
+multiplicity 2
+1 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+3 C u1 p0 c0 {1,S} {2,S} {10,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+
+CC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+CC[C]C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+
+C[C][C]C
+multiplicity 2
+1 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+4 C u1 p0 c0 {1,S} {2,S} {3,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+
+[Li]OC[=O]O[Li]
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+[Li]OC(=O)OCC[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {8,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {9,S} {10,S}
+5 C u0 p0 c0 {4,S} {7,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {5,S}
+8 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+O=CCOC[Li]
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 Li u0 p0 c0 {4,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+N=CCNC[Li]
+1 N u0 p1 c0 {3,S} {4,S} {11,S}
+2 N u0 p1 c0 {5,D} {13,S}
+3 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {12,S}
+6 Li u0 p0 c0 {4,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {1,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {2,S}
+
+[Li]NC=C
+1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+O1CCO[C]1OC2(O[Li])OCCO2
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {13,S} {14,S}
+3 C u0 p0 c0 {2,S} {4,S} {15,S} {16,S}
+4 O u0 p2 c0 {3,S} {5,S}
+5 C u1 p0 c0 {1,S} {4,S} {6,S}
+6 O u0 p2 c0 {5,S} {7,S}
+7 C u0 p0 c0 {6,S} {8,S} {9,S} {12,S}
+8 O u0 p2 c0 {7,S} {17,S}
+9 O u0 p2 c0 {7,S} {10,S}
+10 C u0 p0 c0 {9,S} {11,S} {18,S} {19,S}
+11 C u0 p0 c0 {10,S} {12,S} {20,S} {21,S}
+12 O u0 p2 c0 {7,S} {11,S}
+13 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {2,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {3,S}
+17 Li u0 p0 c0 {8,S}
+18 H u0 p0 c0 {10,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {11,S}
+21 H u0 p0 c0 {11,S}
+
+O1CCOC1(O[Li])OC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {13,S} {14,S}
+3 C u0 p0 c0 {2,S} {4,S} {15,S} {16,S}
+4 O u0 p2 c0 {3,S} {5,S}
+5 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+6 O u0 p2 c0 {5,S} {17,S}
+7 O u0 p2 c0 {5,S} {8,S}
+8 C u0 p0 c0 {7,S} {9,D} {10,S}
+9 O u0 p2 c0 {8,D}
+10 O u0 p2 c0 {8,S} {11,S}
+11 C u0 p0 c0 {10,S} {12,S} {18,S} {19,S}
+12 C u1 p0 c0 {11,S} {20,S} {21,S}
+13 H u0 p0 c0 {2,S}
+14 H u0 p0 c0 {2,S}
+15 H u0 p0 c0 {3,S}
+16 H u0 p0 c0 {3,S}
+17 Li u0 p0 c0 {6,S}
+18 H u0 p0 c0 {11,S}
+19 H u0 p0 c0 {11,S}
+20 H u0 p0 c0 {12,S}
+21 H u0 p0 c0 {12,S}
+
+[Li]OC(=O)OCCOC(=O)O[Li]
+1 O u0 p2 c0 {2,S} {11,S}
+2 C u0 p0 c0 {1,S} {3,D} {4,S}
+3 O u0 p2 c0 {2,D}
+4 O u0 p2 c0 {2,S} {5,S}
+5 C u0 p0 c0 {4,S} {6,S} {12,S} {13,S}
+6 C u0 p0 c0 {5,S} {7,S} {14,S} {15,S}
+7 O u0 p2 c0 {6,S} {8,S}
+8 C u0 p0 c0 {7,S} {9,D} {10,S}
+9 O u0 p2 c0 {8,D}
+10 O u0 p2 c0 {8,S} {16,S}
+11 Li u0 p0 c0 {1,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 Li u0 p0 c0 {10,S}
+
+[Li]CCO[C]1OCCO1
+multiplicity 2
+1 Li u0 p0 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {4,S} {12,S} {13,S}
+4 O u0 p2 c0 {3,S} {5,S}
+5 C u1 p0 c0 {4,S} {6,S} {9,S}
+6 O u0 p2 c0 {5,S} {7,S}
+7 C u0 p0 c0 {6,S} {8,S} {14,S} {15,S}
+8 C u0 p0 c0 {7,S} {9,S} {16,S} {17,S}
+9 O u0 p2 c0 {5,S} {8,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {8,S}
+
diff --git a/input/kinetics/libraries/LithiumAnalogyKinetics/reactions.py b/input/kinetics/libraries/LithiumAnalogyKinetics/reactions.py
new file mode 100644
index 0000000000..b2e9d3c60b
--- /dev/null
+++ b/input/kinetics/libraries/LithiumAnalogyKinetics/reactions.py
@@ -0,0 +1,44 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumAnalogyKinetics"
+shortDesc = ""
+longDesc = """
+
+"""
+autoGenerated=False
+entry(
+ index = 0,
+ label = "O1CCO[C]1OC2(O[Li])OCCO2 <=> O1CCOC1(O[Li])OC(=O)OC[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.99833e+12,'s^-1'), n=0.39066, Ea=(59.4863,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.140536907525525,B=1.0466026029403899,E=-0.4141994326786929,L=4.770587031445122,A=0.9093778018261982,comment='')),
+ longDesc =
+"""
+analogy to [Li]O[C]1OCCO1 <=> [Li]OC[=O]OC[CH2]
+""",
+)
+
+entry(
+ index = 1,
+ label = "[Li]OC(=O)OC[CH2] + [Li]OC(=O)OC[CH2] <=> C=C + [Li]OC(=O)OCCOC(=O)O[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.60363e+10,'m^3/(mol*s)'), n=-1.06749, Ea=(2.37772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K'), comment="""Fitted to 50 data points; dA = *|/ 2.80611, dn = +|- 0.142081, dEa = +|- 0.590342 kJ/mol"""),
+ longDesc =
+"""
+analogy to [Li]OC(=O)OC[CH2] + C[CH2] <=> C=C + [Li]OC(=O)OCC
+""",
+)
+
+entry(
+ index = 2,
+ label = "O1CCO[C]1OC2(O[Li])OCCO2 <=> O=C1OCCO1 + [Li]O[C]1OCCO1",
+ degeneracy = 1.0,
+ kinetics = ArrheniusBM(A=(1.64384e+31,'s^-1'), n=-4.72524, w0=(741100,'J/mol'), E0=(9911.42,'J/mol'), Tmin=(300,'K'), Tmax=(1500,'K'), uncertainty=RateUncertainty(mu=0.2101947124094859, var=22.757813031131217, Tref=1000.0, N=3, data_mean=0.0, correlation='Root_Ext-3R-R_5R!H->C',), comment="""BM rule fitted to 3 training reactions at node Root_Ext-3R-R_5R!H->C
+ Total Standard Deviation in ln(k): 10.091746105650293"""),
+ longDesc =
+"""
+Higher up rule Root_Ext-3R-R_5R!H->C in 1,2_Elimination_LiR
+""",
+)
+
+
\ No newline at end of file
diff --git a/input/kinetics/libraries/LithiumPrimaryChargedKinetics/dictionary.txt b/input/kinetics/libraries/LithiumPrimaryChargedKinetics/dictionary.txt
new file mode 100644
index 0000000000..5c272522ca
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryChargedKinetics/dictionary.txt
@@ -0,0 +1,619 @@
+[Lip]
+1 Li u0 p0 c+1
+
+N=C
+1 N u0 p1 c0 {2,D} {5,S}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]N[CH2]
+multiplicity 2
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u1 p0 c0 {1,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]OC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C=C
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]OC(=O)O[Li]
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+N#CCC[CH2]
+multiplicity 2
+1 N u0 p1 c0 {5,T}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,T} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+[Li]N=C=C
+1 N u0 p1 c0 {3,D} {4,S}
+2 C u0 p0 c0 {3,D} {5,S} {6,S}
+3 C u0 p0 c0 {1,D} {2,D}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+O=COC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,D} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]OC=O
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+
+O=CCC[O]
+multiplicity 2
+1 O u1 p2 c0 {4,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,D} {3,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]OC=C
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+N=CCN[CH2]
+multiplicity 2
+1 N u0 p1 c0 {3,S} {5,S} {8,S}
+2 N u0 p1 c0 {4,D} {12,S}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u0 p0 c0 {2,D} {3,S} {9,S}
+5 C u1 p0 c0 {1,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+[Li]NC=C
+1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+C=O
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+[Li]O[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+COCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+[Li]OC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+CNC
+1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]NC
+1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+[CH3]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+[Li]N(C)C
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+[H]
+multiplicity 2
+1 H u1 p0 c0
+
+CNCC
+1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+[Li]NCC
+1 N u0 p1 c0 {2,S} {4,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]N(C)CC
+1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+5 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+O
+1 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[Li]O
+1 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+[Li]N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CO
+1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CN
+1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+CCO
+1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+[Li]OCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+CCN
+1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+COC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+[Li][H]
+1 Li u0 p0 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+CF
+1 F u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]F
+1 F u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+CCl
+1 Cl u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]Cl
+1 Cl u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {8,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u1 p0 c0 {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+
+O=S(=O)(C)CC[CH2]
+multiplicity 2
+1 S u0 p0 c0 {2,D} {3,D} {4,S} {6,S}
+2 O u0 p2 c0 {1,D}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {5,S} {15,S} {16,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+
+[Li]OS(=O)(=C)C
+1 S u0 p0 c0 {2,S} {3,D} {4,S} {5,D}
+2 O u0 p2 c0 {1,S} {6,S}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,D} {10,S} {11,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+CCOC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {8,S}
+2 O u0 p2 c0 {5,S} {8,S}
+3 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {5,S} {16,S} {17,S}
+8 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+[Li]OC(=O)OCC
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+O1CC1
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[Li]OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+N1CCCC1
+1 N u0 p1 c0 {4,S} {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+[Li]NCCC[CH2]
+multiplicity 2
+1 N u0 p1 c0 {3,S} {6,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {2,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+5 C u1 p0 c0 {4,S} {14,S} {15,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+
+O=C1OCCO1
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]O[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+O1CCCCCC1
+1 O u0 p2 c0 {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+4 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+7 C u0 p0 c0 {1,S} {5,S} {18,S} {19,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {7,S}
+
+[Li]OCCCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {6,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {5,S} {13,S} {14,S}
+4 C u0 p0 c0 {2,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {15,S} {16,S}
+6 C u0 p0 c0 {1,S} {4,S} {17,S} {18,S}
+7 C u1 p0 c0 {5,S} {19,S} {20,S}
+8 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {5,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {7,S}
+20 H u0 p0 c0 {7,S}
+
+O1CCCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[Li]OCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
diff --git a/input/kinetics/libraries/LithiumPrimaryChargedKinetics/reactions.py b/input/kinetics/libraries/LithiumPrimaryChargedKinetics/reactions.py
new file mode 100644
index 0000000000..e1c88df00b
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryChargedKinetics/reactions.py
@@ -0,0 +1,260 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumPrimaryChargedKinetics"
+shortDesc = ""
+longDesc = """
+
+"""
+autoGenerated=False
+entry(
+ index = 0,
+ label = "[Lip] + N=C <=> [Li]N[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(16042,'m^3/(mol*s)'), n=1.52384, Ea=(2.76381,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.65419313965326,B=1.2542197583042969,E=-0.21990942778263972,L=-9.14111680402368,A=3.645314481406821,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.04604, dn = +|- 0.00586241, dEa = +|- 0.0335255 kJ/mol"""),
+)
+
+entry(
+ index = 1,
+ label = "[Li]OC(=O)OC[CH2] + [Lip] <=> C=C + [Li]OC(=O)O[Li]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(2.23949e+06,'cm^3/(mol*s)'), n=2.34337, Ea=(16.2698,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-1.3791416734787092,B=0.9825775784337702,E=1.344561385839825,L=1.6867692078977448,A=2.9918711355986547,comment='')),
+)
+
+entry(
+ index = 2,
+ label = "N#CCC[CH2] + [Lip] <=> C=C + [Li]N=C=C",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(162517,'cm^3/(mol*s)'), n=2.55635, Ea=(59.4607,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+)
+
+entry(
+ index = 3,
+ label = "O=COC[CH2] + [Lip] <=> C=C + [Li]OC=O",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(419384,'cm^3/(mol*s)'), n=2.21898, Ea=(48.2832,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.0247091484586592,B=2.5777645372278832,E=0.3431344611927818,L=9.346538089381045,A=0.8860009592023523,comment='')),
+)
+
+entry(
+ index = 4,
+ label = "O=CCC[O] + [Lip] <=> C=O + [Li]OC=C",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.74272e+07,'cm^3/(mol*s)'), n=2.05933, Ea=(-27.3358,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.2490249849978214,B=2.6960753668589854,E=2.1706425235190108,L=14.985510873166351,A=0.7334126588566799,comment='')),
+)
+
+entry(
+ index = 5,
+ label = "N=CCN[CH2] + [Lip] <=> N=C + [Li]NC=C",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(2.45437e+09,'cm^3/(mol*s)'), n=0.869935, Ea=(-36.817,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+)
+
+entry(
+ index = 6,
+ label = "[Lip] + C=O <=> [Li]O[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(500060,'m^3/(mol*s)'), n=1.50675, Ea=(-0.985354,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.4735938637413528,B=2.67486764340657,E=-5.09678040094995,L=-4.876934525239067,A=3.9944267641274602,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.03252, dn = +|- 0.00416775, dEa = +|- 0.0238342 kJ/mol"""),
+)
+
+entry(
+ index = 7,
+ label = "[Lip] + COCC <=> [Li]OC + C[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.000236033,'m^3/(mol*s)'), n=3.84908, Ea=(56.4483,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), comment="""Fitted to 50 data points; dA = *|/ 1.07254, dn = +|- 0.00912116, dEa = +|- 0.0521614 kJ/mol"""),
+)
+
+entry(
+ index = 8,
+ label = "[Lip] + CNC <=> [Li]NC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(5.84081,'m^3/(mol*s)'), n=2.5402, Ea=(97.8358,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=5.9720845035693655,B=-11.11835148496454,E=1.2672065293713617,L=34.51723438776737,A=-10.461680798130194,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.31573, dn = +|- 0.0357396, dEa = +|- 0.204385 kJ/mol"""),
+)
+
+entry(
+ index = 9,
+ label = "[Lip] + CNC <=> [Li]N(C)C + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.0200172,'m^3/(mol*s)'), n=2.76621, Ea=(72.0709,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.996332219215656,B=1.029302623121347,E=1.007550487792502,L=7.3685642232941575,A=0.4814345945968402,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.20383, dn = +|- 0.024163, dEa = +|- 0.138181 kJ/mol"""),
+)
+
+entry(
+ index = 10,
+ label = "[Lip] + CNCC <=> [Li]NC + C[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(117.529,'m^3/(mol*s)'), n=2.07905, Ea=(110.968,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9175438008860265,B=1.1395826064596657,E=0.4944811262263229,L=5.415263196320309,A=0.6943364764189893,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.06164, dn = +|- 0.00779066, dEa = +|- 0.0445526 kJ/mol"""),
+)
+
+entry(
+ index = 11,
+ label = "[Lip] + CNCC <=> [Li]NCC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.61257,'m^3/(mol*s)'), n=2.55041, Ea=(96.84,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.877486735996646,B=0.6916407047808263,E=0.748415650862252,L=5.385263016210897,A=0.5210754074032086,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.25373, dn = +|- 0.029453, dEa = +|- 0.168434 kJ/mol"""),
+)
+
+entry(
+ index = 12,
+ label = "[Lip] + CNCC <=> [Li]N(C)CC + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.00331961,'m^3/(mol*s)'), n=3.0459, Ea=(70.8277,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.1131935806214712,B=1.1556454917670655,E=1.2169728270193971,L=7.839572648134702,A=0.31656236651087616,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.28575, dn = +|- 0.0327372, dEa = +|- 0.187215 kJ/mol"""),
+)
+
+entry(
+ index = 13,
+ label = "[Lip] + O <=> [Li]O + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(2206.42,'m^3/(mol*s)'), n=1.35569, Ea=(48.8442,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6576610150461983,B=2.4435784684265482,E=0.404796645816695,L=7.698368077501874,A=0.9750486732350473,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.12448, dn = +|- 0.0152811, dEa = +|- 0.0873886 kJ/mol"""),
+)
+
+entry(
+ index = 14,
+ label = "[Lip] + N <=> [Li]N + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.86167,'m^3/(mol*s)'), n=2.44198, Ea=(87.1355,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9471505265788214,B=1.7274624400621788,E=0.6115119617819315,L=6.871072605917964,A=0.6704069036466952,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.22038, dn = +|- 0.025941, dEa = +|- 0.148349 kJ/mol"""),
+)
+
+entry(
+ index = 15,
+ label = "[Lip] + CO <=> [Li]OC + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(4.02602,'m^3/(mol*s)'), n=2.23116, Ea=(40.7702,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.4067121409688057,B=1.4628968939845368,E=0.9656443938025181,L=7.661570379273675,A=0.443175955652443,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.0796, dn = +|- 0.00997547, dEa = +|- 0.057047 kJ/mol"""),
+)
+
+entry(
+ index = 16,
+ label = "[Lip] + CO <=> [Li]O + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(153.764,'m^3/(mol*s)'), n=2.01928, Ea=(47.7262,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.4173362998736376,B=2.357499252462657,E=0.5167298959343533,L=7.9017680525604375,A=1.0064038665607862,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.49606, dn = +|- 0.0524693, dEa = +|- 0.300058 kJ/mol"""),
+)
+
+entry(
+ index = 17,
+ label = "[Lip] + CN <=> [Li]NC + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.0885541,'m^3/(mol*s)'), n=2.76407, Ea=(81.1221,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-5.4761368991675985,B=-6.829449919467144,E=14.43663245128814,L=28.957970295010895,A=0.4259943743771139,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.19079, dn = +|- 0.0227446, dEa = +|- 0.13007 kJ/mol"""),
+)
+
+entry(
+ index = 18,
+ label = "[Lip] + CCO <=> [Li]O + C[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.609636,'m^3/(mol*s)'), n=2.90468, Ea=(55.2021,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9913576154323054,B=3.1755887609180435,E=-0.2623364392566645,L=7.244831699370673,A=0.5572363451823703,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.27825, dn = +|- 0.0319751, dEa = +|- 0.182857 kJ/mol"""),
+)
+
+entry(
+ index = 19,
+ label = "[Lip] + CCO <=> [Li]OCC + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(3.88747,'m^3/(mol*s)'), n=2.22783, Ea=(40.8372,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-8.623486006056842,B=14.917486429580572,E=-5.719694357458241,L=40.120001635540106,A=-6.502228345652631,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.09972, dn = +|- 0.0123813, dEa = +|- 0.0708054 kJ/mol"""),
+)
+
+entry(
+ index = 20,
+ label = "[Lip] + CCN <=> [Li]N + C[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.00130946,'m^3/(mol*s)'), n=3.2505, Ea=(88.6985,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6195332200790409,B=2.120893670736446,E=10.142480436000628,L=-0.8781474558081529,A=3.410407959634951,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.25466, dn = +|- 0.0295493, dEa = +|- 0.168984 kJ/mol"""),
+)
+
+entry(
+ index = 21,
+ label = "[Lip] + COC <=> [Li]OC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.327198,'m^3/(mol*s)'), n=2.90093, Ea=(61.3447,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.223920620501668,B=0.8264175269682525,E=0.40415741933873844,L=5.605210034978575,A=0.4397271958947774,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.20785, dn = +|- 0.0245968, dEa = +|- 0.140662 kJ/mol"""),
+)
+
+entry(
+ index = 22,
+ label = "[Lip] + COCC <=> [Li]OCC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.137812,'m^3/(mol*s)'), n=2.70251, Ea=(63.027,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.091886494292463,B=0.5254418313743373,E=1.2963729646265112,L=5.721969023897385,A=0.6575614317431779,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.12328, dn = +|- 0.0151425, dEa = +|- 0.086596 kJ/mol"""),
+)
+
+entry(
+ index = 23,
+ label = "[Lip] + CN <=> [Li]N + [CH3]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.141645,'m^3/(mol*s)'), n=2.88935, Ea=(85.5741,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.8306578175990244,B=1.956506108230911,E=0.011774617070094268,L=6.100850860272114,A=1.0441801517777485,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.50683, dn = +|- 0.0534042, dEa = +|- 0.305404 kJ/mol"""),
+)
+
+entry(
+ index = 24,
+ label = "[Lip] + CCN <=> [Li]NCC + [H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.00450332,'m^3/(mol*s)'), n=2.99604, Ea=(78.6799,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9852422925798727,B=1.2991389460904967,E=1.413033851489418,L=7.445245509701895,A=0.5371087291175491,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.17557, dn = +|- 0.0210685, dEa = +|- 0.120485 kJ/mol"""),
+)
+
+entry(
+ index = 25,
+ label = "[Lip] + C <=> [CH3] + [Li][H]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(0.67868,'m^3/(mol*s)'), n=3.09275, Ea=(215.149,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.39470212956669,B=1.6022203760198037,E=1.4946262264125265,L=10.49010693814182,A=0.4943151788298517,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.37586, dn = +|- 0.0415605, dEa = +|- 0.237673 kJ/mol"""),
+)
+
+entry(
+ index = 26,
+ label = "[Lip] + CF <=> [CH3] + [Li]F",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(329.871,'m^3/(mol*s)'), n=2.2276, Ea=(25.9849,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8681935378213759,B=2.373498032935028,E=0.32859248603303737,L=5.004153890392606,A=0.8849787213003473,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.4013, dn = +|- 0.043947, dEa = +|- 0.251321 kJ/mol"""),
+)
+
+entry(
+ index = 27,
+ label = "[Lip] + CCl <=> [CH3] + [Li]Cl",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(4264.72,'m^3/(mol*s)'), n=1.78731, Ea=(-2.88557,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.40096476096442,B=0.7611537028291462,E=0.36695032193123533,L=5.182274882516309,A=0.578711830957878,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.33939, dn = +|- 0.0380613, dEa = +|- 0.217662 kJ/mol"""),
+)
+
+entry(
+ index = 28,
+ label = "[Lip] + OC[CH2] <=> [Li]O + C=C",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(32.4209,'m^3/(mol*s)'), n=1.65654, Ea=(57.4026,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8538812901233412,B=2.675568430768142,E=-6.952996746174581,L=1.5707766756804364,A=-0.4046889575036062,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.06371, dn = +|- 0.00804458, dEa = +|- 0.0460048 kJ/mol"""),
+)
+
+entry(
+ index = 29,
+ label = "O=S(=O)(C)CC[CH2] + [Lip] <=> C=C + [Li]OS(=O)(=C)C",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(312580,'cm^3/(mol*s)'), n=2.72776, Ea=(68.0852,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+)
+
+entry(
+ index = 30,
+ label = "CCOC(=O)OC[CH2] + [Lip] <=> C=C + [Li]OC(=O)OCC",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(9.5603e+07,'cm^3/(mol*s)'), n=1.70021, Ea=(38.7352,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.1943783976602214,B=0.894154843812189,E=5.394280864555017,L=8.956244842828797,A=0.23494209646668668,comment='')),
+)
+
+entry(
+ index = 31,
+ label = "[Lip] + O1CC1 <=> [Li]OC[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(885.706,'m^3/(mol*s)'), n=1.77542, Ea=(-0.0494826,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9429002183123382,B=0.4142522035781646,E=0.9271382422782674,L=0.5080999191526422,A=1.2701035125702795,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.16129, dn = +|- 0.0194768, dEa = +|- 0.111383 kJ/mol"""),
+)
+
+entry(
+ index = 32,
+ label = "[Lip] + N1CCCC1 <=> [Li]NCCC[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(7.84401,'m^3/(mol*s)'), n=2.34419, Ea=(76.6884,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7063184659079954,B=0.6546888841685338,E=1.4167685288377097,L=7.086460323740072,A=0.6763993010322846,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.4264, dn = +|- 0.0462593, dEa = +|- 0.264544 kJ/mol"""),
+)
+
+entry(
+ index = 33,
+ label = "[Lip] + O=C1OCCO1 <=> [Li]O[C]1OCCO1",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(303.68,'m^3/(mol*s)'), n=1.59181, Ea=(-29.6323,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.018725993417632,B=4.93569039446143,E=-4.315782362402726,L=-1.68464261284562,A=3.5698295734222367,comment=''), comment="""Fitted to 50 data points; dA = *|/ 1.03673, dn = +|- 0.0046983, dEa = +|- 0.0268683 kJ/mol"""),
+)
+
+entry(
+ index = 34,
+ label = "[Lip] + O1CCCCCC1 <=> [Li]OCCCCC[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.42961e+06,'m^3/(mol*s)'), n=0.521642, Ea=(61.8184,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8745309700808286,B=0.6489379258617733,E=0.27349172242979114,L=6.280608540134562,A=0.35178208431790287,comment=''), comment="""Fitted to 50 data points; dA = *|/ 3.24532, dn = +|- 0.153333, dEa = +|- 0.876872 kJ/mol"""),
+)
+
+entry(
+ index = 35,
+ label = "[Lip] + O1CCCC1 <=> [Li]OCCC[CH2]",
+ degeneracy = 1.0,
+ kinetics = ArrheniusChargeTransfer(A=(1.83813e+10,'m^3/(mol*s)'), n=0.232048, Ea=(63.9513,'kJ/mol'), V0=(0,'V'), alpha=0.5, electrons=1, T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.975919765798433,B=0.5933221434562257,E=0.10249027371088437,L=4.734916369654065,A=0.4382337255257122,comment=''), comment="""Fitted to 50 data points; dA = *|/ 2.45172, dn = +|- 0.116808, dEa = +|- 0.667992 kJ/mol"""),
+)
diff --git a/input/kinetics/libraries/LithiumPrimaryKinetics/dictionary.txt b/input/kinetics/libraries/LithiumPrimaryKinetics/dictionary.txt
new file mode 100644
index 0000000000..b612798fdd
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryKinetics/dictionary.txt
@@ -0,0 +1,901 @@
+[Li]O[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OCCO[C]=O
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {10,S} {11,S}
+5 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+6 C u1 p0 c0 {1,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+[Li]O[C](OC)OC
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {11,S} {12,S} {13,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[Li]OC(=O)OC
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {5,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {3,D}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+
+[CH3]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+[Li]OC1OCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {2,S} {3,S} {9,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+O=CCCO[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC=C
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+C=O
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+[Li]N[CH2]
+multiplicity 2
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u1 p0 c0 {1,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]
+multiplicity 2
+1 Li u1 p0 c0
+
+N=C
+1 N u0 p1 c0 {2,D} {5,S}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]O[CH]O
+multiplicity 2
+1 O u0 p2 c0 {3,S} {6,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u1 p0 c0 {1,S} {2,S} {5,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {1,S}
+
+O=[CH]
+multiplicity 2
+1 O u0 p2 c0 {2,D}
+2 C u1 p0 c0 {1,D} {3,S}
+3 H u0 p0 c0 {2,S}
+
+[Li]O
+1 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[Li]OC1OCCC1
+1 O u0 p2 c0 {5,S} {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 C u0 p0 c0 {4,S} {5,S} {10,S} {11,S}
+4 C u0 p0 c0 {3,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,S} {3,S} {12,S}
+6 C u0 p0 c0 {1,S} {4,S} {13,S} {14,S}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+
+O=CCCCO[Li]
+1 O u0 p2 c0 {5,S} {7,S}
+2 O u0 p2 c0 {6,D}
+3 C u0 p0 c0 {4,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {3,S} {6,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 C u0 p0 c0 {2,D} {4,S} {14,S}
+7 Li u0 p0 c0 {1,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+
+[Li]OC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+C=C
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]OC(=O)O[Li]
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+N#CCC[CH2]
+multiplicity 2
+1 N u0 p1 c0 {5,T}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u1 p0 c0 {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,T} {3,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+
+[Li]N=C=C
+1 N u0 p1 c0 {3,D} {4,S}
+2 C u0 p0 c0 {3,D} {5,S} {6,S}
+3 C u0 p0 c0 {1,D} {2,D}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+O=COC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u1 p0 c0 {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,S} {2,D} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]OC=O
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,S} {2,D} {5,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+
+O=CCC[O]
+multiplicity 2
+1 O u1 p2 c0 {4,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {3,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,D} {3,S} {10,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+
+N=CCN[CH2]
+multiplicity 2
+1 N u0 p1 c0 {3,S} {5,S} {8,S}
+2 N u0 p1 c0 {4,D} {12,S}
+3 C u0 p0 c0 {1,S} {4,S} {6,S} {7,S}
+4 C u0 p0 c0 {2,D} {3,S} {9,S}
+5 C u1 p0 c0 {1,S} {10,S} {11,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {2,S}
+
+[Li]NC=C
+1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+[Li]O[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u1 p0 c0 {1,S} {4,S} {5,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]OC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+COCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+[Li]NC
+1 N u0 p1 c0 {2,S} {3,S} {7,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {1,S}
+
+CNC
+1 N u0 p1 c0 {2,S} {3,S} {10,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]N(C)C
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 C u0 p0 c0 {1,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {1,S} {8,S} {9,S} {10,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+
+[H]
+multiplicity 2
+1 H u1 p0 c0
+
+CNCC
+1 N u0 p1 c0 {2,S} {4,S} {13,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {10,S} {11,S} {12,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+
+[Li]NCC
+1 N u0 p1 c0 {2,S} {4,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {1,S}
+
+[Li]N(C)CC
+1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+5 Li u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+
+O
+1 O u0 p2 c0 {2,S} {3,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+
+[Li]N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 Li u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+N
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+CO
+1 O u0 p2 c0 {2,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+
+CN
+1 N u0 p1 c0 {2,S} {6,S} {7,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+
+CCO
+1 O u0 p2 c0 {2,S} {9,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+
+[Li]OCC
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u0 p0 c0 {2,S} {7,S} {8,S} {9,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+CCN
+1 N u0 p1 c0 {2,S} {9,S} {10,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {2,S} {6,S} {7,S} {8,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {1,S}
+10 H u0 p0 c0 {1,S}
+
+COC
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {4,S} {5,S} {6,S}
+3 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+
+[Li][H]
+1 Li u0 p0 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
+C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]F
+1 F u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+CF
+1 F u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+[Li]Cl
+1 Cl u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+CCl
+1 Cl u0 p3 c0 {2,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+
+OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {8,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u1 p0 c0 {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {1,S}
+
+[Li]OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {5,S} {6,S}
+3 C u1 p0 c0 {2,S} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+
+O=C=O
+1 O u0 p2 c0 {3,D}
+2 O u0 p2 c0 {3,D}
+3 C u0 p0 c0 {1,D} {2,D}
+
+[Li]OCO
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,S} {7,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {2,S}
+
+[Li]OCF
+1 F u0 p3 c0 {3,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+[Li]OCCl
+1 Cl u0 p3 c0 {3,S}
+2 O u0 p2 c0 {3,S} {4,S}
+3 C u0 p0 c0 {1,S} {2,S} {5,S} {6,S}
+4 Li u0 p0 c0 {2,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+O=S(=O)(C)CC[CH2]
+multiplicity 2
+1 S u0 p0 c0 {2,D} {3,D} {4,S} {6,S}
+2 O u0 p2 c0 {1,D}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {7,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+7 C u1 p0 c0 {5,S} {15,S} {16,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {7,S}
+
+[Li]OS(=O)(=C)C
+1 S u0 p0 c0 {2,S} {3,D} {4,S} {5,D}
+2 O u0 p2 c0 {1,S} {6,S}
+3 O u0 p2 c0 {1,D}
+4 C u0 p0 c0 {1,S} {7,S} {8,S} {9,S}
+5 C u0 p0 c0 {1,D} {10,S} {11,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+O=CCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {5,D}
+2 C u0 p0 c0 {3,S} {5,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {4,S} {8,S} {9,S}
+4 C u1 p0 c0 {3,S} {11,S} {12,S}
+5 C u0 p0 c0 {1,D} {2,S} {10,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+
+CCOC=C
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {8,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {5,D} {11,S}
+5 C u0 p0 c0 {4,D} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+CCOC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {8,S}
+2 O u0 p2 c0 {5,S} {8,S}
+3 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+7 C u1 p0 c0 {5,S} {16,S} {17,S}
+8 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {6,S}
+12 H u0 p0 c0 {6,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+[Li]OC(=O)OCC
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {4,S} {10,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+CCOC(=O)OCC
+1 O u0 p2 c0 {4,S} {8,S}
+2 O u0 p2 c0 {5,S} {8,S}
+3 O u0 p2 c0 {8,D}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,S} {7,S} {11,S} {12,S}
+6 C u0 p0 c0 {4,S} {13,S} {14,S} {15,S}
+7 C u0 p0 c0 {5,S} {16,S} {17,S} {18,S}
+8 C u0 p0 c0 {1,S} {2,S} {3,D}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {6,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+18 H u0 p0 c0 {7,S}
+
+[Li]O[Li]
+1 O u0 p2 c0 {2,S} {3,S}
+2 Li u0 p0 c0 {1,S}
+3 Li u0 p0 c0 {1,S}
+
+[Li]OCO[Li]
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {3,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 Li u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[Li][O]
+multiplicity 2
+1 O u1 p2 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+[Li]OC(=O)[O]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u1 p2 c0 {4,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+
+O1CC1
+1 O u0 p2 c0 {2,S} {3,S}
+2 C u0 p0 c0 {1,S} {3,S} {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {2,S} {6,S} {7,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+[Li]NCCC[CH2]
+multiplicity 2
+1 N u0 p1 c0 {3,S} {6,S} {13,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {2,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {5,S} {11,S} {12,S}
+5 C u1 p0 c0 {4,S} {14,S} {15,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {1,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+
+N1CCCC1
+1 N u0 p1 c0 {4,S} {5,S} {14,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {1,S}
+
+O=C1OCCO1
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]OCCCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {6,S} {8,S}
+2 C u0 p0 c0 {3,S} {4,S} {11,S} {12,S}
+3 C u0 p0 c0 {2,S} {5,S} {13,S} {14,S}
+4 C u0 p0 c0 {2,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {15,S} {16,S}
+6 C u0 p0 c0 {1,S} {4,S} {17,S} {18,S}
+7 C u1 p0 c0 {5,S} {19,S} {20,S}
+8 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {2,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {3,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {5,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {6,S}
+19 H u0 p0 c0 {7,S}
+20 H u0 p0 c0 {7,S}
+
+O1CCCCCC1
+1 O u0 p2 c0 {6,S} {7,S}
+2 C u0 p0 c0 {3,S} {4,S} {10,S} {11,S}
+3 C u0 p0 c0 {2,S} {5,S} {12,S} {13,S}
+4 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+5 C u0 p0 c0 {3,S} {7,S} {14,S} {15,S}
+6 C u0 p0 c0 {1,S} {4,S} {16,S} {17,S}
+7 C u0 p0 c0 {1,S} {5,S} {18,S} {19,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {2,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {5,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {6,S}
+18 H u0 p0 c0 {7,S}
+19 H u0 p0 c0 {7,S}
+
+[Li]OCCC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 C u0 p0 c0 {3,S} {4,S} {7,S} {8,S}
+3 C u0 p0 c0 {2,S} {5,S} {9,S} {10,S}
+4 C u0 p0 c0 {1,S} {2,S} {11,S} {12,S}
+5 C u1 p0 c0 {3,S} {13,S} {14,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+
+O1CCCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 C u0 p0 c0 {3,S} {4,S} {6,S} {7,S}
+3 C u0 p0 c0 {2,S} {5,S} {8,S} {9,S}
+4 C u0 p0 c0 {1,S} {2,S} {10,S} {11,S}
+5 C u0 p0 c0 {1,S} {3,S} {12,S} {13,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {4,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[Li]CC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+[Li]O[CH]OC
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {5,S}
+3 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+4 C u1 p0 c0 {1,S} {2,S} {9,S}
+5 Li u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+
+[Li]OC1OCCCC1
+1 O u0 p2 c0 {6,S} {7,S}
+2 O u0 p2 c0 {6,S} {8,S}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {13,S} {14,S}
+5 C u0 p0 c0 {3,S} {7,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {4,S} {15,S}
+7 C u0 p0 c0 {1,S} {5,S} {16,S} {17,S}
+8 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {7,S}
+17 H u0 p0 c0 {7,S}
+
+O=CCCCCO[Li]
+1 O u0 p2 c0 {6,S} {8,S}
+2 O u0 p2 c0 {7,D}
+3 C u0 p0 c0 {4,S} {5,S} {11,S} {12,S}
+4 C u0 p0 c0 {3,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {3,S} {7,S} {13,S} {14,S}
+6 C u0 p0 c0 {1,S} {4,S} {15,S} {16,S}
+7 C u0 p0 c0 {2,D} {5,S} {17,S}
+8 Li u0 p0 c0 {1,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {5,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+17 H u0 p0 c0 {7,S}
diff --git a/input/kinetics/libraries/LithiumPrimaryKinetics/reactions.py b/input/kinetics/libraries/LithiumPrimaryKinetics/reactions.py
new file mode 100644
index 0000000000..3a6ec4b6d6
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryKinetics/reactions.py
@@ -0,0 +1,2288 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumPrimaryKinetics"
+shortDesc = ""
+longDesc = """
+
+"""
+autoGenerated=False
+entry(
+ index = 0,
+ label = "[Li]O[C]1OCCO1 <=> [Li]OC(=O)OC[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.99833e+12,'s^-1'), n=0.39066, Ea=(59.4863,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),#, solute=SoluteData(S=2.140536907525525,B=1.0466026029403899,E=-0.4141994326786929,L=4.770587031445122,A=0.9093778018261982,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]O[C]1OCCO1 <=> [Li]OC(=O)C[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.66599400 -1.25279300 -0.21024000
+O 1.87162600 0.40165300 0.02198600
+C 0.66099800 0.17325400 0.00564100
+O 0.17336600 -1.03959300 -0.15189100
+C -1.50340400 -0.88699900 -0.11131600
+C -1.62120800 0.59452300 0.08946800
+O -0.23758600 1.13890400 0.14639900
+H -1.77653100 -1.52152900 0.72327600
+H -1.79803100 -1.27921400 -1.07730400
+H -2.10607800 1.11033700 -0.73832600
+H -2.08512500 0.87165400 1.03518700
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1477.9928602794778 J/mol
+""",
+)
+
+entry(
+ index = 1,
+ label = "[Li]O[C]1OCCO1 <=> [Li]OCCO[C]=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.57285e+17,'s^-1'), n=-0.785762, Ea=(69.0722,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),#, solute=SoluteData(S=3.0810004035910854,B=2.1395342731524263,E=1.574243739442836,L=12.72791320115644,A=0.4805246849919219,comment='')),
+ longDesc =
+"""
+TS method summary for TS2 in [Li]O[C]1OCCO1 <=> [Li]OCCO[C]=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+O 2.59867100 -0.18728600 -1.35132100
+C 1.56185200 0.17450300 -0.90257500
+O 1.11484400 0.02288600 0.33185500
+C -0.23857200 0.51166800 0.61927300
+C -1.32472800 -0.56246600 0.36870000
+O -2.30958000 -0.11570300 -0.47987400
+Li -3.43222200 0.30055100 -1.54626500
+H -0.43948800 1.37473300 -0.01534500
+H -0.17835100 0.82215200 1.66217400
+H -1.74337700 -0.86314000 1.34516400
+H -0.80689900 -1.45309200 -0.02768100
+
+1D rotors:
+pivots: [2, 3], dihedral: [1, 2, 3, 4], rotor symmetry: 1, max scan energy: 38.37 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 5], rotor symmetry: 1, max scan energy: 11.02 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: Could not read energies
+pivots: [5, 6], dihedral: [4, 5, 6, 7], rotor symmetry: 1, max scan energy: 0.22 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1716.0525411150861 J/mol
+""",
+)
+
+entry(
+ index = 2,
+ label = "[Li]O[C](OC)OC <=> [Li]OC(=O)OC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.52475e+12,'s^-1'), n=0.485524, Ea=(74.6365,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.3491379528127108,B=1.0160698056746285,E=0.42818292849726036,L=5.830949166037544,A=0.6662179817376498,comment='')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]O[C](OC)OC <=> [Li]OC(=O)OC + [CH3]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 10.13692100 -1.88318400 0.21618100
+O 9.95271500 -3.47597800 -0.82363000
+C 9.43494700 -4.12309200 0.09748900
+O 9.05523800 -5.39251300 -0.02478300
+C 9.27694900 -6.00741100 -1.31448600
+O 9.23224500 -3.57328800 1.26418200
+C 8.49351700 -4.51650300 2.55819400
+H 8.90589100 -7.02407800 -1.20932600
+H 10.33979200 -6.00627900 -1.55471100
+H 8.72542600 -5.47212400 -2.08690700
+H 8.49157700 -3.75633300 3.32703400
+H 9.18504600 -5.33492000 2.70390000
+H 7.52622300 -4.78602300 2.15700800
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: Another conformer for TS4 exists which is 2.60 kJ/mol lower.Another conformer for TS4 exists which is 2.60 kJ/mol lower. But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 7], invalidation reason: Two consecutive points are inconsistent by more than 17.59 kJ/molTwo consecutive points are inconsistent by more than 19.39 kJ/molTwo consecutive points are inconsistent by more than 23.48 kJ/mol
+pivots: [4, 5], dihedral: [3, 4, 5, 8], rotor symmetry: 2, max scan energy: 2.98 kJ/mol
+pivots: [6, 7], dihedral: [3, 6, 7, 11], rotor symmetry: 3, max scan energy: 2.25 kJ/mol
+Troubleshot with the following constraints and 2 degrees resolution:
+D 1 2 3 4 F
+D 2 3 4 5 F
+D 2 3 6 7 F
+D 3 4 5 8 F
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1650.2595639812773 J/mol
+""",
+)
+
+entry(
+ index = 3,
+ label = "[Li]OC1OCC1 <=> O=CCCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.22949e+12,'s^-1'), n=0.0425752, Ea=(-0.0643594,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6463081864477556,B=1.3642592064572354,E=2.83101426768693,L=6.499926586799369,A=1.3639449338060428,comment='')),
+ longDesc =
+"""
+TS method summary for TS7 in [Li]OC1OCC1 <=> O=CCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -1.13093225 -1.47782476 -0.52938465
+O -1.71415457 0.21718059 -0.13786126
+C -0.60832813 0.42268843 0.42486000
+O 0.44495341 -1.09247544 0.19796183
+C 1.46777571 -0.14965544 -0.03324304
+C 0.58784040 1.07473776 -0.26303306
+H -0.57618074 0.46549170 1.52547654
+H 2.11736192 -0.42023494 -0.87312379
+H 2.10541851 -0.03741197 0.85335523
+H 0.35290002 1.23671989 -1.31600879
+H 0.90847788 2.01537435 0.18857794
+
+1D rotors:
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molTwo consecutive points are inconsistent by more than 0.39 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 3], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 383.9871972817142 J/mol
+""",
+)
+
+entry(
+ index = 4,
+ label = "O=CCCO[Li] <=> [Li]OC=C + C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.46545e+14,'s^-1'), n=0.20628, Ea=(62.2385,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.7509029646949823,B=2.006218503247397,E=1.143393868363932,L=8.571412669855551,A=0.5404851704510933,comment='')),
+ longDesc =
+"""
+TS method summary for TS10 in O=CCCO[Li] <=> [Li]OC=C + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.67050684 -1.60390085 -0.36093039
+O -0.92604375 -1.15828311 -0.03727727
+C -1.60083705 -0.10816047 0.33621254
+O 2.05006768 -0.34074837 0.03435938
+C 1.84701267 0.85995531 0.09314486
+C -1.65781511 1.09798726 -0.28717014
+H -2.17928322 -0.21866717 1.26598488
+H 0.96975439 1.32395018 -0.38007248
+H 2.53532757 1.50855856 0.65878630
+H -1.19345872 1.25604363 -1.25688972
+H -2.27676986 1.89077262 0.11390132
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molTwo consecutive points are inconsistent by more than 6.68 kJ/mol
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 10], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1179.836010787957 J/mol
+""",
+)
+
+entry(
+ index = 5,
+ label = "[Li]N[CH2] <=> [Li] + N=C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.3493e+15,'s^-1'), n=-0.259789, Ea=(57.8699,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.65419313965326,B=1.2542197583042969,E=-0.21990942778263972,L=-9.14111680402368,A=3.645314481406821,comment='')),
+ longDesc =
+"""
+TS method summary for TS5 in [Li]N[CH2] <=> [Li] + N=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 6.05139304 -0.13209844 0.04731853
+N -0.59090151 0.44974234 -0.13918199
+C -1.50102245 -0.40751439 0.06649375
+H -0.84130096 1.35681132 0.26234830
+H -2.43737623 -0.21216607 0.60231309
+H -1.36253440 -1.42264825 -0.30947313
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9225.750515830967 J/mol
+""",
+)
+
+entry(
+ index = 6,
+ label = "[Li]O[CH]O <=> O=[CH] + [Li]O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.59528e+12,'s^-1'), n=0.518458, Ea=(46.6821,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7137053723954238,B=2.3116450623393274,E=-0.028001584137479975,L=6.399784910596449,A=1.0368467911904864,comment='')),
+ longDesc =
+"""
+TS method summary for TS3 in [Li]O[CH]O <=> O=[CH] + [Li]O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.87424500 0.73974100 0.09129300
+O 1.75669700 -0.86642000 0.56373200
+C 2.58297500 -1.53104300 1.11098800
+O 4.34504900 0.32811600 0.72907500
+H 3.18306800 -1.22575300 1.99446700
+H 5.29067900 0.34100400 0.85554700
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1999.2439277651972 J/mol
+""",
+)
+
+entry(
+ index = 7,
+ label = "[Li]OC1OCCC1 <=> O=CCCCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3.92231e+16,'s^-1'), n=-0.357468, Ea=(90.256,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.8258378208381454,B=2.5221250810295626,E=1.614714374506913,L=12.761980701907916,A=0.608203513102231,comment='')),
+ longDesc =
+"""
+TS method summary for TS5 in [Li]OC1OCCC1 <=> O=CCCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.22951500 -8.28055600 1.65539800
+O 0.68519100 -2.60872700 -1.25971800
+C 1.79766000 -3.06680400 -1.37724100
+O 3.01142700 -7.05534000 0.98825700
+C 3.68295800 -5.99093900 0.43042200
+C 2.84010400 -5.23936600 -0.64613300
+C 2.57331200 -3.76228300 -0.29332800
+H 2.31835000 -3.00937400 -2.36068900
+H 4.62637300 -6.32192200 -0.04005100
+H 3.97620800 -5.26015300 1.20678500
+H 1.88728800 -5.76856000 -0.73282900
+H 3.32837000 -5.29792800 -1.62623300
+H 3.53476000 -3.24110100 -0.18547300
+H 2.02723700 -3.67881900 0.64973300
+
+1D rotors:
+pivots: [3, 7], dihedral: [2, 3, 7, 6], rotor symmetry: 1, max scan energy: 7.20 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason: Could not read energies
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+pivots: [6, 7], dihedral: [5, 6, 7, 3], rotor symmetry: 1, max scan energy: 25.95 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1791.841785505636 J/mol
+""",
+)
+
+entry(
+ index = 8,
+ label = "[Li]OC(=O)OC[CH2] + [Li] <=> C=C + [Li]OC(=O)O[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.82969e+15,'m^3/(mol*s)'), n=-2.51461, Ea=(7.6717,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K'), comment="""Fitted to 50 data points; dA = *|/ 3.36722, dn = +|- 0.167182, dEa = +|- 0.694638 kJ/mol"""),
+ longDesc =
+"""
+Computed using CVTST.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+# entry(
+# index = 9,
+# label = "N#CCC[CH2] + [Li] <=> C=C + [Li]N=C=C",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(162517,'cm^3/(mol*s)'), n=2.55635, Ea=(59.4607,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+# longDesc =
+# """
+# TS method summary for TS4 in N#CCC[CH2] + [Li] <=> C=C + [Li]N=C=C:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 1
+
+# Optimized TS geometry:
+# Li 2.20866700 -3.26362100 0.69535500
+# N 2.76324600 -1.36738800 0.52284100
+# C 3.08763300 -0.25769800 0.42194700
+# C 3.55202200 1.05372200 0.27042400
+# C 5.61636500 0.76198000 -0.55956300
+# C 6.13960300 2.01125800 -0.73612200
+# H 5.99188800 2.56160300 -1.65835400
+# H 6.67588100 2.51773700 0.05829500
+# H 3.80464300 1.58961900 1.17622700
+# H 3.12229100 1.63338000 -0.53630400
+# H 5.22760700 0.20947200 -1.40717800
+# H 5.90695700 0.16590300 0.29781600
+
+
+# No rotors considered for this TS.
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+# """,
+# )
+
+# entry(
+# index = 10,
+# label = "O=COC[CH2] + [Li] <=> C=C + [Li]OC=O",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(419384,'cm^3/(mol*s)'), n=2.21898, Ea=(48.2832,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.0247091484586592,B=2.5777645372278832,E=0.3431344611927818,L=9.346538089381045,A=0.8860009592023523,comment='')),
+# longDesc =
+# """
+# TS method summary for TS5 in O=COC[CH2] + [Li] <=> C=C + [Li]OC=O:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 2
+
+# Optimized TS geometry:
+# Li 1.47146600 0.74106900 0.34679500
+# O 1.74203700 -0.90158000 -0.33076200
+# C 3.01837200 -0.90979200 0.01521300
+# O 3.16343900 0.14671400 0.94399000
+# C 5.05439400 1.01094500 0.89916500
+# C 5.82789100 0.09990700 1.55097100
+# H 6.29799000 -0.71908900 1.01934900
+# H 5.93637200 0.12012200 2.62899600
+# H 3.47455200 -1.85913300 0.33255600
+# H 5.03391400 1.04006800 -0.18277800
+# H 4.67644000 1.88053200 1.42227500
+
+# 1D rotors:
+# * Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# * Invalidated! pivots: [5, 6], dihedral: [10, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+# fit to dGsolv298 for library solvents:
+# ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+# "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+# "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+# "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+# "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+# MAE error: 2119.3556871894884 J/mol
+# """,
+# )
+
+# entry(
+# index = 11,
+# label = "O=CCC[O] + [Li] <=> C=O + [Li]OC=C",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(1.74272e+07,'cm^3/(mol*s)'), n=2.05933, Ea=(-27.3358,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.2490249849978214,B=2.6960753668589854,E=2.1706425235190108,L=14.985510873166351,A=0.7334126588566799,comment='')),
+# longDesc =
+# """
+# TS method summary for TS6 in O=CCC[O] + [Li] <=> O=C + [Li]OC=C:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 2
+
+# Optimized TS geometry:
+# Li -0.12483600 1.05743400 -1.25410700
+# O 1.46505300 0.73245600 -1.16275100
+# C 2.74034000 0.37502600 -1.09913800
+# C 3.04331700 -0.78995100 -0.24359400
+# C 5.23224300 -1.20192000 -0.57446500
+# O 5.53528300 -2.13497400 0.16495700
+# H 3.49482900 1.15012100 -1.25222600
+# H 3.09995100 -0.67302800 0.84369900
+# H 2.69585800 -1.77304600 -0.55668300
+# H 5.44674400 -0.15439900 -0.29353200
+# H 4.98321600 -1.36209900 -1.63871500
+
+# 1D rotors:
+# pivots: [2, 3], dihedral: [1, 2, 3, 4], rotor symmetry: 1, max scan energy: 0.15 kJ/mol (set as a FreeRotor)
+# * Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+# fit to dGsolv298 for library solvents:
+# ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+# "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+# "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+# "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+# "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+# MAE error: 1868.0308622468697 J/mol
+# """,
+# )
+
+# entry(
+# index = 12,
+# label = "N=CCN[CH2] + [Li] <=> N=C + [Li]NC=C",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(2.45437e+09,'cm^3/(mol*s)'), n=0.869935, Ea=(-36.817,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+# longDesc =
+# """
+# TS method summary for TS9 in N=CCN[CH2] + [Li] <=> N=C + [Li]NC=C:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 2
+
+# Optimized TS geometry:
+# Li 1.43792400 2.18346800 3.13495900
+# N 1.34945800 2.03367400 1.29552300
+# C 1.99493600 1.25306300 0.41510400
+# C 2.96296800 0.23412800 0.92093300
+# N 4.27184500 0.83660900 1.22913800
+# C 5.23741200 0.10972200 1.89794800
+# H 5.27720600 -0.95423700 1.69896300
+# H 6.15316900 0.62651600 2.15482900
+# H 0.80698400 2.74089000 0.80369300
+# H 1.97804700 1.46965400 -0.65057600
+# H 3.11843300 -0.55503700 0.17739200
+# H 2.55868300 -0.25464600 1.82436900
+# H 4.22048000 1.82091600 1.45401500
+
+# 1D rotors:
+# * Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# * Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: Could not read energies
+# * Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# * Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+# """,
+# )
+
+entry(
+ index = 13,
+ label = "[Li]O[CH2] <=> [Li] + C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.12946e+16,'s^-1'), n=-0.125312, Ea=(91.4067,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.4735938637413528,B=2.67486764340657,E=-5.09678040094995,L=-4.876934525239067,A=3.9944267641274602,comment='')),
+ longDesc =
+"""
+TS method summary for TS2 in [Li]O[CH2] <=> [Li] + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 5.94953985 -0.41297703 -0.17000001
+O -1.44709358 -0.51595384 -0.58748736
+C -0.51807902 -0.11636709 0.05072105
+H -0.34294039 0.96399341 0.21662004
+H 0.21655881 -0.80519630 0.51008017
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 9134.820807836515 J/mol
+""",
+)
+
+entry(
+ index = 14,
+ label = "[Li]OC + C[CH2] <=> [Li] + COCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.00266112,'cm^3/(mol*s)'), n=4.54216, Ea=(65.2952,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS2 in [Li]OC + C[CH2] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.95543900 -2.06606100 0.49168200
+C -1.75006400 0.40919300 0.35197900
+C -0.92556700 -0.39675200 -0.59963000
+O 0.88790900 -0.39946500 0.11588300
+C 1.47810800 0.86505900 -0.03509700
+H -1.29395600 1.37884800 0.56898500
+H -1.90037200 -0.11068200 1.30024000
+H -2.74501400 0.61653300 -0.07202800
+H -1.15395000 -1.45760200 -0.67306700
+H -0.66073800 0.05265400 -1.54957700
+H 1.04427800 1.60592100 0.65130900
+H 1.36341600 1.24189300 -1.06273700
+H 2.55152500 0.80698400 0.17628500
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 9], rotor symmetry: 3, max scan energy: 4.07 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 11], invalidation reason: Two consecutive points are inconsistent by more than 0.60 kJ/molTwo consecutive points are inconsistent by more than 0.75 kJ/molTwo consecutive points are inconsistent by more than 0.80 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 15,
+ label = "[Li]NC + [CH3] <=> [Li] + CNC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(514.959,'cm^3/(mol*s)'), n=2.75171, Ea=(19.1236,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=5.9720845035693655,B=-11.11835148496454,E=1.2672065293713617,L=34.51723438776737,A=-10.461680798130194,comment='')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]NC + [CH3] <=> [Li] + CNC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.55807100 1.25431300 2.17607900
+C 0.45911900 -0.67732400 0.78010500
+N 2.03979300 0.43783800 1.54272500
+C 2.89461700 0.71861100 0.39194100
+H 1.12159700 -1.42531300 0.36122300
+H -0.04238100 -0.07878800 0.02372200
+H -0.21042200 -1.07927100 1.53776200
+H 2.46067500 -0.31310800 2.08791500
+H 3.84954800 1.15732300 0.70479900
+H 2.40476300 1.44613800 -0.26337200
+H 3.12222700 -0.17403500 -0.20975200
+
+1D rotors:
+pivots: [3, 4], dihedral: [1, 3, 4, 9], rotor symmetry: 3, max scan energy: 8.43 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 8.029132914089132e-10 J/mol
+""",
+)
+
+entry(
+ index = 16,
+ label = "[Li]N(C)C + [H] <=> [Li] + CNC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.98085e+08,'cm^3/(mol*s)'), n=1.22191, Ea=(-78.8037,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.996332219215656,B=1.029302623121347,E=1.007550487792502,L=7.3685642232941575,A=0.4814345945968402,comment='')),
+ longDesc =
+"""
+TS method summary for TS5 in [Li]N(C)C + [H] <=> [Li] + CNC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.01255156 -2.15540609 0.17281461
+C -1.18904595 0.48655227 -0.00173058
+N -0.00119847 -0.32330655 0.13512720
+C 1.19572522 0.47240045 -0.00552380
+H -1.29496161 1.17270913 0.84939970
+H -2.08251863 -0.14341129 -0.03173585
+H -1.18193779 1.09526007 -0.91713761
+H -0.00888523 -1.23541538 -1.24714949
+H 2.08165534 -0.16803921 -0.03714132
+H 1.31181522 1.15820060 0.84456073
+H 1.19338693 1.08020408 -0.92156070
+
+1D rotors:
+* Invalidated! pivots: [1, 3], dihedral: [6, 1, 3, 2], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [2, 3], dihedral: [9, 2, 3, 1], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1057.5062115419946 J/mol
+""",
+)
+
+entry(
+ index = 17,
+ label = "[Li]NC + C[CH2] <=> [Li] + CNCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(57.4636,'cm^3/(mol*s)'), n=2.93295, Ea=(29.2672,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9175438008860265,B=1.1395826064596657,E=0.4944811262263229,L=5.415263196320309,A=0.6943364764189893,comment='')),
+ longDesc =
+"""
+TS method summary for TS6 in [Li]NC + C[CH2] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.86285000 -3.43375100 2.79902300
+C 0.98777800 -2.65086100 -0.09382000
+N 0.71786100 -3.57279300 1.00412300
+C 2.58209000 -4.54615500 1.38240100
+C 2.51791600 -5.74331000 0.47224200
+H 1.57842000 -1.80331500 0.26902300
+H 0.06101000 -2.23833800 -0.51244300
+H 1.54339700 -3.11115800 -0.92583100
+H 0.23428600 -4.38822600 0.63186500
+H 2.73940400 -4.78839100 2.43474500
+H 3.21675900 -3.72761600 1.05622300
+H 2.23662900 -5.46469700 -0.54831800
+H 1.79544000 -6.48501400 0.82582800
+H 3.48948500 -6.25526200 0.40261200
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 1], rotor symmetry: 3, max scan energy: 7.27 kJ/mol
+pivots: [4, 5], dihedral: [10, 4, 5, 12], rotor symmetry: 1, max scan energy: 4.84 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1827.7398650288437 J/mol
+""",
+)
+
+entry(
+ index = 18,
+ label = "[Li]NCC + [CH3] <=> [Li] + CNCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(563.399,'cm^3/(mol*s)'), n=2.71918, Ea=(25.4344,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.877486735996646,B=0.6916407047808263,E=0.748415650862252,L=5.385263016210897,A=0.5210754074032086,comment='')),
+ longDesc =
+"""
+TS method summary for TS7 in [Li]NCC + [CH3] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.05606100 -3.45546000 2.01224800
+C 1.02585900 -2.12623900 0.34507400
+N 1.00888800 -4.16659200 0.73566500
+C 2.41249300 -4.57313800 0.74711200
+C 2.59339300 -6.09431100 0.80785700
+H 1.60805900 -1.64413200 1.12608300
+H 0.03900700 -1.69160400 0.19949800
+H 1.57322900 -2.25185000 -0.58111600
+H 0.59390100 -4.45373900 -0.15068400
+H 2.88943300 -4.12236900 1.62589400
+H 2.95316600 -4.18843300 -0.13225800
+H 2.14825000 -6.57778000 -0.06703100
+H 2.11573400 -6.50891300 1.69885700
+H 3.65797100 -6.35433100 0.83047600
+
+1D rotors:
+pivots: [3, 4], dihedral: [1, 3, 4, 5], rotor symmetry: 1, max scan energy: 23.37 kJ/mol
+pivots: [4, 5], dihedral: [3, 4, 5, 12], rotor symmetry: 3, max scan energy: 13.57 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1425.8896370647562 J/mol
+""",
+)
+
+entry(
+ index = 19,
+ label = "[Li]N(C)CC + [H] <=> [Li] + CNCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.33693e+09,'cm^3/(mol*s)'), n=1.12822, Ea=(-71.4349,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.1131935806214712,B=1.1556454917670655,E=1.2169728270193971,L=7.839572648134702,A=0.31656236651087616,comment='')),
+ longDesc =
+"""
+TS method summary for TS8 in [Li]N(C)CC + [H] <=> [Li] + CNCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.33837900 -4.64647900 1.22723600
+C 1.24491900 -2.34667300 0.49201700
+N 1.21107200 -3.75746400 0.84374800
+C 2.49783000 -4.39820300 0.61837300
+C 2.47997100 -5.87080600 1.02075500
+H 1.87369600 -1.78539800 1.19871100
+H 0.23758500 -1.91968100 0.53084900
+H 1.64161700 -2.16740400 -0.51925300
+H 0.20877800 -4.39361800 -0.34456500
+H 3.26953700 -3.86937200 1.20156400
+H 2.80323700 -4.30928200 -0.43751400
+H 1.74538600 -6.42456000 0.42730500
+H 2.23250200 -5.98351400 2.08218500
+H 3.45557400 -6.33643600 0.85626200
+
+1D rotors:
+* Invalidated! pivots: [1, 3], dihedral: [7, 1, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molCould not read energies
+pivots: [2, 4], dihedral: [10, 2, 4, 3], rotor symmetry: 1, max scan energy: 26.26 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [1, 3, 4, 2], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molCould not read energies
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1071.2824706634553 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 20,
+ label = "[Li]O + [H] <=> [Li] + O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.03649e+11,'cm^3/(mol*s)'), n=0.812216, Ea=(-21.6525,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6576610150461983,B=2.4435784684265482,E=0.404796645816695,L=7.698368077501874,A=0.9750486732350473,comment='')),
+ longDesc =
+"""
+TS method summary for TS9 in [Li]O + [H] <=> [Li] + O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.28826489 0.18010119 0.00207350
+O -0.36733064 0.11184220 0.00745957
+H 0.39396705 -1.32898954 -0.00633395
+H -1.27901258 -0.17912694 0.00905353
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2114.547977695349 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 21,
+ label = "[Li]N + [H] <=> [Li] + N",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.12322e+09,'cm^3/(mol*s)'), n=1.12657, Ea=(-57.4909,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9471505265788214,B=1.7274624400621788,E=0.6115119617819315,L=6.871072605917964,A=0.6704069036466952,comment='')),
+ longDesc =
+"""
+TS method summary for TS10 in [Li]N + [H] <=> [Li] + N:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.91584700 2.00773900 -1.02886800
+N 1.72410800 0.79367700 0.30433400
+H 3.35327200 1.38343900 -0.34462600
+H 1.91932800 0.99397300 1.28417000
+H 1.91839100 -0.20073000 0.19609500
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1435.1628987975923 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 22,
+ label = "[Li]OC + [H] <=> [Li] + CO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.47113e+11,'cm^3/(mol*s)'), n=0.774968, Ea=(-24.6724,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.4067121409688057,B=1.4628968939845368,E=0.9656443938025181,L=7.661570379273675,A=0.443175955652443,comment='')),
+ longDesc =
+"""
+TS method summary for TS11 in [Li]OC + [H] <=> [Li] + CO:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 0,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.05286763 0.11494012 -0.00863872
+O 0.38320517 0.12959365 -0.00264163
+C -1.00062168 -0.00723588 -0.00489942
+H 0.96172040 -1.23025812 0.00873654
+H -1.46633645 0.98431418 -0.00871499
+H -1.35936775 -0.54162168 0.88336582
+H -1.35623697 -0.54719021 -0.89107706
+
+1D rotors:
+pivots: [2, 3], dihedral: [1, 2, 3, 5], rotor symmetry: 1, max scan energy: 0.65 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1321.823066484516 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 23,
+ label = "[Li]O + [CH3] <=> [Li] + CO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.07712e+06,'cm^3/(mol*s)'), n=2.28023, Ea=(85.5904,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.4173362998736376,B=2.357499252462657,E=0.5167298959343533,L=7.9017680525604375,A=1.0064038665607862,comment='')),
+ longDesc =
+"""
+TS method summary for TS12 in [Li]O + [CH3] <=> [Li] + CO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.28748200 -0.18010600 1.00319500
+O 0.86993900 0.39784300 -0.11608000
+C 2.59811800 -0.51057100 -0.06290500
+H 0.96229700 1.06152900 -0.80658800
+H 3.25030100 0.31559600 0.18187100
+H 2.64875300 -0.90201200 -1.06889700
+H 2.43978600 -1.23892300 0.72228500
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2046.4105178239631 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 24,
+ label = "[Li]NC + [H] <=> [Li] + CN",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.62458e+07,'cm^3/(mol*s)'), n=1.49444, Ea=(-71.5589,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-5.4761368991675985,B=-6.829449919467144,E=14.43663245128814,L=28.957970295010895,A=0.4259943743771139,comment='')),
+ longDesc =
+"""
+TS method summary for TS13 in [Li]NC + [H] <=> [Li] + CN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.97896700 2.55914500 -0.24504500
+N 1.69265600 1.43053300 0.36161000
+C 1.63546400 -0.02844300 0.34543400
+H 3.12243000 1.84764100 1.28691400
+H 1.03626400 1.77345000 1.06081000
+H 2.44491900 -0.42885900 -0.27310200
+H 0.69075100 -0.38108300 -0.09139200
+H 1.72952400 -0.48126300 1.34115700
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [5, 1, 2, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 4708.787281816518 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 25,
+ label = "[Li]O + C[CH2] <=> [Li] + CCO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(26.5507,'cm^3/(mol*s)'), n=3.72095, Ea=(84.1068,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9913576154323054,B=3.1755887609180435,E=-0.2623364392566645,L=7.244831699370673,A=0.5572363451823703,comment='')),
+ longDesc =
+"""
+TS method summary for TS15 in [Li]O + C[CH2] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -2.57304700 0.27516400 -0.65750400
+C 1.54543100 -0.31294900 -0.20991200
+C 0.50691500 0.68250500 0.19066600
+O -1.20609000 -0.34489700 0.18644900
+H 1.31703400 -0.75838900 -1.18091300
+H 2.53974800 0.15487200 -0.28938100
+H 1.63329600 -1.12303200 0.51949300
+H 0.22894600 1.43785900 -0.53575000
+H 0.48492400 1.02184600 1.21876200
+H -1.09958300 -1.00876300 0.87538500
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 8], rotor symmetry: 3, max scan energy: 5.59 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1614.986893512281 J/mol
+""",
+)
+
+entry(
+ index = 26,
+ label = "[Li]OCC + [H] <=> [Li] + CCO",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.77483e+09,'cm^3/(mol*s)'), n=1.18598, Ea=(-23.16,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-8.623486006056842,B=14.917486429580572,E=-5.719694357458241,L=40.120001635540106,A=-6.502228345652631,comment='')),
+ longDesc =
+"""
+TS method summary for TS16 in [Li]OCC + [H] <=> [Li] + CCO:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.49143616 0.55729277 -0.12525674
+C -1.41113872 0.44040349 -0.02571704
+C -0.33003762 -0.62547457 0.03698411
+O 0.94967788 -0.09370527 -0.11768223
+H -1.37208971 0.96882848 -0.98064514
+H -2.40427692 -0.00332329 0.08351568
+H -1.26743662 1.17043881 0.77319839
+H -0.49296294 -1.36694873 -0.75554854
+H -0.39930548 -1.16567232 0.99075815
+H 1.34235779 0.48281906 1.16520496
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 4], rotor symmetry: 3, max scan energy: 13.87 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 1], rotor symmetry: 1, max scan energy: 0.52 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1.736364652060729e-05 J/mol
+""",
+)
+
+entry(
+ index = 27,
+ label = "[Li]N + C[CH2] <=> [Li] + CCN",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.337329,'cm^3/(mol*s)'), n=3.54967, Ea=(34.4127,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.6195332200790409,B=2.120893670736446,E=10.142480436000628,L=-0.8781474558081529,A=3.410407959634951,comment='')),
+ longDesc =
+"""
+TS method summary for TS17 in [Li]N + C[CH2] <=> [Li] + CCN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.24111023 0.88861561 0.00000000
+C -1.53683978 -0.23464256 0.00000000
+C -0.36949484 0.70943914 0.00000000
+N 1.25313058 -0.61428298 0.00000000
+H -1.53341411 -0.88051875 -0.88086808
+H -2.49375547 0.30282603 0.00000000
+H -1.53341411 -0.88051875 0.88086808
+H -0.26776509 1.30799358 -0.90233509
+H -0.26776509 1.30799358 0.90233509
+H 1.01858967 -1.18352112 -0.80784057
+H 1.01858967 -1.18352112 0.80784057
+
+1D rotors:
+pivots: [2, 3], dihedral: [5, 2, 3, 8], rotor symmetry: 3, max scan energy: 4.88 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2191.6345368658176 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 28,
+ label = "[Li]OC + [CH3] <=> [Li] + COC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3026.56,'cm^3/(mol*s)'), n=2.80221, Ea=(80.834,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.223920620501668,B=0.8264175269682525,E=0.40415741933873844,L=5.605210034978575,A=0.4397271958947774,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]OC + [CH3] <=> [Li] + COC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 6.51706400 -1.13632600 -3.21539400
+C 4.02423400 -1.41606000 -2.34418400
+O 5.56418700 -0.34050500 -2.05108800
+C 5.26882800 0.60085300 -1.05050100
+H 3.90830800 -1.82877700 -1.35110600
+H 4.26586000 -2.13817000 -3.11854700
+H 3.32573800 -0.64407500 -2.63764800
+H 4.99996100 0.11042200 -0.10400400
+H 4.43692100 1.25540800 -1.34741500
+H 6.14543300 1.23014000 -0.86797000
+
+1D rotors:
+* Invalidated! pivots: [3, 4], dihedral: [1, 3, 4, 8], invalidation reason: Two consecutive points are inconsistent by more than 1.40 kJ/molTwo consecutive points are inconsistent by more than 1.52 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1526.5386694571223 J/mol
+""",
+)
+
+entry(
+ index = 29,
+ label = "[Li]OCC + [CH3] <=> [Li] + COCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.09569,'cm^3/(mol*s)'), n=3.2546, Ea=(82.2788,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.091886494292463,B=0.5254418313743373,E=1.2963729646265112,L=5.721969023897385,A=0.6575614317431779,comment='')),
+ longDesc =
+"""
+TS method summary for TS3 in [Li]OCC + [CH3] <=> [Li] + COCC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -2.74010800 -4.87944000 -2.74685100
+C -2.29023200 -1.71339600 -1.09005000
+C -3.11923600 -1.87939400 -2.35977600
+O -3.12657200 -3.21901700 -2.79202100
+C -4.17095700 -3.35427200 -4.36839000
+H -1.25332700 -2.01355600 -1.26099300
+H -2.69616100 -2.32265000 -0.27855700
+H -2.29596500 -0.66546600 -0.76876900
+H -4.14967400 -1.54173400 -2.17015500
+H -2.70920200 -1.23314600 -3.15098300
+H -3.61682000 -2.67724300 -5.00431900
+H -5.11687000 -2.99859300 -3.98292400
+H -4.16500100 -4.39266700 -4.68634200
+
+1D rotors:
+pivots: [2, 3], dihedral: [6, 2, 3, 4], rotor symmetry: 3, max scan energy: 15.23 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 1], invalidation reason: Two consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.75 kJ/molTwo consecutive points are inconsistent by more than 6.64 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1616.2708289398845 J/mol
+""",
+)
+
+entry(
+ index = 30,
+ label = "[Li]N + [CH3] <=> [Li] + CN",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5347.09,'cm^3/(mol*s)'), n=2.59727, Ea=(34.8806,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.8306578175990244,B=1.956506108230911,E=0.011774617070094268,L=6.100850860272114,A=1.0441801517777485,comment='')),
+ longDesc =
+"""
+TS method summary for TS14 in [Li]N + [CH3] <=> [Li] + CN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.40811800 2.01328500 -0.85438200
+N 2.11561000 1.83611700 0.90968800
+C 1.73450000 -0.09747600 0.20605700
+H 2.80524200 1.62458700 1.63010700
+H 1.24512600 2.01206100 1.41033200
+H 2.64014000 -0.51618000 -0.22479700
+H 0.88533500 -0.08035300 -0.47199800
+H 1.49690500 -0.50092000 1.18138200
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 3733.7594052313543 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 31,
+ label = "[Li]NCC + [H] <=> [Li] + CCN",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.89074e+07,'cm^3/(mol*s)'), n=1.63253, Ea=(-67.2986,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.9852422925798727,B=1.2991389460904967,E=1.413033851489418,L=7.445245509701895,A=0.5371087291175491,comment='')),
+ longDesc =
+"""
+TS method summary for TS18 in [Li]NCC + [H] <=> [Li] + CCN:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 4.96386900 0.59677000 -2.24670800
+C 1.28798200 -0.93517900 -1.41482700
+C 2.04070800 0.34605900 -1.78351100
+N 3.41953300 0.41063200 -1.30736000
+H 1.79730100 -1.80886900 -1.82862700
+H 0.26120100 -0.91416400 -1.79495900
+H 1.23888400 -1.05694700 -0.32722800
+H 2.04864400 0.45971700 -2.87498700
+H 1.48295900 1.21378300 -1.39663000
+H 4.25148700 -0.92956300 -2.05992500
+H 3.45414500 0.04969200 -0.35434500
+
+1D rotors:
+pivots: [1, 2], dihedral: [6, 1, 2, 3], rotor symmetry: 3, max scan energy: 14.10 kJ/mol
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 11], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1260.011897897355 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 32,
+ label = "[CH3] + [Li][H] <=> [Li] + C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(79732.1,'cm^3/(mol*s)'), n=2.61156, Ea=(12.1363,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=3.39470212956669,B=1.6022203760198037,E=1.4946262264125265,L=10.49010693814182,A=0.4943151788298517,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [CH3] + [Li][H] <=> [Li] + C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 3, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 2.70871273 -0.01490895 0.00158396
+C -0.96949251 0.00074660 0.00030355
+H 1.04579798 -0.00431498 -0.00287904
+H -1.12331191 -0.67940335 -0.82540465
+H -1.11719084 1.05691017 -0.17519024
+H -1.11679945 -0.37438412 1.00313346
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1724.5822620152626 J/mol
+""",
+)
+
+entry(
+ index = 33,
+ label = "[CH3] + [Li]F <=> [Li] + CF",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.14134e+06,'cm^3/(mol*s)'), n=2.18948, Ea=(140.779,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8681935378213759,B=2.373498032935028,E=0.32859248603303737,L=5.004153890392606,A=0.8849787213003473,comment='')),
+ longDesc =
+"""
+TS method summary for TS2 in [CH3] + [Li]F <=> [Li] + CF:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 4.49673700 -1.13011800 1.39763100
+C 1.75580400 0.00037500 0.06602800
+F 3.42440700 -0.39159000 0.25679400
+H 1.58109900 0.66479500 0.90113000
+H 1.28598600 -0.97216800 0.11894400
+H 1.79999200 0.45924600 -0.91097200
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2138.0682833668507 J/mol
+""",
+)
+
+entry(
+ index = 34,
+ label = "[CH3] + [Li]Cl <=> [Li] + CCl",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.57736e+07,'cm^3/(mol*s)'), n=1.91726, Ea=(119.96,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.40096476096442,B=0.7611537028291462,E=0.36695032193123533,L=5.182274882516309,A=0.578711830957878,comment='')),
+ longDesc =
+"""
+TS method summary for TS3 in [CH3] + [Li]Cl <=> [Li] + CCl:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.00547500 -0.87557900 -3.79036700
+C 1.88221400 0.13984100 -0.18786500
+Cl 3.00971200 0.32165900 -1.76333600
+H 2.24700300 0.89978200 0.49361100
+H 2.03861700 -0.86850900 0.17807800
+H 0.86741800 0.32211300 -0.52269700
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1761.0833142781657 J/mol
+""",
+)
+
+entry(
+ index = 35,
+ label = "[Li]O + C=C <=> [Li] + OC[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(51497.3,'cm^3/(mol*s)'), n=2.83384, Ea=(366.661,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8538812901233412,B=2.675568430768142,E=-6.952996746174581,L=1.5707766756804364,A=-0.4046889575036062,comment='')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]O + C=C <=> [Li] + OC[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 3.82071700 -0.24488300 -0.36482000
+C 0.89720500 -0.22058300 0.10504000
+H 1.30306300 -0.02886500 1.09171200
+C 0.83572500 0.78589300 -0.86569600
+O 2.70145500 0.49151200 -1.61715700
+H 0.59739300 -1.23813900 -0.11593200
+H 0.29359500 0.61937600 -1.78758900
+H 1.02332200 1.81627900 -0.60053600
+H 2.45117000 0.02306900 -2.42348300
+
+1D rotors:
+pivots: [2, 4], dihedral: [3, 2, 4, 7], rotor symmetry: 2, max scan energy: 17.83 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 4980.414430298042 J/mol
+""",
+)
+
+entry(
+ index = 36,
+ label = "[Li]OC(=O)OC[CH2] <=> [Li]OC[CH2] + O=C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.8039e+12,'s^-1'), n=0.472198, Ea=(80.6393,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.697605152955986,B=2.4862812293190593,E=-4.1974148204255775,L=2.872587466227873,A=0.9296666032597313,comment='')),
+ longDesc =
+"""
+TS method summary for TS5 in [Li]OC(=O)OC[CH2] <=> [Li]OC[CH2] + O=C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.96701700 -1.13824900 -0.15895200
+O -2.46633000 -0.36661300 0.95261900
+C -2.69790600 0.67181500 1.43609500
+O -2.94565100 1.68669600 1.92040500
+O 0.40069800 -0.49898400 -0.72233300
+C 1.57073700 0.05670900 -1.18237000
+C 2.36317900 0.78094900 -0.14406400
+H 3.22407400 1.38251500 -0.42071200
+H 1.38606500 0.76055700 -2.02340400
+H 2.23211500 -0.72124600 -1.63365600
+H 2.17387800 0.59315200 0.90679500
+
+1D rotors:
+* Invalidated! pivots: [5, 6], dihedral: [1, 5, 6, 7], invalidation reason: Could not read energies
+pivots: [6, 7], dihedral: [5, 6, 7, 8], rotor symmetry: 6, max scan energy: 2.96 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2756.9521557186627 J/mol
+""",
+)
+
+entry(
+ index = 37,
+ label = "[Li]OC(=O)OC <=> [Li]OC + O=C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.20441e+16,'s^-1'), n=0.126298, Ea=(88.7875,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS6 in [Li]OC(=O)OC <=> [Li]OC + O=C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 5.04185400 -0.21852400 -0.03835700
+O 3.25247800 -1.11583300 -0.33860900
+C 2.36548400 -0.96686600 -1.08434100
+O 1.48076300 -0.83623400 -1.81011400
+O 5.78339200 1.00550600 -0.77059600
+C 6.45425100 2.04955800 -1.36939800
+H 6.65054600 1.86707100 -2.44274400
+H 7.43841500 2.24421200 -0.90374600
+H 5.89254200 3.00108300 -1.31473500
+
+1D rotors:
+pivots: [5, 6], dihedral: [1, 5, 6, 7], rotor symmetry: 1, max scan energy: 0.04 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 38,
+ label = "[Li]OCO <=> [Li]O + C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.67089e+11,'s^-1'), n=0.423598, Ea=(30.5741,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.3926746359480871,B=2.430874130082185,E=1.0969664301003625,L=5.26139300991494,A=1.5271891998852951,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]OCO <=> [Li]O + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.78877200 1.23956200 0.07241700
+O 1.16034300 1.22721100 0.06023400
+C 1.39171400 0.02905600 0.10137600
+O -1.23386700 -0.34577400 -0.14916500
+H 2.09301700 -0.42740500 -0.61722300
+H 0.93534900 -0.62824800 0.84977000
+H -1.80092200 -1.09439000 -0.31740600
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2852.7605391591824 J/mol
+""",
+)
+
+entry(
+ index = 39,
+ label = "[Li]OCF <=> [Li]F + C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.47928e+13,'s^-1'), n=0.0523532, Ea=(1.77399,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.2544775378071295,B=3.8435703486608483,E=0.6208281974105191,L=9.542895814948176,A=0.874941113523824,comment='')),
+ longDesc =
+"""
+TS method summary for TS8 in [Li]OCF <=> [Li]F + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.73637500 -1.17722200 0.05547000
+O -1.11732500 -0.58062100 -0.02059700
+C -0.94937700 0.62629300 0.04611900
+F 1.57678000 0.22561600 -0.04626600
+H -0.44153100 1.10232800 0.89325700
+H -1.33358500 1.29011400 -0.74570300
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2167.4878926153538 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 40,
+ label = "[Li]OCCl <=> [Li]Cl + C=O",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.03509e+13,'s^-1'), n=-0.00858289, Ea=(0.072948,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.49973283735009,B=-1.363801515776159,E=11.671483182052631,L=9.85481016575309,A=1.7632374622781073,comment='')),
+ longDesc =
+"""
+TS method summary for TS9 in [Li]OCCl <=> [Li]Cl + C=O:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.00585826 -1.37546289 0.07580004
+O -1.70390800 -0.51267720 -0.03767821
+C -1.46459925 0.68381718 0.02582362
+Cl 1.51931730 0.06620772 0.01568653
+H -1.66736974 1.34639439 -0.82976904
+H -1.07809033 1.15217907 0.94055248
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 3473.2666466033193 J/mol
+""",
+)
+
+entry(
+ index = 41,
+ label = "O=S(=O)(C)CC[CH2] + [Li] <=> C=C + [Li]OS(=O)(=C)C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(312580,'cm^3/(mol*s)'), n=2.72776, Ea=(68.0852,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS1 in O=S(=O)(C)CC[CH2] + [Li] <=> C=C + [Li]OS(=O)(=C)C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.23360500 -0.43826800 1.05757300
+O 1.85305100 -0.48614800 0.18589400
+S 3.03288500 0.16000500 -0.45526700
+O 4.11761400 -0.69474000 -0.93728000
+C 2.38600100 1.10779500 -1.85159000
+C 3.67254200 1.32635100 0.68881200
+C 4.48291700 -0.08700100 2.46471000
+C 5.08941300 0.77695100 3.31110200
+H 4.54151500 1.26621700 4.10890900
+H 6.13803800 1.03308600 3.20640600
+H 1.96675400 0.37577700 -2.54325400
+H 3.21334900 1.64592300 -2.31400900
+H 1.61020800 1.78181000 -1.48749800
+H 2.93045600 1.89337800 1.23838600
+H 4.61031100 1.78138900 0.39657800
+H 3.46456700 -0.41452700 2.64278500
+H 5.05211100 -0.65010600 1.73396300
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason:
+pivots: [3, 6], dihedral: [2, 3, 6, 14], rotor symmetry: 1, max scan energy: 14.75 kJ/mol
+pivots: [3, 5], dihedral: [2, 3, 5, 11], rotor symmetry: 3, max scan energy: 10.77 kJ/mol
+* Invalidated! pivots: [7, 8], dihedral: [16, 7, 8, 9], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+# entry(
+# index = 42,
+# label = "O=CCC[CH2] + C[CH2] <=> C=C + CCOC=C",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(0.00014888,'cm^3/(mol*s)'), n=4.19462, Ea=(96.1568,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.249762479827305,B=0.15073926135565738,E=0.365495135486543,L=3.0529218751533116,A=-0.05234289083492228,comment='')),
+# longDesc =
+# """
+# TS method summary for TS2 in O=CCC[CH2] + C[CH2] <=> C=C + CCOC=C:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 2
+
+# Optimized TS geometry:
+# C 1.80499000 -0.31672700 -0.13698200
+# C 3.11562500 -0.58331900 0.57687900
+# H 2.96837500 -0.64397400 1.66347700
+# H 3.84416000 0.21178900 0.37787500
+# O 3.64516200 -1.82826200 0.10708300
+# C 4.79558600 -2.24513600 0.72170700
+# C 5.33927400 -3.54792400 0.32389400
+# C 4.64293600 -3.98413200 -1.82976400
+# C 5.01988400 -5.24577300 -2.16574500
+# H 4.38950700 -6.10175000 -1.95087900
+# H 5.99028500 -5.45304700 -2.60353700
+# H 1.95689000 -0.25982400 -1.21717700
+# H 1.38175600 0.63295900 0.20133600
+# H 1.08171000 -1.10904600 0.06903800
+# H 4.92338500 -1.88552200 1.74729600
+# H 6.40068500 -3.60205000 0.10302900
+# H 4.94526700 -4.44913500 0.79888300
+# H 5.21896500 -3.12936800 -2.16467800
+# H 3.63061500 -3.76903800 -1.51360500
+
+# 1D rotors:
+# pivots: [1, 2], dihedral: [12, 1, 2, 5], rotor symmetry: 3, max scan energy: 12.42 kJ/mol
+# pivots: [2, 5], dihedral: [1, 2, 5, 6], rotor symmetry: 1, max scan energy: 21.66 kJ/mol
+# pivots: [5, 6], dihedral: [2, 5, 6, 7], rotor symmetry: 3, max scan energy: 30.90 kJ/mol
+# * Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 16], invalidation reason: Two consecutive points are inconsistent by more than 10.51 kJ/molTwo consecutive points are inconsistent by more than 10.51 kJ/molTwo consecutive points are inconsistent by more than 10.60 kJ/mol
+# * Invalidated! pivots: [8, 9], dihedral: [18, 8, 9, 10], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+# fit to dGsolv298 for library solvents:
+# ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+# "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+# "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+# "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+# "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+# MAE error: 195.65591478399634 J/mol
+# """,
+# )
+
+# entry(
+# index = 43,
+# label = "CCOC(=O)OC[CH2] + [Li] <=> C=C + [Li]OC(=O)OCC",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(9.5603e+07,'cm^3/(mol*s)'), n=1.70021, Ea=(38.7352,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.1943783976602214,B=0.894154843812189,E=5.394280864555017,L=8.956244842828797,A=0.23494209646668668,comment='')),
+# longDesc =
+# """
+# TS method summary for TS3 in CCOC(=O)OC[CH2] + [Li] <=> C=C + [Li]OC(=O)OCC:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 1
+
+# Optimized TS geometry:
+# Li 6.15090500 0.72133600 0.42432000
+# C 0.69762600 -1.44643100 0.53480800
+# C 2.11807200 -0.92420900 0.60007900
+# O 2.38556900 -0.25306300 -0.65733700
+# C 3.60042300 0.29329700 -0.82256500
+# O 4.45641600 0.21443300 0.08917100
+# O 3.73553900 0.85755400 -1.95701200
+# C 5.57908600 1.62870500 -2.07928300
+# C 5.58464500 2.22255700 -3.39086700
+# H 5.26738000 3.24626900 -3.53806700
+# H 5.88708100 1.65063700 -4.25790300
+# H 0.45342500 -1.96207500 1.46758300
+# H 0.57798900 -2.15182500 -0.29021500
+# H -0.01338200 -0.62914800 0.39670900
+# H 2.84317900 -1.73058800 0.73052300
+# H 2.25294100 -0.21082900 1.41613000
+# H 6.11245900 0.69387500 -1.93751400
+# H 5.49418900 2.28581200 -1.21934500
+
+# 1D rotors:
+# pivots: [2, 3], dihedral: [12, 2, 3, 4], rotor symmetry: 3, max scan energy: 12.87 kJ/mol
+# pivots: [3, 4], dihedral: [2, 3, 4, 5], rotor symmetry: 1, max scan energy: 32.24 kJ/mol
+# pivots: [4, 5], dihedral: [3, 4, 5, 6], rotor symmetry: 2, max scan energy: 33.94 kJ/mol
+# * Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 1], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+# pivots: [8, 9], dihedral: [17, 8, 9, 10], rotor symmetry: 2, max scan energy: 7.62 kJ/mol
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+# fit to dGsolv298 for library solvents:
+# ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+# "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+# "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+# "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+# "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+# MAE error: 14583.764309070988 J/mol
+# """,
+# )
+
+# entry(
+# index = 44,
+# label = "CCOC(=O)OC[CH2] + C[CH2] <=> C=C + CCOC(=O)OCC",
+# degeneracy = 1.0,
+# kinetics = Arrhenius(A=(20.523,'cm^3/(mol*s)'), n=2.58803, Ea=(182.358,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7109399685673664,B=0.5561097043959204,E=0.394916410780481,L=4.3126161018203115,A=-0.0721543234535927,comment='')),
+# longDesc =
+# """
+# TS method summary for TS4 in CCOC(=O)OC[CH2] + C[CH2] <=> C=C + CCOC(=O)OCC:
+
+# The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+# TS external symmetry: 1, TS optical isomers: 2
+
+# Optimized TS geometry:
+# C 1.65518400 -1.33932100 -1.76538000
+# C 1.68476400 -1.53804000 -0.42800400
+# O 3.68496600 -0.66602300 -0.03318800
+# C 4.60513800 -1.65814800 -0.02060600
+# O 5.75382300 -1.20329200 0.60473400
+# C 5.65511000 -0.89378100 2.00927500
+# C 5.52569200 0.60020800 2.25601300
+# O 4.87889000 -2.29493900 -1.18961300
+# C 5.40351100 -1.47316800 -2.27215700
+# C 5.67501200 -2.38331600 -3.45207000
+# H 6.07206900 -1.80284300 -4.28995700
+# H 6.40509500 -3.15166600 -3.18815800
+# H 2.05331700 -2.07823000 -2.45038600
+# H 1.27485600 -0.41797600 -2.19155400
+# H 1.25203400 -0.82044500 0.25639900
+# H 2.00216700 -2.48468800 -0.00918700
+# H 6.57860000 -1.28138800 2.44770200
+# H 4.81175700 -1.44529300 2.43354800
+# H 6.36372700 1.14026100 1.80875700
+# H 5.52429300 0.80017200 3.33224100
+# H 4.59691200 0.98005100 1.82599400
+# H 4.66607900 -0.70228700 -2.51649200
+# H 6.31818600 -0.98426300 -1.92572100
+# H 4.75944600 -2.88035100 -3.78232500
+
+# 1D rotors:
+# * Invalidated! pivots: [1, 2], dihedral: [13, 1, 2, 15], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+# * Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason:
+# * Invalidated! pivots: [4, 8], dihedral: [3, 4, 8, 9], invalidation reason: Another conformer for TS4 exists which is 7.80 kJ/mol lower.Another conformer for TS4 exists which is 7.80 kJ/mol lower. But unable to propose troubleshooting methods.
+# pivots: [5, 6], dihedral: [4, 5, 6, 7], rotor symmetry: 1, max scan energy: 14.36 kJ/mol
+# pivots: [6, 7], dihedral: [5, 6, 7, 19], rotor symmetry: 3, max scan energy: 13.46 kJ/mol
+# pivots: [8, 9], dihedral: [4, 8, 9, 10], rotor symmetry: 1, max scan energy: 20.65 kJ/mol
+# pivots: [9, 10], dihedral: [8, 9, 10, 11], rotor symmetry: 3, max scan energy: 12.05 kJ/mol
+# ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+# fit to dGsolv298 for library solvents:
+# ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+# "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+# "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+# "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+# "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+# MAE error: 250.18842050131107 J/mol
+# """,
+# )
+
+entry(
+ index = 45,
+ label = "[Li]OC(=O)OC[CH2] + C[CH2] <=> C=C + [Li]OC(=O)OCC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.60363e+10,'m^3/(mol*s)'), n=-1.06749, Ea=(2.37772,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(1000,'K'), comment="""Fitted to 50 data points; dA = *|/ 2.80611, dn = +|- 0.142081, dEa = +|- 0.590342 kJ/mol"""),
+ longDesc =
+"""
+Computed using CVTST
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 46,
+ label = "[Li]O[Li] + C=O <=> [Li]OCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(60668.5,'cm^3/(mol*s)'), n=2.48558, Ea=(-44.9325,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-6.237601960913579,B=9.474105452618263,E=1.6329134231750524,L=15.17499274807221,A=3.5783211118513525,comment='')),
+ longDesc =
+"""
+TS method summary for TS7 in [Li]O[Li] + O=C <=> [Li]OCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 2, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 5.26122200 -2.16488900 -1.43635000
+O 4.16581000 -1.00650700 -0.36650500
+C 3.47523600 -0.27668500 0.30751600
+O 6.20422100 -3.16227700 -2.35757800
+Li 7.12770800 -4.13885600 -3.25991800
+H 3.91701800 0.40191100 1.05639300
+H 2.37777900 -0.26233900 0.19860600
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 6992.493889350707 J/mol
+""",
+)
+
+entry(
+ index = 47,
+ label = "[Li]OC[CH2] <=> [Li][O] + C=C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.73118e+09,'s^-1'), n=1.05672, Ea=(124.537,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-0.7587541172343483,B=4.554524422792835,E=0.35143960938889907,L=9.719910916870246,A=2.0308080570391414,comment='')),
+ longDesc =
+"""
+TS method summary for TS8 in [Li]OC[CH2] <=> [Li][O] + C=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li -0.91810413 -1.46763367 -0.00343736
+O -1.43551440 0.15847563 0.00469185
+C 0.51731043 0.76450037 0.00318628
+C 1.22192340 -0.39477660 -0.00179059
+H 1.55560118 -0.84671823 -0.93123285
+H 1.55706499 -0.85358686 0.92375565
+H 0.34516190 1.30427126 0.92254216
+H 0.34306501 1.31089605 -0.91186830
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 6207.138255494839 J/mol
+""",
+)
+
+entry(
+ index = 48,
+ label = "[Li]OC(=O)OC[CH2] <=> [Li]OC(=O)[O] + C=C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.75254e+10,'s^-1'), n=0.859471, Ea=(102.084,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.874468711820343,B=1.5429946013135403,E=3.7953459556664635,L=10.74627656346647,A=0.9238437970987374,comment='')),
+ longDesc =
+"""
+TS method summary for TS9 in [Li]OC(=O)OC[CH2] <=> [Li]OC(=O)[O] + C=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.21472100 1.08893600 0.04629800
+O 2.98950300 -0.57597100 0.31603500
+C 3.81582500 0.10932400 1.00613000
+O 3.69881400 1.37255200 1.12635500
+O 4.77758900 -0.57482400 1.58413800
+C 5.96700300 0.59057700 2.94859300
+C 6.86673100 1.08514900 2.05930900
+H 6.66188300 1.99792200 1.51328300
+H 7.77799200 0.54918900 1.81993300
+H 6.18401500 -0.29804400 3.52695800
+H 5.10136800 1.17151600 3.23479500
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [6, 7], dihedral: [10, 6, 7, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1178.0314401999576 J/mol
+""",
+)
+
+entry(
+ index = 49,
+ label = "[Li]OC[CH2] <=> [Li] + O1CC1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(7.79548e+09,'s^-1'), n=0.676137, Ea=(127.392,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.9429002183123382,B=0.4142522035781646,E=0.9271382422782674,L=0.5080999191526422,A=1.2701035125702795,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]OC[CH2] <=> [Li] + O1CC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.73301400 -1.23426700 -0.49793500
+O 0.60551200 0.06249200 -0.10018600
+C -0.50388800 0.89554800 0.19652100
+C -1.00886000 -0.45148800 -0.03734900
+H -0.69990300 1.66086200 -0.55370500
+H -0.51073300 1.28290300 1.21479300
+H -1.15946900 -1.12920200 0.79035100
+H -1.35302600 -0.74247900 -1.01915400
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2253.8360605095613 J/mol
+""",
+)
+
+entry(
+ index = 50,
+ label = "[Li]NCCC[CH2] <=> [Li] + N1CCCC1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.41052e+13,'s^-1'), n=-0.0966111, Ea=(37.9728,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=0.7063184659079954,B=0.6546888841685338,E=1.4167685288377097,L=7.086460323740072,A=0.6763993010322846,comment='')),
+ longDesc =
+"""
+TS method summary for TS8 in [Li]NCCC[CH2] <=> [Li] + N1CCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.79696000 -2.05316500 -1.00229800
+N -1.02753700 -0.82446500 0.31048300
+C -1.17602900 0.62975500 0.34728300
+C -0.04031000 1.23440900 -0.48523000
+C 1.26536000 0.60012900 0.03045100
+C 1.10536400 -0.89281200 0.16065300
+H -1.14744700 -1.20628300 1.24655300
+H -2.14778300 0.93882900 -0.05818200
+H -1.11834800 1.02433100 1.37055800
+H -0.18192200 0.97424700 -1.54208700
+H -0.02609500 2.32742400 -0.41948200
+H 2.09531900 0.85423100 -0.64191300
+H 1.50425000 1.03272800 1.00804200
+H 1.36740100 -1.36403600 1.10079100
+H 1.41475700 -1.48698600 -0.70029100
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 14], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 5600.017004537509 J/mol
+""",
+)
+
+entry(
+ index = 51,
+ label = "[Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.54076e+14,'s^-1'), n=-0.182294, Ea=(23.9219,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=-2.018725993417632,B=4.93569039446143,E=-4.315782362402726,L=-1.68464261284562,A=3.5698295734222367,comment='')),
+ longDesc =
+"""
+TS method summary for TS2 in [Li]O[C]1OCCO1 <=> [Li] + O=C1OCCO1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.19853800 -1.72038300 -0.07266600
+O 1.76667000 0.85234100 0.00624500
+C 0.64157500 0.45596800 0.00446400
+O 0.35500500 -0.88546600 -0.06754100
+C -1.07057700 -1.09977700 0.11070100
+C -1.63216600 0.30832100 -0.11252500
+O -0.48175500 1.17430200 0.07309300
+H -1.23031400 -1.47803000 1.12084400
+H -1.39532400 -1.83156700 -0.62695100
+H -2.00519600 0.46029600 -1.12605700
+H -2.38753000 0.59754200 0.61515000
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 10990.041834280188 J/mol
+""",
+)
+
+entry(
+ index = 52,
+ label = "[Li]OCCCCC[CH2] <=> [Li] + O1CCCCCC1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(685907,'s^-1'), n=0.809304, Ea=(91.8794,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.8745309700808286,B=0.6489379258617733,E=0.27349172242979114,L=6.280608540134562,A=0.35178208431790287,comment='')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]OCCCCC[CH2] <=> [Li] + O1CCCCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.21778400 -2.51460800 1.52748300
+O 0.30780200 -0.93202600 1.17295000
+C 1.22507300 0.05015800 0.75305900
+C 1.16007100 0.34370200 -0.74604900
+C -0.18415100 0.88158700 -1.26317700
+C -1.37708100 -0.08782900 -1.14193800
+C -2.18529400 -0.00383000 0.17331100
+C -1.43642000 -0.15241200 1.46687200
+H 2.23706500 -0.28675900 1.01225300
+H 1.05582400 0.98241000 1.31722700
+H 1.94770800 1.07203000 -0.98005100
+H 1.41088600 -0.57386900 -1.29204500
+H -0.05269600 1.13539800 -2.32063300
+H -0.42385200 1.82754000 -0.75961200
+H -1.02546000 -1.11603800 -1.28152500
+H -2.08272100 0.11086500 -1.95663300
+H -2.68514000 0.97783700 0.18386800
+H -2.97901800 -0.75853500 0.12355800
+H -1.85839500 -0.83027000 2.20556000
+H -1.01299600 0.74101900 1.91000900
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 8], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol
+* Invalidated! pivots: [7, 8], dihedral: [6, 7, 8, 19], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 648.5792529213884 J/mol
+""",
+)
+
+entry(
+ index = 53,
+ label = "[Li]OCCC[CH2] <=> [Li] + O1CCCC1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(9.68382e+12,'s^-1'), n=-0.0538311, Ea=(99.5874,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.975919765798433,B=0.5933221434562257,E=0.10249027371088437,L=4.734916369654065,A=0.4382337255257122,comment='')),
+ longDesc =
+"""
+TS method summary for TS5 in [Li]OCCC[CH2] <=> [Li] + O1CCCC1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.18875700 4.40146700 -0.15965700
+O 1.25526000 4.50560200 1.18500100
+C 1.81848000 4.05586800 2.39368600
+C 3.04718900 4.92469900 2.67844800
+C 2.59628200 6.35626200 2.34735900
+C 1.87760200 6.33368500 1.02998700
+H 2.48003000 6.25991400 0.13113900
+H 1.09474400 4.15021500 3.21790700
+H 2.09303800 2.99768000 2.31072700
+H 3.86832600 4.63175200 2.01575200
+H 3.39490700 4.82429600 3.71124200
+H 1.92993300 6.72532100 3.13318700
+H 3.45844200 7.03440200 2.30740100
+H 0.97428300 6.92366500 0.92199700
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1463.7250120069011 J/mol
+""",
+allow_max_rate_violation=True,
+)
+
+entry(
+ index = 54,
+ label = "[Li]CC <=> C=C + [Li][H]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(8.20882e+11,'s^-1'), n=0.349755, Ea=(9.42179,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.7309852404322288,B=2.3232904077453425,E=0.8831500260776306,L=9.72969334125182,A=0.8794516433866466,comment='')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]CC <=> C=C + [Li][H]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 2.61403700 1.76672400 -0.70523200
+C 3.74739900 0.26828100 -0.29006800
+C 3.52138200 0.70505900 1.17932700
+H 4.80154100 0.39826200 -0.56515800
+H 3.51666300 -0.79317000 -0.40677400
+H 3.24455300 1.78628400 1.30105800
+H 4.38360300 0.59677300 1.85446400
+H 2.69158000 0.15525900 1.63951800
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [4, 1, 2, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2061.526158269488 J/mol
+""",
+)
+
+entry(
+ index = 55,
+ label = "[Li]NC <=> N=C + [Li][H]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(1.20406e+11,'s^-1'), n=0.395823, Ea=(4.40595,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=1.708205772421329,B=2.5356143801240445,E=0.23679859997568953,L=9.472880397262012,A=1.0783864304846873,comment='')),
+ longDesc =
+"""
+TS method summary for TS3 in [Li]NC <=> N=C + [Li][H]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.98746585 -0.52738947 -0.00361624
+N 0.45147254 0.30262629 0.00522525
+C -0.92611851 -0.15975163 0.00259877
+H 0.43824316 1.31338637 0.01447592
+H -1.17387633 -0.78335004 0.87699274
+H -1.17511304 -0.76926072 -0.88130944
+H -1.65482009 0.66025357 0.00967177
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvpused COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 2139.3398223085746 J/mol
+""",
+)
+
+entry(
+ index = 56,
+ label = "[Li]O[CH]OC <=> O=[CH] + [Li]OC",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(9.54823e+14,'s^-1'), n=0.356617, Ea=(65.3953,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]O[CH]OC <=> O=[CH] + [Li]OC:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.11938200 0.00580200 2.75259500
+O 1.62524600 -0.33884700 1.46544000
+C 1.40627800 -0.20972400 0.31263200
+O 4.61316700 0.60600100 2.66739200
+C 5.89388500 1.11128900 2.64427900
+H 2.12421500 0.21023400 -0.43421800
+H 6.36930700 1.11127900 3.64324000
+H 5.93134700 2.15747800 2.28506200
+H 6.56678700 0.53303700 1.98263000
+
+1D rotors:
+pivots: [4, 5], dihedral: [1, 4, 5, 7], rotor symmetry: 1, max scan energy: 0.04 kJ/mol (set as a FreeRotor)
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 57,
+ label = "[Li]OC1OCCCC1 <=> O=CCCCCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(3.20531e+14,'s^-1'), n=0.219161, Ea=(98.9886,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K'), solute=SoluteData(S=2.959149780060317,B=2.5380295864101,E=2.0257428425399984,L=13.738628302899908,A=0.411629130549155,comment='')),
+ longDesc =
+"""
+TS method summary for TS6 in [Li]OC1OCCCC1 <=> O=CCCCCO[Li]:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 1,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -2.20746100 -3.36971300 -3.70952100
+O 1.25187300 1.95405300 -1.04632200
+C 1.04640200 0.88280800 -1.56571700
+O -0.61905500 -3.34540100 -3.52965300
+C 0.75057700 -3.40515400 -3.37372500
+C 1.33014800 -2.18325400 -2.63924900
+C 1.17117900 -0.87493200 -3.42052900
+C 1.82427700 0.33951000 -2.74581800
+H 0.23182200 0.22912600 -1.18197300
+H 1.26013900 -3.48345200 -4.35441500
+H 1.04873000 -4.30660500 -2.80769200
+H 2.39940800 -2.39734300 -2.50177400
+H 0.89693800 -2.08083500 -1.63590000
+H 0.10876700 -0.72003200 -3.63956100
+H 1.66878000 -0.97713400 -4.39144100
+H 1.96556900 1.17143800 -3.44430700
+H 2.82865100 0.08557500 -2.37989200
+
+1D rotors:
+* Invalidated! pivots: [3, 8], dihedral: [2, 3, 8, 7], invalidation reason:
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason:
+* Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 8], invalidation reason: Another conformer for TS6 exists which is 7.66 kJ/mol lower.
+* Invalidated! pivots: [7, 8], dihedral: [6, 7, 8, 3], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)used COSMO TZPD-Fine with energy files
+ fit to dGsolv298 for library solvents:
+ ["water","butanol","dimethylformamide","dimethylsulfoxide","ethanol","acetonitrile",
+ "ethylacetate","methanol","butan-2-one","cyclohexanone", "N,N-dimethylacetamide",
+ "2-methylpropan-1-ol","propan-2-ol","N-methylformamide","pentan-1-ol",
+ "propan-1-ol", "butan-2-ol", "oxolane", "2-methylpropan-2-ol", "propan-2-one",
+ "methyl acetate", "formamide", "diethyl carbonate", "dimethyl carbonate",]
+ MAE error: 1729.1474107981676 J/mol
+""",
+)
diff --git a/input/kinetics/libraries/LithiumPrimaryKinetics2/dictionary.txt b/input/kinetics/libraries/LithiumPrimaryKinetics2/dictionary.txt
new file mode 100644
index 0000000000..ad683e0fde
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryKinetics2/dictionary.txt
@@ -0,0 +1,389 @@
+O=C1OCCO1
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u0 p0 c0 {2,S} {4,S} {9,S} {10,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {5,S}
+
+[Li]
+multiplicity 2
+1 Li u1 p0 c0
+
+[Li]OC(=O)OC[CH2]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u1 p0 c0 {4,S} {10,S} {11,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC1OCC1
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {2,S} {3,S} {9,S}
+5 C u0 p0 c0 {1,S} {3,S} {10,S} {11,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+O=CCCO[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {4,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 Li u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]O[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u1 p0 c0 {1,S} {2,S} {3,S}
+7 Li u0 p0 c0 {3,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+O=[C]OCCO[Li]
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {8,S} {9,S}
+5 C u0 p0 c0 {2,S} {4,S} {10,S} {11,S}
+6 C u1 p0 c0 {1,S} {3,D}
+7 Li u0 p0 c0 {2,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {5,S}
+11 H u0 p0 c0 {5,S}
+
+[Li]OC[=O]OCCO[C]1OCCO1
+multiplicity 2
+1 O u0 p2 c0 {8,S} {11,S}
+2 O u0 p2 c0 {9,S} {11,S}
+3 O u0 p2 c0 {10,S} {11,S}
+4 O u0 p2 c0 {7,S} {12,S}
+5 O u0 p2 c0 {12,S} {13,S}
+6 O u0 p2 c0 {12,D}
+7 C u0 p0 c0 {4,S} {8,S} {14,S} {15,S}
+8 C u0 p0 c0 {1,S} {7,S} {16,S} {17,S}
+9 C u0 p0 c0 {2,S} {10,S} {18,S} {19,S}
+10 C u0 p0 c0 {3,S} {9,S} {20,S} {21,S}
+11 C u1 p0 c0 {1,S} {2,S} {3,S}
+12 C u0 p0 c0 {4,S} {5,S} {6,D}
+13 Li u0 p0 c0 {5,S}
+14 H u0 p0 c0 {7,S}
+15 H u0 p0 c0 {7,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {8,S}
+18 H u0 p0 c0 {9,S}
+19 H u0 p0 c0 {9,S}
+20 H u0 p0 c0 {10,S}
+21 H u0 p0 c0 {10,S}
+
+[Li]OC[=O]OCCC1[O[Li]]OCCO1
+1 O u0 p2 c0 {7,S} {10,S}
+2 O u0 p2 c0 {7,S} {11,S}
+3 O u0 p2 c0 {9,S} {12,S}
+4 O u0 p2 c0 {7,S} {13,S}
+5 O u0 p2 c0 {12,S} {14,S}
+6 O u0 p2 c0 {12,D}
+7 C u0 p0 c0 {1,S} {2,S} {4,S} {8,S}
+8 C u0 p0 c0 {7,S} {9,S} {15,S} {16,S}
+9 C u0 p0 c0 {3,S} {8,S} {17,S} {18,S}
+10 C u0 p0 c0 {1,S} {11,S} {19,S} {20,S}
+11 C u0 p0 c0 {2,S} {10,S} {21,S} {22,S}
+12 C u0 p0 c0 {3,S} {5,S} {6,D}
+13 Li u0 p0 c0 {4,S}
+14 Li u0 p0 c0 {5,S}
+15 H u0 p0 c0 {8,S}
+16 H u0 p0 c0 {8,S}
+17 H u0 p0 c0 {9,S}
+18 H u0 p0 c0 {9,S}
+19 H u0 p0 c0 {10,S}
+20 H u0 p0 c0 {10,S}
+21 H u0 p0 c0 {11,S}
+22 H u0 p0 c0 {11,S}
+
+COCCOC
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {7,S} {8,S}
+4 C u0 p0 c0 {2,S} {3,S} {9,S} {10,S}
+5 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 C u0 p0 c0 {2,S} {14,S} {15,S} {16,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+14 H u0 p0 c0 {6,S}
+15 H u0 p0 c0 {6,S}
+16 H u0 p0 c0 {6,S}
+
+[Li]OCCOC
+1 O u0 p2 c0 {3,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 C u0 p0 c0 {1,S} {4,S} {9,S} {10,S}
+4 C u0 p0 c0 {2,S} {3,S} {7,S} {8,S}
+5 C u0 p0 c0 {1,S} {11,S} {12,S} {13,S}
+6 Li u0 p0 c0 {2,S}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {5,S}
+
+[CH3]
+multiplicity 2
+1 C u1 p0 c0 {2,S} {3,S} {4,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+
+O=C1OCC[F]O1
+1 F u0 p3 c0 {6,S}
+2 O u0 p2 c0 {5,S} {7,S}
+3 O u0 p2 c0 {6,S} {7,S}
+4 O u0 p2 c0 {7,D}
+5 C u0 p0 c0 {2,S} {6,S} {8,S} {9,S}
+6 C u0 p0 c0 {1,S} {3,S} {5,S} {10,S}
+7 C u0 p0 c0 {2,S} {3,S} {4,D}
+8 H u0 p0 c0 {5,S}
+9 H u0 p0 c0 {5,S}
+10 H u0 p0 c0 {6,S}
+
+O=C1OC[CH]O1
+multiplicity 2
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {5,S} {6,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+5 C u1 p0 c0 {2,S} {4,S} {9,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 H u0 p0 c0 {4,S}
+8 H u0 p0 c0 {4,S}
+9 H u0 p0 c0 {5,S}
+
+[Li]F
+1 F u0 p3 c0 {2,S}
+2 Li u0 p0 c0 {1,S}
+
+C=C
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+[Li]C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+[Li]O[O]
+multiplicity 2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u1 p2 c0 {1,S}
+3 Li u0 p0 c0 {1,S}
+
+CCC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+
+[Li]OO
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {4,S}
+3 Li u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
+C[CH]C
+multiplicity 2
+1 C u0 p0 c0 {3,S} {4,S} {5,S} {6,S}
+2 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+3 C u1 p0 c0 {1,S} {2,S} {10,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {3,S}
+
+CC
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+
+C[CH2]
+multiplicity 2
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u1 p0 c0 {1,S} {6,S} {7,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+
+CC[C]C
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 C u0 p0 c0 {1,S} {6,S} {7,S} {8,S}
+3 C u0 p0 c0 {1,S} {9,S} {10,S} {11,S}
+4 C u0 p0 c0 {1,S} {12,S} {13,S} {14,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {2,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {3,S}
+10 H u0 p0 c0 {3,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {4,S}
+13 H u0 p0 c0 {4,S}
+14 H u0 p0 c0 {4,S}
+
+C[C][C]C
+multiplicity 2
+1 C u0 p0 c0 {4,S} {5,S} {6,S} {7,S}
+2 C u0 p0 c0 {4,S} {8,S} {9,S} {10,S}
+3 C u0 p0 c0 {4,S} {11,S} {12,S} {13,S}
+4 C u1 p0 c0 {1,S} {2,S} {3,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {1,S}
+8 H u0 p0 c0 {2,S}
+9 H u0 p0 c0 {2,S}
+10 H u0 p0 c0 {2,S}
+11 H u0 p0 c0 {3,S}
+12 H u0 p0 c0 {3,S}
+13 H u0 p0 c0 {3,S}
+
+[Li]OC(=O)OCC[Li]
+1 O u0 p2 c0 {4,S} {6,S}
+2 O u0 p2 c0 {6,S} {8,S}
+3 O u0 p2 c0 {6,D}
+4 C u0 p0 c0 {1,S} {5,S} {9,S} {10,S}
+5 C u0 p0 c0 {4,S} {7,S} {11,S} {12,S}
+6 C u0 p0 c0 {1,S} {2,S} {3,D}
+7 Li u0 p0 c0 {5,S}
+8 Li u0 p0 c0 {2,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+12 H u0 p0 c0 {5,S}
+
+[Li]OC(=O)O[Li]
+1 O u0 p2 c0 {4,S} {5,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u0 p2 c0 {4,D}
+4 C u0 p0 c0 {1,S} {2,S} {3,D}
+5 Li u0 p0 c0 {1,S}
+6 Li u0 p0 c0 {2,S}
+
+O=CCOC[Li]
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {5,D}
+3 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {11,S}
+6 Li u0 p0 c0 {4,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {5,S}
+
+O=C
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+
+[Li]OC=C
+1 O u0 p2 c0 {2,S} {4,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {6,S} {7,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {3,S}
+7 H u0 p0 c0 {3,S}
+
+N=CCNC[Li]
+1 N u0 p1 c0 {3,S} {4,S} {11,S}
+2 N u0 p1 c0 {5,D} {13,S}
+3 C u0 p0 c0 {1,S} {5,S} {7,S} {8,S}
+4 C u0 p0 c0 {1,S} {6,S} {9,S} {10,S}
+5 C u0 p0 c0 {2,D} {3,S} {12,S}
+6 Li u0 p0 c0 {4,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
+9 H u0 p0 c0 {4,S}
+10 H u0 p0 c0 {4,S}
+11 H u0 p0 c0 {1,S}
+12 H u0 p0 c0 {5,S}
+13 H u0 p0 c0 {2,S}
+
+N=C
+1 N u0 p1 c0 {2,D} {5,S}
+2 C u0 p0 c0 {1,D} {3,S} {4,S}
+3 H u0 p0 c0 {2,S}
+4 H u0 p0 c0 {2,S}
+5 H u0 p0 c0 {1,S}
+
+[Li]NC=C
+1 N u0 p1 c0 {2,S} {4,S} {6,S}
+2 C u0 p0 c0 {1,S} {3,D} {5,S}
+3 C u0 p0 c0 {2,D} {7,S} {8,S}
+4 Li u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {1,S}
+7 H u0 p0 c0 {3,S}
+8 H u0 p0 c0 {3,S}
diff --git a/input/kinetics/libraries/LithiumPrimaryKinetics2/reactions.py b/input/kinetics/libraries/LithiumPrimaryKinetics2/reactions.py
new file mode 100644
index 0000000000..6efe9748b3
--- /dev/null
+++ b/input/kinetics/libraries/LithiumPrimaryKinetics2/reactions.py
@@ -0,0 +1,567 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumPrimaryKinetics2"
+shortDesc = ""
+longDesc = """
+
+"""
+autoGenerated=False
+entry(
+ index = 0,
+ label = "O=C1OCCO1 + [Li] <=> [Li]OC(=O)OC[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.40229e+07,'cm^3/(mol*s)'), n=2.08453, Ea=(2.45304,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS1 in O=C1OCCO1 + [Li] <=> [Li]OC(=O)OC[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+O -1.86849600 -0.34389700 0.15565300
+C -0.66560700 -0.08480900 0.09252000
+O -0.21610600 1.13496900 -0.11650000
+C 1.46459400 1.02715100 -0.12713400
+C 1.62862000 -0.44407800 0.11303000
+O 0.26269000 -1.02218000 0.23159700
+H 1.74745400 1.69347200 0.67895300
+H 1.71712500 1.39749600 -1.11346200
+H 2.10022500 -0.97192200 -0.71484300
+H 2.13009200 -0.68039600 1.05062500
+Li -2.71413000 1.28166300 -0.09846000
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [11, 1, 2, 3], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 1,
+ label = "[Li]OC1OCC1 <=> O=CCCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(6.68965e+12,'s^-1'), n=-0.134733, Ea=(38.4756,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]OC1OCC1 <=> O=CCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 1.35838815 -1.27110517 0.54071631
+O 1.67102829 0.48059999 0.09191706
+C 0.53253477 0.50354935 -0.44155210
+O -0.27618361 -1.14631604 -0.14676157
+C -1.42183988 -0.35979104 0.09286520
+C -0.72925182 0.98792919 0.26705429
+H 0.46493624 0.50978056 -1.54135074
+H -2.00031135 -0.70056252 0.95879789
+H -2.09230067 -0.36866921 -0.77639318
+H -0.49314892 1.21143985 1.30844324
+H -1.19784055 1.85824947 -0.19613461
+
+1D rotors:
+* Invalidated! pivots: [3, 6], dihedral: [2, 3, 6, 5], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molTwo consecutive points are inconsistent by more than 0.63 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [1, 4, 5, 6], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/molinitial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 3], invalidation reason: Could not read energies
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 2,
+ label = "[Li]O[C]1OCCO1 <=> O=[C]OCCO[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.97927e+12,'s^-1'), n=0.00494054, Ea=(1.80157,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]O[C]1OCCO1 <=> O=[C]OCCO[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+Inner TS should be excluded generally given species definition
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 1.62331000 1.42209200 -0.35895100
+O 2.89905600 0.11501700 -0.27912400
+C 3.64174900 0.83576800 -0.97805800
+O 2.88295200 2.36045200 -1.23831600
+C 3.94284300 3.28982600 -1.24817300
+C 5.22098100 2.42696700 -1.27578700
+O 4.87283200 1.25444900 -0.53542400
+H 3.92069400 3.91330500 -0.34511000
+H 3.88495700 3.94158000 -2.12631800
+H 6.07107100 2.89096500 -0.77771300
+H 5.49252300 2.15314100 -2.30024000
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 3,
+ label = "O=C1OCCO1 + [Li]OC(=O)OC[CH2] <=> [Li]OC[=O]OCCO[C]1OCCO1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.00568213,'cm^3/(mol*s)'), n=3.08997, Ea=(92.7056,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS2 in O=C1OCCO1 + [Li]OC[=O]OC[CH2] <=> [Li]OC[=O]OCCO[C]1OCCO1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -3.63351833 -1.31382103 0.43592475
+O -2.06785762 -1.34286772 -0.57182765
+C -1.98753921 -0.15298062 -0.16378325
+O -2.84503991 0.36624319 0.59777927
+O -0.93589991 0.55237902 -0.58501599
+C -0.73946959 1.84351583 -0.00008573
+C 0.60958074 2.32729932 -0.39787904
+H -0.83221851 1.77234770 1.08502548
+H -1.52532978 2.51925151 -0.35823104
+H 0.84923030 3.31998385 -0.03743482
+H 0.87492445 2.15893238 -1.43615476
+O 1.87417129 1.42114890 0.48037533
+C 1.87057467 0.17122096 0.38791887
+O 1.08774143 -0.60470211 1.19286258
+C 1.05032527 -1.91450869 0.64134784
+C 1.39905323 -1.68419754 -0.82330847
+O 2.12455514 -0.45566781 -0.79059535
+H 0.04862318 -2.31989850 0.76988028
+H 1.78365388 -2.54398850 1.15409727
+H 0.50143284 -1.55665094 -1.43015897
+H 2.03853228 -2.45935310 -1.24367327
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason:
+* Invalidated! pivots: [3, 5], dihedral: [2, 3, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 6], dihedral: [3, 5, 6, 7], invalidation reason:
+* Invalidated! pivots: [6, 7], dihedral: [5, 6, 7, 12], invalidation reason:
+* Invalidated! pivots: [7, 12], dihedral: [6, 7, 12, 13], invalidation reason:
+* Invalidated! pivots: [12, 13], dihedral: [7, 12, 13, 14], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 4,
+ label = "[Li]OC(=O)OCC[Li] + O=C1OCCO1 <=> [Li]OC[=O]OCCC1[O[Li]]OCCO1",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.21675,'cm^3/(mol*s)'), n=2.94197, Ea=(-82.2275,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS4 in [Li]OC[=O]OCC[Li] + O=C1OCCO1 <=> [Li]OC[=O]OCCC1[O[Li]]OCCO1:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li -0.30953548 1.79952401 0.22720194
+C 0.31831632 -0.03344237 0.75523651
+C 1.04935101 -0.43855651 -0.48696629
+O 2.37916738 -1.03566540 -0.29168734
+C 3.36502546 -0.19712803 -0.02777272
+O 3.17618719 1.06403654 -0.02515089
+O 4.50168577 -0.68911275 0.21206014
+Li 4.97669163 1.06679526 0.40495978
+H -0.06538303 -0.91477231 1.27983980
+H 1.03614897 0.43066835 1.44988993
+H 0.51408162 -1.21855975 -1.03355899
+H 1.22090870 0.38355210 -1.19228071
+O -2.13528355 1.96768445 -0.35761822
+C -2.51275437 0.83282102 -0.17638695
+O -3.09421319 0.42125588 0.94037618
+C -3.34040294 -0.98488204 0.86825632
+C -2.74393844 -1.37900992 -0.48615814
+O -2.46674668 -0.11801887 -1.09939463
+H -4.41621116 -1.14630211 0.93374760
+H -2.83659292 -1.46240546 1.70583037
+H -3.43156366 -1.92791432 -1.12580103
+H -1.80327947 -1.91854114 -0.38464998
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [9, 2, 3, 4], invalidation reason:
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason:
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 7], dihedral: [4, 5, 7, 8], invalidation reason:
+* Invalidated! pivots: [13, 14], dihedral: [1, 13, 14, 15], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 5,
+ label = "COCCOC + [Li] <=> [Li]OCCOC + [CH3]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(62816.3,'cm^3/(mol*s)'), n=2.80799, Ea=(51.0438,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS8 in COCCOC + [Li] <=> [Li]OCCOC + [CH3]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 3.39566800 -2.31746100 -6.27790800
+C 6.61867600 1.61571200 -3.37584500
+O 6.51399400 1.21245700 -4.72654400
+C 5.55433000 0.18656100 -4.92836400
+C 5.53861300 -0.15531900 -6.41417600
+O 4.59984900 -1.17164200 -6.66983100
+C 4.61304200 -1.56339100 -8.51793500
+H 7.37522700 2.39972300 -3.32963700
+H 6.92765900 0.78165200 -2.72975800
+H 5.66584700 2.01521300 -3.00024800
+H 4.55644800 0.52370000 -4.61045200
+H 5.81471700 -0.70639700 -4.34072100
+H 6.54752300 -0.47222600 -6.71292000
+H 5.29389200 0.75333700 -6.98165600
+H 3.88299800 -2.34830900 -8.69194200
+H 5.64580400 -1.86472100 -8.62906800
+H 4.34337200 -0.59145000 -8.90826500
+
+1D rotors:
+pivots: [2, 3], dihedral: [8, 2, 3, 4], rotor symmetry: 3, max scan energy: 9.81 kJ/mol
+pivots: [3, 4], dihedral: [2, 3, 4, 5], rotor symmetry: 1, max scan energy: 28.73 kJ/mol
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason: Another conformer for TS8 exists which is 32.05 kJ/mol lower.Two consecutive points are inconsistent by more than 13.53 kJ/molAnother conformer for TS8 exists which is 32.05 kJ/mol lower. But unable to propose troubleshooting methods.
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 1], invalidation reason: Two consecutive points are inconsistent by more than 6.99 kJ/molTwo consecutive points are inconsistent by more than 6.99 kJ/molTwo consecutive points are inconsistent by more than 6.85 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 6,
+ label = "O=C1OCC[F]O1 + [Li] <=> O=C1OC[CH]O1 + [Li]F",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(5.84579e+07,'cm^3/(mol*s)'), n=2.04554, Ea=(28.3364,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS11 in O=C1OCC[F]O1 + [Li] <=> O=C1OC[CH]O1 + [Li]F:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 4.99788200 2.30029500 -3.19126400
+O 1.00523400 0.02309900 -0.19212300
+C 2.18685700 -0.00035300 -0.20136700
+O 2.98779700 1.14311300 -0.13064700
+C 4.28213000 0.80032800 -0.33187300
+F 4.59976900 1.06189800 -1.96174400
+C 4.36221500 -0.69259500 -0.17464400
+O 2.98233100 -1.08533200 -0.27198600
+H 4.99666200 1.47353000 0.11810500
+H 4.74542500 -0.98616100 0.81014800
+H 4.93276500 -1.18153400 -0.96134800
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 7,
+ label = "C=C + [Li] <=> [Li]C[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.10799e+08,'cm^3/(mol*s)'), n=1.74038, Ea=(37.7145,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS12 in C=C + [Li] <=> [Li]C[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.32478100 0.48677200 -2.28010300
+C 0.66699000 0.47764200 0.12534900
+C 1.96387400 0.14162800 -0.10323100
+H -0.11605000 -0.27260900 0.16841800
+H 0.36914100 1.50519600 0.30784300
+H 2.27746800 -0.89206400 -0.20216200
+H 2.76028000 0.87702100 -0.06342100
+
+
+No rotors considered for this TS.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 8,
+ label = "[Li]O[O] + CCC <=> [Li]OO + C[CH]C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.0384704,'cm^3/(mol*s)'), n=4.42153, Ea=(115.231,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS15 in [Li]O[O] + CCC <=> [Li]OO + C[CH]C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+C 1.29438600 -0.33537800 -1.97600200
+C 1.75748700 0.23403900 -0.66092100
+C 2.84901900 1.26927300 -0.66872500
+Li 2.66254100 -1.85079600 2.38073800
+O 3.84169700 -0.89107400 1.57159400
+O 3.00854700 -1.61382700 0.61943900
+H 0.57377700 -1.14704100 -1.84189200
+H 2.13647200 -0.71981400 -2.56007100
+H 0.80373700 0.43565300 -2.59044600
+H 0.95317100 0.43744800 0.05121300
+H 3.61705500 1.02818700 -1.40913000
+H 3.33808300 1.32958900 0.30870200
+H 2.45180800 2.26685300 -0.91066300
+H 2.44281100 -0.84365700 0.03578400
+
+1D rotors:
+pivots: [1, 2], dihedral: [7, 1, 2, 3], rotor symmetry: 3, max scan energy: 8.38 kJ/mol
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 11], invalidation reason: Two consecutive points are inconsistent by more than 3.16 kJ/molTwo consecutive points are inconsistent by more than 3.16 kJ/molTwo consecutive points are inconsistent by more than 2.96 kJ/mol
+pivots: [5, 6], dihedral: [4, 5, 6, 14], rotor symmetry: 1, max scan energy: 61.92 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 9,
+ label = "[Li]O[O] + CC <=> [Li]OO + C[CH2]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.023197,'cm^3/(mol*s)'), n=4.65665, Ea=(125.28,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS16 in [Li]O[O] + CC <=> [Li]OO + C[CH2]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+C 0.99318200 0.20242700 -0.27533100
+C 2.32695800 -0.47972100 -0.34347000
+H 1.09734000 1.27040500 -0.07313200
+H 0.38387000 -0.22688000 0.53106200
+H 0.42892000 0.08585000 -1.21169700
+H 3.18822000 0.10030700 -0.66934000
+H 2.33428800 -1.50957600 -0.69982700
+Li 2.19709300 -2.44518500 2.89074700
+H 2.60028200 -0.66101000 1.11062900
+O 2.66687000 -0.83985100 2.19435300
+O 1.30040900 -0.98630900 2.68091200
+
+1D rotors:
+* Invalidated! pivots: [1, 2], dihedral: [3, 1, 2, 6], invalidation reason: Two consecutive points are inconsistent by more than 0.66 kJ/molTwo consecutive points are inconsistent by more than 0.66 kJ/molTwo consecutive points are inconsistent by more than 0.72 kJ/mol
+pivots: [10, 11], dihedral: [9, 10, 11, 8], rotor symmetry: 1, max scan energy: 57.34 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 10,
+ label = "[Li]O[O] + CC[C]C <=> [Li]OO + C[C][C]C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(0.19477,'cm^3/(mol*s)'), n=4.27128, Ea=(104.632,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS17 in [Li]O[O] + CC[C]C <=> [Li]OO + C[C][C]C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+C 0.70435200 0.54979300 0.17869400
+C -0.18765500 0.44588600 1.39373500
+C 0.08261800 0.14222700 -1.13650300
+C 1.58673700 1.77428200 0.10617300
+Li 2.53160600 -2.57003700 -0.85372900
+O 3.29427700 -1.02528100 -0.88715500
+O 2.55071000 -1.21828100 0.34745700
+H -0.97444100 1.21692800 1.36787000
+H 0.37536800 0.59260100 2.31982100
+H -0.69131200 -0.52420200 1.44871300
+H -0.59968500 0.92138300 -1.51072000
+H -0.50392300 -0.77811100 -1.04172900
+H 0.85353000 -0.00507700 -1.90016700
+H 0.99913900 2.66241400 -0.17612600
+H 2.37423900 1.64215500 -0.64096000
+H 2.06246900 1.98415000 1.06766900
+H 1.71396200 -0.44975100 0.34200100
+
+1D rotors:
+* Invalidated! pivots: [1, 4], dihedral: [2, 1, 4, 14], invalidation reason: Two consecutive points are inconsistent by more than 2.48 kJ/molTwo consecutive points are inconsistent by more than 2.70 kJ/molTwo consecutive points are inconsistent by more than 2.71 kJ/mol
+pivots: [1, 2], dihedral: [3, 1, 2, 8], rotor symmetry: 3, max scan energy: 9.75 kJ/mol
+* Invalidated! pivots: [1, 3], dihedral: [2, 1, 3, 11], invalidation reason: Two consecutive points are inconsistent by more than 2.67 kJ/molTwo consecutive points are inconsistent by more than 2.67 kJ/molTwo consecutive points are inconsistent by more than 2.56 kJ/mol
+pivots: [6, 7], dihedral: [5, 6, 7, 17], rotor symmetry: 1, max scan energy: 60.27 kJ/mol
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 11,
+ label = "[Li]O[C]1OCCO1 + [Li] <=> C=C + [Li]OC(=O)O[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(265439,'cm^3/(mol*s)'), n=1.96819, Ea=(-156.013,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS19 in [Li]O[C]1OCCO1 + [Li] <=> C=C + [Li]OC[=O]O[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 1
+
+Optimized TS geometry:
+Li 1.51692600 -0.77509800 -1.00371800
+O 0.76677400 0.77259700 -1.40250000
+C 0.53155100 0.81880400 0.01417700
+O 0.35145800 -0.48195800 0.47623000
+C -1.19121800 -0.89803400 0.13020600
+C -1.86759100 0.40462900 -0.02458800
+O -0.66955300 1.48446000 0.24256500
+H -1.46527100 -1.47444900 1.00775100
+H -1.17914700 -1.50665500 -0.77180700
+H -2.26622100 0.58700000 -1.02059400
+H -2.57717700 0.66702600 0.75328200
+Li -0.08847500 2.31683800 -1.37112200
+
+1D rotors:
+* Invalidated! pivots: [2, 3], dihedral: [1, 2, 3, 4], invalidation reason: initial and final points are inconsistent by more than 5.00 kJ/mol But unable to propose troubleshooting methods.
+ccsd(t)-f12/cc-pvdz-f12//b3lyp/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 12,
+ label = "[Li]OC(=O)OCC[Li] <=> C=C + [Li]OC(=O)O[Li]",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(9.75697e+10,'s^-1'), n=0.20961, Ea=(-32.9662,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS1 in [Li]OC(=O)OCC[Li] <=> C=C + [Li]OC(=O)O[Li]:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 1.06230124 -1.65119988 0.42900952
+O -0.66943666 -1.01982134 0.24216512
+C -0.88581267 0.27123820 0.00333972
+O 0.05807198 1.12738024 0.08907254
+C 1.62299529 0.42837843 0.44805994
+C 2.22761228 -0.31669463 -0.58486461
+H 1.62876001 -1.01079311 -1.18182278
+H 2.90694946 0.22549238 -1.22813802
+O -2.06212508 0.60232804 -0.30392807
+H 1.23131244 -0.02538625 1.36589732
+H 2.15379246 1.33323252 0.72214928
+Li -2.49325448 -1.14082524 -0.15038278
+
+1D rotors:
+* Invalidated! pivots: [3, 9], dihedral: [2, 3, 9, 12], invalidation reason:
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason:
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 13,
+ label = "O=CCOC[Li] <=> O=C + [Li]OC=C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(2.61629e+10,'s^-1'), n=0.571031, Ea=(48.5744,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS2 in O=CCOC[Li] <=> O=C + [Li]OC=C:
+
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.31150374 -1.60954040 0.08890101
+O -1.48980591 -0.87857144 -0.16898077
+C -1.46341731 0.33361174 0.07940874
+C -0.28462931 1.12289957 -0.19448382
+O 0.87809163 0.05212613 0.50348793
+C 2.02935733 -0.21914935 -0.14349416
+H 1.94265031 -0.38014290 -1.22731025
+H 2.89174399 0.39619492 0.11491236
+H -2.30683816 0.77732611 0.63035835
+H 0.06121426 1.08058543 -1.22022216
+H -0.25873063 2.12146356 0.23345536
+
+1D rotors:
+* Invalidated! pivots: [3, 4], dihedral: [2, 3, 4, 5], invalidation reason:
+* Invalidated! pivots: [4, 5], dihedral: [3, 4, 5, 6], invalidation reason:
+* Invalidated! pivots: [5, 6], dihedral: [4, 5, 6, 7], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
+
+entry(
+ index = 14,
+ label = "N=CCNC[Li] <=> N=C + [Li]NC=C",
+ degeneracy = 1.0,
+ kinetics = Arrhenius(A=(4.58931e+10,'s^-1'), n=0.578655, Ea=(18.0231,'kJ/mol'), T0=(1,'K'), Tmin=(300,'K'), Tmax=(3000,'K')),
+ longDesc =
+"""
+TS method summary for TS3 in N=CCNC[Li] <=> N=C + [Li]NC=C:
+Methods that successfully generated a TS guess:
+user guess 0,user guess 0,
+The method that generated the best TS guess and its output used for the optimization: user guess 0
+
+
+TS external symmetry: 1, TS optical isomers: 2
+
+Optimized TS geometry:
+Li 0.00295321 -1.60326478 -0.91859519
+N -1.43967564 -0.90053549 0.04198447
+C -1.27099328 0.38469499 0.27055965
+C -0.37301086 1.16080142 -0.47835123
+N 1.33182607 0.64500009 0.18283942
+C 1.63148017 -0.67094420 0.13895213
+H 2.31031321 -0.96076775 -0.66836347
+H 1.68192718 -1.25791089 1.05317014
+H -2.03059969 -1.32719355 0.74315271
+H -1.71096191 0.83990551 1.16141510
+H -0.37278303 2.23145419 -0.31544130
+H -0.19751016 0.89217270 -1.51530058
+H 1.14454041 0.94268226 1.13275931
+
+1D rotors:
+* Invalidated! pivots: [1, 5], dihedral: [6, 1, 5, 3], invalidation reason:
+* Invalidated! pivots: [2, 3], dihedral: [4, 2, 3, 5], invalidation reason:
+* Invalidated! pivots: [3, 5], dihedral: [2, 3, 5, 1], invalidation reason:
+ccsd(t)-f12/cc-pvdz-f12//wb97x-d3/def2-tzvp
+""",
+)
diff --git a/input/kinetics/libraries/LithiumSurface/dictionary.txt b/input/kinetics/libraries/LithiumSurface/dictionary.txt
new file mode 100644
index 0000000000..a8a1807219
--- /dev/null
+++ b/input/kinetics/libraries/LithiumSurface/dictionary.txt
@@ -0,0 +1,143 @@
+
+X
+1 X u0 p0 c0
+
+NCCH3
+1 N u0 p1 c0 {2,T}
+2 C u0 p0 c0 {1,T} {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+CH3X
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 X u0 p0 c0 {1,S}
+
+NCX
+1 N u0 p1 c0 {2,T}
+2 C u0 p0 c0 {1,T} {3,S}
+3 X u0 p0 c0 {2,S}
+
+HX
+1 H u0 p0 c0 {2,S}
+2 X u0 p0 c0 {1,S}
+
+CH2CNX
+1 C u0 p0 c0 {2,S} {3,S} {4,D}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 C u0 p0 c0 {1,D} {5,D}
+5 N u0 p1 c0 {4,D} {6,S}
+6 X u0 p0 c0 {5,S}
+
+LiOCOOCH2CH2X
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 C u0 p0 c0 {6,S} {10,S} {11,S} {12,S}
+10 H u0 p0 c0 {9,S}
+11 H u0 p0 c0 {9,S}
+12 X u0 p0 c0 {9,S}
+
+LiOCH2CH2X
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 X u0 p0 c0 {6,S}
+
+CO2
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,D}
+3 O u0 p2 c0 {2,D}
+
+C2H4
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+LiOCOOX
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 X u0 p0 c0 {5,S}
+
+LiOX
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 X u0 p0 c0 {2,S}
+
+LiOCOOCH2CH2OCOOLi
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 C u0 p0 c0 {6,S} {10,S} {11,S} {12,S}
+10 H u0 p0 c0 {9,S}
+11 H u0 p0 c0 {9,S}
+12 O u0 p2 c0 {9,S} {13,S}
+13 C u0 p0 c0 {12,S} {14,D} {15,S}
+14 O u0 p2 c0 {13,D}
+15 O u0 p2 c0 {13,S} {16,S}
+16 Li u0 p0 c0 {15,S}
+
+XOCOOX
+1 X u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 X u0 p0 c0 {5,S}
+
+OX
+1 O u0 p2 c0 {2,D}
+2 X u0 p0 c0 {1,D}
+
+LiNCCH3X
+1 Li u0 p0 c0 {2,S}
+2 N u0 p1 c0 {1,S} {3,D}
+3 C u0 p0 c0 {2,D} {4,S} {5,S}
+4 X u0 p0 c0 {3,S}
+5 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+6 H u0 p0 c0 {5,S}
+7 H u0 p0 c0 {5,S}
+8 H u0 p0 c0 {5,S}
+
+LiNX
+1 Li u0 p0 c0 {2,S}
+2 N u0 p1 c0 {1,S} {3,D}
+3 X u0 p0 c0 {2,D}
+
+CH3CX
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 C u0 p0 c0 {1,S} {6,T}
+6 X u0 p0 c0 {5,T}
+
+
+
+
diff --git a/input/kinetics/libraries/LithiumSurface/reactions.py b/input/kinetics/libraries/LithiumSurface/reactions.py
new file mode 100644
index 0000000000..aa6e6372ea
--- /dev/null
+++ b/input/kinetics/libraries/LithiumSurface/reactions.py
@@ -0,0 +1,98 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumSurface"
+shortDesc = u""
+longDesc = u"""
+Reactions calculated with BEEF-vdW on Libcc110 with Pynta
+"""
+
+
+# entry(
+# index = 1,
+# label = "NCCH3 + X + X <=> CH3X + NCX",
+# kinetics = SurfaceArrhenius(A=(7.21071e-50,'m^5/(molecules^2*s)'), n=2.61372, Ea=(-81.9951,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'),
+# Tmax=(2500,'K'),
+# comment="""Fitted to 50 data points; dA = *|/ 1.09361, dn = +|- 0.0113301, dEa = +|- 0.0787021 kJ/mol"""),
+# shortDesc = u"""""",
+# longDesc = u"""""",
+# metal = "Li",
+# facet = "110",
+# )
+
+# entry(
+# index = 2,
+# label = "NCCH3 + X + X <=> HX + CH2CNX",
+# kinetics = SurfaceArrhenius(A=(2.07084e-51,'m^5/(molecules^2*s)'), n=3.09905, Ea=(-37.6145,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+# comment="""Fitted to 50 data points; dA = *|/ 1.1121, dn = +|- 0.0134532, dEa = +|- 0.0934501 kJ/mol"""),
+# shortDesc = u"""note this was not a target reaction NCCH3 + Li + Li => HX + NCCH2X was targetted and resulting in three TSs for this reaction""",
+# longDesc = u"""""",
+# metal = "Li",
+# facet = "110",
+# )
+
+entry(
+ index = 3,
+ label = "LiOCOOCH2CH2X <=> CO2 + LiOCH2CH2X",
+ kinetics = SurfaceArrhenius(A=(2.66452e+11,'s^-1'), n=1.27462, Ea=(70.1461,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+ comment="""Fitted to 50 data points; dA = *|/ 1.11209, dn = +|- 0.0134516, dEa = +|- 0.0934388 kJ/mol"""),
+ shortDesc = u"""""",
+ longDesc = u"""""",
+ metal = "Li",
+ facet = "110",
+)
+
+entry(
+ index = 4,
+ label = "LiOCOOCH2CH2X + X <=> C2H4 + LiOCOOX + X",
+ kinetics = SurfaceArrhenius(A=(3.5183e-07,'m^2/(molecule*s)'), n=0.128046, Ea=(-11.0304,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+ comment="""Fitted to 50 data points; dA = *|/ 1.05314, dn = +|- 0.00655564, dEa = +|- 0.0455374 kJ/mol"""),
+ shortDesc = u"""""",
+ longDesc = u"""""",
+ metal = "Li",
+ facet = "110",
+)
+
+entry(
+ index = 5,
+ label = "LiOCOOX + X <=> CO2 + LiOX + X",
+ kinetics = SurfaceArrhenius(A=(3.5183e-07,'m^2/(molecule*s)'), n=0.128046, Ea=(-11.0304,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+ comment="""Fitted to 50 data points; dA = *|/ 1.05314, dn = +|- 0.00655564, dEa = +|- 0.0455374 kJ/mol"""),
+ shortDesc = u"""""",
+ longDesc = u"""""",
+ metal = "Li",
+ facet = "110",
+)
+
+# entry(
+# index = 6,
+# label = "LiOCOOCH2CH2X + LiOCOOX <=> LiOCOOCH2CH2OCOOLi + X + X",
+# kinetics = SurfaceArrhenius(A=(7.76425e-10,'m^2/(molecule*s)'), n=1.17184, Ea=(224.131,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+# comment="""Fitted to 50 data points; dA = *|/ 1.05424, dn = +|- 0.00668821, dEa = +|- 0.0464584 kJ/mol"""),
+# shortDesc = u"""""",
+# longDesc = u"""""",
+# metal = "Li",
+# facet = "110",
+# )
+
+entry(
+ index = 7,
+ label = "XOCOOX <=> CO2 + OX + X",
+ kinetics = SurfaceArrhenius(A=(1.10312e+12,'s^-1'), n=0.682037, Ea=(95.3188,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+ comment="""Fitted to 50 data points; dA = *|/ 1.2104, dn = +|- 0.0241775, dEa = +|- 0.167944 kJ/mol"""),
+ shortDesc = u"""""",
+ longDesc = u"""""",
+ metal = "Li",
+ facet = "110",
+)
+
+entry(
+ index = 8,
+ label = "LiNCCH3X + X <=> LiNX + CH3CX",
+ kinetics = SurfaceArrhenius(A=(7.71978e-11,'m^2/(molecule*s)'), n=1.32625, Ea=(170.986,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+ comment="""Fitted to 50 data points; dA = *|/ 1.03899, dn = +|- 0.00484281, dEa = +|- 0.0336396 kJ/mol"""),
+ shortDesc = u"""""",
+ longDesc = u"""""",
+ metal = "Li",
+ facet = "110",
+)
\ No newline at end of file
diff --git a/input/kinetics/libraries/LithiumSurfaceAnalogy/dictionary.txt b/input/kinetics/libraries/LithiumSurfaceAnalogy/dictionary.txt
new file mode 100644
index 0000000000..d32bf18df8
--- /dev/null
+++ b/input/kinetics/libraries/LithiumSurfaceAnalogy/dictionary.txt
@@ -0,0 +1,176 @@
+
+X
+1 X u0 p0 c0
+
+NCCH3
+1 N u0 p1 c0 {2,T}
+2 C u0 p0 c0 {1,T} {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 H u0 p0 c0 {3,S}
+
+CH3X
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 X u0 p0 c0 {1,S}
+
+NCX
+1 N u0 p1 c0 {2,T}
+2 C u0 p0 c0 {1,T} {3,S}
+3 X u0 p0 c0 {2,S}
+
+HX
+1 H u0 p0 c0 {2,S}
+2 X u0 p0 c0 {1,S}
+
+CH2CNX
+1 C u0 p0 c0 {2,S} {3,S} {4,D}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 C u0 p0 c0 {1,D} {5,D}
+5 N u0 p1 c0 {4,D} {6,S}
+6 X u0 p0 c0 {5,S}
+
+LiOCOOCH2CH2X
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 C u0 p0 c0 {6,S} {10,S} {11,S} {12,S}
+10 H u0 p0 c0 {9,S}
+11 H u0 p0 c0 {9,S}
+12 X u0 p0 c0 {9,S}
+
+LiOCH2CH2X
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,S} {5,S} {6,S}
+4 H u0 p0 c0 {3,S}
+5 H u0 p0 c0 {3,S}
+6 C u0 p0 c0 {3,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 X u0 p0 c0 {6,S}
+
+CO2
+1 O u0 p2 c0 {2,D}
+2 C u0 p0 c0 {1,D} {3,D}
+3 O u0 p2 c0 {2,D}
+
+C2H4
+1 C u0 p0 c0 {2,D} {3,S} {4,S}
+2 C u0 p0 c0 {1,D} {5,S} {6,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+6 H u0 p0 c0 {2,S}
+
+LiOCOOX
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 X u0 p0 c0 {5,S}
+
+LiOX
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 X u0 p0 c0 {2,S}
+
+LiOCOOCH2CH2OCOOLi
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 C u0 p0 c0 {6,S} {10,S} {11,S} {12,S}
+10 H u0 p0 c0 {9,S}
+11 H u0 p0 c0 {9,S}
+12 O u0 p2 c0 {9,S} {13,S}
+13 C u0 p0 c0 {12,S} {14,D} {15,S}
+14 O u0 p2 c0 {13,D}
+15 O u0 p2 c0 {13,S} {16,S}
+16 Li u0 p0 c0 {15,S}
+
+XOCOOX
+1 X u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 X u0 p0 c0 {5,S}
+
+OX
+1 O u0 p2 c0 {2,D}
+2 X u0 p0 c0 {1,D}
+
+LiNCCH3X
+1 Li u0 p0 c0 {2,S}
+2 N u0 p1 c0 {1,S} {3,D}
+3 C u0 p0 c0 {2,D} {4,S} {5,S}
+4 X u0 p0 c0 {3,S}
+5 C u0 p0 c0 {3,S} {6,S} {7,S} {8,S}
+6 H u0 p0 c0 {5,S}
+7 H u0 p0 c0 {5,S}
+8 H u0 p0 c0 {5,S}
+
+LiNX
+1 Li u0 p0 c0 {2,S}
+2 N u0 p1 c0 {1,S} {3,D}
+3 X u0 p0 c0 {2,D}
+
+CH3CX
+1 C u0 p0 c0 {2,S} {3,S} {4,S} {5,S}
+2 H u0 p0 c0 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 C u0 p0 c0 {1,S} {6,T}
+6 X u0 p0 c0 {5,T}
+
+LiOCOOCH2CH2CH2CH2OCOOLi
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 C u0 p0 c0 {5,S} {7,S} {8,S} {9,S}
+7 H u0 p0 c0 {6,S}
+8 H u0 p0 c0 {6,S}
+9 C u0 p0 c0 {6,S} {10,S} {11,S} {12,S}
+10 H u0 p0 c0 {9,S}
+11 H u0 p0 c0 {9,S}
+12 C u0 p0 c0 {9,S} {13,S} {14,S} {15,S}
+13 H u0 p0 c0 {12,S}
+14 H u0 p0 c0 {12,S}
+15 C u0 p0 c0 {12,S} {16,S} {17,S} {18,S}
+16 H u0 p0 c0 {15,S}
+17 H u0 p0 c0 {15,S}
+18 O u0 p2 c0 {15,S} {19,S}
+19 C u0 p0 c0 {18,S} {20,D} {21,S}
+20 O u0 p2 c0 {19,D}
+21 O u0 p2 c0 {19,S} {22,S}
+22 Li u0 p0 c0 {21,S}
+
+LiOCOOOCOOLi
+1 Li u0 p0 c0 {2,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 C u0 p0 c0 {2,S} {4,D} {5,S}
+4 O u0 p2 c0 {3,D}
+5 O u0 p2 c0 {3,S} {6,S}
+6 O u0 p2 c0 {5,S} {7,S}
+7 C u0 p0 c0 {6,S} {8,D} {9,S}
+8 O u0 p2 c0 {7,D}
+9 O u0 p2 c0 {7,S} {10,S}
+10 Li u0 p0 c0 {9,S}
+
diff --git a/input/kinetics/libraries/LithiumSurfaceAnalogy/reactions.py b/input/kinetics/libraries/LithiumSurfaceAnalogy/reactions.py
new file mode 100644
index 0000000000..a19251b9db
--- /dev/null
+++ b/input/kinetics/libraries/LithiumSurfaceAnalogy/reactions.py
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+# encoding: utf-8
+
+name = "LithiumSurfaceAnalogy"
+shortDesc = u""
+longDesc = u"""
+Analogies to Reactions calculated with BEEF-vdW on Libcc110 with Pynta
+"""
+
+#CFG: O2 is a special case: we need to treat it separately
+# reverse of R10
+# entry(
+# index = 1,
+# label = "LiOCOOCH2CH2X + LiOCOOCH2CH2X <=> LiOCOOCH2CH2CH2CH2OCOOLi + X + X",
+# kinetics = SurfaceArrhenius(A=(7.76425e-10,'m^2/(molecule*s)'), n=1.17184, Ea=(224.131,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+# comment="""Fitted to 50 data points; dA = *|/ 1.05424, dn = +|- 0.00668821, dEa = +|- 0.0464584 kJ/mol"""),
+# shortDesc = u"""analogy to LiOCOOCH2CH2X + LiOCOOX <=> LiOCOOCH2CH2OCOOLi + X + X""",
+# longDesc = u"""""",
+# metal = "Li",
+# )
+
+# entry(
+# index = 2,
+# label = "LiOCOOX + LiOCOOX <=> LiOCOOOCOOLi + X + X",
+# kinetics = SurfaceArrhenius(A=(7.76425e-10,'m^2/(molecule*s)'), n=1.17184, Ea=(224.131,'kJ/mol'), T0=(1,'K'), Tmin=(298,'K'), Tmax=(2500,'K'),
+# comment="""Fitted to 50 data points; dA = *|/ 1.05424, dn = +|- 0.00668821, dEa = +|- 0.0464584 kJ/mol"""),
+# shortDesc = u"""analogy to LiOCOOCH2CH2X + LiOCOOX <=> LiOCOOCH2CH2OCOOLi + X + X""",
+# longDesc = u"""""",
+# metal = "Li",
+# )
\ No newline at end of file
diff --git a/input/kinetics/libraries/Surface/CPOX_Pt/Deutschmann2006_adjusted/reactions.py b/input/kinetics/libraries/Surface/CPOX_Pt/Deutschmann2006_adjusted/reactions.py
index fcb283e5f3..8dcb3fe7db 100644
--- a/input/kinetics/libraries/Surface/CPOX_Pt/Deutschmann2006_adjusted/reactions.py
+++ b/input/kinetics/libraries/Surface/CPOX_Pt/Deutschmann2006_adjusted/reactions.py
@@ -33,20 +33,20 @@
#CFG: O2 is a special case: we need to treat it separately
# reverse of R10
-# entry(
-# index = 2,
-# label = "O2 + Pt + Pt <=> OX + OX",
-# kinetics = SurfaceArrhenius(
-# A=(1.89E21, 'cm^5/(mol^2*s)'),
-# n = -0.5,
-# Ea=(0.0, 'J/mol'),
-# Tmin = (200, 'K'),
-# Tmax = (3000, 'K'),
-# ),
-# shortDesc = u"""Default""",
-# longDesc = u"""R2""",
-# metal = "Pt",
-# )
+entry(
+ index = 2,
+ label = "O2 + Pt + Pt <=> OX + OX",
+ kinetics = SurfaceArrhenius(
+ A=(1.89E21, 'cm^5/(mol^2*s)'),
+ n = -0.5,
+ Ea=(0.0, 'J/mol'),
+ Tmin = (200, 'K'),
+ Tmax = (3000, 'K'),
+ ),
+ shortDesc = u"""Default""",
+ longDesc = u"""R2""",
+ metal = "Pt",
+)
# reverse of R34
# entry(
@@ -163,22 +163,22 @@
# )
#endothermic - reverse of R2
-entry(
- index = 10,
- label = "OX + OX <=> Pt + Pt + O2",
- kinetics = SurfaceArrhenius(
- A=(3.7E17, 'm^2/(mol*s)'),
- n = 0,
- Ea=(278700.0, 'J/mol'),
- Tmin = (200, 'K'),
- Tmax = (3000, 'K'),
- coverage_dependence = {'OX': {'a': 0.0, 'm': 0.0, 'E': (-188280, 'J/mol')}},
- ),
- shortDesc = u"""Default""",
- longDesc = u"""R10. Ea raised from 235.5 to 278.7 kJ/mol to match
- endothermicity of reaction.""",
- metal = "Pt",
-)
+# entry(
+# index = 10,
+# label = "OX + OX <=> Pt + Pt + O2",
+# kinetics = SurfaceArrhenius(
+# A=(3.7E17, 'm^2/(mol*s)'),
+# n = 0,
+# Ea=(278700.0, 'J/mol'),
+# Tmin = (200, 'K'),
+# Tmax = (3000, 'K'),
+# coverage_dependence = {'OX': {'a': 0.0, 'm': 0.0, 'E': (-188280, 'J/mol')}},
+# ),
+# shortDesc = u"""Default""",
+# longDesc = u"""R10. Ea raised from 235.5 to 278.7 kJ/mol to match
+# endothermicity of reaction.""",
+# metal = "Pt",
+# )
#endothermic - reverse of R6
#entry(
diff --git a/input/kinetics/libraries/primaryH2O2/reactions.py b/input/kinetics/libraries/primaryH2O2/reactions.py
index d647fd7df3..76a55629ec 100644
--- a/input/kinetics/libraries/primaryH2O2/reactions.py
+++ b/input/kinetics/libraries/primaryH2O2/reactions.py
@@ -5,487 +5,514 @@
shortDesc = u"primaryH2O2"
longDesc = u"""
Based on:
+[Baulch2005] D.L. Baulch, C.T. Bowman, C.J. Cobos, R.A. Cox, Th. Just, J.A. Kerr, M.J. Pilling, D. Stocker, J. Troe,
+ W. Tsang, R.W. Walker, J. Warnatz, J. Phys. Chem. Ref. Data, 2005, 34, 757-1397, doi: 10.1063/1.1748524
+[Hosein2007] M.S. Hosein, S. Vahid, Bull. Chem. Soc. Jpn., 2007, 80(10), 1901-1913, doi: 10.1246/bcsj.80.1901
+[Klippenstein2022] S.J. Klippenstein, R. Sivaramakrishnan, U. Burke, K.P. Somers, H.J. Curran, L. Cai, H. Pitsch,
+ M. Pelucchi, T. Faravelli, P. Glarborg, "HO2 + HO2: High level theory and the role of singlet channels",
+ Combustion and Flame 2022, 243, 111975, doi: 10.1016/j.combustflame.2021.111975
[Konnov2015] A.A. Konnov, "On the role of excited species in hydrogen combustion", Combustion and Flame 2015,
-162, 3755-3772, DOI: 10.1016/j.combustflame.2015.07.014
+ 162, 3755-3772, doi: 10.1016/j.combustflame.2015.07.014
[Konnov2019] A.A. Konnov, "Yet another kinetic mechanism for hydrogen combustion", Combustion and Flame 2019,
-203, 14-22, DOI: 10.1016/j.combustflame.2019.01.032
+ 203, 14-22, doi: 10.1016/j.combustflame.2019.01.032
+[Tsang1986] W. Tsang, R.F. Hampson, "Chemical Kinetic Data Base for Combustion Chemistry. Part I. Methane and Related Compounds",
+ Journal of Physical and Chemical Reference Data, 1986, 15, 1087–1279, doi: 10.1063/1.555759
"""
entry(
- index = 1,
- label = "H + H <=> H2",
- kinetics = ThirdBody(
+ index=1,
+ label="H + H <=> H2",
+ kinetics=ThirdBody(
arrheniusLow=Arrhenius(A=(7e+17, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.0, Ea=(0, 'cal/mol'), T0=(1, 'K'),
Tmin=(77, 'K'), Tmax=(5000, 'K')),
efficiencies={'[Ar]': 0.0, '[He]': 0.0, 'N#N': 0.0, '[H]': 0.0, '[H][H]': 0.0, '[O][O]': 0.0, 'O': 14.3}),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 1a""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 1a""",
)
entry(
- index = 2,
- label = "H + H + O2 <=> H2 + O2",
- kinetics = Arrhenius(A=(8.80e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
- Tmax=(3000, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 1""",
+ index=2,
+ label="H + H + O2 <=> H2 + O2",
+ kinetics=Arrhenius(A=(8.80e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
+ Tmax=(3000, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 1""",
)
entry(
- index = 3,
- label = "H2 + Ar <=> H + H + Ar",
- kinetics = Arrhenius(A=(5.84e+18, 'cm^3/(mol*s)'), n=-1.10, Ea=(104380, 'cal/mol'), T0 = (1, 'K')),
- shortDesc = u"""Tsang and Hampson, J. Phys. Chem. Ref. Data, 15:1087 (1986)""",
+ index=3,
+ label="H2 + Ar <=> H + H + Ar",
+ kinetics=Arrhenius(A=(5.84e+18, 'cm^3/(mol*s)'), n=-1.10, Ea=(104380, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Tsang1986]""",
)
entry(
- index = 4,
- label = "H2 + He <=> H + H + He",
- kinetics = Arrhenius(A=(5.84e+18, 'cm^3/(mol*s)'), n=-1.10, Ea=(104380, 'cal/mol'), T0 = (1, 'K')),
- shortDesc = u"""Tsang and Hampson, J. Phys. Chem. Ref. Data, 15:1087 (1986)""",
+ index=4,
+ label="H2 + He <=> H + H + He",
+ kinetics=Arrhenius(A=(5.84e+18, 'cm^3/(mol*s)'), n=-1.10, Ea=(104380, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Tsang1986]""",
)
entry(
- index = 5,
- label = "H + H + H2 <=> H2 + H2",
- kinetics = Arrhenius(A=(1e+17, 'cm^6/(mol^2*s)', '*|/', 2.5),n=-0.6, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(50, 'K'), Tmax=(5000, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 1b""",
+ index=5,
+ label="H + H + H2 <=> H2 + H2",
+ kinetics=Arrhenius(A=(1e+17, 'cm^6/(mol^2*s)', '*|/', 2.5), n=-0.6, Ea=(0, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(50, 'K'), Tmax=(5000, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 1b""",
)
entry(
- index = 6,
- label = "H + H + N2 <=> H2 + N2",
- kinetics = Arrhenius(A=(5.4e+18, 'cm^6/(mol^2*s)', '*|/', 3.2), n=-1.3, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(77, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 1c""",
+ index=6,
+ label="H + H + N2 <=> H2 + N2",
+ kinetics=Arrhenius(A=(5.4e+18, 'cm^6/(mol^2*s)', '*|/', 3.2), n=-1.3, Ea=(0, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(77, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 1c""",
)
entry(
- index = 7,
- label = "H + H + H <=> H2 + H",
- kinetics = Arrhenius(A=(3.2e+15, 'cm^6/(mol^2*s)', '*|/', 3.2), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(50, 'K'),
- Tmax=(5000, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 1d""",
+ index=7,
+ label="H + H + H <=> H2 + H",
+ kinetics=Arrhenius(A=(3.2e+15, 'cm^6/(mol^2*s)', '*|/', 3.2), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(50, 'K'),
+ Tmax=(5000, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 1d""",
)
entry(
- index = 8,
- label = "H + O2 + H <=> OH + OH",
- kinetics = Arrhenius(A=(4.00e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
- Tmax=(3000, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 2""",
+ index=8,
+ label="H + O2 + H <=> OH + OH",
+ kinetics=Arrhenius(A=(4.00e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
+ Tmax=(3000, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 2""",
)
entry(
- index = 9,
- label = "O + H <=> OH",
- kinetics = ThirdBody(
+ index=9,
+ label="O + H <=> OH",
+ kinetics=ThirdBody(
arrheniusLow=Arrhenius(A=(6.75e+18, 'cm^6/(mol^2*s)'), n=-1, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(2950, 'K'),
- Tmax=(3700, 'K')),
- efficiencies={'O': 5.0, '[H][H]': 2.5, '[C-]#[O+]': 1.9, 'O=C=O': 3.8, '[Ar]': 0.75, '[He]': 0.75, '[O][O]': 0.0}),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 3
- The efficiency for H2O was taken from Konnov 2015, other collider efficiencies were taken from Curran 10.1016/j.combustflame.2015.09.014
- Note that in the Curran library th efficiency for O2 was 12, her for consistency we remain with
- the Konnov recommendation of collision efficiency for O2 of 5.
- """,
+ Tmax=(3700, 'K')),
+ efficiencies={'O': 5.0, '[H][H]': 2.5, '[C-]#[O+]': 1.9, 'O=C=O': 3.8, '[Ar]': 0.75, '[He]': 0.75,
+ '[O][O]': 0.0}),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Table 1, Reaction 3
+The efficiency for H2O was taken from Konnov 2015, other collider efficiencies were taken from Curran 10.1016/j.combustflame.2015.09.014
+Note that in the Curran library th efficiency for O2 was 12, her for consistency we remain with
+the Konnov recommendation of collision efficiency for O2 of 5.
+""",
)
entry(
- index = 10,
- label = "H + O + O2 <=> OH + O2",
- kinetics = Arrhenius(A=(7.35e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
- Tmax=(3000, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 3""",
+ index=10,
+ label="H + O + O2 <=> OH + O2",
+ kinetics=Arrhenius(A=(7.35e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
+ Tmax=(3000, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 3""",
)
entry(
- index = 11,
- label = "H2O <=> H + OH",
- kinetics = ThirdBody(
- arrheniusLow=Arrhenius( A=(6.06e+27, 'cm^3/(mol*s)'), n=-3.312, Ea=(120770, 'cal/mol'), T0=(1, 'K'),
- Tmin=(300, 'K'), Tmax=(3400, 'K')),
+ index=11,
+ label="H2O <=> H + OH",
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(6.06e+27, 'cm^3/(mol*s)'), n=-3.312, Ea=(120770, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(300, 'K'), Tmax=(3400, 'K')),
efficiencies={'N#N': 2.0, 'O': 0.0, '[H][H]': 3.0, '[He]': 1.1, '[O][O]': 0.0, '[C-]#[O+]': 1.9, 'O=C=O': 3.8}),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 4a
- Note that in Konnov2015 the collision efficiency for O2 was 1.5, but Konnov2019 updated the rate
- for the specific collider (see reaction index 13). THerefore, an efficiency of 0 was given here for O2.""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 4a
+Note that in Konnov2015 the collision efficiency for O2 was 1.5, but Konnov2019 updated the rate
+for the specific collider (see reaction index 13). THerefore, an efficiency of 0 was given here for O2.
+""",
)
entry(
- index = 12,
- label = "H2O + H2O <=> H + OH + H2O",
- kinetics = Arrhenius(A=(1e+26, 'cm^3/(mol*s)'), n=-2.44, Ea=(120160, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'),
- Tmax=(3400, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 4b
- Originally from Srinivasan and Michael, Int. J. Chem. Kinetic 38 (2006)""",
+ index=12,
+ label="H2O + H2O <=> H + OH + H2O",
+ kinetics=Arrhenius(A=(1e+26, 'cm^3/(mol*s)'), n=-2.44, Ea=(120160, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'),
+ Tmax=(3400, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Table 1, Reaction 4b
+Originally from Srinivasan and Michael, Int. J. Chem. Kinetic 38 (2006)
+""",
)
entry(
- index = 13,
- label = "H + OH + O2 <=> H2O + O2",
- kinetics = Arrhenius(A=(2.56e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
- Tmax=(3000, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 4""",
+ index=13,
+ label="H + OH + O2 <=> H2O + O2",
+ kinetics=Arrhenius(A=(2.56e+22, 'cm^6/(mol^2*s)', '*|/', 2), n=-1.835, Ea=(800, 'cal/mol'), Tmin=(300, 'K'),
+ Tmax=(3000, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 4""",
)
entry(
- index = 14,
- label = "H + O2 <=> HO2",
- kinetics = Troe(
- arrheniusHigh = Arrhenius(A=(4.66e+12, 'cm^3/(mol*s)', '*|/', 1.2), n=0.44, Ea=(0, 'cal/mol'), Tmin=(300, 'K'),
- Tmax=(2000, 'K')),
- arrheniusLow = Arrhenius(A=(1.225e+19, 'cm^6/(mol^2*s)', '*|/', 1.2), n=-1.2, Ea=(0.0, 'cal/mol'),
- Tmin=(1000, 'K'), Tmax=(1430, 'K')), T3=(1752, 'K'), T1=(1e-10, 'K'), T2=(1e+30, 'K'),
- efficiencies = {'[H][H]': 1.5, 'O=C=O': 3.61, '[He]': 0.57, '[Ar]': 0.72, 'O': 16.6},),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 6
- The value of T3 was calculated with the first factor of the Lindemann model and an Fcent
- value of 0.5 specified in the Konnov 2019 paper.""",
+ index=14,
+ label="H + O2 <=> HO2",
+ kinetics=Troe(
+ arrheniusHigh=Arrhenius(A=(4.66e+12, 'cm^3/(mol*s)', '*|/', 1.2), n=0.44, Ea=(0, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ arrheniusLow=Arrhenius(A=(1.225e+19, 'cm^6/(mol^2*s)', '*|/', 1.2), n=-1.2, Ea=(0.0, 'cal/mol'), Tmin=(1000, 'K'), Tmax=(1430, 'K')),
+ T1=(1e-10, 'K'), T2=(1e+30, 'K'), T3=(1752, 'K'),
+ efficiencies={'[H][H]': 1.5, 'O=C=O': 3.61, '[He]': 0.57, '[Ar]': 0.72, 'O': 16.6}, ),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""
+Table 1, Reaction 6
+The value of T3 was calculated with the first factor of the Lindemann model and an Fcent
+value of 0.5 specified in the Konnov 2019 paper.
+""",
)
entry(
- index = 15,
- label = "H + O2 <=> OH + O",
- kinetics = Arrhenius(A=(1.04e+14, 'cm^3/(mol*s)'), n=0, Ea=(15286, 'cal/mol'), T0=(1, 'K'), Tmin=(1100, 'K'),
- Tmax=(3370, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 8
- Originally based on Hong et al., Proc. Comb. Inst. 33:309-316 (2011)""",
+ index=15,
+ label="H + O2 <=> OH + O",
+ kinetics=Arrhenius(A=(1.04e+14, 'cm^3/(mol*s)'), n=0, Ea=(15286, 'cal/mol'), T0=(1, 'K'), Tmin=(1100, 'K'),
+ Tmax=(3370, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Table 1, Reaction 8
+Originally based on Hong et al., Proc. Comb. Inst. 33:309-316 (2011)
+""",
)
entry(
- index = 16,
- label = "OH + OH <=> H2O + O",
- kinetics = Arrhenius(A=(2.668e+06,'cm^3/(mol*s)', '*|/', 1.4), n=1.82, Ea=(-1647, 'cal/mol'), T0=(1, 'K'),
- Tmin=(200, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 5""",
+ index=16,
+ label="OH + OH <=> H2O + O",
+ kinetics=Arrhenius(A=(2.668e+06, 'cm^3/(mol*s)', '*|/', 1.4), n=1.82, Ea=(-1647, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(200, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 5""",
)
entry(
- index = 17,
- label = "OH + HO2 <=> H2O + O2",
- kinetics = Arrhenius(A=(2.14e+06, 'cm^3/(mol*s)', '*|/', 2), n=1.65, Ea = (2180, 'cal/mol'), Tmin=(200, 'K'),
- Tmax=(2500, 'K')),
- shortDesc = u"""[Konnov2019]""",
- longDesc = u"""Konnov (2019) https://doi.org/10.1016/j.combustflame.2019.01.032, Table 1, Reaction 7""",
+ index=17,
+ label="OH + HO2 <=> H2O + O2",
+ kinetics=Arrhenius(A=(2.14e+06, 'cm^3/(mol*s)', '*|/', 2), n=1.65, Ea=(2180, 'cal/mol'), Tmin=(200, 'K'),
+ Tmax=(2500, 'K')),
+ shortDesc=u"""[Konnov2019]""",
+ longDesc=u"""Table 1, Reaction 7""",
)
entry(
- index = 18,
- label = "O + O <=> O2",
- kinetics = ThirdBody(
+ index=18,
+ label="O + O <=> O2",
+ kinetics=ThirdBody(
arrheniusLow=Arrhenius(A=(1e+17, 'cm^6/(mol^2*s)'), n=-1, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'),
- Tmax=(5000, 'K')),
+ Tmax=(5000, 'K')),
efficiencies={'[Ar]': 0.0, '[He]': 0.0, 'N#N': 2.0, '[N]=O': 2.0, '[N]': 2.0, 'O': 5.0, '[O-][O+]=O': 8.0,
'[O]': 28.8, '[O][O]': 8.0}),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 2""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 2""",
)
entry(
- index = 19,
- label = "O + O + Ar <=> O2 + Ar",
- kinetics = Arrhenius(A=(1.886e+13, 'cm^6/(mol^2*s)'), n=0, Ea=(-1788, 'cal/mol'), T0 = (1, 'K')),
- shortDesc = u"""Tsang and Hampson, J. Phys. Chem. Ref. Data, 15:1087 (1986)""",
+ index=19,
+ label="O + O + Ar <=> O2 + Ar",
+ kinetics=Arrhenius(A=(1.886e+13, 'cm^6/(mol^2*s)'), n=0, Ea=(-1788, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Tsang1986]""",
)
entry(
- index = 20,
- label = "O + O + He <=> O2 + He",
- kinetics = Arrhenius(A=(1.886e+13, 'cm^6/(mol^2*s)'), n=0, Ea=(-1788, 'cal/mol'), T0 = (1, 'K')),
- shortDesc = u"""Tsang and Hampson J. Phys. Chem. Ref. Data, 15:1087 (1986)""",
+ index=20,
+ label="O + O + He <=> O2 + He",
+ kinetics=Arrhenius(A=(1.886e+13, 'cm^6/(mol^2*s)'), n=0, Ea=(-1788, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Tsang1986]""",
)
entry(
- index = 21,
- label = "H2O + O <=> H + HO2",
- kinetics = Arrhenius(A=(2.2e+08, 'cm^3/(mol*s)'), n=2, Ea=(61600, 'cal/mol'), T0=(1, 'K'), Tmin=(1500, 'K'),
- Tmax=(4000, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 13""",
+ index=21,
+ label="H2O + O <=> H + HO2",
+ kinetics=Arrhenius(A=(2.2e+08, 'cm^3/(mol*s)'), n=2, Ea=(61600, 'cal/mol'), T0=(1, 'K'), Tmin=(1500, 'K'),
+ Tmax=(4000, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 13""",
)
entry(
- index = 22,
- label = "H2O + OH <=> H2 + HO2",
- kinetics = Arrhenius(A=(7.9e+09, 'cm^3/(mol*s)'), n=0.43, Ea=(71700, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X22""",
+ index=22,
+ label="H2O + OH <=> H2 + HO2",
+ kinetics=Arrhenius(A=(7.9e+09, 'cm^3/(mol*s)'), n=0.43, Ea=(71700, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X22""",
)
entry(
- index = 23,
- label = "H2O2 <=> OH + OH",
- kinetics = Troe(
- arrheniusHigh=Arrhenius(A=(2e+12, 's^-1'), n=0.9, Ea=(48750, 'cal/mol'), T0=(1, 'K'),
- Tmin=(500, 'K'), Tmax=(1500, 'K')),
- arrheniusLow=Arrhenius(A=(2.49e+24, 'cm^3/(mol*s)'), n=-2.3, Ea=(48750, 'cal/mol'), T0=(1, 'K'),
- Tmin=(500, 'K'), Tmax=(1500, 'K')),
- alpha=0.42,
- T3=(1e+30, 'K'),
- T1=(1e+30, 'K'),
+ index=23,
+ label="H2O2 <=> OH + OH",
+ kinetics=Troe(
+ arrheniusHigh=Arrhenius(A=(2e+12, 's^-1'), n=0.9, Ea=(48750, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1500, 'K')),
+ arrheniusLow=Arrhenius(A=(2.49e+24, 'cm^3/(mol*s)'), n=-2.3, Ea=(48750, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1500, 'K')),
+ alpha=0.42, T3=(1e+30, 'K'), T1=(1e+30, 'K'),
efficiencies={'N#N': 1.5, 'O': 7.5, 'OO': 7.7, '[H][H]': 3.7, '[He]': 0.65, '[O][O]': 1.2, '[C-]#[O+]': 2.8,
'O=C=O': 1.6, }),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 6""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 6""",
)
entry(
- index = 24,
- label = "H2O2 + H <=> HO2 + H2",
- kinetics = Arrhenius(A=(5.02e+06, 'cm^3/(mol*s)'), n=2.07, Ea=(4300, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2400, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 17""",
+ index=24,
+ label="H2O2 + H <=> HO2 + H2",
+ kinetics=Arrhenius(A=(5.02e+06, 'cm^3/(mol*s)'), n=2.07, Ea=(4300, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2400, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 17""",
)
entry(
- index = 25,
- label = "H2O2 + H <=> H2O + OH",
- kinetics = Arrhenius(A=(2.03e+07, 'cm^3/(mol*s)'), n=2.02, Ea=(2620, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2400, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 18""",
+ index=25,
+ label="H2O2 + H <=> H2O + OH",
+ kinetics=Arrhenius(A=(2.03e+07, 'cm^3/(mol*s)'), n=2.02, Ea=(2620, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2400, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 18""",
)
entry(
- index = 26,
- label = "H2O2 + O <=> HO2 + OH",
- kinetics = Arrhenius(A=(9.55e+06, 'cm^3/(mol*s)'), n=2, Ea=(3970, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 19
- Originally from Tsang and Hampson, J. Phys. Chem. Ref. Data, 15:1087 (1986)""",
+ index=26,
+ label="H2O2 + O <=> HO2 + OH",
+ kinetics=Arrhenius(A=(9.55e+06, 'cm^3/(mol*s)'), n=2, Ea=(3970, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Table 1, Reaction 19
+Originally from Tsang and Hampson, J. Phys. Chem. Ref. Data, 15:1087 (1986)
+""",
)
entry(
- index = 27,
- label = "H2O2 + OH <=> HO2 + H2O",
- kinetics = MultiArrhenius(
+ index=27,
+ label="H2O2 + OH <=> HO2 + H2O",
+ kinetics=MultiArrhenius(
arrhenius=[Arrhenius(A=(1.74e+12, 'cm^3/(mol*s)'), n=0, Ea=(318, 'cal/mol'), Tmin=(280, 'K'), Tmax=(1640, 'K')),
Arrhenius(A=(7.59e+13, 'cm^3/(mol*s)'), n=0, Ea=(7269, 'cal/mol'), T0=(1, 'K'))]),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 20
- Originally from Hong et al., J. Phys. Chem. A, 114:5718 (2010)""",
-)
-
-entry(
- index = 28,
- label = "O + H2 <=> OH + H",
- kinetics = Arrhenius(A=(50800, 'cm^3/(mol*s)'), n=2.67, Ea=(6292, 'cal/mol'), Tmin=(297, 'K'), Tmax=(2495, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 7""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Table 1, Reaction 20
+Originally from Hong et al., J. Phys. Chem. A, 114:5718 (2010)
+""",
)
entry(
- index = 29,
- label = "H2 + OH <=> H2O + H",
- kinetics = Arrhenius(A=(2.14e+08, 'cm^3/(mol*s)'), n=1.52, Ea=(3450, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 9
- Originally based on Michael and Sutherland, J. Phys. Chem. 92:3853 (1988)""",
+ index=28,
+ label="O + H2 <=> OH + H",
+ kinetics=Arrhenius(A=(50800, 'cm^3/(mol*s)'), n=2.67, Ea=(6292, 'cal/mol'), Tmin=(297, 'K'), Tmax=(2495, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 7""",
)
entry(
- index = 30,
- label = "HO2 + O <=> OH + O2",
- kinetics = Arrhenius(A=(2.85e+10, 'cm^3/(mol*s)'), n=1, Ea=(-723.9, 'cal/mol'), Tmin=(150, 'K'), Tmax=(1600, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 11
- Originally taken from Fernandez-Ramos and Varandas, J. Phys. Chem. A 106:4077-4083 (2002)""",
+ index=29,
+ label="H2 + OH <=> H2O + H",
+ kinetics=Arrhenius(A=(2.14e+08, 'cm^3/(mol*s)'), n=1.52, Ea=(3450, 'cal/mol'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+ Table 1, Reaction 9
+ Originally based on Michael and Sutherland, J. Phys. Chem. 92:3853 (1988)
+ """,
)
entry(
- index = 31,
- label = "H + HO2 <=> OH + OH",
- kinetics = Arrhenius(A=(7.079e+13, 'cm^3/(mol*s)'), n=0, Ea=(295, 'cal/mol'), Tmin=(300, 'K'), Tmax=(1000, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 12
- Originally taken by Mueller et al., Int. J. Chem. Kinetic. 31:113 (1999)""",
+ index=30,
+ label="HO2 + O <=> OH + O2",
+ kinetics=Arrhenius(A=(2.85e+10, 'cm^3/(mol*s)'), n=1, Ea=(-723.9, 'cal/mol'), Tmin=(150, 'K'), Tmax=(1600, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+ Table 1, Reaction 11
+ Originally taken from Fernandez-Ramos and Varandas, J. Phys. Chem. A 106:4077-4083 (2002)
+ """,
)
entry(
- index = 32,
- label = "H2 + O2 <=> H + HO2",
- kinetics = Arrhenius(A=(740000, 'cm^3/(mol*s)'), n=2.43, Ea=(53500, 'cal/mol'), Tmin=(400, 'K'), Tmax=(2300, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 14""",
+ index=31,
+ label="H + HO2 <=> OH + OH",
+ kinetics=Arrhenius(A=(7.079e+13, 'cm^3/(mol*s)'), n=0, Ea=(295, 'cal/mol'), Tmin=(300, 'K'), Tmax=(1000, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+ Table 1, Reaction 12
+ Originally taken by Mueller et al., Int. J. Chem. Kinetic. 31:113 (1999)
+ """,
)
entry(
- index = 33,
- label = "HO2 + HO2 <=> H2O2 + O2",
- duplicate = True,
- kinetics = MultiArrhenius(
- arrhenius=[Arrhenius(A=(1.03e+14, 'cm^3/(mol*s)'), n=0, Ea=(11040, 'cal/mol'), T0=(1, 'K'),
- Tmin=(300, 'K'), Tmax=(1250, 'K')),
- Arrhenius(A=(1.94e+11, 'cm^3/(mol*s)'), n=0, Ea=(-1409, 'cal/mol'), T0=(1, 'K'),
- Tmin=(300, 'K'), Tmax=(1250, 'K'))]),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 16.""",
+ index=32,
+ label="H2 + O2 <=> H + HO2",
+ kinetics=Arrhenius(A=(740000, 'cm^3/(mol*s)'), n=2.43, Ea=(53500, 'cal/mol'), Tmin=(400, 'K'), Tmax=(2300, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 14""",
)
entry(
- index = 34,
- label = "HO2 + HO2 <=> H2O2 + O2",
- duplicate = True,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(6.84e+14, 'cm^6/(mol^2*s)'), n=0, Ea=(-1950, 'cal/mol'), T0=(1, 'K'))),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X6""",
+ index=33,
+ label="HO2 + HO2 <=> H2O2 + O2",
+ kinetics=Arrhenius(A=(1.93E-02, 'cm^3/(mol*s)'), n=4.12, Ea=(-9857, 'cal/mol'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Klippenstein2022]""",
+ longDesc=u"""CASPT2""",
)
entry(
- index = 35,
- label = "HO2 + HO2 <=> H2O + O3",
- kinetics = Arrhenius(A=(100, 'cm^3/(mol*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X4""",
+ index=34,
+ label="HO2 + HO2 <=> H2O + O3",
+ kinetics=Arrhenius(A=(100, 'cm^3/(mol*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X4""",
)
entry(
- index = 36,
- label = "O2 + O <=> O3",
- kinetics = ThirdBody(
+ index=35,
+ label="O2 + O <=> O3",
+ kinetics=ThirdBody(
arrheniusLow=Arrhenius(A=(6.53e+17, 'cm^6/(mol^2*s)'), n=-1.5, Ea=(0, 'cal/mol'), T0=(1, 'K'),
Tmin=(100, 'K'), Tmax=(1000, 'K')),
efficiencies={'[Ar]': 0.0, '[He]': 0.0, '[O-][O+]=O': 2.5, '[O]': 4.0, '[O][O]': 0.95}),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 21b""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 21b""",
)
entry(
- index = 37,
- label = "O2 + O + Ar <=> O3 + Ar",
- kinetics = MultiArrhenius(
+ index=36,
+ label="O2 + O + Ar <=> O3 + Ar",
+ kinetics=MultiArrhenius(
arrhenius=[Arrhenius(A=(4.29e+17, 'cm^6/(mol^2*s)'), n=-1.5, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(80, 'K'), Tmax=(1500, 'K')),
+ Tmin=(80, 'K'), Tmax=(1500, 'K')),
Arrhenius(A=(5.1e+21, 'cm^6/(mol^2*s)'), n=-3.2, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(80, 'K'), Tmax=(1500, 'K'))]),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 21a""",
+ Tmin=(80, 'K'), Tmax=(1500, 'K'))]),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 21a""",
)
entry(
- index = 38,
- label = "O2 + O + He <=> O3 + He",
- kinetics = MultiArrhenius(
+ index=37,
+ label="O2 + O + He <=> O3 + He",
+ kinetics=MultiArrhenius(
arrhenius=[Arrhenius(A=(4.29e+17, 'cm^6/(mol^2*s)'), n=-1.5, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(80, 'K'), Tmax=(1500, 'K')),
+ Tmin=(80, 'K'), Tmax=(1500, 'K')),
Arrhenius(A=(5.1e+21, 'cm^6/(mol^2*s)'), n=-3.2, Ea=(0, 'cal/mol'), T0=(1, 'K'),
- Tmin=(80, 'K'), Tmax=(1500, 'K'))]),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Duplicated reaction of Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1,
- Reaction 21a using He as a collider instead of Ar since it is expected to behave similarly as Ar in terms
- of energy transfer.""",
+ Tmin=(80, 'K'), Tmax=(1500, 'K'))]),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+Duplicated reaction of Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1,
+Reaction 21a using He as a collider instead of Ar since it is expected to behave similarly as Ar in terms
+of energy transfer.
+""",
)
entry(
- index = 39,
- label = "O3 + O <=> O2 + O2",
- kinetics = Arrhenius( A=(4.82e+12, 'cm^3/(mol*s)'), n=0, Ea=(4094, 'cal/mol'), T0=(1, 'K'),
- Tmin=(200, 'K'), Tmax=(400, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 22a""",
+ index=38,
+ label="O3 + O <=> O2 + O2",
+ kinetics=Arrhenius(A=(4.82e+12, 'cm^3/(mol*s)'), n=0, Ea=(4094, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(200, 'K'), Tmax=(400, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 22a""",
)
entry(
- index = 40,
- label = "O3 + H <=> OH + O2",
- kinetics = Arrhenius(A=(8.43e+13, 'cm^3/(mol*s)'), n=0, Ea=(934, 'cal/mol'), T0=(1, 'K'),
- Tmin=(200, 'K'), Tmax=(430, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 36""",
+ index=39,
+ label="O3 + H <=> OH + O2",
+ kinetics=Arrhenius(A=(8.43e+13, 'cm^3/(mol*s)'), n=0, Ea=(934, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(200, 'K'), Tmax=(430, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 36""",
)
entry(
- index = 41,
- label = "O3 + H <=> O + HO2 ",
- kinetics = Arrhenius(A=(100, 'cm^3/(mol*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X15
- Data wasn't available from konnov 2015.""",
+ index=40,
+ label="O3 + H <=> O + HO2",
+ kinetics=Arrhenius(A=(100, 'cm^3/(mol*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""
+ Table 2, Reaction X15
+ No data was given, the rate is very low.
+ """,
)
entry(
- index = 42,
- label = "O3 + OH <=> HO2 + O2",
- kinetics = Arrhenius(A=(1e+12, 'cm^3/(mol*s)'), n=0, Ea=(1870, 'cal/mol'), T0=(1, 'K'),
- Tmin=(220, 'K'), Tmax=(450, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 37""",
+ index=41,
+ label="O3 + OH <=> HO2 + O2",
+ kinetics=Arrhenius(A=(1e+12, 'cm^3/(mol*s)'), n=0, Ea=(1870, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(220, 'K'), Tmax=(450, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 37""",
)
entry(
- index = 43,
- label = "O3 + HO2 <=> OH + O2 + O2",
- kinetics = Arrhenius(A=(5.85e-4, 'cm^3/(mol*s)'), n=4.57, Ea=(-1377, 'cal/mol'), T0=(1, 'K'),
- Tmin=(250, 'K'), Tmax=(340, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 1, Reaction 38""",
+ index=42,
+ label="O3 + HO2 <=> OH + O2 + O2",
+ kinetics=Arrhenius(A=(5.85e-4, 'cm^3/(mol*s)'), n=4.57, Ea=(-1377, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(250, 'K'), Tmax=(340, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 1, Reaction 38""",
)
entry(
- index = 44,
- label = "O3 + H2 <=> OH + HO2",
- kinetics = Arrhenius(A=(6e+10, 'cm^3/(mol*s)'), n=0, Ea=(20000, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X18""",
+ index=43,
+ label="O3 + H2 <=> OH + HO2",
+ kinetics=Arrhenius(A=(6e+10, 'cm^3/(mol*s)'), n=0, Ea=(20000, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X18""",
)
entry(
- index = 45,
- label = "H2 + O2 <=> OH + OH",
- kinetics = Arrhenius(A=(2.04e+12, 'cm^3/(mol*s)'), n=0.44, Ea=(69155, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X1""",
+ index=44,
+ label="H2 + O2 <=> OH + OH",
+ kinetics=Arrhenius(A=(2.04e+12, 'cm^3/(mol*s)'), n=0.44, Ea=(69155, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X1""",
)
entry(
- index = 46,
- label = "H2 + O2 <=> O + H2O",
- kinetics = Arrhenius(A=(3e+13, 'cm^3/(mol*s)'), n=0, Ea=(69545, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X2""",
+ index=45,
+ label="H2 + O2 => O + H2O",
+ reversible = False,
+ kinetics=Arrhenius(A=(3e+13, 'cm^3/(mol*s)'), n=0, Ea=(69545, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X2""",
)
entry(
- index = 47,
- label = "H2 + O2 + O2 <=> HO2 + HO2",
- kinetics = Arrhenius(A=(2e+17, 'cm^6/(mol^2*s)'), n=0, Ea=(25830, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X3""",
+ index=46,
+ label="H2 + O2 + O2 => HO2 + HO2",
+ reversible = False,
+ kinetics=Arrhenius(A=(2e+17, 'cm^6/(mol^2*s)'), n=0, Ea=(25830, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X3""",
)
entry(
- index = 48,
- label = "O + OH <=> HO2",
- kinetics = ThirdBody(
+ index=47,
+ label="O + OH <=> HO2",
+ kinetics=ThirdBody(
arrheniusLow=Arrhenius(A=(1e+15, 'cm^6/(mol^2*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'))),
- shortDesc = u"""[Konnov2015]""",
- longDesc = u"""Konnov (2015) https://doi.org/10.1016/j.combustflame.2015.07.014, Table 2, Reaction X13""",
+ shortDesc=u"""[Konnov2015]""",
+ longDesc=u"""Table 2, Reaction X13""",
+)
+
+entry(
+ index=48,
+ label="HO2 + H <=> H2O2",
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(6.0E+14, 'cm^6/(mol^2*s)'), n=1.25, Ea=(-270, 'cal/mol'), T0=(1, 'K'))),
+ shortDesc=u"""[Hosein2007]""",
+ longDesc = u"""
+Reaction X2 in Burke at el. (Table III),
+p. 1909 in Hosein2007
+Declared 'negligible' by Burke at el.
+The original rate Arrhenius(A=(7.20E+09, 'cm^6/(mol^2*s)'), n=1.25, Ea=(-270, 'cal/mol'), T0 = (1, 'K')) was
+multiplied by the inverse of ~1.2E-05 mol cm^-3 which is the density of an ideal gas at 1000 K,
+so that a ThirdBody kinetics format could be written here
+""",
)
entry(
- index = 49,
- label = "HO2 + H <=> H2O2",
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(6.0E+14, 'cm^6/(mol^2*s)'), n=1.25, Ea=(-270, 'cal/mol'), T0 = (1, 'K'))),
- shortDesc = u"""Mousavipour et al., Bull. Chem. Soc. Jpn., 80:1901 (2007)""",
- longDesc = u"""Taken BurkeH2O2 library Reaction X2 in Burke at el. (Table III), p. 1909 in Mousavipour et al.
- Declared 'negligible' by Burke at el. We want to teach RMG that this reaction matters.""",
+ index=49,
+ label="H2O2 + O <=> H2O + O2",
+ kinetics=Arrhenius(A=(8.43E+11, 'cm^3/(mol*s)'), n=0.00, Ea=(3.970E+03, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Baulch2005]""",
+ longDesc=u"""Added from the BurkeH2O2 library Reaction X5 in Burke at el. (Table III), Upper limit""",
)
entry(
- index = 50,
- label = "H2O2 + O <=> H2O + O2",
- kinetics = Arrhenius(A=(8.43E+11, 'cm^3/(mol*s)'), n=0.00, Ea=(3.970E+03, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""Baulch et al., J. Phys. Chem. Ref. Data, 34:757 (2005)""",
- longDesc = u"""Added from the BurkeH2O2 library Reaction X5 in Burke at el. (Table III), Upper limit""",
+ index=50,
+ label="HO2 + HO2 <=> O2 + OH + OH",
+ kinetics=Arrhenius(A=(6.41E17, 'cm^3/(mol*s)'), n=-1.54, Ea=(16971, 'cal/mol'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Klippenstein2022]""",
+ longDesc=u"""CASPT2""",
)
diff --git a/input/kinetics/libraries/primaryNitrogenLibrary/dictionary.txt b/input/kinetics/libraries/primaryNitrogenLibrary/dictionary.txt
index 65ce0a9e7a..fd0377c86b 100644
--- a/input/kinetics/libraries/primaryNitrogenLibrary/dictionary.txt
+++ b/input/kinetics/libraries/primaryNitrogenLibrary/dictionary.txt
@@ -41,10 +41,20 @@ H2O
2 H u0 p0 c0 {1,S}
3 H u0 p0 c0 {1,S}
+H2O2
+1 O u0 p2 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {4,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
N
multiplicity 4
1 N u3 p1 c0
+N(D)
+multiplicity 2
+1 N u1 p2 c0
+
N2
1 N u0 p1 c0 {2,T}
2 N u0 p1 c0 {1,T}
@@ -54,6 +64,11 @@ multiplicity 3
1 N u2 p1 c0 {2,S}
2 H u0 p0 c0 {1,S}
+NH(S)
+multiplicity 1
+1 N u0 p2 c0 {2,S}
+2 H u0 p0 c0 {1,S}
+
NH2
multiplicity 2
1 N u1 p1 c0 {2,S} {3,S}
@@ -106,6 +121,14 @@ multiplicity 2
4 H u0 p0 c0 {1,S}
5 H u0 p0 c0 {1,S}
+NH3N
+multiplicity 2
+1 N u0 p0 c+1 {2,S} {3,S} {4,S} {5,S}
+2 N u1 p2 c-1 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
N2H4
1 N u0 p1 c0 {2,S} {3,S} {4,S}
2 N u0 p1 c0 {1,S} {5,S} {6,S}
@@ -127,13 +150,27 @@ multiplicity 2
1 N u1 p1 c0 {2,D}
2 O u0 p2 c0 {1,D}
-H2NO
+NH2O
multiplicity 2
1 N u0 p1 c0 {2,S} {3,S} {4,S}
2 O u1 p2 c0 {1,S}
3 H u0 p0 c0 {1,S}
4 H u0 p0 c0 {1,S}
+NHOH
+multiplicity 2
+1 N u1 p1 c0 {2,S} {3,S}
+2 O u0 p2 c0 {1,S} {4,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {2,S}
+
+H2NOH
+1 N u0 p1 c0 {2,S} {3,S} {4,S}
+2 O u0 p2 c0 {1,S} {5,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {2,S}
+
NH2OH
1 N u0 p1 c0 {2,S} {3,S} {4,S}
2 O u0 p2 c0 {1,S} {5,S}
@@ -141,6 +178,22 @@ NH2OH
4 H u0 p0 c0 {1,S}
5 H u0 p0 c0 {2,S}
+NH3O
+1 N u0 p0 c+1 {2,S} {3,S} {4,S} {5,S}
+2 O u0 p3 c-1 {1,S}
+3 H u0 p0 c0 {1,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+
+NH2NHO
+multiplicity 2
+1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 N u0 p1 c0 {1,S} {3,S} {6,S}
+3 O u1 p2 c0 {2,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+
N2O
1 N u0 p2 c-1 {2,D}
2 N u0 p0 c+1 {1,D} {3,D}
@@ -175,13 +228,6 @@ HON
2 N u0 p2 c-1 {1,D}
3 H u0 p0 c0 {1,S}
-HNOH
-multiplicity 2
-1 N u1 p1 c0 {2,S} {3,S}
-2 H u0 p0 c0 {1,S}
-3 O u0 p2 c0 {1,S} {4,S}
-4 H u0 p0 c0 {3,S}
-
HNO2
1 N u0 p0 c+1 {2,S} {3,S} {4,D}
2 H u0 p0 c0 {1,S}
@@ -195,6 +241,13 @@ NH2NO
4 H u0 p0 c0 {1,S}
5 H u0 p0 c0 {1,S}
+HNOO
+multiplicity 3
+1 N u1 p1 c0 {2,S} {4,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 O u1 p2 c0 {2,S}
+4 H u0 p0 c0 {1,S}
+
HNO3
1 N u0 p0 c+1 {2,D} {3,S} {4,S}
2 O u0 p2 c0 {1,D}
@@ -256,13 +309,6 @@ multiplicity 2
3 O u1 p2 c0 {2,S}
4 H u0 p0 c0 {1,S}
-NNOH
-multiplicity 2
-1 N u1 p1 c0 {2,D}
-2 N u0 p1 c0 {1,D} {3,S}
-3 O u0 p2 c0 {2,S} {4,S}
-4 H u0 p0 c0 {3,S}
-
HNNO2
multiplicity 2
1 N u1 p1 c0 {2,S} {3,S}
@@ -347,6 +393,16 @@ NHNHNH
5 N u0 p1 c0 {3,D} {6,S}
6 H u0 p0 c0 {5,S}
+NHNH2NH
+multiplicity 2
+1 N u0 p0 c+1 {2,S} {3,S} {4,S} {5,S}
+2 N u1 p1 c0 {1,S} {6,S}
+3 N u0 p2 c-1 {1,S} {7,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {2,S}
+7 H u0 p0 c0 {3,S}
+
cN3H3
1 N u0 p1 c0 {2,S} {3,S} {4,S}
2 N u0 p1 c0 {1,S} {3,S} {5,S}
@@ -982,3 +1038,20 @@ multiplicity 2
2 N u0 p1 c0 {1,D} {4,S}
3 H u0 p0 c0 {1,S}
4 H u0 p0 c0 {2,S}
+
+NH2OOH
+1 N u0 p1 c0 {2,S} {4,S} {5,S}
+2 O u0 p2 c0 {1,S} {3,S}
+3 O u0 p2 c0 {2,S} {6,S}
+4 H u0 p0 c0 {1,S}
+5 H u0 p0 c0 {1,S}
+6 H u0 p0 c0 {3,S}
+
+HONHOO
+multiplicity 2
+1 O u0 p2 c0 {3,S} {4,S}
+2 O u0 p2 c0 {4,S} {6,S}
+3 O u1 p2 c0 {1,S}
+4 N u0 p1 c0 {1,S} {2,S} {5,S}
+5 H u0 p0 c0 {4,S}
+6 H u0 p0 c0 {2,S}
diff --git a/input/kinetics/libraries/primaryNitrogenLibrary/reactions.py b/input/kinetics/libraries/primaryNitrogenLibrary/reactions.py
index 49f02e9fbe..af407554f6 100644
--- a/input/kinetics/libraries/primaryNitrogenLibrary/reactions.py
+++ b/input/kinetics/libraries/primaryNitrogenLibrary/reactions.py
@@ -22,7 +22,7 @@
Such instances are marked with the comment 'conformer-dup'.
- Some excited species were combined with their ground state in this library (e.g.: NCN, CH2NCN).
-This library consists of the following subsets:
+This library contains the following subsets:
* Thermal NO
* Prompt NO
* N2O Pathway
@@ -40,13 +40,16 @@
[Baulch1992a] D.L. Baulch, C.J. Cobos, R.A. Cox, C. Esser, P. Frank, Th. Just, J.A. Kerr, M.J. Philling, J. Troe, R.W. Walker, J. Warnatz, "Evaluated Kinetic Data for Combustion Modelling", Journal of Physical and Chemical Reference Data, 1992, 21(3), 411, doi: 10.1063/1.555908
[Baulch1992b] R. Atkinson, D.L. Baulch, R.A. Cox, R.F. Hampson, J.A. Kerr, J. Troe, "Evaluated Kinetic and Photochemical Data for Atmospheric Chemistry: Supplement IV", Journal of Physical and Chemical Reference Data, 1992, 21, 1125, doi: 10.1063/1.555918
[Baulch1994] D.L. Baulch et al., Journal of Physical and Chemical Reference Data, 1994, 23, 847, doi: 10.1063/1.555953
+[Baulch2005] D.L. Baulch et al., Journal of Physical and Chemical Reference Data, 2005, 34, 757-1397, doi: 10.1063/1.1748524
[Baulch2009] D.L. Baulch et al., Journal of Physical and Chemical Reference Data, 2009
[Bozzelli1994] J.W. Bozzelli, A.Y. Chang, A.M. Dean, Symp. (Int.) Comb., 1994, 25(1), 965-974, doi: 10.1016/S0082-0784(06)80733-2
[Bozzelli1996] P. Glarborg, D. Kubel, K. Dam-Johansen, H-M. Chiang, J.W. Bozzelli, Int. J. Chem. Kin., 1996, 28(10), 773-790, doi: 10.1002/(SICI)1097-4601(1996)28:10<773::AID-KIN8>3.0.CO;2-K
[Bozzelli2010] R. Asatryan, J.W. Bozzelli, G. da Silva, S. Swinnen, M.T. Nguyen, J. Phys. Chem. A 2010, 114, 6235-6249, doi: 10.1021/jp101640p
[Carl2002] S.A. Carl, Q. Sun, L. Vereecken, J. Peeters, J. Phys. Chem. A 2002, 106(51), 12242-12247, doi: 10.1021/jp014135i
-[Cohen1991] N. Cohen, K. R. Westberg, Journal of Physical and Chemical Reference Data, 1991, 20, 1211,; doi: 10.1063/1.555901
+[Cavallotti2023] A. Stagni, C. Cavallotti, Proc. Comb. Inst. 2023, 39(1), 633-641, doi: 10.1016/j.proci.2022.08.024
+[Cohen1991] N. Cohen, K. R. Westberg, Journal of Physical and Chemical Reference Data, 1991, 20, 1211, doi: 10.1063/1.555901
[Cohen1992] Cohen, N. (1992). Chemical Kinetic Data Sheets for High-Temperature Chemical Reactions, Vol. III., Aerospace Corporation Report ATR-91 (7189)-2.
+[Dagaut1998] P. Dagaut, F. Lecomte, S. Chevailler, M. Cathonnet, Combat. Sci. Tech. 1998, 139, 329-363, doi: 10.1080/00102209808952093
[DeanBozz2000] (RMG's Nitrogen_Dean_and_Bozzelli library) Anthony M. Dean, Joseph W. Bozzelli, Combustion Chemistry of Nitrogen, in: Gas-Phase Combustion Chemistry, Editor: W.C. Gardiner, 2000, 125-341, doi: 10.1007/978-1-4612-1310-9_2
[DeRuyck2001] A.A. Konnov, J. De Ruyck, Comb. Flame, 2001, 125(4), 1258-1264, doi: 10.1016/S0010-2180(01)00250-4
[Dievart2020] P. Dievart, L. Catoire, J. Phys. Chem. A, 2020, 124(30), 6214-6236, doi: 10.1021/acs.jpca.0c03144
@@ -56,10 +59,14 @@
[Friedrichs2015] N. Faßheber, N. Lamoureux, G. Friedrichs, Phys. Chem. Chem. Phys., 2015, 17, 15876-15886, doi: 10.1039/C5CP01414J
[Glarborg2018] P. Glarborg, J.A. Miller, B. Ruscic, S.J. Klippenstein, Progress in Energy and Combustion Science, 2018, 67, 31-68, doi: 10.1016/j.pecs.2018.01.002
[Glarborg2021] P. Glarborg, Ahren W. Jasper, J. Phys. Chem. A, 2021, 125, 7, 2021, 1505-1516, doi: 10.1021/acs.jpca.0c11011
+[Glarborg2022] P. Glarborg, Combustion and Flame, 2022, 112311, doi: 10.1016/j.combustflame.2022.112311
+[Glarborg2023] Y. Gao, I.M. Alecu, H. Hashemi, P. Glarborg, P. Marshall, Proc. Comb. Inst. 2023, 39, 571-579, doi: 10.1016/j.proci.2022.07.045
[GlarGim] (RMG's Nitrogen_Glarborg_Gimenez_et_al library) Gimenez Lopeza et al., Proceedings of the Combustion Institute, 2009, 32(1), 367-375, doi: 10.1016/j.proci.2008.06.188
[GlarZha] (RMG's Nitrogen_Glarborg_Zhang_et_al library) Kuiwen Zhang et al. Proceedings of the Combustion Institute, 2013, 34, 617-624, doi: 10.1016/j.proci.2012.06.010
-[Goldsmith2019] X. Chen, M.E. Fuller, C.F. Goldsmith, Reaction CHemistry and Engineering, 2019, 4, 323-333, doi: 10.1039/C8RE00201K
+[Goldsmith2019] X. Chen, M.E. Fuller, C.F. Goldsmith, Reaction Chemistry and Engineering, 2019, 4, 323-333, doi: 10.1039/C8RE00201K
[Green2014] K. Prozument, Y.V. Suleimanov, B. Buesser, J.M. Oldham, W.H. Green, A.G. Suits, R.W. Field, J. Phys. Chem. Lett. 2014, 5(21), 3641-3648, doi: 10.1021/jz501758p
+[GrinbergDana2019] A. Grinberg Dana, K.B. Moore, A.W. Jasper, W.H. Green, J. Phys. Chem. A, 2019, 123(22), 4679-4692, doi: 10.1021/acs.jpca.9b02217
+[GrinbergDana2024] A. Grinberg Dana, K. Kaplan, M. Keslin, C. Cao, W.H. Green, "NH3-1", submitted
[GRI] (RMG's GRI-Mech3.0-N library) GRI-Mech 3.0, http://www.me.berkeley.edu/gri_mech/
[Hanson1981] T.R. Roose, R.K. Hanson, C.H. Kruger, Symposium (International) on Combustion, 1981, 18(1), 853-862, doi: 10.1016/S0082-0784(81)80089-6
[Hanson1984a] M.Y. Louge, R.K. Hanson, Int. J. Chem. Kin., 1984, 16(3), 231-250, doi: 10.1002/kin.550160306
@@ -76,17 +83,24 @@
[Herron1991] W. Tsang, J.T. Herron, Journal of Physical and Chemical Reference Data, 1991, 20, 609, doi: 10.1063/1.555890
[Hindelang1993] M.L. Thoma, F.J. Hindelang in: R. Burn, L.Z. Dumitrescu (Ed.) Shock Waves @ Marseille II (Proceedings Marseille France), 1993, 59-64, doi: 10.1007/978-3-642-78832-1
[Howard1988] J.F. Gleason, C.J. Howard, J. Phys. Chem., 1988, 92(12), 3414-3417, doi: 10.1021/j100323a021
+[Huynh2019] T.V.-T Mai, H.T. Nguyen, L.K. Huynh, Phys. Chem. Chem. Phys., 2019, 21, 23733, doi: 10.1039/c9cp04585f
[Hwang2003] D. Hwang, A. M. Mebel, J. Phys. Chem. A, 2003, 107, 2865-2875, doi: 10.1021/jp0270349
+[Kanno2020] N. Kanno, T. Kito, Int. K. Chem. Kin., 2020, 52(8), 548-555, doi: 10.1002/kin.21370
+[Keslin2024] M. Keslin, K. Kaplan, A. Grinberg Dana, "Pressure-Dependent Kinetic Analysis of the N2H3 Potential Energy Surface", submitted
[Klemm1985] J.V. Michael, J.W. Sutherland, R.B. Klemm, Int. J. Chem. Kin., 1985, 17(3), 315-326, doi: 10.1002/kin.550170308
[Klemm1990] J.W. Sutherland, P.M. Patterson, R.B. Klemm, J. Phys. Chem., 1990, 94(6), 2471-2475, doi: 10.1021/j100369a049
+[Klippenstein2000] J.A. Miller, S.J. Klippenstein, J. Phys. Chem. A, 2020, 104, 2061-2069, doi: 10.1021/jp992836y
[Klippenstein2009a] S.J. Klippenstein, L.B. Harding, B. Ruscic, R. Sivaramakrishnan, N.K. Srinivasan, M.-C. Su, J.V. Michael, J. Phys. Chem. A, 2009, 113(38), 10241-10259, doi: 10.1021/jp905454k
[Klippenstein2009b] S.J. Klippenstein, L.B. Harding, Proc. Comb. Inst., 2009, 32, 149-155, doi: 10.1016/j.proci.2008.06.135
+[Klippenstein2022] S.J. Klippenstein, P. Glarborg, Combustion and Flame, 2022, 236, 111787, doi: 10.1016/j.combustflame.2021.111787
+[Klippenstein2023] S.J. Klippenstein, C.R. Mulvihill, P. Glarborg, J. Phys. Chem. A, 2023, doi: 10.1021/acs.jpca.3c05181
[Lin1990] C-Y. Lin, H-T. Wang, M.C. Lin, C.F. Melius, Int. J. Chem. Kin., 1990, 22(5), 455-482, doi: 10.1002/kin.550220504
[Lin1993] Y. He, C.H. Wu, M.C. Lin, C.F. Melius, in: R. Burn, L.Z. Dumitrescu (Ed.) Shock Waves @ Marseille II (Proceedings Marseille France), 1993, 89-94, doi: 10.1007/978-3-642-78832-1
[Lin1996a] A.M. Mebel, E.W.G. Diau, M.C. Lin, K.Morokuma, J. Phys. Chem., 1996, 100, 7517-7525, doi: 10.1021/jp953644f
[Lin1996b] A.M. Mebel, M.C. Lin, K. Morokuma, C.F. Melius, Int. J. Chem. Kin., 1996, 28(9), 693-703, doi: 10.1002/(SICI)1097-4601(1996)28:9<693::AID-KIN8>3.0.CO;2-Q
[Lin1997a] C.C. Hsu, M.C. Lin, A.M. Mebel, C.F. Melius, J. Phys. Chem. A, 1997, 101(1), 60-66, doi: 10.1021/jp962286t
[Lin1997b] J.W. Boughton, S. Kristyan, M.C. Lin, Chemical Physics, 1997, 214(2-3), 219-227, doi: 10.1016/S0301-0104(96)00313-8
+[Lin1997c] A.G. Thaxton, C.-C. Hsu, M.C. Lin, Int. J. Chem. Kin., 1997, 29(4), 245-251, doi: 10.1002/(SICI)1097-4601(1997)29:4<245::AID-KIN2>3.0.CO;2-U
[Lin1998a] D. Chakraborty, J. Park, M.C. Lin, Chemical Phisics, 1998, 231(1), 39-49, doi: 10.1016/S0301-0104(98)00033-0
[Lin1998b] J. Park, N.D. Giles, J. Moore, M.C. Lin, J. Phys. Chem. A, 1998, 102(49), 10099-10105, doi: 10.1021/jp983139t
[Lin1998c] A.M. Mebel, M.C. Lin, C.F. Melius, J. Phys. Chem. A, 1998, 102(10), 1803-1807, doi: 10.1021/jp973449w
@@ -111,6 +125,7 @@
[Lin2007b] S. Xu, M.C. Lin, J. Phys. Chem. A, 2007, 111, 6730-6740, doi: 10.1021/jp069038+
[Lin2009a] S. Xu, M.C. Lin, Proceedings of the Combustion Institute, 2009, 32, 99-106, doi: 10.1016/j.proci.2008.07.011
[Lin2009b] S-Y. Tzeng, P-H. Chen, N.S. Wang, L.C. Lee, Z.F. Xu, M.C. Lin, J. Phys. Chem. A, 2009, 113, 6314-6325, doi: 10.1021/jp901903n
+[Lin2009c] S. Xu, M.C. Lin, Int. J. Chem. Kin., 2009, 41(11), 667-677, doi: 10.1002/kin.20453
[Lin2010a] S. Xu, M.C. Lin, J. Phys. Chem. A, 2010, 114, 5195-5204, doi: 10.1021/jp911048p
[Lin2010b] R.S. Zhu, S.C. Xu, M.C. Lin, Chem. Phys. Letters, 2010, 488(4-6), 121-125, doi: 10.1016/j.cplett.2010.02.003
[Lin2010c] S. Xu, M.C. Lin, Int. J. Chem. Kin., 2010, 42(2), 69-78, doi: 10.1002/kin.20463
@@ -119,13 +134,18 @@
[Lin2013b] W.-S. Teng, L.V. Moskaleva, H.-L. Chen, M.C. Lin, J. Phys. Chem. A, 2013, 117(28), 5775-5784, doi: 10.1021/jp402903t
[Lin2014a] P. Raghunath, Y.H. Lin, M.C. Lin, Computational and Theoretical Chemistry, 2014, 1046, 73-80, doi: 10.1016/j.comptc.2014.07.011
[Lin2014b] P. Raghunath, N.T. Nghia, M.C. Lin, Advances in Quantum Chemistry, 2014, 69, 253-301, doi: 10.1016/B978-0-12-800345-9.00007-6
+[Lin2020] T.V. Pham, T.J. Tsay, M.C. Lin, Int. J. Chem. Kin., 2020, 52(10), 632-644, doi: 10.1002/kin.21388
+[Luo2019] Y. Shang, J. Shi, H. Ning, R. Zhang, H. Wang, S. Luo, Fuel, 2019, 243, 288-297, doi: 10.1016/j.fuel.2019.01.112
[Marshall2013] S.J. Klippenstein, L.B. Harding, P. Glarborg, Y. Gao, H. Hu, P. Marshall, J. Phys. Chem. A, 2013, 117, 9011-9022, doi: 10.1021/jp4068069
[Marshall2014] I.M. Alecu, P. Marshall, J. Phys. Chem. A, 2014, 118(48), 11405-11416, doi: 10.1021/jp509301t
+[Marshall2023] P. Marshal, P. Glarborg, The Journal of Physical Chemistry A, 2023, 127(11), 2601-2607, doi: 10.1021/acs.jpca.2c08921
+[Mei2019] B. Mei, X. Zhang, S. Ma, M. Cui H. Guo, Z. Cao, Y. Li, Combustion and Flame, 2019, 210, 236-246, doi: 10.1016/j.combustflame.2019.08.033
[Miller1992] J.A. Miller, C.F. Melius, Simp. (Int.) Comb., 1992, 24(1), 719-726, doi: 10.1016/S0082-0784(06)80088-3
[Miller1999] P. Glarborg, A.B. Bendtsen, J.A. Miller, Int. J. Chem. Kin., 1999, 31(9), 591-602, doi: 10.1002/(SICI)1097-4601(1999)31:9<591::AID-KIN1>3.0.CO;2-E
[Miller2008] L.B. Harding, S.J. Klippenstein, J.A. Miller, J. Phys. Chem. A, 2008, 112 (3), pp 522-532, doi: 10.1021/jp077526r
[Miller2011] S.J. Klippenstein, L.B. Harding, P. Glarborg, J.A. Miller, Comb. Flame, 2011, 158(4), 774-789, doi: 10.1016/j.combustflame.2010.12.013
[Morley1976] C. Morley, Combustion and Flame, 1976, 27, 189-204, doi: 10.1016/0010-2180(76)90022-5
+[Mousavipour2009] S. Hosein Mousavipour, F. Pirhadi, A. HabibAgahi, J. Phys. Chem. A, 2009, 113(46), 12961-12971, doi: 10.1021/jp905197h
[Page1992] M.R. Soto, M. Page, J. Chem. Phys., 1992, 97, 7287, doi: 10.1063/1.463501
[Palmer1977] H. Freund, H.B. Palmer, Int. J. Chem. Kin., 1977, 9(6), 887-905, doi: 10.1002/kin.550090605
[Perry1984] R.A. Perry, Chem. Phys. Lett., 1984, 106(3), 223-228, doi: 10.1016/0009-2614(84)80230-4
@@ -133,12 +153,17 @@
[Pritchard2001] W-T. Chan, S.M. Heck, H.O. Pritchard, Phys. Chem. Chem. Phys., 2001, 3, 56-62, doi: 10.1039/b006088g
[Rabinowitz2010] S.M. Hwang, J.A. Cooke, K.J. De Witt, M.J. Rabinowitz, Int. J. Chem. Kin., 2010, 42(3), 168-180, doi: 10.1002/kin.20472
[Salimian1984] S. Salimian, R.K. Hanson, C.H. Kruger, Int. J. CHem. Kin., 1984, 16(6), 725-739, doi: 10.1002/kin.550160609
+[Sarathy2020] Y. Li, S. Mani Sarathy, Int. J. Hydrogen Energy, 2020, 45, 23624-23637, doi: 10.1016/j.ijhydene.2020.06.083
[Sarathy2022] J.E. Chavarrio Cans, M. Monge-Palacios, X. Zhang, S. Mani Sarathy, Combustion and Flame, 2022, 235, 111708, doi: 10.1016/j.combustflame.2021.111708
[Stagni2020] A. Stagni, C. Cavallotti, O. Herbinet, T. Faravelli, Reaction Chemistry & Engineering, 2020, 5, 696-711, doi: 10.1039/c9re00429g
[Staton2019] T.L. Nguyen, J.F. Staton, IJCK 2019, doi: 10.1002/kin.21255
[Troe1975] K. Glanzer, J. Troe, Berichte der Bunsengesellschaft fur physikalische Chemie, 1975, 79(5), 465-469, doi: 10.1002/bbpc.19750790514
+[Troe1998] D. Fulle, H.F. Hamann, H. Hippler, J. Troe, J. Chem. Phys. 1998, 108, 5391-5397, doi: 10.1063/1.475971
+[Troe2023] C.J. Cobos, P. Glarborg, P. Marshall, J. Troe, Comb. Flame 2023, 257, 112374, doi: 10.1016/j.combustflame.2022.112374
[Varandas2005] P.J.S.B. Caridade, S.P.J. Rodrigues, F. Sousa, A.J.C. Varandas, J. Phys. Chem. A ,2005, 109, 2356-2363, doi: 10.1021/jp045102g
+[Wagner1998] J. Deppe, G. Friedrichs, A. Ibrahim, H.-J. Romming, H.Gg. Wagner, Berichte der Bunsengesellschaft für physikalische Chemie, 1998, 1474-1485, doi: 10.1002/bbpc.199800016
[Wang1982] O.I. Smith, S. Tseregounis, S-N. Wang, Int. J. Chem. Kin., 1982, 14(6), 679-697, doi: 10.1002/kin.550140610
+[Xu2021] Y. Li, S. Javoy, R. Mevel, X. Xu, Phys. Chem. Chem. Phys., 2021, 23, 585, doi: 10.1039/d0cp05131d
[Yamaguchi1999] Y. Yamaguchi, Y. Teng, S. Shimomura, K. Tabata, E. Suzuki, J. Phys. Chem. A, 1999, 103(41), 8272-8278, doi: 10.1021/jp990985a
[Yang2012] Y. Guan, B. Yang, J. Comp. Chem., 2012, 33(23), 1870-1879, doi: 10.1002/jcc.23020
"""
@@ -195,6 +220,7 @@
Part of the "Thermal (Zeldovich) NO" mechanism
5.4 on p. 398
T range: 1750-4200 K
+Also available from Han 2008 (https://doi.org/10.1142/S021963360800399X)
[DeanBozz2000] (p. 231) give A = 6.4e+12 cm^3/(mol*s); n = 0.1; Ea = 21300 cal/mol, citing [Cohen1991]
But [Cohen1991] says that this rate "cannot be fixed more precisely" than an upper boundary of 4.1e+10 (p. 95, k2a)
[GRI] used a fit to low and high T expressions from Atkinson et al., (1989) J. Phys. Chem. Ref. Data 18 88 and Hanson et al., Combustion Chemistry , Springer-Verlag, N.Y., p. 361
@@ -1135,7 +1161,7 @@
entry(
index = 53,
- label = "O + HNCN <=> NO + HNC",
+ label = "HNCN + O <=> NO + HNC",
degeneracy = 1,
kinetics = Arrhenius(A=(1.48e+14, 'cm^3/(mol*s)'), n=-0.08, Ea=(22, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2009a]""",
@@ -1150,7 +1176,7 @@
entry(
index = 54,
- label = "O + HNCN <=> NH + NCO",
+ label = "HNCN + O <=> NH + NCO",
degeneracy = 1,
duplicate = True,
kinetics = MultiArrhenius(
@@ -1171,7 +1197,7 @@
entry(
index = 55,
- label = "O + HNCN <=> OH + NCN",
+ label = "HNCN + O <=> OH + NCN",
degeneracy = 4,
duplicate = True,
kinetics = MultiArrhenius(
@@ -1195,7 +1221,7 @@
entry(
index = 56,
- label = "O + HNCN <=> HN(O)CN",
+ label = "HNCN + O <=> HN(O)CN",
degeneracy = 1,
kinetics = Arrhenius(A=(9.45e+39, 'cm^3/(mol*s)'), n=-10.47, Ea=(5316, 'cal/mol'), T0=(1, 'K'),
Tmin=(300, 'K'), Tmax=(3000, 'K')),
@@ -1212,7 +1238,7 @@
entry(
index = 57,
- label = "O + HNCN <=> CN + HNO",
+ label = "HNCN + O <=> CN + HNO",
degeneracy = 1,
kinetics = Arrhenius(A=(6.32e+10, 'cm^3/(mol*s)'), n=0.62, Ea=(189, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2009a]""",
@@ -1227,7 +1253,7 @@
entry(
index = 58,
- label = "O2 + HNCN <=> OH + NCNO",
+ label = "HNCN + O2 <=> OH + NCNO",
degeneracy = 1,
kinetics = Arrhenius(A=(8.31e-22, 'cm^3/(mol*s)'), n=8.55, Ea=(12102, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2009a]""",
@@ -1242,7 +1268,7 @@
entry(
index = 59,
- label = "O2 + HNCN <=> HO2 + NCN",
+ label = "HNCN + O2 <=> HO2 + NCN",
degeneracy = 1,
duplicate = True,
kinetics = MultiArrhenius(
@@ -1264,7 +1290,7 @@
entry(
index = 60,
- label = "O2 + HNCN <=> O + HNC(O)N",
+ label = "HNCN + O2 <=> HNC(O)N + O",
degeneracy = 1,
kinetics = Arrhenius(A=(1.98e+09, 'cm^3/(mol*s)'), n=0.64, Ea=(38154, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2009a]""",
@@ -1361,48 +1387,56 @@
entry(
index = 66,
- label = "NCO + H2 <=> HNCO + H",
+ label = "HNCO + H <=> NCO + H2",
degeneracy = 1,
- kinetics = Arrhenius(A=(8.61e+12, 'cm^3/(mol*s)','+|-',1.46e+12), n=0, Ea=(9000, 'cal/mol'), T0=(1, 'K'), Tmin=(592, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Perry1985]""",
+ kinetics = Arrhenius(A=(1.46e+05, 'cm^3/(mol*s)'), n=2.53, Ea=(12941, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
longDesc =
u"""
Part of the "Prompt NO, NCN subset" mechanism
-k6
-T range: 592-913(-2000) K
-Ea uncertainty: 17%
-Shock Tube
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+
+Also available in reverse from [Perry1985], k6, Ea uncertainty: 17%, Shock Tube:
+ kinetics = Arrhenius(A=(8.61e+12, 'cm^3/(mol*s)','+|-',1.46e+12), n=0, Ea=(9000, 'cal/mol'), T0=(1, 'K'), Tmin=(592, 'K'), Tmax=(2000, 'K')),
""",
)
entry(
- index = 67,
- label = "N2O <=> N2 + O",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(4.0e+14, 'cm^3/(mol*s)'), n=0, Ea=(56099, 'cal/mol'), T0 = (1, 'K'), Tmin=(1000, 'K'), Tmax=(3000, 'K'))),
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
+ index=67,
+ label="N2O <=> N2 + O",
+ kinetics=Lindemann(
+ arrheniusHigh=Arrhenius(A=(7.9e+11, 's^-1'), n=0, Ea=(61540, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(925, 'K'), Tmax=(2500, 'K')),
+ arrheniusLow=Arrhenius(A=(9.3e+14, 'cm^3/(mol*s)'), n=0, Ea=(60050, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(925, 'K'), Tmax=(2500, 'K'))),
+ shortDesc=u"""[Lin2020]""",
+ longDesc=
u"""
Part of the "N2O Pathway"
-Rate taken from:
+CCSD(T)/CBS(TQ5)//CCSD(T)/aug-cc-pVTZ+d
+
+Also available from D&B
+Originally took the rate from:
Johnsson, J.E., Glarborg, P., & Dam-Johansen, K. (1992). 24th Symposium (International) on Combustion, p. 917
-As reported by Dean & Bozzelli, see 2.5.3 on p. 143
+see 2.5.3 on p. 143
Measured in a flow reactor with Ar as bath gas.
T range: 1000-3000 K
""",
)
entry(
- index = 68,
- label = "O + N2O <=> N2 + O2",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.4e+12, 'cm^3/(mol*s)'), n=0, Ea=(10810, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
+ index=68,
+ label="N2O + O <=> N2 + O2",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(1.66e+12, 'cm^3/(mol*s)'), n=0, Ea=(11650, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(988, 'K'), Tmax=(3340, 'K')),
+ shortDesc=u"""[Lin2020]""",
+ longDesc=
u"""
Part of the "N2O Pathway"
-Rate taken from:
+k3
+
+Also available from D&B, originally taken from:
Davidson, D.E, DiRosa, M.D., Chang, A.Y., & Hanson, R.K. (1991). 18th International Symposium on Shock Waves, Sendai, p. 813
As reported by Dean & Bozzelli, see 2.5.4 on p. 145
""",
@@ -1410,7 +1444,7 @@
entry(
index = 69,
- label = "O + N2O <=> NO + NO",
+ label = "N2O + O <=> NO + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.9e+13, 'cm^3/(mol*s)'), n=0, Ea=(23151, 'cal/mol'), T0=(1, 'K')),
shortDesc = u"""[DeanBozz2000]""",
@@ -1423,38 +1457,36 @@
""",
)
-entry(
- index = 70,
- label = "H + N2O <=> HNNO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(8.5e+13, 'cm^3/(mol*s)'), n=0, Ea=(9082, 'cal/mol'), T0=(1, 'K')),
- elementary_high_p = True,
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
-u"""
-Part of the "N2O Pathway"
-See [DeanBozz2000] 2.6.3, p. 158, and Table 2.6 on p. 163
-""",
-)
+# entry(
+# index = 70,
+# label = "N2O + H <=> NNOH",
+# degeneracy = 1,
+# kinetics = Arrhenius(A=(1.0e+0, 'cm^3/(mol*s)'), n=0, Ea=(1000, 'kcal/mol'), T0=(1, 'K')),
+# elementary_high_p = True,
+# shortDesc = u"""NPS""",
+# longDesc =
+# u"""
+# The NNOH species does not exist
+# see A.M. Mebel, C.C. Hsu, M.C. Lin, K. Morokuma, J. Chem. Phys. 103, 5640-5649, 1995, DOI: 10.1063/1.470546
+#
+# However, a rate was given later by D&B:
+# See [DeanBozz2000] 2.6.3, p. 158, and Table 2.6 on p. 163:
+# Arrhenius(A=(1.3e+14, 'cm^3/(mol*s)'), n=0, Ea=(18403, 'cal/mol'), T0=(1, 'K')
+#
+# We could not optimize NNOH at neither of wb97xd/Def2TZVP, CBS-QB3, M062X/Def2TZVP.
+#
+# NNOH
+# multiplicity 2
+# 1 N u1 p1 c0 {2,D}
+# 2 N u0 p1 c0 {1,D} {3,S}
+# 3 O u0 p2 c0 {2,S} {4,S}
+# 4 H u0 p0 c0 {3,S}
+# """,
+# )
entry(
index = 71,
- label = "H + N2O <=> NNOH",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.3e+14, 'cm^3/(mol*s)'), n=0, Ea=(18403, 'cal/mol'), T0=(1, 'K')),
- elementary_high_p = True,
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
-u"""
-Part of the "N2O Pathway"
-See [DeanBozz2000] 2.6.3, p. 158, and Table 2.6 on p. 163
-""",
-)
-
-entry(
- index = 72,
label = "HNNO <=> NH + NO",
- degeneracy = 1,
kinetics = ThirdBody(
arrheniusLow = Arrhenius(A=(4.0e+15, 'cm^3/(mol*s)'), n=0, Ea=(49952, 'cal/mol'), T0 = (1, 'K'))),
shortDesc = u"""[DeanBozz2000]""",
@@ -1466,7 +1498,7 @@
)
entry(
- index = 73,
+ index = 72,
label = "HNNO <=> N2 + OH",
degeneracy = 1,
kinetics = ThirdBody(
@@ -1480,7 +1512,7 @@
)
entry(
- index = 74,
+ index = 73,
label = "N2O + NO <=> N2 + NO2",
degeneracy = 1,
kinetics = Arrhenius(A=(5.26e+05, 'cm^3/(mol*s)'), n=2.23, Ea=(46286, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
@@ -1495,7 +1527,7 @@
)
entry(
- index = 75,
+ index = 74,
label = "N2O + OH <=> N2 + HO2",
degeneracy = 1,
kinetics = Arrhenius(A=(1.29e-02, 'cm^3/(mol*s)'), n=4.72, Ea=(36565, 'cal/mol'), T0=(1, 'K'), Tmin=(1000, 'K'), Tmax=(5000, 'K')),
@@ -1512,7 +1544,7 @@
)
entry(
- index = 76,
+ index = 75,
label = "N2O + OH <=> HNO + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(1.18e-04, 'cm^3/(mol*s)'), n=4.33, Ea=(25039, 'cal/mol'), T0=(1, 'K'), Tmin=(1000, 'K'), Tmax=(5000, 'K')),
@@ -1527,8 +1559,8 @@
)
entry(
- index = 77,
- label = "HNNO <=> O + NNH",
+ index = 76,
+ label = "HNNO <=> NNH + O",
degeneracy = 1,
kinetics = ThirdBody(
arrheniusLow = Arrhenius(A=(4.9e+15, 'cm^3/(mol*s)'), n=0, Ea=(61663, 'cal/mol'), T0 = (1, 'K'))),
@@ -1541,7 +1573,7 @@
)
entry(
- index = 78,
+ index = 77,
label = "NNH + O <=> N2O + H",
degeneracy = 1,
kinetics = Arrhenius(A=(1.9e+14, 'cm^3/(mol*s)'), n=-0.274, Ea=(-22, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
@@ -1557,7 +1589,7 @@
)
entry(
- index = 79,
+ index = 78,
label = "NNH + O <=> N2 + OH",
degeneracy = 1,
kinetics = Arrhenius(A=(1.2e+13, 'cm^3/(mol*s)'), n=0.145, Ea=(-217, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
@@ -1570,7 +1602,7 @@
)
entry(
- index = 80,
+ index = 79,
label = "NNH + O <=> NH + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(5.2e+11, 'cm^3/(mol*s)','+|-',2.6e+11), n=0.388, Ea=(-409, 'cal/mol','+|-',102), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
@@ -1586,28 +1618,25 @@
)
entry(
- index = 81,
- label = "N2 + H <=> NNH",
+ index = 80,
+ label = "NNH <=> N2 + H",
degeneracy = 1,
- kinetics = Arrhenius(A=(7.6e+15, 'cm^3/(mol*s)'), n=-0.64, Ea=(15333, 'cal/mol'), T0=(1, 'K'),
+ kinetics = Arrhenius(A=(7.68e+07, 's^-1'), n=1.73, Ea=(4282, 'cal/mol'), T0=(1, 'K'),
Tmin=(300, 'K'), Tmax=(25000, 'K')),
elementary_high_p = True,
- shortDesc = u"""[Varandas2005]""",
+ shortDesc = u"""[Sarathy2020]""",
longDesc =
u"""
Part of the "NNH Pathway"
-T range: 300-25000 K
-reaction -3 in [Varandas2005]
-Fits to a total of 972 MRCI energies (based on the aug-cc-pVQZ basis set of Dunning27), scaled by the DMBE-SEC
-method to account for excitations higher than singles and doubles and the incompleteness of the one-electron basis set.
-The paper reports a HO-RR rate, and a sum-over-states rate (where vib-rot aren't assumed to be independent).
-The sum-over-states rate was taken here.
-Added as a training reaction to R_Addition_MultipleBond
+
+Also available in reverse from [Varandas2005], reaction -3:
+ kinetics = Arrhenius(A=(7.6e+15, 'cm^3/(mol*s)'), n=-0.64, Ea=(15333, 'cal/mol'), T0=(1, 'K'),
+ Tmin=(300, 'K'), Tmax=(25000, 'K')),
""",
)
entry(
- index = 82,
+ index = 81,
label = "N + NH <=> N2 + H",
degeneracy = 1,
kinetics = Arrhenius(A=(6.41e+11, 'cm^3/(mol*s)'), n=0.51, Ea=(18, 'cal/mol'), T0=(1, 'K')),
@@ -1622,39 +1651,7 @@
)
entry(
- index = 83,
- label = "N + NH <=> N + N + H",
- degeneracy = 1,
- kinetics = Arrhenius(A=(7.75e+14, 'cm^3/(mol*s)'), n=-0.20, Ea=(54159, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Varandas2005]""",
- longDesc =
-u"""
-Part of the "NNH Pathway"
-reaction 1 in [Varandas2005]
-Fits to a total of 972 MRCI energies (based on the aug-cc-pVQZ basis set of Dunning27), scaled by the DMBE-SEC
-method to account for excitations higher than singles and doubles and the incompleteness of the one-electron basis set.
-The fragmentation channel (N + NH <=> N + N + H) opens up at ~3000 K, and even at very high T (25000 K) its rate is
-an order of magnitude lower than N + NH <=> N2 + H. Although probably insignificant, it is brought here for completeness.
-""",
-)
-
-entry(
- index = 84,
- label = "N + H2 <=> NH + H",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.60e+14, 'cm^3/(mol*s)'), n=0, Ea=(25138, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""[Hanson1990b]""",
- longDesc =
-u"""
-Part of the "NNH Pathway"
-See [Hanson1990b] R2; p. 860
-Shock Tube
-Added as a training reaction to H_Abstraction
-""",
-)
-
-entry(
- index = 85,
+ index = 82,
label = "NNH + O2 <=> N2 + HO2",
degeneracy = 1,
kinetics = Arrhenius(A=(5.6e+14, 'cm^3/(mol*s)'), n=-0.385, Ea=(-13, 'cal/mol'),
@@ -1671,7 +1668,7 @@
)
entry(
- index = 86,
+ index = 83,
label = "NNH + H <=> H2 + N2",
degeneracy = 1,
kinetics = Arrhenius(A=(2.4e+08, 'cm^3/(mol*s)'), n=1.5, Ea=(-894, 'cal/mol'), T0=(1, 'K')),
@@ -1685,8 +1682,8 @@
)
entry(
- index = 87,
- label = "NNH + OH <=> H2O + N2",
+ index = 84,
+ label = "NNH + OH <=> N2 + H2O",
degeneracy = 1,
kinetics = MultiArrhenius(
arrhenius = [
@@ -1704,7 +1701,7 @@
)
entry(
- index = 88,
+ index = 85,
label='NH2 + H <=> NH3',
kinetics=Troe(
arrheniusHigh=Arrhenius(A=(1.6e+14, 'cm^3/(mol*s)'), n=0.0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
@@ -1730,29 +1727,31 @@
)
entry(
- index = 89,
- label = "NH2 + H <=> NH + H2",
- degeneracy = 1,
- kinetics = Arrhenius(A=(4.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(3650, 'cal/mol'), T0=(1, 'K'), Tmin=(2200, 'K'), Tmax=(2800, 'K')),
- shortDesc = u"""[Hanson1990a]""",
- longDesc =
+ index=86,
+ label="NH2 + H <=> NH + H2",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(1.09e+05, 'cm^3/(mol*s)'), n=2.59, Ea=(1812, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Sarathy2020]""",
+ longDesc=
u"""
Part of the "NHx" subset
-R9 in Table 1, p. 521
-T range: 2200-2800 K
-Shock Tube
-Train!
+Table 6 (given in s^-1 units, probably an error?)
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+
+Also available from [Hanson1990a], R9 in Table 1, p. 521:
+ kinetics = Arrhenius(A=(4.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(3650, 'cal/mol'), T0=(1, 'K'), Tmin=(2200, 'K'), Tmax=(2800, 'K')),
""",
)
entry(
- index = 90,
- label = "HNCO <=> NH + CO",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(3.26e+35, 'cm^3/(mol*s)'), n=-5.11, Ea=(110000, 'cal/mol'), T0 = (1, 'K'), Tmin=(1830, 'K'), Tmax=(3340, 'K'))),
- shortDesc = u"""[Hanson1989]""",
- longDesc =
+ index=87,
+ label="HNCO <=> NH + CO",
+ degeneracy=1,
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(3.26e+35, 'cm^3/(mol*s)'), n=-5.11, Ea=(110000, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(1830, 'K'), Tmax=(3340, 'K'))),
+ shortDesc=u"""[Hanson1989]""",
+ longDesc=
u"""
Part of the "NHx" subset
T range: 1830-3340 K
@@ -1763,14 +1762,14 @@
)
entry(
- index = 91,
- label = "H + NCO <=> HNCO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(2.80e+12, 'cm^3/(mol*s)'), n=0.493, Ea=(-294, 'cal/mol'), T0=(1, 'K'),
- Tmin=(200, 'K'), Tmax=(2500, 'K')),
- elementary_high_p = True,
- shortDesc = u"""[Klippenstein2009b]""",
- longDesc =
+ index=88,
+ label="NCO + H <=> HNCO",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(2.80e+12, 'cm^3/(mol*s)'), n=0.493, Ea=(-294, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
+ elementary_high_p=True,
+ shortDesc=u"""[Klippenstein2009b]""",
+ longDesc=
u"""
Part of the "NHx" subset
T range: 200-2500 K
@@ -1785,8 +1784,8 @@
)
entry(
- index = 92,
- label = "H + NCO <=> NCOH",
+ index = 89,
+ label = "NCO + H <=> NCOH",
degeneracy = 1,
kinetics = Arrhenius(A=(7.00e+11, 'cm^3/(mol*s)'), n=0.493, Ea=(-294, 'cal/mol'), T0=(1, 'K'),
Tmin=(200, 'K'), Tmax=(2500, 'K')),
@@ -1807,13 +1806,15 @@
)
entry(
- index = 93,
- label = "NH <=> N + H",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(2.65e+14, 'cm^3/(mol*s)'), n=0, Ea=(75500, 'cal/mol'), T0 = (1, 'K'), Tmin=(3140, 'K'), Tmax=(3320, 'K'))),
- shortDesc = u"""[Hanson1989]""",
- longDesc =
+ index=90,
+ label="NH <=> N + H",
+ degeneracy=1,
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(2.65e+14, 'cm^3/(mol*s)'), n=0, Ea=(75500, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(3140, 'K'), Tmax=(3320, 'K')),
+ efficiencies={'[N]': 0}),
+ shortDesc=u"""[Hanson1989]""",
+ longDesc=
u"""
Part of the "NHx" subset
T range: 3140-3320 K
@@ -1824,7 +1825,24 @@
)
entry(
- index = 94,
+ index=91,
+ label="NH + N <=> N + N + H",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(7.75e+14, 'cm^3/(mol*s)'), n=-0.20, Ea=(54159, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Varandas2005]""",
+ longDesc=
+u"""
+Part of the "NNH Pathway"
+reaction 1 in [Varandas2005]
+Fits to a total of 972 MRCI energies (based on the aug-cc-pVQZ basis set of Dunning27), scaled by the DMBE-SEC
+method to account for excitations higher than singles and doubles and the incompleteness of the one-electron basis set.
+The fragmentation channel (N + NH <=> N + N + H) opens up at ~3000 K, and even at very high T (25000 K) its rate is
+an order of magnitude lower than N + NH <=> N2 + H. Although probably insignificant, it is brought here for completeness.
+""",
+)
+
+entry(
+ index = 92,
label = "N2H4 + NO <=> N2H3 + HNO",
degeneracy = 1,
kinetics = Arrhenius(A=(6.44e+01, 'cm^3/(mol*s)'), n=3.16, Ea=(30488, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -1841,7 +1859,7 @@
)
entry(
- index = 95,
+ index = 93,
label = "N2H4 + NO <=> NH2 + NH2NO",
degeneracy = 1,
kinetics = Arrhenius(A=(5.03e+01, 'cm^3/(mol*s)'), n=2.98, Ea=(35609, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -1857,9 +1875,8 @@
)
entry(
- index = 96,
+ index = 94,
label = "N2H4 + NO2 <=> N2H3 + HNO2",
- degeneracy = 1,
kinetics = Arrhenius(A=(2.41e-02, 'cm^3/(mol*s)'), n=4.14, Ea=(7947, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
shortDesc = u"""[Lin2014a]""",
longDesc =
@@ -1874,7 +1891,7 @@
)
entry(
- index = 97,
+ index = 95,
label = "N2H3 + HNO <=> NH2NHNO + H",
degeneracy = 1,
kinetics = Arrhenius(A=(1.65e-02, 'cm^3/(mol*s)'), n=3.82, Ea=(17780, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -1890,8 +1907,8 @@
)
entry(
- index = 98,
- label = "N2H3 + HNO <=> N2H2 + HNOH",
+ index = 96,
+ label = "N2H3 + HNO <=> N2H2 + NHOH",
degeneracy = 1,
kinetics = Arrhenius(A=(4.85e-17, 'cm^3/(mol*s)'), n=8.15, Ea=(904, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
shortDesc = u"""[Lin2014a]""",
@@ -1906,7 +1923,7 @@
)
entry(
- index = 99,
+ index = 97,
label = "N2H3 + HONO <=> NH2NHNO + OH",
degeneracy = 1,
kinetics = Arrhenius(A=(4.69e+00, 'cm^3/(mol*s)'), n=2.94, Ea=(15379, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -1922,7 +1939,7 @@
)
entry(
- index = 100,
+ index = 98,
label = "N2H3 + HONO <=> N2H2 + H2O + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.79e-08, 'cm^3/(mol*s)'), n=5.51, Ea=(11112, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -1938,19 +1955,24 @@
)
entry(
- index = 101,
- label='NH2 + NH2 <=> N2H4',
+ index = 99,
+ label='N2H4 <=> NH2 + NH2',
kinetics=Troe(
- arrheniusHigh=Arrhenius(A=(5.6e+14, 'cm^3/(mol*s)'), n=-0.414, Ea=(66, 'cal/mol'), T0=(1, 'K')),
- arrheniusLow=Arrhenius(A=(1.6e34, 'cm^6/(mol^2*s)'), n=-5.49, Ea=(1987, 'cal/mol'), T0=(1, 'K')),
- alpha=0.31,
- T3=(1e-30, 'K'),
- T1=(1e+30, 'K'),
- efficiencies={'N#N': 1.0, '[Ar]': 0.5, '[O][O]': 0.61, 'N': 2.93},
+ arrheniusHigh=Arrhenius(A=(7.6e+16, 's^-1'), n=-1.0, Ea=(66770, 'cal/mol'), T0=(1000, 'K')),
+ arrheniusLow=Arrhenius(A=(6.1e+20, 'cm^3/(mol*s)'), n=-7.3, Ea=(68540, 'cal/mol'), T0=(1000, 'K')),
+ alpha=0.29,
+ T3=(1460, 'K'),
+ T1=(21, 'K'),
+ T2=(13400, 'K'),
+ efficiencies={'N#N': 2.0, '[Ar]': 1.0, '[O][O]': 1.22, 'N': 5.86}, # [Glarborg2021] efficiencies time 2
),
- shortDesc=u"""[Glarborg2021]""",
+ elementary_high_p=True,
+ shortDesc=u"""[Troe2023]""",
longDesc=
u"""
+T range: 1100-2500 K, computed for Ar as bath gas
+
+Also available from [Glarborg2021]:
Reaction 3, Table 2 taken form [Glarborg2021]. Experimental work re-interpreted using direct measurements from
[Altinay&Macdonald2015]. Original values taken from [Klippenstein2009a], computed with the CCSD(T) method employing
either the aug-cc-pvdz or aug-cc-pvtz basis set, adopted by [Glarborg2021] and calculated the relative third-body
@@ -1961,9 +1983,9 @@
Also available from [Klippenstein2009a]:
label = "NH2 + NH2 <=> N2H4",
kinetics = Troe(
- arrheniusHigh = Arrhenius(A=(9.33e-10, 's^-1'), n=-0.414, Ea=(66, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'),
+ arrheniusHigh = Arrhenius(A=(9.33e-10, 'cm^3/(mol*s)'), n=-0.414, Ea=(66, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'),
Tmax=(2500, 'K')),
- arrheniusLow = Arrhenius(A=(2.7e+10, 'cm^3/(mol*s)'), n=-5.49, Ea=(1987, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K')
+ arrheniusLow = Arrhenius(A=(2.7e+10, 'cm^6/(mol^2*s)'), n=-5.49, Ea=(1987, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K')
, Tmax=(2500, 'K')),
alpha=0.31, T3=(1e-30, 'K'), T1=(1e+30, 'K'), efficiencies={}),
Table 3, p. 10245, T range: 300-2500 K, calculated at the CCSD(T) and CAS+1+2+QC level
@@ -1971,7 +1993,7 @@
)
entry(
- index = 102,
+ index = 100,
label = "N2H4 <=> N2H3 + H",
degeneracy = 1,
kinetics = Lindemann(
@@ -1981,6 +2003,7 @@
shortDesc = u"""[Lin2014b]""",
longDesc =
u"""
+N2H4 PES
Part of the "N2H4 + N2O4" subset
p. 264
Bath gas: Ar
@@ -1990,7 +2013,7 @@
)
entry(
- index = 103,
+ index = 101,
label = "ONONO2 <=> NO2 + NO2",
degeneracy = 1,
kinetics = Lindemann(
@@ -2009,7 +2032,7 @@
)
entry(
- index = 104,
+ index = 102,
label = "ONONO2 <=> NO + NO3",
degeneracy = 1,
kinetics = Lindemann(
@@ -2028,23 +2051,27 @@
)
entry(
- index = 105,
- label = "N2H4 + NO2 <=> N2H3 + HONO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(3.23e+00, 'cm^3/(mol*s)'), n=3.56, Ea=(763, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Lin2014b]""",
- longDesc =
-u"""
-Part of the "N2H4 + N2O4" subset
-p. 267
-calculations done at the G2M(CC2)//B3LYP/6-311þþG(3df,2p) level of theoty
-Also available from [Lin2014a], calculated at the CCSD(T)/CBS//CCSD level of theoty:
- kinetics = Arrhenius(A=(8.25e+01, 'cm^3/(mol*s)'), n=3.13, Ea=(8863, 'cal/mol'), T0=(1, 'K')),
-""",
+ index=103,
+ label="N2H4 + NO2 <=> N2H3 + HONO",
+ kinetics=MultiArrhenius(
+ arrhenius=[
+ Arrhenius(A=(8.25e+01, 'cm^3/(mol*s)'), n=3.13, Ea=(8863, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ Arrhenius(A=(3.28e-02, 'cm^3/(mol*s)'), n=4.00, Ea=(12917, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Lin2014a]""",
+ longDesc=
+ u"""
+ Part of the "N2H4 + N2O4" subset
+ p. 78
+ k3 + k5 (cis + tans HONO)
+ Also available from [Lin2014b]:
+ kinetics = Arrhenius(A=(3.23e+00, 'cm^3/(mol*s)'), n=3.56, Ea=(763, 'cal/mol'), T0=(1, 'K'))
+ """,
)
entry(
- index = 106,
+ index = 104,
label = "N2H4 + NO3 <=> N2H3 + HNO3",
degeneracy = 1,
kinetics = Arrhenius(A=(1.28e+04, 'cm^3/(mol*s)'), n=2.53, Ea=(-2947, 'cal/mol'), T0=(1, 'K'),
@@ -2067,7 +2094,7 @@
)
entry(
- index = 107,
+ index = 105,
label = "N2H4 + NO3 <=> HONO + N2H3O",
degeneracy = 1,
kinetics = Arrhenius(A=(3.46e+03, 'cm^3/(mol*s)'), n=2.51, Ea=(-7452, 'cal/mol'), T0=(1, 'K'),
@@ -2094,7 +2121,7 @@
)
entry(
- index = 108,
+ index = 106,
label = "N2H4 + N2O4 <=> HONO + NH2NHNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(1.39e+02, 'cm^3/(mol*s)'), n=2.62, Ea=(13112, 'cal/mol'), T0=(1, 'K'),
@@ -2110,7 +2137,7 @@
)
entry(
- index = 109,
+ index = 107,
label = "N2H4 + ONONO2 <=> HNO3 + NH2NHNO",
degeneracy = 1,
kinetics = Arrhenius(A=(4.7e+14, 'cm^3/(mol*s)','+|-',6.1e+13), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'),
@@ -2129,7 +2156,7 @@
)
entry(
- index = 110,
+ index = 108,
label = "NH2NHNO <=> N2H3 + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(6.24e+15, 's^-1'), n=-0.15, Ea=(35611, 'cal/mol'), T0=(1, 'K'),
@@ -2145,7 +2172,7 @@
)
entry(
- index = 111,
+ index = 109,
label = "N2H3 + NO2 <=> N2H2 + HONO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.40e+55, 'cm^3/(mol*s)'), n=-16.7, Ea=(-14397, 'cal/mol'), T0=(1, 'K'),
@@ -2163,7 +2190,7 @@
)
entry(
- index = 112,
+ index = 110,
label = "N2H3 + NO2 <=> N2H2 + HNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(5.12e+07, 'cm^3/(mol*s)'), n=-0.2, Ea=(-2736, 'cal/mol'), T0=(1, 'K'),
@@ -2181,7 +2208,7 @@
)
entry(
- index = 113,
+ index = 111,
label = "N2H3 + NO2 <=> N2H3O + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(6.14e+00, 'cm^3/(mol*s)'), n=2.8, Ea=(-8853, 'cal/mol'), T0=(1, 'K'),
@@ -2199,7 +2226,7 @@
)
entry(
- index = 114,
+ index = 112,
label = "N2H3 + N2O4 <=> NH2NHNO2 + NO2",
degeneracy = 1,
kinetics = Arrhenius(A=(1.10e+10, 'cm^3/(mol*s)'), n=0.87, Ea=(11772, 'cal/mol'), T0=(1, 'K'),
@@ -2214,7 +2241,7 @@
)
entry(
- index = 115,
+ index = 113,
label = "N2H3 + N2O4 <=> N2H2 + HONO + NO2",
degeneracy = 1,
kinetics = Arrhenius(A=(8.55e+10, 'cm^3/(mol*s)'), n=0.74, Ea=(11707, 'cal/mol'), T0=(1, 'K'),
@@ -2229,7 +2256,7 @@
)
entry(
- index = 116,
+ index = 114,
label = "N2H3 + N2O4 <=> NH2NHONO + NO2",
degeneracy = 1,
kinetics = Arrhenius(A=(4.54e+13, 'cm^3/(mol*s)'), n=0.76, Ea=(15960, 'cal/mol'), T0=(1, 'K'),
@@ -2244,7 +2271,7 @@
)
entry(
- index = 117,
+ index = 115,
label = "N2H3 + N2O4 <=> N2H3O + N2O3",
degeneracy = 1,
kinetics = Arrhenius(A=(3.69e+11, 'cm^3/(mol*s)'), n=0.87, Ea=(8047.4, 'cal/mol'), T0=(1, 'K'),
@@ -2259,7 +2286,7 @@
)
entry(
- index = 118,
+ index = 116,
label = "N2H3O <=> NH3 + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.86e+22, 's^-1'), n=-2.80, Ea=(79296, 'cal/mol'), T0=(1, 'K'),
@@ -2276,24 +2303,32 @@
)
entry(
- index = 119,
- label = "N2H3O <=> NH2 + HNO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(9.12e+33, 's^-1'), n=-6.68, Ea=(35217, 'cal/mol'), T0=(1, 'K'),
- Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ index = 117,
+ label = "NH2 + HNO <=> N2H3O",
+ kinetics = PDepArrhenius(
+ pressures = ([1, 10, 100, 760, 7600, 76000], 'torr'),
+ arrhenius = [
+ Arrhenius(A=(2.17e+32, 'cm^3/(mol*s)'), n=-8.34, Ea=(-3237, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.86e+33, 'cm^3/(mol*s)'), n=-8.33, Ea=(-3239, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(2.04e+34, 'cm^3/(mol*s)'), n=-8.34, Ea=(-3309, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.92e+35, 'cm^3/(mol*s)'), n=-8.36, Ea=(-3474, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(2.85e+36, 'cm^3/(mol*s)'), n=-8.40, Ea=(-3821, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(5.22e+37, 'cm^3/(mol*s)'), n=-8.46, Ea=(-4416, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ ],
+ ),
elementary_high_p = True,
- shortDesc = u"""[Lin2014b]""",
+ shortDesc = u"""[Lin2009c]""",
longDesc =
u"""
-Part of the "N2H4 + N2O4" subset
-k15, p. 284
-T range: 300-3000 K, P = 1 atm
-calculations done at the CCSD(T)/6-311þG(3df,2p)//CCSD/6-311þþG(d,p) level of theoty
+k2, Table II
+CCSD(T)/6-311+G(3df.2p)//CCSD/6-311++G(d,p)
+
+Also available from [Lin2014b], k15, p. 284, T range: 300-3000 K, P = 1 atm, CCSD(T)/6-311þG(3df,2p)//CCSD/6-311þþG(d,p)
""",
)
entry(
- index = 120,
+ index = 118,
label = "N2H3O <=> NH2NO + H",
degeneracy = 1,
kinetics = Arrhenius(A=(1.57e+34, 's^-1'), n=-6.63, Ea=(44953, 'cal/mol'), T0=(1, 'K'),
@@ -2310,7 +2345,7 @@
)
entry(
- index = 121,
+ index = 119,
label = "N2H2 + NO2 <=> HONO + NNH",
degeneracy = 1,
kinetics = MultiArrhenius(
@@ -2330,7 +2365,7 @@
)
entry(
- index = 122,
+ index = 120,
label = "N2H2 + N2O4 <=> HONO + NO2 + NNH",
degeneracy = 1,
kinetics = Arrhenius(A=(8.79e+00, 'cm^3/(mol*s)'), n=3.10, Ea=(28787, 'cal/mol'), T0=(1, 'K'),
@@ -2346,7 +2381,7 @@
)
entry(
- index = 123,
+ index = 121,
label = "N2H2 + N2O4 <=> HONO + HNO2 + N2",
degeneracy = 1,
kinetics = Arrhenius(A=(2.38e-02, 'cm^3/(mol*s)'), n=3.90, Ea=(13360, 'cal/mol'), T0=(1, 'K'),
@@ -2362,7 +2397,18 @@
)
entry(
- index = 124,
+ index = 122,
+ label = "N2H2 + O <=> NNH + OH",
+ kinetics = Arrhenius(A=(1.11e08, 'cm^3/(mol*s)'), n=1.62, Ea=(805, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 123,
label = "N2H2 + OH <=> NNH + H2O",
degeneracy = 1,
kinetics = MultiArrhenius(
@@ -2382,7 +2428,7 @@
)
entry(
- index = 125,
+ index = 124,
label = "N2O4 + H2O <=> HONO + HNO3",
degeneracy = 1,
kinetics = Arrhenius(A=(4.58e-02, 'cm^3/(mol*s)'), n=4.53, Ea=(29830, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
@@ -2397,7 +2443,7 @@
)
entry(
- index = 126,
+ index = 125,
label = "ONONO2 + H2O <=> HONO + HNO3",
degeneracy = 1,
kinetics = Arrhenius(A=(1.93e+06, 'cm^3/(mol*s)'), n=1.88, Ea=(4064, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
@@ -2413,7 +2459,7 @@
)
entry(
- index = 127,
+ index = 126,
label = "CH3NO2 <=> CH3 + NO2",
degeneracy = 1,
kinetics = Arrhenius(A=(5.88e+24, 's^-1'), n=-2.35, Ea=(62398, 'cal/mol'), T0=(1, 'K'),
@@ -2432,7 +2478,7 @@
)
entry(
- index = 128,
+ index = 127,
label = "CH3NO2 <=> CH3ONO",
degeneracy = 1,
kinetics = ThirdBody(
@@ -2447,7 +2493,7 @@
)
entry(
- index = 129,
+ index = 128,
label = "CH3NO2 <=> CH3O + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(8.91e+19, 's^-1'), n=-1.84, Ea=(60809, 'cal/mol'), T0=(1, 'K'),
@@ -2464,7 +2510,7 @@
)
entry(
- index = 130,
+ index = 129,
label = "CH3NO2 <=> CH2O + HNO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.15e+17, 's^-1'), n=-0.75, Ea=(60014, 'cal/mol'), T0=(1, 'K'),
@@ -2481,7 +2527,7 @@
)
entry(
- index = 131,
+ index = 130,
label = "CH3ONO <=> CH3O + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(7.90e+22, 's^-1'), n=-2.18, Ea=(41930, 'cal/mol'), T0=(1, 'K'),
@@ -2501,7 +2547,7 @@
)
entry(
- index = 132,
+ index = 131,
label = "CH3 + NO2 <=> CH2(T) + HNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(4.8e+13, 'cm^3/(mol*s)'), n=0, Ea=(39600, 'cal/mol'), T0=(1, 'K')),
@@ -2516,7 +2562,7 @@
)
entry(
- index = 133,
+ index = 132,
label = "CH3 + NO2 <=> CH2(T) + HONO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.0e+14, 'cm^3/(mol*s)'), n=0, Ea=(46900, 'cal/mol'), T0=(1, 'K')),
@@ -2531,7 +2577,7 @@
)
entry(
- index = 1000,
+ index = 133,
label = "CH3 + NO2 <=> CH3O + NO",
degeneracy = 1,
kinetics = Arrhenius(A=(4.0e+13, 'cm^3/(mol*s)'), n=-0.2, Ea=(0, 'cal/mol'), T0=(1, 'K')),
@@ -2620,33 +2666,16 @@
entry(
index = 139,
- label='NH2 + HNO <=> NH3 + NO',
- kinetics=Arrhenius(A=(5.9e+02, 'cm^3/(mol*s)'), n=2.950, Ea=(-3469, 'cal/mol'), T0=(1, 'K')),
- shortDesc=u"""[Glarborg2021]""",
- longDesc=
-u"""Reaction 7, Table 2, Source: [Glarborg2021], Experimental work re-interpreted using direct measurments from
-[Altinay&Macdonald2015]. New parameters obtained with the predicted rate expressions by [ShuchengXu & M.C.Lin2009]
-the potential energy surface of this reaction has been computed by single-point calculations at the
-CCSD(T)/6-311+G(3df,2p) level based on geometries optimized at the CCSD/6-311++G(d,p) level.
-Previously taken from [Lin1996a] in reverse.
-Reaction Part of the "Thermal de-NOx" mechanism
- k1 on p. 7519
- T range: 300-5000 K
- calculations done at the UMP2/6-311G-(d,p)//UMP2/6-311G(d,p) level of theory
- Added as a training reaction to H_Abstraction
-""",
-)
-
-entry(
- index = 140,
label = 'NH2 + NO <=> NNH + OH',
kinetics = Arrhenius(A=(4.3e+10, 'cm^3/(mol*s)'), n=0.294, Ea=(-866, 'cal/mol'),
T0=(1, 'K')),
shortDesc =u"""[Glarborg2021]""",
longDesc =
-u"""Reaction 5a, Table 2,Source: [Glarborg2021]. Experimental work re-interpreted using direct measurements from
-[Altinay&Macdonald2015]. Original information taken from [Song&Golden2001] Shock tube experiments were
-performed behind reflected shockwaves in a stainless steel shock tube. Rates were calculated using their branching
+u"""
+Reaction 5a, Table 2
+Experimental work re-interpreted using direct measurements from [Altinay&Macdonald2015].
+Original information taken from [Song&Golden2001] Shock tube experiments were
+performed behind reflected shockwaves in a stainless steel shock tube. Rates were calculated using their branching
ratio results data and the overall rate coefficient.
Previously taken from [Lin1999a]
@@ -2656,40 +2685,42 @@
)
entry(
- index = 141,
+ index = 140,
label = 'NH2 + NO <=> N2 + H2O',
kinetics = Arrhenius(A=(2.6e+19, 'cm^3/(mol*s)'), n=-2.369, Ea=(870, 'cal/mol'),
T0=(1, 'K')),
shortDesc = u"""[Glarborg2021]""",
longDesc =
-u"""Reaction 5b, Table 2,Source: [Glarborg2021]. Experimental work re-interpreted using direct measurements from
-[Altinay&Macdonald2015]. Original information taken from [Song&Golden2001] Shock tube experiments were
-performed behind reflected shockwaves in a stainless steel shock tube. Rates were calculated using their branching
-ratio results data and the overall rate coefficient.
+u"""
+Reaction 5b, Table 2. Experimental work re-interpreted using direct measurements from [Altinay&Macdonald2015].
+Original information taken from [Song&Golden2001]. Shock tube experiments were performed behind reflected shockwaves
+in a stainless steel shock tube. Rates were calculated using their branching ratio results data and the overall rate
+coefficient.
-Previously taken from [Lin1999a].
-Part of the "Thermal de-NOx" mechanism k1b T range: 300-2500 K
+Also available from [Lin1999a].
+Part of the "Thermal de-NOx" mechanism
""",
)
entry(
- index = 142,
+ index = 141,
label = "NH2 + NO <=> N2O + H2",
degeneracy = 1,
- kinetics = Arrhenius(A=(7e+13, 'cm^3/(mol*s)','*|/',2), n=0, Ea=(15700, 'cal/mol'), T0=(1, 'K'), Tmin=(1680, 'K'), Tmax=(2850, 'K')),
- shortDesc = u"""[Hanson1981]""",
+ kinetics = Arrhenius(A=(4.52e+01, 'cm^3/(mol*s)'), n=2.056, Ea=(1879, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Klippenstein2000]""",
longDesc =
u"""
Part of the "Thermal de-NOx" mechanism
-k2
-Uncertainty: +100%, -70%
-T range: 1680-2850 K
-Shocktube measurement
+
+Fitted to a three-param Arrhenius expression manually from Fig. 12 in [Klippenstein2000]
+
+Also available from [Hanson1981], k2, Uncertainty: +100%, -70%, Shocktube measurement (ref 35 in [Klippenstein2000]),
+but [Klippenstein2000] claim that the [Hanson1981] rate is too high by 2-3 orders of magnitude.
""",
)
entry(
- index = 143,
+ index = 142,
label = "NH + NO <=> N2O + H",
degeneracy = 1,
kinetics = Arrhenius(A=(1.8e+14, 'cm^3/(mol*s)','*|/',3), n=-0.351, Ea=(-244, 'cal/mol'), T0=(1, 'K')),
@@ -2697,14 +2728,17 @@
longDesc =
u"""
Part of the "Thermal de-NOx" mechanism
-calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC electronic structure calculations level
+
+Miller2011 applied VRC-TST with CASPT2(7e,6o)/aug-cc-pVDZ energies:
+ kinetics = Arrhenius(A=(1.8e+14, 'cm^3/(mol*s)','*|/',3), n=-0.351, Ea=(-244, 'cal/mol'), T0=(1, 'K')),
Also available from [Hanson1981], k3, Shock Tube, Uncertainty: +200%, -70%, T range: 1680-2850 K:
kinetics = Arrhenius(A=(8e+13, 'cm^3/(mol*s)'), n=0, Ea=(29400, 'cal/mol'), T0=(1, 'K'), Tmin=(1680, 'K'), Tmax=(2850, 'K')),
+Also available from [Baulch2005], p. 937
""",
)
entry(
- index = 144,
+ index = 143,
label = "NH + NO <=> N2 + OH",
degeneracy = 1,
kinetics = Arrhenius(A=(2.7e+12, 'cm^3/(mol*s)'), n=-0.0721, Ea=(-512, 'cal/mol'), T0=(1, 'K')),
@@ -2712,7 +2746,7 @@
longDesc =
u"""
Part of the "Thermal de-NOx" mechanism
-calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC electronic structure calculations level
+calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC level
Also availabvle from [Bozzelli1994]:
kinetics = Arrhenius(A=(6.1e+13, 'cm^3/(mol*s)'), n=-0.50, Ea=(120, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(4000, 'K')),
T range: 300-4000 K, k2a, QRRK
@@ -2720,20 +2754,20 @@
)
entry(
- index = 145,
- label="NH2 + O2 <=> H2NO + O",
+ index = 144,
+ label="NH2 + O2 <=> NH2O + O",
degeneracy=1,
kinetics=Arrhenius(A=(2.6e+11, 'cm^3/(mol*s)'), n=0.4872, Ea=(29050, 'cal/mol'), T0=(1, 'K')),
shortDesc=u"""[Miller2011]""",
longDesc=
u"""
Part of the "Thermal de-NOx" mechanism
- calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC electronic structure calculations level
+ calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC level
""",
)
entry(
- index = 146,
+ index = 145,
label="NH2 + O2 <=> HNO + OH",
degeneracy=1,
kinetics=Arrhenius(A=(2.9e-02, 'cm^3/(mol*s)'), n=3.764, Ea=(18185, 'cal/mol'), T0=(1, 'K')),
@@ -2741,12 +2775,12 @@
longDesc=
u"""
Part of the "Thermal de-NOx" mechanism
- calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC electronic structure calculations level
+ calculated at the (CCSD(T) and QCISD(T)) and multireference CASPT2 and CAS + 1 + 2 + QC level
""",
)
entry(
- index = 147,
+ index = 146,
label = "NH2OH <=> NH2 + OH",
degeneracy = 1,
kinetics = Troe(
@@ -2766,33 +2800,35 @@
)
entry(
- index = 148,
+ index = 147,
label = "NH2 + OH <=> NH + H2O",
degeneracy = 1,
- kinetics = Arrhenius(A=(2.84e+06, 'cm^3/(mol*s)'), n=1.97, Ea=(-2246, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Klippenstein2009a]""",
+ kinetics = Arrhenius(A=(4.04e+04, 'cm^3/(mol*s)'), n=2.52, Ea=(-616, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(600, 'K'), Tmax=(2000, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
longDesc =
u"""
Part of the "Thermal de-NOx" mechanism
-Table 3, p. 10245
-T range: 300-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
-Train!
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+
+Both [Sarathy2020] and [Klippenstein2009a] reduced Ea by 2 kcal/mol
+since the computed rates were significantly lower than experimental data.
+
+Also available from [Klippenstein2009a], Table 3, p. 10245, calculated at the CCSD(T) and CAS+1+2+QC level:
+ kinetics = Arrhenius(A=(2.84e+06, 'cm^3/(mol*s)'), n=1.97, Ea=(-2246, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
""",
)
entry(
- index = 149,
+ index = 148,
label='NH3 + O <=> NH2 + OH',
- kinetics=Arrhenius(A=(4.43e+02, 'cm^3/(mol*s)'), n=3.180, Ea=(6739.9, 'cal/mol'), T0=(1, 'K'),
- Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics=Arrhenius(A=(4.430e+02, 'cm^3/(mol*s)'), n=3.180, Ea=(6739.9, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc=u"""[Stagni2020]""",
longDesc=
-u"""Reaction 4, Table 1, Source: [Stagni2020].The rate of reaction was calculated with CCSD(T) level of theory
-performed using Molpro 2010. Electronic structure calculations were performed determining structures and vibrational
-frequencies at the M06-2X/aug-cc-pVTZ level and energies at the unrestricted CCSDIJT)/aug-cc-pVTZ level, corrected for
-basis set size effect with the change of density fitted (DF) MP2 energies computed using aug-cc-pVQZ and aug-cc-pVTZ
-basis sets.
+u"""
+Reaction 4, Table 1
+CCSD(T)/aug-cc-pVTZ//M06-2X/aug-cc-pVTZ
Previously taken from [Klippenstein2009a].
@@ -2806,10 +2842,11 @@
)
entry(
- index = 150,
- label = "NH2OH + OH <=> HNOH + H2O",
+ index = 149,
+ label = "NH2OH + OH <=> NHOH + H2O",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.54e+04, 'cm^3/(mol*s)'), n=2.61, Ea=(-3537, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(1.54e+04, 'cm^3/(mol*s)'), n=2.61, Ea=(-3537, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2822,10 +2859,11 @@
)
entry(
- index = 151,
- label = "NH2OH + OH <=> H2NO + H2O",
+ index = 150,
+ label = "NH2OH + OH <=> NH2O + H2O",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.53e+05, 'cm^3/(mol*s)'), n=2.28, Ea=(-1296, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(1.53e+05, 'cm^3/(mol*s)'), n=2.28, Ea=(-1296, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2838,10 +2876,11 @@
)
entry(
- index = 152,
- label = "NH2OH + NH2 <=> HNOH + NH3",
+ index = 151,
+ label = "NH2OH + NH2 <=> NHOH + NH3",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.08e-01, 'cm^3/(mol*s)'), n=4.00, Ea=(-97, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(1.08e-01, 'cm^3/(mol*s)'), n=4.00, Ea=(-97, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2854,10 +2893,11 @@
)
entry(
- index = 153,
- label = "NH2OH + NH2 <=> H2NO + NH3",
+ index = 152,
+ label = "NH2OH + NH2 <=> NH2O + NH3",
degeneracy = 1,
- kinetics = Arrhenius(A=(9.45e+00, 'cm^3/(mol*s)'), n=3.42, Ea=(-1013, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(9.45e+00, 'cm^3/(mol*s)'), n=3.42, Ea=(-1013, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2870,10 +2910,11 @@
)
entry(
- index = 154,
- label = "NH2OH + NH <=> HNOH + NH2",
+ index = 153,
+ label = "NH2OH + NH <=> NHOH + NH2",
degeneracy = 1,
- kinetics = Arrhenius(A=(2.91e-03, 'cm^3/(mol*s)'), n=4.40, Ea=(1564, 'cal/mol'), T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(2.91e-03, 'cm^3/(mol*s)'), n=4.40, Ea=(1564, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2886,10 +2927,11 @@
)
entry(
- index = 155,
- label = "NH2OH + NH <=> H2NO + NH2",
+ index = 154,
+ label = "NH2OH + NH <=> NH2O + NH2",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.46e-03, 'cm^3/(mol*s)'), n=4.60, Ea=(2424, 'cal/mol'), T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(1.46e-03, 'cm^3/(mol*s)'), n=4.60, Ea=(2424, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2897,49 +2939,15 @@
Table 3, p. 10245
T range: 400-2500 K
calculated at the (CCSD(T) and CAS+1+2+QC level
-Train!
-""",
-)
-
-entry(
- index = 156,
- label = "NH + OH <=> H2O + N",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(1.59e+07, 'cm^6/(mol^2*s)'), n=1.737, Ea=(-576, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K'))),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
-u"""
-Part of the "Thermal de-NOx" mechanism
-Table 3, p. 10245
-T range: 200-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
-Train!
-""",
-)
-
-entry(
- index = 157,
- label = "NH + OH <=> HNO + H",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(3.25e+14, 'cm^6/(mol^2*s)'), n=-0.376, Ea=(-46, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K'))),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
-u"""
-Part of the "Thermal de-NOx" mechanism
-Table 3, p. 10245
-T range: 200-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
""",
)
entry(
- index = 158,
+ index = 155,
label = "NH + NH <=> N2H2",
degeneracy = 1,
- kinetics = Arrhenius(A=(6.26e+13, 'cm^3/(mol*s)'), n=-0.036, Ea=(-161, 'cal/mol'), T0=(1, 'K'),
- Tmin=(200, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(6.26e+13, 'cm^3/(mol*s)'), n=-0.036, Ea=(-161, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
elementary_high_p = True,
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
@@ -2953,10 +2961,11 @@
)
entry(
- index = 159,
+ index = 156,
label = "NH + NH <=> NH2 + N",
degeneracy = 1,
- kinetics = Arrhenius(A=(5.66e-01, 'cm^3/(mol*s)'), n=3.88, Ea=(342, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(5.66e-01, 'cm^3/(mol*s)'), n=3.88, Ea=(342, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Klippenstein2009a]""",
longDesc =
u"""
@@ -2969,65 +2978,34 @@
)
entry(
- index = 160,
- label = "NH2 + NH <=> N2H2 + H",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(4.26e+14, 'cm^6/(mol^2*s)'), n=-0.272, Ea=(-78, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K'))),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
-u"""
-Part of the "Thermal de-NOx" mechanism
-Table 3, p. 10245
-T range: 200-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
-Also available from [Hanson1990a]:
- kinetics = Arrhenius(A=(1.50e+15, 'cm^3/(mol*s)'), n=-0.5, Ea=(0, 'cal/mol'), T0=(1, 'K')),
-R11 in Table 1, p. 521, T range: 2200-2800 K, Shock Tube
-""",
-)
-
-entry(
- index = 161,
- label = "NH2 + NH <=> NH3 + N",
- degeneracy = 1,
- kinetics = Arrhenius(A=(9.58e+03, 'cm^3/(mol*s)'), n=2.46, Ea=(107, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
-u"""
-Part of the "Thermal de-NOx" mechanism
-Table 3, p. 10245
-T range: 200-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
-Train!
-""",
-)
-
-entry(
- index = 162,
- label = "NH2 + NH2 <=> N2H2 + H2",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(1.74e+08, 'cm^6/(mol^2*s)'), n=1.02, Ea=(11784, 'cal/mol'), T0 = (1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K'))),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
+ index=157,
+ label="NH2 + NH2 <=> N2H2 + H2",
+ degeneracy=1,
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(1.74e+08, 'cm^6/(mol^2*s)'), n=1.02, Ea=(11784, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K'))),
+ shortDesc=u"""[Klippenstein2009a]""",
+ longDesc=
u"""
+N2H4 PES
Part of the "Thermal de-NOx" mechanism
Table 3, p. 10245
T range: 500-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
+calculated at the CCSD(T) and CAS+1+2+QC level
""",
)
entry(
- index = 163,
- label = "NH2 + NH2 <=> H2NN(S) + H2",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(7.17e+04, 'cm^6/(mol^2*s)'), n=1.88, Ea=(8803, 'cal/mol'), T0 = (1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K'))),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
+ index=158,
+ label="NH2 + NH2 <=> H2NN(S) + H2",
+ degeneracy=1,
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(7.17e+04, 'cm^6/(mol^2*s)'), n=1.88, Ea=(8803, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K'))),
+ shortDesc=u"""[Klippenstein2009a]""",
+ longDesc=
u"""
+N2H4 PES
Part of the "Thermal de-NOx" mechanism
Table 3, p. 10245
T range: 500-2500 K
@@ -3036,17 +3014,19 @@
)
entry(
- index = 164,
- label = "NH2 + NH2 <=> NH3 + NH",
- degeneracy = 1,
- kinetics = Arrhenius(A=(5.64e+00, 'cm^3/(mol*s)'), n=3.53, Ea=(552, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Klippenstein2009a]""",
- longDesc =
+ index=159,
+ label="NH2 + NH2 <=> NH3 + NH",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(5.64e+00, 'cm^3/(mol*s)'), n=3.53, Ea=(552, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2009a]""",
+ longDesc=
u"""
+N2H4 PES
Part of the "Thermal de-NOx" mechanism
Table 3, p. 10245
T range: 300-2500 K
-calculated at the (CCSD(T) and CAS+1+2+QC level
+calculated at the CCSD(T) and CAS+1+2+QC level
Also available from [Hanson1990a]:
kinetics = Arrhenius(A=(5.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(10000, 'cal/mol'), T0=(1, 'K')),
R12 in Table 1, p. 521, T range: 2200-2800 K, Shock Tube
@@ -3057,10 +3037,9 @@
)
entry(
- index = 165,
+ index = 160,
label='NH3 + H <=> NH2 + H2',
- kinetics=Arrhenius(A=(6.4e+05, 'cm^3/(mol*s)'), n=2.390, Ea=(10171, 'cal/mol'),
- T0=(1, 'K')),
+ kinetics=Arrhenius(A=(6.4e+05, 'cm^3/(mol*s)'), n=2.390, Ea=(10171, 'cal/mol'), T0=(1, 'K')),
shortDesc=u"""[Glarborg2021]""",
longDesc=
u"""Reaction 10, Table 2,Source: [Glarborg2021]. Experimental work re-interpreted using direct measurements from
@@ -3082,10 +3061,9 @@
)
entry(
- index = 167,
+ index = 161,
label='NH3 + OH <=> NH2 + H2O ',
- kinetics=Arrhenius(A=(2.0e+06, 'cm^3/(mol*s)'), n=2.040, Ea=(566, 'cal/mol'),
- T0=(1, 'K')),
+ kinetics=Arrhenius(A=(2.0e+06, 'cm^3/(mol*s)'), n=2.040, Ea=(566, 'cal/mol'), T0=(1, 'K')),
shortDesc= u"""[Glarborg2021]""",
longDesc=
u"""Reaction 12, Table 2,Source: [Glarborg2021]. Experimental work re-interpreted using direct measurements from
@@ -3105,10 +3083,11 @@
)
entry(
- index = 168,
+ index = 162,
label = "NH3 + NO2 <=> NH2 + HNO2",
degeneracy = 1,
- kinetics = Arrhenius(A=(4.91e+00, 'cm^3/(mol*s)'), n=3.41, Ea=(29880, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
+ kinetics = Arrhenius(A=(4.91e+00, 'cm^3/(mol*s)'), n=3.41, Ea=(29880, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
shortDesc = u"""[Lin1996a]""",
longDesc =
u"""
@@ -3120,19 +3099,24 @@
)
entry(
- index = 169,
- label = "NH3 + NO2 <=> NH2 + HONO",
- degeneracy = 1,
+ index=163,
+ label="NH2 + HONO <=> NH3 + NO2",
+ kinetics=Arrhenius(A=(6.4e+03, 'cm^3/(mol*s)'), n=2.340, Ea=(-3200, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Glarborg2022]""",
+ longDesc=
+u"""
+Part of the "Thermal de-NOx" mechanism
+Also available from [Lin1997c]
+Glarborg slightly adjusted the rate by Lin to agree with a rate experiment
+
+Available in reverse from [Lin1996a]
kinetics = MultiArrhenius(
arrhenius = [
Arrhenius(A=(2.36e+01, 'cm^3/(mol*s)'), n=3.41, Ea=(22290, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
Arrhenius(A=(1.88e+01, 'cm^3/(mol*s)'), n=3.52, Ea=(32598, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
],
),
- shortDesc = u"""[Lin1996a]""",
- longDesc =
-u"""
-Part of the "Thermal de-NOx" mechanism
k2b, k2c on p. 7523-7524
T range: 300-5000 K
calculations done at the UMP2/6-311G-(d,p)//UMP2/6-311G(d,p) level of theory
@@ -3143,18 +3127,18 @@
)
entry(
- index = 170,
+ index = 164,
label = "NH3 + NO3 <=> HNO3 + NH2",
degeneracy = 1,
kinetics = PDepArrhenius(
- pressures = ([1, 10, 100, 760, 7600, 76000], 'torr'),
- arrhenius = [
- Arrhenius(A=(2.57e+00, 'cm^3/(mol*s)'), n=3.61, Ea=(964, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(5.67e+00, 'cm^3/(mol*s)'), n=3.53, Ea=(1598, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(4.61e+00, 'cm^3/(mol*s)'), n=3.56, Ea=(1691, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(4.06e+00, 'cm^3/(mol*s)'), n=3.57, Ea=(1689, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(3.85e+00, 'cm^3/(mol*s)'), n=3.58, Ea=(1679, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(3.63e+00, 'cm^3/(mol*s)'), n=3.59, Ea=(1669, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ pressures=([1, 10, 100, 760, 7600, 76000], 'torr'),
+ arrhenius=[
+ Arrhenius(A=(2.57e+00, 'cm^3/(mol*s)'), n=3.61, Ea=(964, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(5.67e+00, 'cm^3/(mol*s)'), n=3.53, Ea=(1598, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(4.61e+00, 'cm^3/(mol*s)'), n=3.56, Ea=(1691, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(4.06e+00, 'cm^3/(mol*s)'), n=3.57, Ea=(1689, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(3.85e+00, 'cm^3/(mol*s)'), n=3.58, Ea=(1679, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(3.63e+00, 'cm^3/(mol*s)'), n=3.59, Ea=(1669, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
],
),
shortDesc = u"""[Lin2010c]""",
@@ -3169,18 +3153,18 @@
)
entry(
- index = 171,
- label = "HNO3 + NH2 <=> H2NO + HONO",
+ index = 165,
+ label = "HNO3 + NH2 <=> NH2O + HONO",
degeneracy = 1,
kinetics = PDepArrhenius(
pressures = ([1, 10, 100, 760, 7600, 76000], 'torr'),
arrhenius = [
- Arrhenius(A=(8.91e+04, 'cm^3/(mol*s)'), n=2.00, Ea=(24641, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(1.36e+07, 'cm^3/(mol*s)'), n=1.40, Ea=(26390, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(5.09e+08, 'cm^3/(mol*s)'), n=0.99, Ea=(28353, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(1.73e+08, 'cm^3/(mol*s)'), n=1.17, Ea=(29562, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(7.17e+04, 'cm^3/(mol*s)'), n=2.19, Ea=(29870, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- Arrhenius(A=(3.46e-02, 'cm^3/(mol*s)'), n=4.04, Ea=(28946, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(8.91e+04, 'cm^3/(mol*s)'), n=2.00, Ea=(24641, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.36e+07, 'cm^3/(mol*s)'), n=1.40, Ea=(26390, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(5.09e+08, 'cm^3/(mol*s)'), n=0.99, Ea=(28353, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.73e+08, 'cm^3/(mol*s)'), n=1.17, Ea=(29562, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(7.17e+04, 'cm^3/(mol*s)'), n=2.19, Ea=(29870, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(3.46e-02, 'cm^3/(mol*s)'), n=4.04, Ea=(28946, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
],
),
shortDesc = u"""[Lin2010c]""",
@@ -3194,55 +3178,55 @@
)
entry(
- index = 172,
+ index = 166,
label='NH2 + NO2 <=> N2O + H2O',
- kinetics=Arrhenius(A=(2.2e+11, 'cm^3/(mol*s)'), n=0.11, Ea=(-1186, 'cal/mol'),
- T0=(1, 'K')),
- shortDesc=u"""[Glarborg2018]""",
+ kinetics=Arrhenius(A=(4.3e+17, 'cm^3/(mol*s)'), n=-1.874, Ea=(588, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Glarborg2022]""",
longDesc=
-u"""Reaction 67, Table 9, Source:[Glarborg2018]. Thermochemistry updated using the Active Thermochemical Tables (ATcT) approach.
+u"""
+Part of the "Thermal de-NOx" mechanism
+
+Reaction 67, Table 9, Source:[Glarborg2018]. Thermochemistry updated using the Active Thermochemical Tables (ATcT) approach.
Rate parameters for the gas-phase reaction is surveyed, based on available information from experiments and high-level of theory.
Also was evaluated against experimental data.
-Previously taken from [Marshall2013]
-
-Part of the "Thermal de-NOx" mechanism
- k1a 3 on p. 9019
- T range: 300-2000 K
- calculations done at the RQCISD(T)/CBS(QZ,5Z)//B3LYP/6-311++G(d,p) level of theory
- +UCCSD(T)/cc-pVTZ rovibrational analysis with UCCSD-(T)/CBS(aug-cc-pVQZ′,aug-cc-pV5Z′) energies,
- CCSDT(Q)/cc-pVDZ higher order corrections, CCSD(T,full)/CBS-(TZ,QZ) core−valence corrections,
- CI/aug-cc-pcVTZ relativistic corrections, HF/cc-pVTZ diagonal Born−Oppenheimer corrections,
- and B3LYP/6-311++G(d,p) anharmonic ZPE corrections
+Also available from [Marshall2013]
+k1a 3 on p. 9019
+T range: 300-2000 K
+calculations done at the RQCISD(T)/CBS(QZ,5Z)//B3LYP/6-311++G(d,p) level of theory
++UCCSD(T)/cc-pVTZ rovibrational analysis with UCCSD-(T)/CBS(aug-cc-pVQZ′,aug-cc-pV5Z′) energies,
+CCSDT(Q)/cc-pVDZ higher order corrections, CCSD(T,full)/CBS-(TZ,QZ) core−valence corrections,
+CI/aug-cc-pcVTZ relativistic corrections, HF/cc-pVTZ diagonal Born−Oppenheimer corrections,
+and B3LYP/6-311++G(d,p) anharmonic ZPE corrections
""",
)
entry(
- index = 173,
- label = 'NH2 + NO2 <=> H2NO + NO',
- kinetics = Arrhenius(A=(8.6e+11, 'cm^3/(mol*s)'), n=0.11, Ea=(-1186, 'cal/mol'),
- T0=(1, 'K')),
+ index = 167,
+ label = 'NH2 + NO2 <=> NH2O + NO',
+ kinetics = Arrhenius(A=(8.6e+11, 'cm^3/(mol*s)'), n=0.11, Ea=(-1186, 'cal/mol'), T0=(1, 'K')),
shortDesc = u"""[Glarborg2018]""",
longDesc =
-u"""Reaction 68, Table 9, Source:[Glarborg2018]. Thermochemistry updated using the Active Thermochemical Tables (ATcT) approach.
+u"""
+Part of the "Thermal de-NOx" mechanism
+
+Reaction 68, Table 9, Source:[Glarborg2018]. Thermochemistry updated using the Active Thermochemical Tables (ATcT) approach.
Rate parameters for the gas-phase reaction is surveyed, based on available information from experiments and high-level of theory.
Also was evaluated against experimental data.
-Previously taken from [Marshall2013]
-
-Part of the "Thermal de-NOx" mechanism
- k1a 3 on p. 9019
- T range: 300-2000 K
- calculations done at the RQCISD(T)/CBS(QZ,5Z)//B3LYP/6-311++G(d,p) level of theory
- +UCCSD(T)/cc-pVTZ rovibrational analysis with UCCSD-(T)/CBS(aug-cc-pVQZ′,aug-cc-pV5Z′) energies,
- CCSDT(Q)/cc-pVDZ higher order corrections, CCSD(T,full)/CBS-(TZ,QZ) core−valence corrections,
- CI/aug-cc-pcVTZ relativistic corrections, HF/cc-pVTZ diagonal Born−Oppenheimer corrections,
- and B3LYP/6-311++G(d,p) anharmonic ZPE corrections
+Also available from [Marshall2013]
+k1a 3 on p. 9019
+T range: 300-2000 K
+calculations done at the RQCISD(T)/CBS(QZ,5Z)//B3LYP/6-311++G(d,p) level of theory
++UCCSD(T)/cc-pVTZ rovibrational analysis with UCCSD-(T)/CBS(aug-cc-pVQZ′,aug-cc-pV5Z′) energies,
+CCSDT(Q)/cc-pVDZ higher order corrections, CCSD(T,full)/CBS-(TZ,QZ) core−valence corrections,
+CI/aug-cc-pcVTZ relativistic corrections, HF/cc-pVTZ diagonal Born−Oppenheimer corrections,
+and B3LYP/6-311++G(d,p) anharmonic ZPE corrections
""",
)
entry(
- index = 174,
+ index = 168,
label = "NH2 + NO2 <=> HNNO + OH",
degeneracy = 1,
duplicate = True,
@@ -3268,12 +3252,12 @@
)
entry(
- index = 175,
+ index = 169,
label = "NO2 <=> NO + O",
degeneracy = 1,
kinetics = Lindemann(
- arrheniusHigh = Arrhenius(A=(3.98e+14, 's^-1'), n=0, Ea=(71700, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K')),
- arrheniusLow = Arrhenius(A=(3.98e+15, 'cm^3/(mol*s)'), n=0, Ea=(60000, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K'))),
+ arrheniusHigh=Arrhenius(A=(3.98e+14, 's^-1'), n=0, Ea=(71700, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K')),
+ arrheniusLow=Arrhenius(A=(3.98e+15, 'cm^3/(mol*s)'), n=0, Ea=(60000, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K'))),
elementary_high_p = True,
shortDesc = u"""[Hanson1997]""",
longDesc =
@@ -3286,10 +3270,11 @@
)
entry(
- index = 176,
+ index = 170,
label = "NO2 + NO2 <=> NO + NO + O2",
degeneracy = 1,
- kinetics = Arrhenius(A=(4.51e+12, 'cm^3/(mol*s)'), n=0, Ea=(27600, 'cal/mol'), T0=(1, 'K'), Tmin=(625, 'K'), Tmax=(2100, 'K')),
+ kinetics = Arrhenius(A=(4.51e+12, 'cm^3/(mol*s)'), n=0, Ea=(27600, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(625, 'K'), Tmax=(2100, 'K')),
shortDesc = u"""[Lin1998b]""",
longDesc =
u"""
@@ -3300,10 +3285,11 @@
)
entry(
- index = 177,
+ index = 171,
label = "NO2 + NO2 <=> NO3 + NO",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(25800, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K')),
+ kinetics = Arrhenius(A=(1.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(25800, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(2100, 'K')),
shortDesc = u"""[Hanson1997]""",
longDesc =
u"""
@@ -3314,7 +3300,7 @@
)
entry(
- index = 178,
+ index = 172,
label = "HONO + NO2 <=> HNO3 + NO",
degeneracy = 1,
duplicate = True,
@@ -3337,14 +3323,19 @@
)
entry(
- index = 179,
+ index = 173,
label = "HNO + NO2 <=> HONO + NO",
degeneracy = 1,
- kinetics = Arrhenius(A=(4.42e+04, 'cm^3/(mol*s)'), n=2.64, Ea=(4042, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
- shortDesc = u"""[Lin1998f]""",
+ kinetics = Arrhenius(A=(7.847e+02, 'cm^3/(mol*s)'), n=3.1, Ea=(3882, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
+ shortDesc = u"""[Luo2019]""",
longDesc =
u"""
Part of the "NO2 decomposition" subset
+Based on a shock tube measurement
+
+Also available from [Lin1998f]
+ kinetics = Arrhenius(A=(4.42e+04, 'cm^3/(mol*s)'), n=2.64, Ea=(4042, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
T range: 300-5000 K
calculations done at the B3LYP/6-311G-(d,p)//B3LYP/6-311G(d,p) level of theory
This route produces the cis-HONO, two other routes that produce the trans-HONO product exist, yet their rates are much smaller
@@ -3352,7 +3343,7 @@
)
entry(
- index = 180,
+ index = 174,
label = "N2O + H <=> N2 + OH",
degeneracy = 1,
kinetics = Arrhenius(A=(6.4e+07, 'cm^3/(mol*s)'), n=1.835, Ea=(13492, 'cal/mol'), T0=(1, 'K')),
@@ -3368,10 +3359,11 @@
)
entry(
- index = 181,
+ index = 175,
label = "N2O + CO <=> N2 + CO2",
degeneracy = 1,
- kinetics = Arrhenius(A=(3.2e+11, 'cm^3/(mol*s)'), n=0, Ea=(20330, 'cal/mol'), T0=(1, 'K'), Tmin=(700, 'K'), Tmax=(2500, 'K')),
+ kinetics = Arrhenius(A=(3.2e+11, 'cm^3/(mol*s)'), n=0, Ea=(20330, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(700, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Herron1991]""",
longDesc =
u"""
@@ -3382,10 +3374,11 @@
)
entry(
- index = 182,
+ index = 176,
label = "NO2 + HCO <=> CO + HONO",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.24e+23, 'cm^3/(mol*s)'), n=-3.29, Ea=(2355, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ kinetics = Arrhenius(A=(1.24e+23, 'cm^3/(mol*s)'), n=-3.29, Ea=(2355, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
shortDesc = u"""[Lin1990]""",
longDesc =
u"""
@@ -3396,10 +3389,11 @@
)
entry(
- index = 183,
+ index = 177,
label = "HONO + H <=> H2 + NO2",
degeneracy = 1,
- kinetics = Arrhenius(A=(2.01e+08, 'cm^3/(mol*s)'), n=1.55, Ea=(6614, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3500, 'K')),
+ kinetics = Arrhenius(A=(2.01e+08, 'cm^3/(mol*s)'), n=1.55, Ea=(6614, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3500, 'K')),
shortDesc = u"""[Lin1997a]""",
longDesc =
u"""
@@ -3411,11 +3405,12 @@
)
entry(
- index = 184,
+ index = 178,
label = "NO <=> N + O",
degeneracy = 1,
kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(9.6e+14, 'cm^3/(mol*s)'), n=0, Ea=(148000, 'cal/mol'), T0 = (1, 'K'), Tmin=(2400, 'K'), Tmax=(6200, 'K')),
+ arrheniusLow = Arrhenius(A=(9.6e+14, 'cm^3/(mol*s)'), n=0, Ea=(148000, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(2400, 'K'), Tmax=(6200, 'K')),
efficiencies={'N#N': 1.5, 'O=C=O': 2.5}),
shortDesc = u"""[Herron1991]""",
longDesc =
@@ -3428,10 +3423,11 @@
)
entry(
- index = 185,
+ index = 179,
label = "NO2 + HCO <=> H + CO2 + NO",
degeneracy = 1,
- kinetics = Arrhenius(A=(8.39e+15, 'cm^3/(mol*s)'), n=-0.75, Ea=(1930, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ kinetics = Arrhenius(A=(8.39e+15, 'cm^3/(mol*s)'), n=-0.75, Ea=(1930, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
shortDesc = u"""[Lin1990]""",
longDesc =
u"""
@@ -3442,27 +3438,11 @@
)
entry(
- index = 186,
- label = "HNO + H <=> NO + H2",
- degeneracy = 1,
- kinetics = Arrhenius(A=(4.46e+11, 'cm^3/(mol*s)'), n=0.720, Ea=(655, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""[Page1992]""",
- longDesc =
-u"""
-Part of the "NOx" subset
-T range: 200-3000 K
-calculations done at the CASSCF//(CASSCF and CISD) levels of theory
-Also available (in reverse direction) from Tando and Asaba 1976, as reported by [Herron1991] in T range: 2020-3250 K:
- kinetics = Arrhenius(A=(1.4e+13, 'cm^3/(mol*s)'), n=0, Ea=(56500, 'cal/mol'), T0=(1, 'K')),
-Added as a training reaction to H_Abstraction
-""",
-)
-
-entry(
- index = 187,
+ index = 180,
label = "HONO + H <=> OH + HNO",
degeneracy = 1,
- kinetics = Arrhenius(A=(5.64e+10, 'cm^3/(mol*s)'), n=0.86, Ea=(4970, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3500, 'K')),
+ kinetics = Arrhenius(A=(5.64e+10, 'cm^3/(mol*s)'), n=0.86, Ea=(4970, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3500, 'K')),
shortDesc = u"""[Lin1997a]""",
longDesc =
u"""
@@ -3473,24 +3453,11 @@
)
entry(
- index = 188,
- label = "HONO + H <=> H2O + NO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(8.13e+06, 'cm^3/(mol*s)'), n=1.89, Ea=(3847, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3500, 'K')),
- shortDesc = u"""[Lin1997a]""",
- longDesc =
-u"""
-Part of the "NOx" subset
-T range: 300-3500 K
-G2 and BAC-MP4
-""",
-)
-
-entry(
- index = 189,
+ index = 181,
label = "HONO + HONO <=> H2O + NO2 + NO",
degeneracy = 1,
- kinetics = Arrhenius(A=(3.49e-01, 'cm^3/(mol*s)'), n=3.64, Ea=(12140, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
+ kinetics = Arrhenius(A=(3.49e-01, 'cm^3/(mol*s)'), n=3.64, Ea=(12140, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(5000, 'K')),
shortDesc = u"""[Lin1998c]""",
longDesc =
u"""
@@ -3501,10 +3468,11 @@
)
entry(
- index = 190,
+ index = 182,
label = "HNO3 + H <=> H2 + NO3",
degeneracy = 1,
- kinetics = Arrhenius(A=(5.56e+08, 'cm^3/(mol*s)'), n=1.53, Ea=(16400, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(5.56e+08, 'cm^3/(mol*s)'), n=1.53, Ea=(16400, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin1997b]""",
longDesc =
u"""
@@ -3516,10 +3484,11 @@
)
entry(
- index = 191,
+ index = 183,
label = "HNO3 + H <=> OH + HONO",
degeneracy = 1,
- kinetics = Arrhenius(A=(3.82e+05, 'cm^3/(mol*s)'), n=2.30, Ea=(6977, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(3.82e+05, 'cm^3/(mol*s)'), n=2.30, Ea=(6977, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin1997b]""",
longDesc =
u"""
@@ -3531,10 +3500,11 @@
)
entry(
- index = 192,
+ index = 184,
label = "HNO3 + H <=> H2O + NO2",
degeneracy = 1,
- kinetics = Arrhenius(A=(6.08e+01, 'cm^3/(mol*s)'), n=3.29, Ea=(6286, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(6.08e+01, 'cm^3/(mol*s)'), n=3.29, Ea=(6286, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin1997b]""",
longDesc =
u"""
@@ -3545,85 +3515,74 @@
)
entry(
- index = 193,
- label = "HNNO2 <=> N2O + OH",
- degeneracy = 1,
- kinetics = Arrhenius(A=(7.43e+12, 's^-1'), n=0, Ea=(32220, 'cal/mol'), T0=(1, 'K'),
- Tmin=(500, 'K'), Tmax=(2000, 'K')),
- elementary_high_p = True,
- shortDesc = u"""[Lin1998d]""",
- longDesc =
-u"""
-Part of the "NOx" subset
-T range: 500-2000 K
-calculations done at the B3LYP/6-311D(d,p)//B3LYP/6-311D(d,p) level of theory
-k1b_inf, p. 8892
-k_inf was taken. the study also reports k_200atm and k_1atm.
-""",
-)
-
-entry(
- index = 194,
- label = "NH + NO2 <=> HNNO2",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.42e+16, 'cm^3/(mol*s)'), n=-0.75, Ea=(1226, 'cal/mol'), T0=(1, 'K'),
- Tmin=(500, 'K'), Tmax=(3000, 'K')),
- elementary_high_p = True,
- shortDesc = u"""[Lin1998d]""",
- longDesc =
-u"""
-Part of the "NOx" subset
-T range: 500-3000 K
-calculations done at the B3LYP/6-311D(d,p)//B3LYP/6-311D(d,p) level of theory
-k3a, p. 8893
-No stabilization at low pressures, only K3a_inf is given (k3a_low = 0)
-reverse rate also available from the same study (k1a)
-Added as a training reaction to Birad_R_Recombination
-""",
+ index=185,
+ label="HNNO2 <=> NO2 + NH",
+ kinetics=Arrhenius(A=(1.00e+15, 's^-1'), n=0, Ea=(38160, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
+ elementary_high_p=True,
+ shortDesc=u"""[Lin1998d]""",
+ longDesc=
+ u"""
+ Part of the "NOx" subset
+ k1a,inf
+ B3LYP/6-311D(d,p)//B3LYP/6-311D(d,p)
+
+ [Lin1998d] gave k1a,inf and k1a,1atm. We can fit it into Lindemann form:
+ kinetics=Lindemann(
+ arrheniusHigh=Arrhenius(A=(1.00e+15, 's^-1'), n=0, Ea=(38160, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
+ # arrheniusLow=Arrhenius(A=(6.09e+44, 's^-1'), n=-9.92, Ea=(46900, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K'))), # given in s^-1 units, converted below
+ arrheniusLow=Arrhenius(A=(5.06e+40, 'cm^3/(mol*s)'), n=-9.92, Ea=(46900, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K'))),
+ arrheniusLow (k1a,1atm) was given in s^-1 units, here multiplied by P/RT where P=1bar to get to cm^3/(mol*s) units
+ P/RT = 12.0e+03 cm^3/(mol*K) / T
+ """,
)
entry(
- index = 195,
- label = "NH + NO2 <=> N2O + OH",
- degeneracy = 1,
- kinetics = ThirdBody(
- arrheniusLow = Arrhenius(A=(2.08e+13, 'cm^6/(mol^2*s)'), n=-0.49, Ea=(715, 'cal/mol'), T0 = (1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K'))),
- shortDesc = u"""[Lin1998d]""",
- longDesc =
-u"""
-Part of the "NOx" subset
-T range: 500-3000 K
-calculations done at the B3LYP/6-311D(d,p)//B3LYP/6-311D(d,p) level of theory
-k3b, p. 8893
-No production of N2O at the high pressure limit (k3b_inf = 0)
-""",
+ index=186,
+ label="HNNO2 <=> N2O + OH",
+ kinetics=Arrhenius(A=(7.43e+12, 's^-1'), n=0, Ea=(32220, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
+ elementary_high_p=True,
+ shortDesc=u"""[Lin1998d]""",
+ longDesc=
+ u"""
+ Part of the "NOx" subset
+ k1b,inf
+
+ [Lin1998d] gave k1a,inf and k1a,1atm. We can fit it into Lindemann form:
+ kinetics=Lindemann(
+ arrheniusHigh=Arrhenius(A=(7.43e+12, 's^-1'), n=0, Ea=(32220, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
+ # arrheniusLow=Arrhenius(A=(1.36e+54, 's^-1'), n=-13.16, Ea=(44241, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K'))), # given in s^-1 units, converted below
+ arrheniusLow=Arrhenius(A=(1.13e+50, 'cm^3/(mol*s)'), n=-13.16, Ea=(44241, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K'))),
+ arrheniusLow (k1a,1atm) was given in s^-1 units, here multiplied by P/RT where P=1bar to get to cm^3/(mol*s) units
+ P/RT = 12.0e+03 cm^3/(mol*K) / T
+
+ """,
)
entry(
- index = 196,
- label = "NH + NO2 <=> HNO + NO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.25e+06, 'cm^3/(mol*s)'), n=1.96, Ea=(2345, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""[Lin1998d]""",
- longDesc =
+ index=187,
+ label="NO2 + NH <=> HNO + NO",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(1.25e+06, 'cm^3/(mol*s)'), n=1.96, Ea=(2345, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[Lin1998d]""",
+ longDesc=
u"""
Part of the "NOx" subset
-T range: 300-3000 K
calculations done at the B3LYP/6-311D(d,p)//B3LYP/6-311D(d,p) level of theory
k4, p. 8894
""",
)
entry(
- index = 197,
- label = "HCO + HNO <=> CH2O + NO",
- degeneracy = 1,
- kinetics = Arrhenius(A=(5.83e-01, 'cm^3/(mol*s)'), n=3.84, Ea=(115, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""[Lin2004]""",
- longDesc =
+ index=188,
+ label="HCO + HNO <=> CH2O + NO",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(5.83e-01, 'cm^3/(mol*s)'), n=3.84, Ea=(115, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[Lin2004]""",
+ longDesc=
u"""
Part of the "NOx" subset
-T range: 200-3000 K
calculations done at the G2M//BH&HLYP/6-311G(d, p) level of theory
k1, p. 211
Added as a training reaction to H_Abstraction
@@ -3631,10 +3590,11 @@
)
entry(
- index = 198,
- label = "HCO + HNO <=> H2NO + CO",
+ index = 189,
+ label = "HCO + HNO <=> NH2O + CO",
degeneracy = 1,
- kinetics = Arrhenius(A=(4.90e+01, 'cm^3/(mol*s)'), n=3.27, Ea=(1755, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(4.90e+01, 'cm^3/(mol*s)'), n=3.27, Ea=(1755, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2004]""",
longDesc =
u"""
@@ -3646,17 +3606,18 @@
)
entry(
- index = 199,
- label = "HCO + HNO <=> HNOH + CO",
+ index = 190,
+ label = "HCO + HNO <=> NHOH + CO",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.31e+13, 'cm^3/(mol*s)'), n=-0.205, Ea=(3647, 'cal/mol'), T0=(1, 'K'), Tmin=(1000, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(1.31e+13, 'cm^3/(mol*s)'), n=-0.205, Ea=(3647, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(1000, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2004]""",
longDesc =
u"""
Part of the "NOx" subset
T range: 1000-3000 K
calculations done at the G2M//BH&HLYP/6-311G(d, p) level of theory
-k4(HNOH+CO), p. 213
+k4(NHOH+CO), p. 213
The Low T (200-400 K) rate is:
kinetics = Arrhenius(A=(1.04e-07, 'cm^3/(mol*s)'), n=6.23, Ea=(-3291, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(400, 'K')),
@@ -3666,10 +3627,11 @@
)
entry(
- index = 200,
+ index = 191,
label = "HCO + NO <=> HNO + CO",
degeneracy = 1,
- kinetics = Arrhenius(A=(1.04e+08, 'cm^3/(mol*s)'), n=1.47, Ea=(-1765, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(1.04e+08, 'cm^3/(mol*s)'), n=1.47, Ea=(-1765, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin2005c]""",
longDesc =
u"""
@@ -3683,10 +3645,11 @@
)
entry(
- index = 201,
+ index = 192,
label = "NH3 + HNO3 <=> H2NNO2 + H2O",
degeneracy = 1,
- kinetics = Arrhenius(A=(8.1e-01, 'cm^3/(mol*s)'), n=3.47, Ea=(43060, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ kinetics = Arrhenius(A=(8.1e-01, 'cm^3/(mol*s)'), n=3.47, Ea=(43060, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
shortDesc = u"""[Lin1998e]""",
longDesc =
u"""
@@ -3697,7 +3660,7 @@
)
entry(
- index = 202,
+ index = 193,
label = "NH3 + HNO3 <=> H2NONO + H2O",
degeneracy = 1,
kinetics = Arrhenius(A=(2.32e+01, 'cm^3/(mol*s)'), n=3.50, Ea=(44930, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
@@ -3711,7 +3674,7 @@
)
entry(
- index = 203,
+ index = 194,
label = "CH2O + NO2 <=> HCO + HONO",
degeneracy = 3,
kinetics = Arrhenius(A=(1.42e-07, 'cm^3/(mol*s)'), n=5.64, Ea=(9221, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
@@ -3728,7 +3691,7 @@
)
entry(
- index = 204,
+ index = 195,
label = "CH2O + NO2 <=> HCO + HNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(1.07e-01, 'cm^3/(mol*s)'), n=4.22, Ea=(19852, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
@@ -3743,7 +3706,7 @@
)
entry(
- index = 205,
+ index = 196,
label = "HONO + O3 <=> HNO3 + O2",
degeneracy = 1,
duplicate = True,
@@ -3764,7 +3727,7 @@
)
entry(
- index = 206,
+ index = 197,
label = "O3 <=> O2 + O",
degeneracy = 1,
kinetics = ThirdBody(
@@ -3779,7 +3742,7 @@
)
entry(
- index = 207,
+ index = 198,
label = "HONO + NH3 <=> NH2NO + H2O",
degeneracy = 1,
duplicate = True,
@@ -3800,7 +3763,7 @@
)
entry(
- index = 208,
+ index = 199,
label = "HNO3 + OH <=> H2O + NO3",
degeneracy = 1,
kinetics = Arrhenius(A=(8.73e+00, 'cm^3/(mol*s)'), n=3.50, Ea=(-1667, 'cal/mol'), T0=(1, 'K'), Tmin=(750, 'K'), Tmax=(1500, 'K')),
@@ -3816,9 +3779,8 @@
)
entry(
- index = 209,
- label = "OH + NO2 <=> HNO3",
- degeneracy = 1,
+ index = 200,
+ label = "NO2 + OH <=> HNO3",
kinetics = Lindemann(
arrheniusHigh = Arrhenius(A=(2.85e+15, 'cm^3/(mol*s)'), n=-0.82, Ea=(-42, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K')),
arrheniusLow = Arrhenius(A=(1.20e+42, 'cm^6/(mol^2*s)'), n=-8.8, Ea=(3118, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K'))),
@@ -3827,16 +3789,15 @@
longDesc =
u"""
Part of the "NOx" subset
-k_inf_a on p. 44
-T range: 200-2000 K
Also available from [Lin1998a] at the B3LYP/6-311G(d,p)//B3LYP/6-311G(d,p) level of theory, T range: 300-2000 K (k_inf_a on p. 44):
kinetics = Arrhenius(A=(1.45e+13, 'cm^3/(mol*s)'), n=0, Ea=(-477, 'cal/mol'), T0=(1, 'K')),
+Also available from J. Troe, J. Phys. Chem. A, 2012, 116(24), 6387-6393, doi: 10.1021/jp212095n for 220-430 K
""",
)
entry(
- index = 210,
- label = "OH + NO2 <=> HOONO",
+ index = 201,
+ label = "NO2 + OH <=> HOONO",
degeneracy = 1,
kinetics = Lindemann(
arrheniusHigh = Arrhenius(A=(1.03e+14, 'cm^3/(mol*s)'), n=-0.24, Ea=(-200, 'cal/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K')),
@@ -3852,7 +3813,7 @@
)
entry(
- index = 211,
+ index = 202,
label = "NO2 + OH <=> NO + HO2",
degeneracy = 1,
kinetics = Arrhenius(A=(2.00e+06, 'cm^3/(mol*s)'), n=2.00, Ea=(3000, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
@@ -3868,11 +3829,13 @@
Also available from [Troe1975]:
kinetics = Arrhenius(A=(4.5e+12, 'cm^3/(mol*s)','+|-',1e+12), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(1350, 'K'), Tmax=(1700, 'K')),
+
+Also available from Baulch et al., J.Phys. Chem. Ref. Data, 2005, 34: 757-1397
""",
)
entry(
- index = 212,
+ index = 203,
label = "NO2 + CO <=> NO + CO2",
degeneracy = 1,
kinetics = Arrhenius(A=(8.91e+13, 'cm^3/(mol*s)'), n=0, Ea=(67200, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2000, 'K')),
@@ -3886,42 +3849,45 @@
)
entry(
- index = 213,
- label = "NH + O2 <=> HNO + O",
- degeneracy = 1,
- kinetics = Arrhenius(A=(4.61e+05, 'cm^3/(mol*s)'), n=2.0, Ea=(6500, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3300, 'K')),
- shortDesc = u"""[Miller1992]""",
- longDesc =
+ index=204,
+ label="HNCO + O <=> NCO + OH",
+ kinetics=Arrhenius(A=(3.63e+03, 'cm^3/(mol*s)'), n=2.88, Ea=(10107, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Sarathy2020]""",
+ longDesc=
u"""
-Part of the "NOx" subset
-T range: 300-3300 K
-k3
-BAC-MP4
+Part of the "Prompt NO, NCN subset" mechanism
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
""",
)
entry(
- index = 214,
- label = "NH + O2 <=> NO + OH",
- degeneracy = 1,
- kinetics = Arrhenius(A=(1.28e+06, 'cm^3/(mol*s)'), n=1.5, Ea=(100, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3300, 'K')),
- shortDesc = u"""[Miller1992]""",
- longDesc =
+ index=205,
+ label="NH + O2 <=> NO + OH",
+ kinetics=Arrhenius(A=(1.28e+06, 'cm^3/(mol*s)'), n=1.5, Ea=(100, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3300, 'K')),
+ shortDesc=u"""[Miller1992]""",
+ longDesc=
u"""
Part of the "NOx" subset
-T range: 300-3300 K
k4
BAC-MP4
+
+Also available from R. Talipov et al., J. Phys. Chem. A 2009, 113(23), 6468-6476, doi: 10.1021/jp902527a
+which suggests a significantly lower rate (see rate coefficient on NIST kinetics)
+Experimental data (though old) agree with the [Miller1992] rate.
+
+NOx2018 suggest a different rate, similar to ours but lower above 1100 K, we can consider shifting to that:
+NH+O2=HNO+O 2.4E13 0.000 13850
+! Baulch DL Bowman CT Cobos CJ Cox RA Just Th Kerr JA Pilling MJ Stocker D Troe J Tsang W Walker RW Warnatz J JPCRD 34:757-1397 2005
+! Final value used in P. Glarborg, J.A. Miller, B. Ruscic, S.J. Klippenstein, Prog. Energy Combust. Sci. 67 (2018) 31-68
""",
)
entry(
- index = 215,
- label = "N2O5 + H2O <=> HNO3 + HNO3",
- degeneracy = 1,
- kinetics = Arrhenius(A=(5.73e+07, 'cm^3/(mol*s)'), n=3.354, Ea=(15700, 'cal/mol'), T0=(298, 'K'), Tmin=(180, 'K'), Tmax=(1800, 'K')),
- shortDesc = u"""[Marshall2014]""",
- longDesc =
+ index=206,
+ label="N2O5 + H2O <=> HNO3 + HNO3",
+ kinetics=Arrhenius(A=(5.73e+07, 'cm^3/(mol*s)'), n=3.354, Ea=(15700, 'cal/mol'), T0=(298, 'K'), Tmin=(180, 'K'), Tmax=(1800, 'K')),
+ shortDesc=u"""[Marshall2014]""",
+ longDesc=
u"""
Part of the "NOx" subset
p. 11413
@@ -3931,7 +3897,7 @@
)
entry(
- index = 216,
+ index = 207,
label = "CN + OH <=> NCO + H",
degeneracy = 1,
kinetics = Arrhenius(A=(4.00e+13, 'cm^3/(mol*s)'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K'), Tmin=(1250, 'K'), Tmax=(1863, 'K')),
@@ -3946,7 +3912,7 @@
)
entry(
- index = 217,
+ index = 208,
label = "HCN + O <=> NH + CO",
degeneracy = 1,
kinetics = Arrhenius(A=(5.4e+08, 'cm^3/(mol*s)'), n=1.21, Ea=(7650, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
@@ -3960,38 +3926,75 @@
)
entry(
- index = 218,
- label = "HCN + H <=> H2 + CN",
+ index = 209,
+ label = "HCN + H <=> CN + H2",
degeneracy = 1,
- kinetics = Arrhenius(A=(3.8e+14, 'cm^3/(mol*s)'), n=0, Ea=(24600, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(1000, 'K')),
- shortDesc = u"""[Herron1991]""",
+ kinetics = Arrhenius(A=(2.09e+09, 'cm^3/(mol*s)'), n=1.92, Ea=(26229, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
longDesc =
u"""
Part of the "HCN" subset
-T range: 300-1000 K
-Reviewed by Bailch et al. 1981, as reported by [Herron1991] p. 654
-Added as a training reaction to H_Abstraction
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+
+Also available from [Herron1991], Reviewed by Bailch et al. 1981, as reported by [Herron1991] p. 654
""",
)
entry(
- index = 219,
- label = "HCN + OH <=> H2O + CN",
+ index = 210,
+ label = "HCN + OH <=> CN + H2O",
degeneracy = 1,
- kinetics = Arrhenius(A=(2.2e+07, 'cm^3/(mol*s)'), n=1.5, Ea=(7724, 'cal/mol'), T0=(1, 'K'), Tmin=(298, 'K'), Tmax=(2840, 'K')),
- shortDesc = u"""[Herron1991]""",
+ kinetics = Arrhenius(A=(7.69e+03, 'cm^3/(mol*s)'), n=2.78, Ea=(13054, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
longDesc =
u"""
Part of the "HCN" subset
-T range: 298-2840 K
-Review and reccomendation, p. 656, 13,5(a)
-Added as a training reaction to H_Abstraction
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+
+Also available from [Herron1991], review and recommendation, p. 656, 13,5(a)
""",
)
entry(
- index = 220,
- label = "HCN + OH <=> H + NCOH",
+ index = 211,
+ label = "HCN + HO2 <=> CN + H2O2",
+ degeneracy = 1,
+ kinetics = Arrhenius(A=(4.61e+04, 'cm^3/(mol*s)'), n=2.54, Ea=(41604, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 212,
+ label = "HCN + O2 <=> CN + HO2",
+ degeneracy = 1,
+ kinetics = Arrhenius(A=(4.56e+08, 'cm^3/(mol*s)'), n=2.29, Ea=(88454, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 213,
+ label = "HNCO + OH <=> NCO + H2O",
+ degeneracy = 1,
+ kinetics = Arrhenius(A=(1.15e+00, 'cm^3/(mol*s)'), n=3.64, Ea=(1182, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+Part of the "Prompt NO, NCN subset" mechanism
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 214,
+ label = "HCN + OH <=> NCOH + H",
degeneracy = 1,
kinetics = Arrhenius(A=(3.2e+04, 'cm^3/(mol*s)'), n=2.45, Ea=(12120, 'cal/mol'), T0=(1, 'K'), Tmin=(298, 'K'), Tmax=(2840, 'K')),
shortDesc = u"""[Herron1991]""",
@@ -4004,7 +4007,7 @@
)
entry(
- index = 221,
+ index = 215,
label = "HCN + OH <=> NH2 + CO",
degeneracy = 1,
kinetics = Arrhenius(A=(7.83e-04, 'cm^3/(mol*s)'), n=4.00, Ea=(4000, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
@@ -4020,8 +4023,8 @@
)
entry(
- index = 222,
- label = "HCN + OH <=> H + HNCO",
+ index = 216,
+ label = "HCN + OH <=> HNCO + H",
degeneracy = 1,
kinetics = Arrhenius(A=(5.6e-06, 'cm^3/(mol*s)'), n=4.71, Ea=(-493, 'cal/mol'), T0=(1, 'K'), Tmin=(298, 'K'), Tmax=(2840, 'K')),
shortDesc = u"""[Herron1991]""",
@@ -4034,7 +4037,32 @@
)
entry(
- index = 223,
+ index = 217,
+ label = "HCN + O <=> CN + OH",
+ degeneracy = 1,
+ kinetics = Arrhenius(A=(1.57e+08, 'cm^3/(mol*s)'), n=1.82, Ea=(27825, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+Part of the "Prompt NO" mechanism
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 218,
+ label = "HCN <=> HNC",
+ kinetics = Arrhenius(A=(8.98e+10, 's^-1'), n=0.92, Ea=(42512, 'cal/mol'), T0=(1, 'K')),
+ shortDesc = u"""[Sarathy2020]""",
+ longDesc =
+u"""
+Part of the "HCN" subset
+CCSD(T)/cc-pVTZ and cc-pVQZ // M062X/6-311++G(d,p)
+""",
+)
+
+entry(
+ index = 219,
label = "CH4 + NO2 <=> HONO + CH3",
degeneracy = 1,
kinetics = Arrhenius(A=(1.71e+13, 'cm^3/(mol*s)'), n=0, Ea=(32450, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1650, 'K')),
@@ -4053,7 +4081,7 @@
)
entry(
- index = 224,
+ index = 220,
label = "CH4 + NO2 <=> HNO2 + CH3",
degeneracy = 1,
kinetics = Arrhenius(A=(1.985e+13, 'cm^3/(mol*s)'), n=0, Ea=(36685, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1650, 'K')),
@@ -4071,7 +4099,7 @@
)
entry(
- index = 225,
+ index = 221,
label = "C2H5ONO <=> CH3CHO + HNO",
degeneracy = 1,
kinetics = Arrhenius(A=(9.85e+15, 's^-1'), n=0, Ea=(41760, 'cal/mol'), T0=(1, 'K'),
@@ -4087,7 +4115,6 @@
The A factor is taken from the reaction C2H5ONO <=> C2H5O + NO
The latter is given in reverse in the Nitrogen_Glarborg_Zhang_et_al library:
entry(
- index = 669,
label = "CH3CH2O + NO <=> CH3CH2ONO",
degeneracy = 1,
kinetics = Troe(
@@ -4115,7 +4142,7 @@
)
entry(
- index = 226,
+ index = 222,
label = "HCCO + NO <=> HCNO + CO",
degeneracy = 1,
kinetics = Arrhenius(A=(8.43e+12, 'cm^3/(mol*s)','+|-',1.2e+12), n=0, Ea=(636, 'cal/mol','+|-',60),
@@ -4130,7 +4157,7 @@
)
entry(
- index = 227,
+ index = 223,
label = "HCCO + NO <=> HCN + CO2",
degeneracy = 1,
kinetics = Arrhenius(A=(3.45e+17, 'cm^3/(mol*s)','*|/',1.56), n=-1.65, Ea=(782, 'cal/mol','+|-',75),
@@ -4147,7 +4174,7 @@
)
entry(
- index = 228,
+ index = 224,
label = "C3H8 + NO2 <=> iC3H7 + HONO",
degeneracy = 2,
kinetics = Arrhenius(A=(1.4e+13, 'cm^3/(mol*s)'), n=0, Ea=(33.8, 'kcal/mol'),
@@ -4162,7 +4189,7 @@
)
entry(
- index = 229,
+ index = 225,
label = "C3H8 + NO2 <=> iC3H7 + HNO2",
degeneracy = 2,
kinetics = Arrhenius(A=(3.0e+13, 'cm^3/(mol*s)'), n=0, Ea=(30.3, 'kcal/mol'),
@@ -4176,7 +4203,7 @@
)
entry(
- index = 230,
+ index = 226,
label = "tC4H10 + NO2 <=> tC4H9 + HONO",
degeneracy = 1,
kinetics = Arrhenius(A=(2.1e+13, 'cm^3/(mol*s)'), n=0, Ea=(31.9, 'kcal/mol'),
@@ -4191,7 +4218,7 @@
)
entry(
- index = 231,
+ index = 227,
label = "tC4H10 + NO2 <=> tC4H9 + HNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(2.8e+14, 'cm^3/(mol*s)'), n=0, Ea=(27.6, 'kcal/mol'),
@@ -4205,7 +4232,7 @@
)
entry(
- index = 232,
+ index = 228,
label = "C6H6 + NO2 <=> C6H5 + HONO",
degeneracy = 1,
kinetics = Arrhenius(A=(4.3e+14, 'cm^3/(mol*s)'), n=0, Ea=(43.0, 'kcal/mol'),
@@ -4220,7 +4247,7 @@
)
entry(
- index = 233,
+ index = 229,
label = "C6H6 + NO2 <=> C6H5 + HNO2",
degeneracy = 1,
kinetics = Arrhenius(A=(2.5e+14, 'cm^3/(mol*s)'), n=0, Ea=(42.2, 'kcal/mol'),
@@ -4234,223 +4261,197 @@
)
entry(
- index = 234,
- label = 'N2H4 + NH <=> N2H3 + NH2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(6.09e+01, 'cm^3/(mol*s)'), n=3.61, Ea=(24.3, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=230,
+ label='N2H4 + NH <=> N2H3 + NH2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(6.09e+01, 'cm^3/(mol*s)'), n=3.61, Ea=(24.3, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1330)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.2035, dn = +|- 0.0225658, dEa = +|- 0.225133 kJ/mol
Added as training reaction to H-Abstraction
""",
)
entry(
- index = 235,
- label = 'N2H4 + H2NN(S) <=> N4',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(4.73e-01, 'cm^3/(mol*s)'), n=3.55, Ea=(50.6, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=231,
+ label='N2H4 + H2NN(S) <=> N4',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(4.73e-01, 'cm^3/(mol*s)'), n=3.55, Ea=(50.6, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1340)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.23644, dn = +|- 0.0264761, dEa = +|- 0.200697 kJ/mol
""",
)
entry(
- index = 236,
- label = 'N2H4 + H2NN(S) <=> N4c23',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(2.29e+00, 'cm^3/(mol*s)'), n=2.96, Ea=(55.4, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=232,
+ label='N2H4 + H2NN(S) <=> N4c23',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(2.29e+00, 'cm^3/(mol*s)'), n=2.96, Ea=(55.4, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1341)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.23663, dn = +|- 0.0264574, dEa = +|- 0.202208 kJ/mol
""",
)
entry(
- index = 237,
- label = 'N4 <=> NH3 + NH2NHN',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(3.00e+12, 's^-1'), n=0.83, Ea=(178.7, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=233,
+ label='N4 <=> NH3 + NH2NHN',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(3.00e+12, 's^-1'), n=0.83, Ea=(178.7, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1343)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 2.33413, dn = +|- 0.105743, dEa = +|- 0.801565 kJ/mol
Added as training reaction to 1,2_NH3_elimination
""",
)
entry(
- index = 238,
- label = 'N4c23 <=> NH3 + NH2NNH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(4.30e+13, 's^-1'), n=0.26, Ea=(38.7, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=234,
+ label='N4c23 <=> NH3 + NH2NNH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(4.30e+13, 's^-1'), n=0.26, Ea=(38.7, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1344)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.173, dn = +|- 0.0199062, dEa = +|- 0.150895 kJ/mol
Added as training reaction to 1,2_NH3_elimination
""",
)
entry(
- index = 239,
- label = 'N2H3 + N2H3 <=> N2H4 + H2NN(S)',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.11e-01, 'cm^3/(mol*s)'), n=3.21, Ea=(-1.5, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=235,
+ label='N2H3 + N2H3 <=> N2H4 + H2NN(S)',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.11e-01, 'cm^3/(mol*s)'), n=3.21, Ea=(-1.5, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1342b)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.02199, dn = +|- 0.00271314, dEa = +|- 0.0205664 kJ/mol
""",
)
entry(
- index = 240,
- label = 'NH2NHN <=> NH3 + N2',
- elementary_high_p = True,
+ index=236,
+ label='NH2NHN <=> NH3 + N2',
+ elementary_high_p=True,
allow_max_rate_violation=True,
- kinetics = Arrhenius(A=(7.17e+08, 's^-1'), n=3.54, Ea=(48.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ kinetics=Arrhenius(A=(7.17e+08, 's^-1'), n=3.54, Ea=(48.2, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
Calculated by alongd (xq1444)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 2.36471, dn = +|- 0.107367, dEa = +|- 0.813875 kJ/mol
Added as training reaction to 1,2_NH3_elimination
""",
)
entry(
- index = 241,
- label = 'NH2NNH <=> NH3 + N2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(4.90e+09, 's^-1'), n=1.34, Ea=(142.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=237,
+ label='NH2NNH <=> NH3 + N2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(4.90e+09, 's^-1'), n=1.34, Ea=(142.2, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
Calculated by alongd (xq1445)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.61639, dn = +|- 0.0584997, dEa = +|- 0.583637 kJ/mol
Added as training reaction to 1,3_NH3_elimination
""",
)
entry(
- index = 242,
- label = 'N2H3 + NH2 <=> H2NN(T) + NH3',
- kinetics = Arrhenius(A=(3.10e+00, 'cm^3/(mol*s)'), n=3.43, Ea=(-8.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=238,
+ label='N3 <=> H2NN(S) + NH3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.04e+10, 's^-1'), n=1.14, Ea=(177.1, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
-Calculated by alongd (xq1453)
+Calculated by alongd (xq1457)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.13644, dn = +|- 0.0159552, dEa = +|- 0.120945 kJ/mol
-Added as training reaction to H-Abstraction
+Added as training reaction to 1,2_NH3_elimination
""",
)
entry(
- index = 244,
- label = 'N3 <=> H2NN(S) + NH3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.04e+10, 's^-1'), n=1.14, Ea=(177.1, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=239,
+ label='NH2NHN <=> NH2NNH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.50e+08, 's^-1'), n=1.44, Ea=(168.1, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
-Calculated by alongd (xq1457)
+Calculated by alongd (xq1458)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Added as training reaction to 1,2_NH3_elimination
""",
)
entry(
- index = 245,
- label = 'NH2NHN <=> NH2NNH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.50e+08, 's^-1'), n=1.44, Ea=(168.1, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=240,
+ label='N3 <=> N2H2 + NH3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.40e+09, 's^-1'), n=0.92, Ea=(213.3, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
-Calculated by alongd (xq1458)
+Calculated by alongd (xq1460)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.73206, dn = +|- 0.0669199, dEa = +|- 0.667643 kJ/mol
+Added as training reaction to 1,3_NH3_elimination
""",
)
entry(
- index = 246,
- label = 'N3 <=> N2H2 + NH3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.40e+09, 's^-1'), n=0.92, Ea=(213.3, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
-u"""
-Calculated by alongd (xq1460)
-opt, freq: wB97x-D3/6-311++G(3df,3pd)
-sp: CCSD(T)-F12a/aug-cc-pVTZ
-rotors: B3LYP/6-311++G(3df,3pd)
-Added as training reaction to 1,3_NH3_elimination
-""",
-)
-
-entry(
- index = 247,
- label = 'N3c <=> N2H2 + NH3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(6.57e+11, 's^-1'), n=0.57, Ea=(41.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=241,
+ label='N3c <=> N2H2 + NH3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(6.57e+11, 's^-1'), n=0.57, Ea=(41.2, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1463)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -4460,13 +4461,13 @@
)
entry(
- index = 248,
- label = 'N3 <=> N3c',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(7.94e+09, 's^-1'), n=0.85, Ea=(103.9, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=242,
+ label='N3 <=> N3c',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(7.94e+09, 's^-1'), n=0.85, Ea=(103.9, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1465)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
@@ -4476,189 +4477,210 @@
)
entry(
- index = 249,
+ index = 243,
label = 'N4 <=> NH2NNH + NH3',
elementary_high_p = True,
kinetics = Arrhenius(A=(7.70e+10, 's^-1'), n=0.84, Ea=(214.1, 'kJ/mol'),
T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ shortDesc=u"""[GrinbergDana2019]""",
longDesc =
u"""
Calculated by alongd (xq1472)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 3.06808, dn = +|- 0.139852, dEa = +|- 1.06012 kJ/mol
Added as training reaction to 1,3_NH3_elimination
""",
)
entry(
- index = 250,
- label = 'H2NN(T) <=> H2NN(S)',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1e+12, 's^-1'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
- shortDesc = u"""est.""",
- longDesc =
+ index=244,
+ label='H2NN(T) <=> H2NN(S)',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1e+12, 's^-1'), n=0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc=
u"""
An estimated rate for the fast H2NN(T) transition into the stable H2NN(S) form
""",
)
entry(
- index = 251,
- label = 'H2NN(S) <=> N2H2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(3.77e+07, 's^-1'), n=1.75, Ea=(179.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/cc-pVTZ//B3LYP/6-311G(2d,d,p)""",
- longDesc =
+ index=245,
+ label='H2NN(S) <=> N2H2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(3.77e+07, 's^-1'), n=1.75, Ea=(179.2, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/cc-pVTZ//B3LYP/6-311G(2d,d,p)""",
+ longDesc=
u"""
Calculated by alongd (xc1097)
opt, freq: B3LYP/6-311G(2d,d,p)
sp: CCSD(T)-F12/cc-pVTZ
-Fitted to 51 data points; dA = *|/ 2.61343, dn = +|- 0.117033, dEa = +|- 1.16761 kJ/mol
""",
)
entry(
- index = 252,
- label = 'N4c12 <=> N4c23',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.74e+10, 's^-1'), n=0.91, Ea=(74.4, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=246,
+ label='N4c12 <=> N4c23',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.74e+10, 's^-1'), n=0.91, Ea=(74.4, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1476)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 2.65741, dn = +|- 0.121925, dEa = +|- 0.924226 kJ/mol
""",
)
entry(
- index = 253,
- label = 'N4 <=> N4c12',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(7.90e+11, 's^-1'), n=0.59, Ea=(158.6, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=247,
+ label='N4 <=> N4c12',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(7.90e+11, 's^-1'), n=0.59, Ea=(158.6, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1476)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.24889, dn = +|- 0.0277259, dEa = +|- 0.210171 kJ/mol
""",
)
entry(
- index = 254,
- label = 'NH2NNH <=> NHNHNH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.47e+09, 's^-1'), n=1.03, Ea=(258.0, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=248,
+ label='NH2NNH <=> NHNHNH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.47e+09, 's^-1'), n=1.03, Ea=(258.0, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
Calculated by alongd (xq1481)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.0909, dn = +|- 0.0108533, dEa = +|- 0.0822714 kJ/mol
""",
)
entry(
- index = 255,
- label = 'cN3H3 <=> NHNHNH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.23e+12, 's^-1'), n=0.56, Ea=(132.2, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=249,
+ label='cN3H3 <=> NHNHNH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.23e+12, 's^-1'), n=0.56, Ea=(132.2, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
Calculated by alongd (xq1481)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.0909, dn = +|- 0.0108533, dEa = +|- 0.0822714 kJ/mol
""",
)
entry(
- index = 256,
- label = 'N2H4 <=> NH3NH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.34e+11, 's^-1'), n=0.86, Ea=(64.5, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
-u"""
-Tautomerization of Hydrazine into iminoammonium
-CCSD(T)//CBS-QB3
-Table 3, R2
-""",
+ index=250,
+ label='N2H4 <=> NH3NH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.34e+11, 's^-1'), n=0.86, Ea=(64.5, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
+ u"""
+ Tautomerization of Hydrazine into iminoammonium
+ CCSD(T)//CBS-QB3
+ Table 3, R2
+ """,
)
entry(
- index = 257,
- label = 'N2H4 <=> H2NN(S) + H2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(5.38e+09, 's^-1'), n=1.255, Ea=(75.3, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
-u"""
-CCSD(T)//CBS-QB3
-Table 3, R3
-""",
+ index=251,
+ label='N2H4 <=> H2NN(S) + H2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(5.38e+09, 's^-1'), n=1.255, Ea=(75.3, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
+ u"""
+ CCSD(T)//CBS-QB3
+ Table 3, R3
+ """,
)
entry(
- index = 258,
- label = 'N2H4 <=> N2H2 + H2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(8.70e+12, 's^-1'), n=0, Ea=(52.9, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
-u"""
-CCSD(T)//CBS-QB3
-Table 3, R3
-Employed a lower TS1 calculated at CBS-QB3.
-Also, a rate constant with a higher TS1 was showed in Table 3.
- kinetics = Arrhenius(A=(8.70e+12, 's^-1'), n=0.0, Ea=(92.9, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
-""",
+ index=252,
+ label='N2H4 <=> N2H2 + H2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(8.70e+12, 's^-1'), n=0, Ea=(52.9, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
+ u"""
+ CCSD(T)//CBS-QB3
+ Table 3, R3
+ Employed a lower TS1 calculated at CBS-QB3.
+ Also, a rate constant with a higher TS1 was showed in Table 3.
+ kinetics = Arrhenius(A=(8.70e+12, 's^-1'), n=0.0, Ea=(92.9, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ """,
)
entry(
- index = 259,
- label = 'NH3NH <=> NH3 + NH',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(1.10e+09, 's^-1'), n=1.64, Ea=(20.7, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
-u"""
-CCSD(T)//CBS-QB3
-Table 3, R5
-""",
+ index=253,
+ label="N2H4 + NH2 <=> N2H3 + NH3",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(3.79e+01, 'cm^3/(mol*s)'), n=3.44, Ea=(-574, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Glarborg2023]""",
+ longDesc=
+ u"""
+ CCSD(T)-F12b/cc-pVTZ-F12//M062X/6-311+G(2df,2p)
+ R1
+ """,
)
entry(
- index = 260,
- label = 'NH3NH <=> N2H2 + H2',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(5.75e+10, 's^-1'), n=1.01, Ea=(33.8, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
+ index=254,
+ label="N2H4 + H <=> NH3 + NH2",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(3.01e+05, 'cm^3/(mol*s)'), n=2.07, Ea=(8012, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Glarborg2023]""",
+ longDesc=
+ u"""
+ CCSD(T)-F12b/cc-pVTZ-F12//M062X/6-311+G(2df,2p)
+ """,
+)
+
+entry(
+ index=255,
+ label='NH3NH <=> NH3 + NH',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(1.10e+09, 's^-1'), n=1.64, Ea=(20.7, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
+ u"""
+ N2H4 PES
+ CCSD(T)//CBS-QB3
+ Table 3, R5
+ """,
+)
+
+entry(
+ index=256,
+ label='NH3NH <=> N2H2 + H2',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(5.75e+10, 's^-1'), n=1.01, Ea=(33.8, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
u"""
+ N2H4 PES
CCSD(T)//CBS-QB3
See Table 3, R6
Employed the reaction path to trans-N2H2.
@@ -4669,26 +4691,27 @@
)
entry(
- index = 261,
- label = 'NH3NH <=> N2H3 + H',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(3.37e+2, 's^-1'), n=2.82, Ea=(2.2, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
+ index=257,
+ label='NH3NH <=> N2H3 + H',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(3.37e+2, 's^-1'), n=2.82, Ea=(2.2, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
u"""
+ N2H4 PES
CCSD(T)//CBS-QB3
See Table 3, R8
""",
)
entry(
- index = 262,
- label = 'N2H2 + H2 <=> N2 + H2 + H2',
- kinetics = Arrhenius(A=(3.22e+6, 'cm^3/(mol*s)'), n=1.80, Ea=(21.4, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Bozzelli2010]""",
- longDesc =
+ index=258,
+ label='N2H2 + H2 <=> N2 + H2 + H2',
+ kinetics=Arrhenius(A=(3.22e+6, 'cm^3/(mol*s)'), n=1.80, Ea=(21.4, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Bozzelli2010]""",
+ longDesc=
u"""
CCSD(T)//CBS-QB3
See Table 3, R9
@@ -4697,13 +4720,13 @@
)
entry(
- index = 263,
- label = 'NH3NH + H2 <=> NH3 + NH3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(9.03e+5, 'cm^3/(mol*s)'), n=2.59, Ea=(22.9, 'kcal/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
- shortDesc = u"""[Hwang2003]""",
- longDesc =
+ index=259,
+ label='NH3NH + H2 <=> NH3 + NH3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(9.03e+5, 'cm^3/(mol*s)'), n=2.59, Ea=(22.9, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Hwang2003]""",
+ longDesc=
u"""
Calculated at G2M(MP2)//MP2/6-31G
See Table 4, R12
@@ -4711,46 +4734,44 @@
)
entry(
- index = 264,
- label = 'NH2 + N2H2(T) <=> NH + N2H3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(4.22e-02, 'cm^3/(mol*s)'), n=4.05, Ea=(52.1, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=260,
+ label='NH2 + N2H2(T) <=> NH + N2H3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(4.22e-02, 'cm^3/(mol*s)'), n=4.05, Ea=(52.1, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
+ longDesc=
u"""
Calculated by alongd (xq1485)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.35051, dn = +|- 0.0366059, dEa = +|- 0.365208 kJ/mol
""",
)
entry(
- index = 265,
- label = 'H2NN(S) + NH3 <=> N2H2 + NH3',
- elementary_high_p = True,
- kinetics = Arrhenius(A=(2.07e-01, 'cm^3/(mol*s)'), n=3.64, Ea=(31.1, 'kJ/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""CCSD(T)-F12a/aug-cc-pVTZ//wB97x-D3/6-311++G(3df,3pd)""",
- longDesc =
+ index=261,
+ label='H2NN(S) + NH3 <=> N2H2 + NH3',
+ elementary_high_p=True,
+ kinetics=Arrhenius(A=(2.07e-01, 'cm^3/(mol*s)'), n=3.64, Ea=(31.1, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
u"""
Calculated by alongd (xq1507)
opt, freq: wB97x-D3/6-311++G(3df,3pd)
sp: CCSD(T)-F12a/aug-cc-pVTZ
rotors: B3LYP/6-311++G(3df,3pd)
-Fitted to 51 data points; dA = *|/ 1.10125, dn = +|- 0.0117499, dEa = +|- 0.117226 kJ/mol
""",
)
entry(
- index = 266,
- label = 'H2NN(S) + O <=> NH2 + NO',
- kinetics = Arrhenius(A=(3.2e+09, 'cm^3/(mol*s)'), n=1.03, Ea=(684.38, 'cal/mol'),
- T0=(1, 'K')),
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
+ index=262,
+ label='H2NN(S) + O <=> NH2 + NO',
+ kinetics=Arrhenius(A=(3.2e+09, 'cm^3/(mol*s)'), n=1.03, Ea=(684.38, 'cal/mol'),
+ T0=(1, 'K')),
+ shortDesc=u"""[DeanBozz2000]""",
+ longDesc=
u"""
Reaction taken from Gas-Phase combustion chemistry W.C. Gardiner, Jr. 2000 edition p. 243 d k30d1,
Molecular electronic structure calculations were carried out to characterize the transition states for reactions between
@@ -4760,12 +4781,12 @@
)
entry(
- index = 267,
- label = 'H2NN(S) + O <=> OH + NNH',
- kinetics = Arrhenius(A=(3.3e+08, 'cm^3/(mol*s)'), n=1.5, Ea=(226.45, 'cal/mol'),
- T0=(1, 'K')),
- shortDesc = u"""[DeanBozz2000]""",
- longDesc =
+ index=263,
+ label='H2NN(S) + O <=> OH + NNH',
+ kinetics=Arrhenius(A=(3.3e+08, 'cm^3/(mol*s)'), n=1.5, Ea=(226.45, 'cal/mol'),
+ T0=(1, 'K')),
+ shortDesc=u"""[DeanBozz2000]""",
+ longDesc=
u"""
Reaction taken from Gas-Phase combustion chemistry W.C. Gardiner, Jr. 2000 edition p. 243 d k30d1,
Molecular electronic structure calculations were carried out to characterize the transition states for reactions between
@@ -4775,47 +4796,27 @@
)
entry(
- index = 268,
+ index = 264,
label = 'NH2 + HO2 <=> HNO + H2O',
- kinetics = Arrhenius(A=(2.5e+12, 'cm^3/(mol*s)'), n=0.0, Ea=(0, 'cal/mol'),
- T0=(1, 'K')),
- shortDesc = u"""[Glarborg2021]""",
+ kinetics = Arrhenius(A=(1.02e+12, 'cm^3/(mol*s)'), n=0.166, Ea=(-938, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc = u"""[Klippenstein2022]""",
longDesc =
u"""
+R1b
+CASPT2/CBS//CASPT2/cc-pVTZ-F12
+
+Also available from [Glarborg2021]:
+kinetics = Arrhenius(A=(2.5e+12, 'cm^3/(mol*s)'), n=0.0, Ea=(0, 'cal/mol'), T0=(1, 'K')),
Reaction 1b, Table 2. Experimental work re-interpreted using direct measurements from
[Altinay&Macdonald2015]. Estimation by theoretical study of the singlet surface and previews studies of the three
important branching reactions.
""",
)
-entry(
- index = 269,
- label = 'HNO + O2 <=> NO + HO2',
- kinetics = Arrhenius(A=(2.0e+13, 'cm^3/(mol*s)'), n=0.0, Ea=(16000, 'cal/mol'),
- T0=(1, 'K')),
- shortDesc = u"""[Glarborg2021]""",
- longDesc =
-u"""
-Reaction 8, Table 2. Experimental work re-interpreted using direct measurements from
-[Altinay&Macdonald2015]. Original data based on [DeanBozz2000]""",
-)
-
-entry(
- index = 270,
- label = 'H2NO + O2 <=> HNO + HO2',
- duplicate=True,
- kinetics = Arrhenius (A=(1.110e0, 'cm^3/(mol*s)'), n=3.489, Ea=(13900, 'cal/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1700, 'K')),
- shortDesc = u"""[Sarathy2022]""",
- longDesc =
-u"""
-Table S2, Reaction R1, doublet surface.
-Optimized and characterized the stationary points of the PESs with the ROCCSD method (Detailed in Table 1).
-""",
-)
entry(
- index = 271,
- label = 'H2NO + O2 <=> HNO(T) + HO2',
+ index = 265,
+ label = 'NH2O + O2 <=> HNO(T) + HO2',
duplicate = True,
kinetics = Arrhenius(A=(4.429e+03, 'cm^3/(mol*s)'), n=2.578, Ea=(29877, 'cal/mol'),
T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
@@ -4828,33 +4829,45 @@
)
entry(
- index = 272,
- label = 'NH2 + HO2 <=> NH3 + O2',
- kinetics = Arrhenius (A=(2.179e+06, 'cm^3/(mol*s)'), n=2.080, Ea=(-4760, 'cal/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1700, 'K')),
- shortDesc = u"""[Sarathy2022]""",
- longDesc =
+ index=266,
+ label='NH2 + HO2 <=> NH3 + O2',
+ kinetics=Arrhenius(A=(2.179e+06, 'cm^3/(mol*s)'), n=2.080, Ea=(-4760, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(1700, 'K')),
+ shortDesc=u"""[Sarathy2022]""",
+ longDesc=
u"""
-Table S2, Reaction R4, triplet surface.
-Optimized and characterized the stationary points of the PESs with the CCSD method (Detailed in Table 1).
+W3X-L
+
+Also available from [Klippenstein2022]:
+kinetics=MultiArrhenius(
+arrhenius=[Arrhenius(A=(6.04e+18, 'cm^3/(mol*s)'), n=-1.91, Ea=(306, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(5.91e+07, 'cm^3/(mol*s)'), n=1.59, Ea=(-1373, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K'))]),
+R1a
+CASPT2/CBS//CASPT2/cc-pVTZ-F12
""",
)
entry(
- index = 273,
- label = 'NH2 + HO2 <=> H2NO + OH',
- kinetics = Arrhenius(A=(3.489e+03, 'cm^3/(mol*s)'), n=2.639, Ea=(23938, 'cal/mol'),
- T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
- shortDesc = u"""[Sarathy2022]""",
- longDesc =
+ index=267,
+ label='NH2 + HO2 <=> NH2O + OH',
+ kinetics=Arrhenius(A=(2.19e+09, 'cm^3/(mol*s)'), n=0.791, Ea=(-1428, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2022]""",
+ longDesc=
u"""
+R1c
+CASPT2/CBS//CASPT2/cc-pVTZ-F12
+
+Also available from [Sarathy2022]:
+kinetics = Arrhenius(A=(3.489e+03, 'cm^3/(mol*s)'), n=2.639, Ea=(23938, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(3000, 'K')),
Table S2, Reaction R5, triplet surface.
Optimized and characterized the stationary points of the PESs with the CCSD(T) method (Detailed in Table 1).
""",
)
entry(
- index = 274,
+ index = 268,
label = 'NH2 + HO2 <=> NH3 + O2(S)',
duplicate=True,
kinetics = Arrhenius(A=(2.851e+01, 'cm^3/(mol*s)'), n=2.937, Ea=(1241, 'cal/mol'),
@@ -4868,16 +4881,16 @@
)
entry(
- index = 275,
- label = 'NO + HO2 <=> HNO3',
- kinetics = Lindemann(
- arrheniusHigh = Arrhenius(A=(2.85e+15, 'cm^3/(mol*s)'), n=-0.82, Ea=(-41.7, 'cal/mol'),
- T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K')),
- arrheniusLow = Arrhenius(A=(1.20e+42, 'cm^6/(mol^2*s)'), n=-8.8, Ea=(3117.9, 'cal/mol'),
- T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K'))),
- elementary_high_p = False,
- shortDesc = u"""[Lin2003d]""",
- longDesc =
+ index=269,
+ label='NO + HO2 <=> HNO3',
+ kinetics=Lindemann(
+ arrheniusHigh=Arrhenius(A=(2.85e+15, 'cm^3/(mol*s)'), n=-0.82, Ea=(-41.7, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K')),
+ arrheniusLow=Arrhenius(A=(1.20e+42, 'cm^6/(mol^2*s)'), n=-8.8, Ea=(3117.9, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K'))),
+ elementary_high_p=True,
+ shortDesc=u"""[Lin2003d]""",
+ longDesc=
u"""
Calculated at the G2(CC)//B3LYP/6-311+G(3df,2p) level of theory using RRKM.
He was used as the 3rd body collider in these computations.
@@ -4885,14 +4898,14 @@
)
entry(
- index = 276,
+ index = 270,
label = 'NO + HO2 <=> HOONO',
kinetics = Lindemann(
arrheniusHigh = Arrhenius(A=(1.03e+14, 'cm^3/(mol*s)'), n=-0.24, Ea=(-198.7, 'cal/mol'),
T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K')),
arrheniusLow = Arrhenius(A=(1.14e+50, 'cm^6/(mol^2*s)'), n=-12.3, Ea=(5136.9, 'cal/mol'),
T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2000, 'K'))),
- elementary_high_p = False,
+ elementary_high_p = True,
shortDesc = u"""[Lin2003d]""",
longDesc =
u"""
@@ -4902,7 +4915,7 @@
)
entry(
- index = 277,
+ index = 271,
label = 'CH3NHNH2 + H <=> CH3NHNH + H2',
kinetics = Arrhenius(A=(1.080e+06, 'cm^3/(mol*s)'), n=2.310, Ea=(1182, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4915,7 +4928,7 @@
)
entry(
- index = 278,
+ index = 272,
label = 'CH3NHNH2 + H <=> CH3NNH2 + H2',
kinetics = Arrhenius(A=(7.270e+06, 'cm^3/(mol*s)'), n=2.030, Ea=(858.1, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4928,7 +4941,7 @@
)
entry(
- index = 279,
+ index = 273,
label = 'CH3NHNH2 + H <=> CH2NHNH2 + H2',
kinetics = Arrhenius(A=(1.170e+04, 'cm^3/(mol*s)'), n=3.080, Ea=(1605, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4941,7 +4954,7 @@
)
entry(
- index = 280,
+ index = 274,
label = 'CH3NHNH2 + NH2 <=> CH3NHNH + NH3',
kinetics = Arrhenius(A=(1.402e+03, 'cm^3/(mol*s)'), n=2.741, Ea=(1030, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4954,7 +4967,7 @@
)
entry(
- index = 281,
+ index = 275,
label = 'CH3NHNH2 + NH2 <=> CH3NNH2 + NH3',
kinetics = Arrhenius(A=(3.092e+02, 'cm^3/(mol*s)'), n=2.884, Ea=(688, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4967,7 +4980,7 @@
)
entry(
- index = 282,
+ index = 276,
label = 'CH3NHNH2 + NH2 <=> CH2NHNH2 + NH3',
kinetics = Arrhenius(A=(2.805e-02, 'cm^3/(mol*s)'), n=4.083, Ea=(1724, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4980,7 +4993,7 @@
)
entry(
- index = 283,
+ index = 277,
label = 'CH3NHNH2 + CH3 <=> CH3NHNH + CH4',
kinetics = Arrhenius(A=(1.180e+01, 'cm^3/(mol*s)'), n=3.550, Ea=(3542.0, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -4993,7 +5006,7 @@
)
entry(
- index = 284,
+ index = 278,
label = 'CH3NHNH2 + CH3 <=> CH3NNH2 + CH4',
kinetics = Arrhenius(A=(9.480e+00, 'cm^3/(mol*s)'), n=3.390, Ea=(8824.1, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5006,7 +5019,7 @@
)
entry(
- index = 285,
+ index = 279,
label = 'CH3NHNH2 + CH3 <=> CH2NHNH2 + CH4',
kinetics = Arrhenius(A=(4.300e-02, 'cm^3/(mol*s)'), n=4.320, Ea=(5814.0, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5019,7 +5032,7 @@
)
entry(
- index = 286,
+ index = 280,
label = 'CH3NHNH2 + NH <=> CH3NHNH + NH2',
kinetics = Arrhenius(A=(9.556e+01, 'cm^3/(mol*s)'), n=3.278, Ea=(3688.8, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5032,7 +5045,7 @@
)
entry(
- index = 287,
+ index = 281,
label = 'CH3NHNH2 + NH <=> CH3NNH2 + NH2',
kinetics = Arrhenius(A=(4.096e+00, 'cm^3/(mol*s)'), n=3.630, Ea=(1941, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5045,7 +5058,7 @@
)
entry(
- index = 288,
+ index = 282,
label = 'CH3NHNH2 + NH <=> CH2NHNH2 + NH2',
kinetics = Arrhenius(A=(4.340e-01, 'cm^3/(mol*s)'), n=4.161, Ea=(6582.8, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5058,7 +5071,7 @@
)
entry(
- index = 289,
+ index = 283,
label = 'CH3NHNH2 <=> CH3NH + NH2',
kinetics = Troe(
arrheniusHigh = Arrhenius(A=(8.413e+25, 's^-1'), n=-3.151, Ea=(64498.8, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5073,7 +5086,7 @@
)
entry(
- index = 290,
+ index = 284,
label = 'CH3NNH + H <=> CH3NN + H2',
kinetics = Arrhenius(A=(7.570e+07, 'cm^3/(mol*s)'), n=1.815, Ea=(707.2, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5086,7 +5099,7 @@
)
entry(
- index = 291,
+ index = 285,
label = 'CH3NNH + CH3 <=> CH3NN + CH4',
kinetics = Arrhenius(A=(4.402e+02, 'cm^3/(mol*s)'), n=3.139, Ea=(-415.9, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5099,7 +5112,7 @@
)
entry(
- index = 292,
+ index = 286,
label = 'CH3NNH + NH2 <=> CH3NN + NH3',
kinetics = Arrhenius(A=(2.338e+02, 'cm^3/(mol*s)'), n=2.945, Ea=(-4162.0, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5112,7 +5125,7 @@
)
entry(
- index = 293,
+ index = 287,
label = 'CH3NNH + H <=> CH2NNH + H2',
kinetics = Arrhenius(A=(5.320e+03, 'cm^3/(mol*s)'), n=3.162, Ea=(9821.6, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5125,7 +5138,7 @@
)
entry(
- index = 294,
+ index = 288,
label = 'CH3NNH + CH3 <=> CH2NNH + CH4',
kinetics = Arrhenius(A=(4.736e-02, 'cm^3/(mol*s)'), n=4.243, Ea=(13944, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5138,7 +5151,7 @@
)
entry(
- index = 295,
+ index = 289,
label = 'CH3NNH + NH2 <=> CH2NNH + NH3',
kinetics = Arrhenius(A=(1.581e-02, 'cm^3/(mol*s)'), n=4.296, Ea=(9291.6, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5151,7 +5164,7 @@
)
entry(
- index = 296,
+ index = 290,
label = 'CH2NNH2 + H <=> CH2NNH + H2',
kinetics = Arrhenius(A=(2.713e+04, 'cm^3/(mol*s)'), n=2.751, Ea=(2485.8, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5164,7 +5177,7 @@
)
entry(
- index = 297,
+ index = 291,
label = 'CH2NNH2 + CH3 <=> CH2NNH + CH4',
kinetics = Arrhenius(A=(1.715e-03, 'cm^3/(mol*s)'), n=4.415, Ea=(3546.4, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5177,7 +5190,7 @@
)
entry(
- index = 298,
+ index = 292,
label = 'CH2NNH2 + NH2 <=> CH2NNH + NH3',
kinetics = Arrhenius(A=(3.809e-01, 'cm^3/(mol*s)'), n=3.704, Ea=(-263.9, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5190,7 +5203,7 @@
)
entry(
- index = 299,
+ index = 293,
label = 'CH2NNH2 + H <=> CHNNH2 + H2',
kinetics = Arrhenius(A=(8.712e+02, 'cm^3/(mol*s)'), n=3.417, Ea=(5302.9, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5203,7 +5216,7 @@
)
entry(
- index = 300,
+ index = 294,
label = 'CH2NNH2 + CH3 <=> CHNNH2 + CH4',
kinetics = Arrhenius(A=(1.492e+00, 'cm^3/(mol*s)'), n=3.649, Ea=(8270.6, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5216,7 +5229,7 @@
)
entry(
- index = 301,
+ index = 295,
label = 'CH2NNH2 + NH2 <=> CHNNH2 + NH3',
kinetics = Arrhenius(A=(2.686e-04, 'cm^3/(mol*s)'), n=4.531, Ea=(2242.2, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5229,7 +5242,7 @@
)
entry(
- index = 302,
+ index = 296,
label = 'CH3NH <=> CH2NH + H',
kinetics = Troe(
arrheniusHigh = Arrhenius(A=(1.236e+04, 's^-1'), n=3.022, Ea=(31798.1, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5244,7 +5257,7 @@
)
entry(
- index = 303,
+ index = 297,
label = 'CH2NH2 <=> CH2NH + H',
kinetics = Troe(
arrheniusHigh = Arrhenius(A=(7.920e+04, 's^-1'), n=2.555, Ea=(38704.2, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5259,7 +5272,7 @@
)
entry(
- index = 304,
+ index = 298,
label = 'CH3NH <=> CH2NH2',
kinetics = PDepArrhenius(
pressures = ([0.001, 0.010, 0.100, 1.000, 10.00, 100.0], 'atm'),
@@ -5281,7 +5294,7 @@
)
# entry(
-# index = 305,
+# index = 299,
# label = 'CH2NH + H <=> H2CN + H2',
# kinetics = Arrhenius(A=(2.400e+08, 'cm^3/(mol*s)'), n=2.445, Ea=(1534, 'cal/mol'),
# T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5296,7 +5309,7 @@
# )
entry(
- index = 306,
+ index = 300,
label = 'CH2NH + H <=> CHNH + H2',
kinetics = Arrhenius(A=(3.679e+04, 'cm^3/(mol*s)'), n=2.738, Ea=(3760.2, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5309,48 +5322,35 @@
)
entry(
- index = 307,
- label = 'N2H3 <=> N2H2 + H',
- kinetics = Troe(
- arrheniusHigh = Arrhenius(A=(1.275e+11, 's^-1'), n=0.819, Ea=(48065.2, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
- arrheniusLow = Arrhenius(A=(3.840e+40, 'cm^3/(mol*s)'), n=-6.880, Ea=(54463.0, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
- alpha=0.842, T1=(28, 'K'), T2=(7298, 'K'), T3=(80000, 'K'), efficiencies={'[Ar]': 1.00, 'N#N': 2.00, 'CNN': 5.00}),
- shortDesc = u"""[Dievart2020]""",
- longDesc =
-u"""
-Table 9
-Calculated at the CCSD(T)/CSB//M06-2x-D3/aug-cc-pVTZ level of theory
-""",
-)
-
-entry(
- index = 308,
+ index = 301,
label = 'N2H3 + H <=> N2H2 + H2',
kinetics = Arrhenius(A=(7.476e+03, 'cm^3/(mol*s)'), n=2.796, Ea=(4684.4, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Dievart2020]""",
longDesc =
u"""
+N2H4 PES
Table 9
Calculated at the CCSD(T)/CSB//M06-2x-D3/aug-cc-pVTZ level of theory
""",
)
entry(
- index = 309,
+ index = 302,
label = 'N2H3 + H <=> H2NN(S) + H2',
kinetics = Arrhenius(A=(6.243e+06, 'cm^3/(mol*s)'), n=1.890, Ea=(246.6, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Dievart2020]""",
longDesc =
u"""
+N2H4 PES
Table 9
Calculated at the CCSD(T)/CSB//M06-2x-D3/aug-cc-pVTZ level of theory
""",
)
entry(
- index = 310,
+ index = 303,
label = 'N2H3 + CH3 <=> N2H2 + CH4',
kinetics = Arrhenius(A=(1.395e+01, 'cm^3/(mol*s)'), n=3.290, Ea=(505.7, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5363,7 +5363,7 @@
)
entry(
- index = 311,
+ index = 304,
label = 'N2H3 + CH3 <=> H2NN(S) + CH4',
kinetics = Arrhenius(A=(4.065e+01, 'cm^3/(mol*s)'), n=3.045, Ea=(1859, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5376,7 +5376,7 @@
)
entry(
- index = 312,
+ index = 305,
label = 'N2H3 + NH2 <=> N2H2 + NH3',
kinetics = Arrhenius(A=(6.075e-01, 'cm^3/(mol*s)'), n=3.574, Ea=(1194, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5389,8 +5389,9 @@
)
entry(
- index = 313,
+ index = 306,
label = 'N2H3 + NH2 <=> H2NN(S) + NH3',
+ duplicate = True,
kinetics = Arrhenius(A=(1.111e+01, 'cm^3/(mol*s)'), n=3.080, Ea=(211.0, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
shortDesc = u"""[Dievart2020]""",
@@ -5402,20 +5403,28 @@
)
entry(
- index = 314,
- label = 'N2H2 + H <=> NNH + H2',
- kinetics = Arrhenius(A=(3.886e+08, 'cm^3/(mol*s)'), n=1.732, Ea=(738.2, 'cal/mol'),
- T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
- shortDesc = u"""[Dievart2020]""",
- longDesc =
-u"""
-Table 9
-Calculated at the CCSD(T)/CSB//M06-2x-D3/aug-cc-pVTZ level of theory
-""",
+ index=307,
+ label="N2H3 + NH2 <=> H2NN(S) + NH3",
+ duplicate=True,
+ kinetics=Chebyshev(
+ coeffs=[
+ [11.8587, -0.720541, -0.135785, 0.00199697],
+ [0.303136, 0.802251, 0.110296, -0.0164717],
+ [-0.0197441, 0.0133575, 0.0483838, 0.0121341],
+ [0.0146729, -0.0808526, -0.0112121, 0.00442436],
+ [0.0408972, -0.0273676, -0.0129358, -0.00137426],
+ [0.0287508, 0.00134059, -0.00304271, -0.0013336]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar'),
+ ),
+ shortDesc=u"""[GrinbergDana2019]""",
+ longDesc=
+ u"""
+ PDep route, showed to be more dominant than the direct H Abstraction route in the "NH3-1" paper.
+ """,
)
entry(
- index = 315,
+ index = 308,
label = 'N2H2 + CH3 <=> NNH + CH4',
kinetics = Arrhenius(A=(1.855e+03, 'cm^3/(mol*s)'), n=3.045, Ea=(904.8, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5428,7 +5437,7 @@
)
entry(
- index = 316,
+ index = 309,
label = 'N2H2 + NH2 <=> NNH + NH3',
kinetics = Arrhenius(A=(2.711e+05, 'cm^3/(mol*s)'), n=2.226, Ea=(-1034, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5441,7 +5450,7 @@
)
entry(
- index = 317,
+ index = 310,
label = 'CH4 + NH2 <=> CH3 + NH3',
kinetics = Arrhenius(A=(1.402e+00, 'cm^3/(mol*s)'), n=3.793, Ea=(7961.5, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5459,7 +5468,7 @@
)
entry(
- index = 318,
+ index = 311,
label = 'C2H6 + NH2 <=> C2H5 + NH3',
kinetics = Arrhenius(A=(1.405e+01, 'cm^3/(mol*s)'), n=3.619, Ea=(5816.0, 'cal/mol'),
T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
@@ -5472,7 +5481,7 @@
)
entry(
- index=319,
+ index=312,
label='HNO2 <=> HONO',
kinetics = PDepArrhenius(
pressures=([1.000E-01, 2.154E-01, 4.641E-01, 1.000E+00, 2.154E+00,
@@ -5496,3 +5505,1962 @@
Computed at the ANL1 level of theory
""",
)
+
+entry(
+ index=313,
+ label='NH2O + OH <=> HNO + H2O',
+ kinetics=Arrhenius(A=(2.14e+15, 'cm^3/(mol*s)'), n=-0.751, Ea=(-464, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2022]""",
+ longDesc=
+u"""
+p. 6
+CASPT2/CBS//CASPT2/cc-pVTZ-F12
+
+Also available from [Glarborg2022]
+Based on an experimental measurement at 298-373 K from https://doi.org/10.1002/kin.550240805
+ kinetics = Arrhenius(A=(1.7e+12, 'cm^3/(mol*s)'), n=0.0, Ea=(-520, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(298, 'K'), Tmax=(373, 'K')),
+""",
+)
+
+entry(
+ index=314,
+ label='NH2O + OH <=> NH2OOH',
+ kinetics=PDepArrhenius(
+ pressures=([0.1, 1, 10, 100, 300], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(6.07E+24, 'cm^3/(mol*s)'), n=-5.64, Ea=(1366, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.37E+26, 'cm^3/(mol*s)'), n=-5.84, Ea=(1303, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(2.18E+28, 'cm^3/(mol*s)'), n=-6.07, Ea=(1528, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.98E+29, 'cm^3/(mol*s)'), n=-6.02, Ea=(1930, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.48E+29, 'cm^3/(mol*s)'), n=-5.82, Ea=(2121, 'cal/mol'), T0=(1, 'K'), Tmin=(250, 'K'), Tmax=(2500, 'K')),
+ ]),
+ shortDesc=u"""[Klippenstein2022]""",
+ longDesc=
+u"""
+CASPT2/CBS//CASPT2/cc-pVTZ-F12
+(The rate expression at 300 bar may be of limited validity due to the effect of non-binary collisions)
+""",
+)
+
+entry(
+ index=315,
+ label='NO + OH <=> HONO',
+ kinetics=Troe(
+ arrheniusHigh=Arrhenius(A=(1.1e+14, 'cm^3/(mol*s)'), n=0.3, Ea=(0.0, 'cal/mol'), T0=(1, 'K')),
+ arrheniusLow=Arrhenius(A=(3.4e+23, 'cm^6/(mol^2*s)'), n=-2.5, Ea=(0.0, 'cal/mol'), T0=(1, 'K')),
+ alpha=0.75, T3=(1e-30, 'K'), T1=(1e+30, 'K'), T2=(1e+30, 'K'),
+ efficiencies={'[Ar]': 1.1, 'N#N': 2.0, 'N': 4.0}),
+ shortDesc=u"""[Troe1998]""",
+ longDesc=
+u"""
+Fit to experimental measurement
+""",
+)
+
+entry(
+ index=316,
+ label="NO + H <=> HNO",
+ degeneracy=1,
+ elementary_high_p=True,
+ kinetics=Troe(
+ arrheniusHigh=Arrhenius(A=(1.5e+15, 'cm^3/(mol*s)'), n=-0.410, Ea=(0, 'cal/mol'), T0=(1, 'K')),
+ arrheniusLow=Arrhenius(A=(2.4e+14, 'cm^6/(mol^2*s)'), n=0.206, Ea=(-1550, 'cal/mol'), T0=(1, 'K')),
+ alpha=0.82, T3=(1e-30, 'K'), T1=(1e+30, 'K'), T2=(1e+30, 'K'), efficiencies={'N#N': 1.6, 'N': 4}),
+ shortDesc=u"""[Glarborg2022]""",
+ longDesc=
+u"""
+Recommended rate by Glarborg2022 (also by the NOx2018 library)
+based on: https://doi.org/10.1002/kin.10137
+""",
+)
+
+entry(
+ index=317,
+ label='NO2 + H <=> NO + OH',
+ kinetics=Arrhenius(A=(1.3e+14, 'cm^3/(mol*s)'), n=0.0, Ea=(362, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Glarborg2022]""",
+ longDesc=
+u"""
+Recommended by Glarborg2022 (also by the NOx2018 library)
+""",
+)
+
+entry(
+ index=318,
+ label='N + HO2 <=> O2 + NH',
+ kinetics=Arrhenius(A=(27.7894, 'cm^3/(mol*s)'), n=3.47248, Ea=(5.49367, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x1
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=319,
+ label='HO2 + NH <=> N + H2O2',
+ kinetics=Arrhenius(A=(0.211726, 'cm^3/(mol*s)'), n=4.02063, Ea=(15.4615, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x2
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=320,
+ label='N + HNO2 <=> NO2 + NH',
+ kinetics=Arrhenius(A=(0.0284234, 'cm^3/(mol*s)'), n=4.42306, Ea=(13.72, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x3
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=321,
+ label='N + HNO <=> NO + NH',
+ kinetics=Arrhenius(A=(9.14196e+06, 'cm^3/(mol*s)'), n=2.17825, Ea=(7.62254, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x4
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=322,
+ label='N + N2H2 <=> NH + NNH',
+ kinetics=Arrhenius(A=(2.18748, 'cm^3/(mol*s)'), n=3.96904, Ea=(16.2408, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x5
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=323,
+ label='N + NH2OH <=> NH + NH2O',
+ kinetics=Arrhenius(A=(4.47106e-05, 'cm^3/(mol*s)'), n=5.05219, Ea=(28.4545, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x6
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=324,
+ label='HNNO + NH <=> NH2NO + N',
+ kinetics=Arrhenius(A=(4.6901e-38, 'cm^3/(mol*s)'), n=14.1294, Ea=(4.17644, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x7
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=325,
+ label='NHOH + N <=> HNO + NH',
+ kinetics=Arrhenius(A=(30.8138, 'cm^3/(mol*s)'), n=3.39795, Ea=(22.6251, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x8
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=326,
+ label='NHOH + NH <=> NH2OH + N',
+ kinetics=Arrhenius(A=(2.85669e-06, 'cm^3/(mol*s)'), n=5.32063, Ea=(14.7829, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x9
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=327,
+ label='N2H3 + NH <=> N2H4 + N',
+ kinetics=Arrhenius(A=(0.000418231, 'cm^3/(mol*s)'), n=4.35534, Ea=(22.4657, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x10
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=328,
+ label='H2NN(T) + NH <=> N2H3 + N',
+ kinetics=Arrhenius(A=(0.015648, 'cm^3/(mol*s)'), n=4.16309, Ea=(11.1711, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x12
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=329,
+ label='NH3O + N <=> NH2O + NH',
+ kinetics=Arrhenius(A=(93489,'cm^3/(mol*s)'), n=2.70273, Ea=(6.99122,'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x13
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=330,
+ label='NH + O2 <=> HNO(T) + O',
+ kinetics=Arrhenius(A=(4.61e+05, 'cm^3/(mol*s)'), n=2.0, Ea=(6500, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3300, 'K')),
+ shortDesc=u"""[Miller1992]""",
+ longDesc=
+ u"""
+ Part of the "NOx" subset
+ k3
+ BAC-MP4
+
+ Also studied by 10.1021/jp902527a
+ """,
+)
+
+entry(
+ index=331,
+ label='NH + HO2 <=> NH2 + O2',
+ duplicate = True,
+ kinetics=MultiArrhenius(
+ arrhenius=[
+ Arrhenius(A=(2.17541e-26, 'cm^3/(mol*s)'), n=11.1378, Ea=(75.2695, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')), # m = 2
+ Arrhenius(A=(3947.27, 'cm^3/(mol*s)'), n=2.95763, Ea=(-5.69126, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')), # m = 4
+ ],
+ ),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x16
+ Combining doublet and quartet surfaces
+ The doublet rate is insignificant relative to the quartet rate
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=332,
+ label='NH + H2O2 <=> HO2 + NH2',
+ kinetics=Arrhenius(A=(0.000171391, 'cm^3/(mol*s)'), n=4.92081, Ea=(14.0127, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x17
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=333,
+ label='NH + HNO2 <=> NO2 + NH2',
+ kinetics=Arrhenius(A=(73.1449, 'cm^3/(mol*s)'), n=3.4912, Ea=(-2.15416, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x19
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=334,
+ label='NH2O + NH <=> HNO + NH2',
+ kinetics=Arrhenius(A=(4251.49, 'cm^3/(mol*s)'), n=2.55939, Ea=(3.73373, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x20
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=335,
+ label='NHOH + NH <=> HNO + NH2',
+ kinetics=Arrhenius(A=(218124, 'cm^3/(mol*s)'), n=2.23762, Ea=(10.844, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x21
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=336,
+ label='N2H3 + NH <=> H2NN(T) + NH2',
+ kinetics=Arrhenius(A=(0.154773, 'cm^3/(mol*s)'), n=3.93965, Ea=(7.28875, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x23
+ This is the multiplicity 4 surface, could not find a TS on the multiplicity 2 surface.
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=337,
+ label='NH + HO2 <=> NH2 + O2',
+ duplicate=True,
+ kinetics=MultiArrhenius(
+ arrhenius=[
+ Arrhenius(A=(2.39523e-26, 'cm^3/(mol*s)'), n=11.126, Ea=(74.9584, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')), # m = 2
+ Arrhenius(A=(4342.52, 'cm^3/(mol*s)'), n=2.94613, Ea=(-5.79413, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')), # m = 4
+ ],
+ ),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x24
+ Combining doublet and quartet surfaces
+ The doublet rate is insignificant relative to the quartet rate
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=338,
+ label='HNNO + NH2 <=> NH2NO + NH',
+ kinetics=Arrhenius(A=(1.27732e-07, 'cm^3/(mol*s)'), n=5.52596, Ea=(42.4149, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x27
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=339,
+ label='NH3 + HO2 <=> H2O2 + NH2',
+ kinetics=Arrhenius(A=(0.132333, 'cm^3/(mol*s)'), n=4.13768, Ea=(77.0269, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x29
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=340,
+ label='N2H3 + H <=> H2NN(T) + H2',
+ kinetics=Arrhenius(A=(4.33362e+07, 'cm^3/(mol*s)'), n=1.78415, Ea=(3.69912, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x30
+ CCSD(T)-F12/cc-pvtz-f12//wb97xd/def2tzvp
+ """,
+)
+
+entry(
+ index=341,
+ label='N2H3 + HO2 <=> H2O2 + H2NN(T)',
+ kinetics=Arrhenius(A=(0.00201841, 'cm^3/(mol*s)'), n=4.04044, Ea=(12.2982, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x32
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=342,
+ label='N2H4 + HO2 <=> N2H3 + H2O2',
+ kinetics=Arrhenius(A=(0.00431241, 'cm^3/(mol*s)'), n=4.18584, Ea=(8.85035, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x33
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=343,
+ label='NHOH + N2H3 <=> N2H4 + HNO',
+ kinetics=Arrhenius(A=(3.63865, 'cm^3/(mol*s)'), n=3.21359, Ea=(-2.75823, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x38
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/Def2TZVP
+ """,
+)
+
+entry(
+ index=344,
+ label='NNH + N2H4 <=> N2H2 + N2H3',
+ kinetics=Arrhenius(A=(8.90238e-06, 'cm^3/(mol*s)'), n=5.00138, Ea=(85.1537, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x39
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=345,
+ label='NHOH + N2H4 <=> NH2OH + N2H3',
+ kinetics=Arrhenius(A=(1.16857e-06, 'cm^3/(mol*s)'), n=4.9734, Ea=(20.0134, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x41
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=346,
+ label='HNNO + N2H4 <=> NH2NO + N2H3',
+ kinetics=Arrhenius(A=(0.946419, 'cm^3/(mol*s)'), n=3.53388, Ea=(35.23, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x42
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=347,
+ label='NH2OH + N2H3 <=> NH2O + N2H4',
+ kinetics=Arrhenius(A=(0.284206, 'cm^3/(mol*s)'), n=3.40875, Ea=(35.7095, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x43
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=348,
+ label='H2NN(T) + NH2OH <=> NH2O + N2H3',
+ kinetics=Arrhenius(A=(0.0436834, 'cm^3/(mol*s)'), n=3.62578, Ea=(0.357605, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x46
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=349,
+ label='H2NN(T) + NH2OH <=> NHOH + N2H3',
+ kinetics=Arrhenius(A=(0.00222861, 'cm^3/(mol*s)'), n=4.08146, Ea=(10.7837, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x48
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=350,
+ label='H2NN(T) + NH2NO <=> HNNO + N2H3',
+ kinetics=Arrhenius(A=(1.98585e-12, 'cm^3/(mol*s)'), n=6.64611, Ea=(4.94275, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x50
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=351,
+ label='HNO + NNH <=> NO + N2H2',
+ kinetics=Arrhenius(A=(6.14893e-05,'cm^3/(mol*s)'), n=4.69717, Ea=(15.0533,'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x51
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=352,
+ label='HNO + NH2O <=> NO + NH2OH',
+ kinetics=Arrhenius(A=(2.05244, 'cm^3/(mol*s)'), n=3.41689, Ea=(-3.88395, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x52
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=353,
+ label='HNO + NHOH <=> NO + NH2OH',
+ kinetics=Arrhenius(A=(0.156126, 'cm^3/(mol*s)'), n=3.85677, Ea=(-7.82899, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x53
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=354,
+ label='HNO + NH2O <=> NO + NH3O',
+ kinetics=Arrhenius(A=(0.000260618, 'cm^3/(mol*s)'), n=4.2297, Ea=(29.7365, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x54
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=355,
+ label='HNO + HNNO <=> NO + NH2NO',
+ kinetics=Arrhenius(A=(515.701, 'cm^3/(mol*s)'), n=3.01312, Ea=(25.5287, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x55
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=356,
+ label='HNO + NO2 <=> NO + HNO2',
+ kinetics=Arrhenius(A=(175.432, 'cm^3/(mol*s)'), n=3.22162, Ea=(31.3428, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x56
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=357,
+ label='NH2O + NO <=> HNO + HNO',
+ kinetics=Arrhenius(A=(0.0176994, 'cm^3/(mol*s)'), n=4.03806, Ea=(84.6598, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x60
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/Def2TZVP
+ ** include, JIM MILLER ESTIMATED, USED BY P. Glarborg, J.A. Miller, B. Ruscic, S.J. Klippenstein, Prog. Energy Combust. Sci. 67 (2018) 31-68.
+ """,
+)
+
+entry(
+ index=358,
+ label='NO2 + N2H2 <=> HNO2 + NNH',
+ kinetics=Arrhenius(A=(0.000226061, 'cm^3/(mol*s)'), n=4.91241, Ea=(18.8216, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x63
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=359,
+ label='NO2 + HNO2 <=> NO2 + HONO',
+ kinetics=Arrhenius(A=(1.74489e-21, 'cm^3/(mol*s)'), n=9.44235, Ea=(70.3648, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x64
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=360,
+ label='NO2 + NH3O <=> HNO2 + NH2O',
+ kinetics=Arrhenius(A=(159.337, 'cm^3/(mol*s)'), n=3.29524, Ea=(19.5154, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x65
+ CCSD(T)-F12/cc-pvtz-f12//wb97xd/def2tzvp
+ """,
+)
+
+entry(
+ index=361,
+ label='HONO + H2NN(T) <=> NO2 + N2H3',
+ kinetics=Arrhenius(A=(0.00955069, 'cm^3/(mol*s)'), n=4.02649, Ea=(12.2148, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x66
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=362,
+ label='HONO + HO2 <=> NO2 + H2O2',
+ kinetics=Arrhenius(A=(4.05386e-06, 'cm^3/(mol*s)'), n=5.04565, Ea=(38.7712, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x67
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=363,
+ label='HNO2 + HO2 <=> NO2 + H2O2',
+ kinetics=Arrhenius(A=(0.00213862, 'cm^3/(mol*s)'), n=4.53665, Ea=(0.871945, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x68
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=364,
+ label='HONO + NHOH <=> NO2 + NH2OH',
+ kinetics=Arrhenius(A=(2731.65, 'cm^3/(mol*s)'), n=2.31076, Ea=(18.3768, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x69
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=365,
+ label='HNO2 + NH2O <=> NO2 + NH2OH',
+ kinetics=Arrhenius(A=(4.95354e-05, 'cm^3/(mol*s)'), n=4.886, Ea=(5.21725, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x71
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=366,
+ label='HNO2 + HNNO <=> NO2 + NH2NO',
+ kinetics=Arrhenius(A=(6.49987e-13, 'cm^3/(mol*s)'), n=7.22365, Ea=(49.3044, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x72
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=367,
+ label='HONO + HNNO <=> NO2 + NH2NO',
+ kinetics=Arrhenius(A=(2.88652e-12, 'cm^3/(mol*s)'), n=6.51918, Ea=(41.6434, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x73
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=368,
+ label='HONO + H <=> NO + H2O',
+ kinetics=Arrhenius(A=(502.962, 'cm^3/(mol*s)'), n=3.30766, Ea=(41.3964, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x74
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=369,
+ label='NO2 + NH2OH <=> HONO + NH2O',
+ kinetics=Arrhenius(A=(1.28207e-07, 'cm^3/(mol*s)'), n=5.41152, Ea=(23.5494, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x76
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=370,
+ label='NNH + HO2 <=> N2H2 + O2',
+ kinetics=Arrhenius(A=(8.30235e-06, 'cm^3/(mol*s)'), n=4.80917, Ea=(5.18822, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x82
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=371,
+ label='NH2O + HO2 <=> NH3O + O2',
+ kinetics=Arrhenius(A=(1.61201e-05, 'cm^3/(mol*s)'), n=4.51311, Ea=(8.62701, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x83
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=372,
+ label='HNNO + HO2 <=> NH2NO + O2',
+ kinetics=Arrhenius(A=(7.88453, 'cm^3/(mol*s)'), n=3.43698, Ea=(5.53848, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x84
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=373,
+ label='NHOH + O2 <=> HNO + HO2',
+ kinetics=Arrhenius(A=(0.000376483, 'cm^3/(mol*s)'), n=4.61521, Ea=(75.8714, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x85
+ CCSD(T)-F12/cc-pVTZ-F12//B2PLYPD3/Def2TZVP
+ ** include, JIM MILLER ESTIMATED, USED BY S.J. Klippenstein et al.
+ """,
+)
+
+entry(
+ index=374,
+ label='N2H2 + HO2 <=> NNH + H2O2',
+ kinetics=Arrhenius(A=(3.36973, 'cm^3/(mol*s)'), n=3.53454, Ea=(-1.79879, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x88
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=375,
+ label='NH2O + N2H2 <=> NNH + NH2OH',
+ kinetics=Arrhenius(A=(0.000204599, 'cm^3/(mol*s)'), n=4.61138, Ea=(11.4773, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x89
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=376,
+ label='NNH + H2NN(S) <=> NNH + N2H2',
+ kinetics=Arrhenius(A=(0.84716, 'cm^3/(mol*s)'), n=3.91169, Ea=(6.1594, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x91
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=377,
+ label='NNH + NH3O <=> NH2O + N2H2',
+ kinetics=Arrhenius(A=(0.0137156,'cm^3/(mol*s)'), n=4.37867, Ea=(35.6236,'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x92
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=378,
+ label='HNNO + N2H2 <=> NNH + NH2NO',
+ kinetics=Arrhenius(A=(3.8865e-11, 'cm^3/(mol*s)'), n=6.78593, Ea=(-0.745059, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x93
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=379,
+ label='NHOH + N2H2 <=> NNH + NH2OH',
+ kinetics=Arrhenius(A=(0.000587998, 'cm^3/(mol*s)'), n=4.5746, Ea=(1.07353, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x94
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=380,
+ label='NH2O + NH3O <=> NH2O + NH2OH',
+ kinetics=Arrhenius(A=(0.93416, 'cm^3/(mol*s)'), n=3.47676, Ea=(-7.87813, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x100
+ CBS-QB3
+ """,
+)
+
+entry(
+ index=381,
+ label='NHOH + NH3O <=> NH2O + NH2OH',
+ kinetics=Arrhenius(A=(9.10472, 'cm^3/(mol*s)'), n=3.66473, Ea=(-5.31092, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x101
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=382,
+ label='HNNO + NH2OH <=> NH2O + NH2NO',
+ kinetics=Arrhenius(A=(1.91127e-12, 'cm^3/(mol*s)'), n=6.6384, Ea=(24.1922, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x103
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=383,
+ label='NHOH + NH2NO <=> HNNO + NH2OH',
+ kinetics=Arrhenius(A=(1.01102e-10, 'cm^3/(mol*s)'), n=6.24238, Ea=(15.2554, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x104
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=384,
+ label='N2H3O + HNO <=> NH2NO + NH2O',
+ kinetics=Arrhenius(A=(1.94018e-06, 'cm^3/(mol*s)'), n=5.14382, Ea=(5.70077, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x107
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/Def2-TZVP
+ """,
+)
+
+entry(
+ index=385,
+ label='NH + N2H3 <=> NH3 + NNH',
+ kinetics=Arrhenius(A=(40824.2, 'cm^3/(mol*s)'), n=2.38262, Ea=(-3.05802, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x108
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=386,
+ label='NO + H2NN(S) <=> NHOH + N2',
+ kinetics=Arrhenius(A=(1.42556, 'cm^3/(mol*s)'), n=3.42359, Ea=(1.9558, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x109
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=387,
+ label='HNO + HO2 <=> HONHOO',
+ kinetics=Arrhenius(A=(3.35255, 'cm^3/(mol*s)'), n=2.96577, Ea=(5.53239,'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x111
+ RMG Family: HO2 Elimination from Peroxy Radical
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=388,
+ label='HNO2 + NH2O <=> HONO + NHOH',
+ kinetics=Arrhenius(A=(0.855685,'cm^3/(mol*s)'), n=3.38223, Ea=(-8.58211, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x112
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=389,
+ label='NH + H <=> H2 + N',
+ kinetics=Arrhenius(A=(1.06816e+08, 'cm^3/(mol*s)'), n=1.64895, Ea=(1.98218, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x113
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+
+ Also available experimentally from [Hanson1990b], R2, p. 860, shock tube.
+ """,
+)
+
+entry(
+ index=390,
+ label='N2H3 + NH2 <=> H2NN(T) + NH3',
+ kinetics=Arrhenius(A=(7.15894, 'cm^3/(mol*s)'), n=3.26667, Ea=(-6.93272, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x116
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=391,
+ label='HNO + O2 <=> NO + HO2',
+ kinetics=Arrhenius(A=(1.90122e-05, 'cm^3/(mol*s)'), n=5.12075, Ea=(31.0018, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ shortDesc=u"""[GrinbergDana2024]""",
+ longDesc=
+ u"""
+ x118
+ CCSD(T)-F12/cc-pvtz-f12//B2PLYPD3/aug-cc-pvtz
+ """,
+)
+
+entry(
+ index=392,
+ label='NH2 + O <=> HNO + H',
+ kinetics=Arrhenius(A=(2.78e+13, 'cm^3/(mol*s)'), n=-0.065, Ea=(-188, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=393,
+ label='NH2 + O <=> NH + OH',
+ kinetics=Arrhenius(A=(3.09e+3, 'cm^3/(mol*s)'), n=2.84, Ea=(-2780, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=394,
+ label='NH2 + O <=> NO + H2',
+ kinetics=Arrhenius(A=(2.38e+12, 'cm^3/(mol*s)'), n=0.112, Ea=(-347, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=395,
+ label="NH + OH <=> HNO + H",
+ kinetics=Arrhenius(A=(1.51e+14, 'cm^3/(mol*s)'), n=-0.314, Ea=(-308, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Part of the "Thermal de-NOx" mechanism
+Table 5
+
+Also available from Klippenstein2009a
+Table 3, p. 10245
+""",
+)
+
+entry(
+ index=396,
+ label='NH + OH <=> NO + H2',
+ kinetics=Arrhenius(A=(3.43e+13, 'cm^3/(mol*s)'), n=-0.303, Ea=(-336, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=397,
+ label="NH + OH <=> H2O + N",
+ kinetics=Arrhenius(A=(2.61e+7, 'cm^3/(mol*s)'), n=1.66, Ea=(-945, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "Thermal de-NOx" mechanism
+ANL1
+Table 5
+
+Also available from Klippenstein2009a:
+Table 3, p. 10245
+ kinetics = ThirdBody(
+ arrheniusLow = Arrhenius(A=(1.59e+07, 'cm^6/(mol^2*s)'), n=1.737, Ea=(-576, 'cal/mol'), T0 = (1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K'))),
+calculated at the (CCSD(T) and CAS+1+2+QC level
+""",
+)
+
+entry(
+ index=398,
+ label="HNO + H <=> NO + H2",
+ kinetics=Arrhenius(A=(1.66e+10, 'cm^3/(mol*s)'), n=1.18, Ea=(-446, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "NOx" subset
+ANL1
+Table 5
+
+Also available from Page1992:
+calculations done at the CASSCF//(CASSCF and CISD) levels of theory
+Also available (in reverse direction) from Tando and Asaba 1976, as reported by [Herron1991] in T range: 2020-3250 K:
+ kinetics = Arrhenius(A=(1.4e+13, 'cm^3/(mol*s)'), n=0, Ea=(56500, 'cal/mol'), T0=(1, 'K')),
+""",
+)
+
+entry(
+ index=399,
+ label="HNO + H <=> NHOH",
+ kinetics=PDepArrhenius(
+ pressures=([0.01, 0.1, 1, 10, 100], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(7.01e+18, 'cm^3/(mol*s)'), n=-3.18, Ea=(2600, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(7.09e+22, 'cm^3/(mol*s)'), n=-3.95, Ea=(2487, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(4.89e+24, 'cm^3/(mol*s)'), n=-4.14, Ea=(3141, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.57e+24, 'cm^3/(mol*s)'), n=-3.79, Ea=(3702, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.03e+24, 'cm^3/(mol*s)'), n=-3.36, Ea=(4710, 'cal/mol'), T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2500, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "NOx" subset
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=400,
+ label='HNO + H <=> NH2O',
+ kinetics=PDepArrhenius(
+ pressures=([0.01, 0.1, 1, 10, 100], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(5.67e+23, 'cm^3/(mol*s)'), n=-4.59, Ea=(5690, 'cal/mol'), T0=(1, 'K'), Tmin=(600, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(5.69e+25, 'cm^3/(mol*s)'), n=-4.80, Ea=(4233, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(2.68e+27, 'cm^3/(mol*s)'), n=-4.94, Ea=(4849, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(2.55e+27, 'cm^3/(mol*s)'), n=-4.63, Ea=(5539, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(4.84e+25, 'cm^3/(mol*s)'), n=-3.87, Ea=(5867, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc=
+u"""
+ANL1
+Table 5
+
+Also available from Glarborg2022:
+arrheniusHigh is based on a 1993 calculation from https://doi.org/10.1063/1.465700
+arrheniusLow is based on [DeanBozz2000]
+""",
+)
+
+entry(
+ index=401,
+ label="NHOH <=> NO + H2",
+ kinetics=PDepArrhenius(
+ pressures=([0.01, 0.1, 1, 10, 100], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(8.49e+25, 's^-1'), n=-4.99, Ea=(53140, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(4.21e+27, 's^-1'), n=-5.20, Ea=(55170, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.47e+28, 's^-1'), n=-5.12, Ea=(56560, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.29e+27, 's^-1'), n=-4.69, Ea=(57520, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(5.76e+24, 's^-1'), n=-3.95, Ea=(58190, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "NOx" subset
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=402,
+ label="NHOH <=> NH2O",
+ kinetics=PDepArrhenius(
+ pressures=([0.01, 0.1, 1, 10, 100], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(2.30e+25, 's^-1'), n=-5.13, Ea=(39080, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.47e+26, 's^-1'), n=-5.15, Ea=(41210, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.45e+27, 's^-1'), n=-5.13, Ea=(43280, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(7.74e+27, 's^-1'), n=-4.93, Ea=(45060, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(3.39e+26, 's^-1'), n=-4.26, Ea=(45960, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "NOx" subset
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=403,
+ label="NH2O <=> NO + H2",
+ kinetics=PDepArrhenius(
+ pressures=([0.01, 0.1, 1, 10, 100], 'bar'),
+ arrhenius=[
+ Arrhenius(A=(1.57e+27, 's^-1'), n=-5.28, Ea=(61560, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.79e+28, 's^-1'), n=-5.32, Ea=(63290, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.42e+28, 's^-1'), n=-5.05, Ea=(64350, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(4.66e+26, 's^-1'), n=-4.39, Ea=(64830, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ Arrhenius(A=(1.65e+23, 's^-1'), n=-3.18, Ea=(64220, 'cal/mol'), T0=(1, 'K'), Tmin=(500, 'K'), Tmax=(2500, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Klippenstein2023]""",
+ longDesc =
+u"""
+Part of the "NOx" subset
+ANL1
+Table 5
+""",
+)
+
+entry(
+ index=404,
+ label="NH2O + HO2 <=> HNO + H2O2",
+ kinetics=Arrhenius(A=(5.41e+04, 'cm^3/(mol*s)'), n=2.16, Ea=(-3597, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Cavallotti2023]""",
+ longDesc =
+u"""
+CASPT2
+Table 4
+""",
+)
+
+entry(
+ index=405,
+ label="NH2O + NO2 <=> HNO + HONO",
+ kinetics=Arrhenius(A=(7.95, 'cm^3/(mol*s)'), n=2.95, Ea=(-3293, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Cavallotti2023]""",
+ longDesc =
+u"""
+CASPT2
+Table 4
+""",
+)
+
+entry(
+ index=406,
+ label="NH2O + O2 <=> HNO + HO2",
+ kinetics=Arrhenius(A=(1.73e05, 'cm^3/(mol*s)'), n=2.19, Ea=(18010, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Cavallotti2023]""",
+ longDesc =
+u"""
+CASPT2
+Table 4
+
+Also available from NOx2018:
+ kinetics=Arrhenius(A=(2.3e02, 'cm^3/(mol*s)'), n=2.994, Ea=(18900, 'cal/mol'), T0=(1, 'K')),
+""",
+)
+
+entry(
+ index=407,
+ label="NH2O + NH2 <=> HNO + NH3",
+ kinetics=Arrhenius(A=(9.49e+12, 'cm^3/(mol*s)'), n=-0.08, Ea=(-1644, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(400, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Cavallotti2023]""",
+ longDesc =
+u"""
+CASPT2
+Table 4
+""",
+)
+
+entry(
+ index=408,
+ label="HNO <=> HNO(T)",
+ kinetics=Arrhenius(A=(1e-5, 's^-1'), n=0, Ea=(10000, 'kcal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc =
+u"""
+RMG estimates this spin-forbidden reaction with a high rate coefficient
+""",
+)
+
+entry(
+ index=409,
+ label="HNO + HNO <=> HNO + HNO(T)",
+ kinetics=Arrhenius(A=(1e-5, 'cm^3/(mol*s)'), n=0, Ea=(10000, 'kcal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc =
+u"""
+RMG estimates this spin-forbidden reaction with a high rate coefficient
+""",
+)
+
+entry(
+ index=410,
+ label="HNO + HNO <=> HNO(T) + HNO(T)",
+ kinetics=Arrhenius(A=(1e-5, 'cm^3/(mol*s)'), n=0, Ea=(10000, 'kcal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc =
+u"""
+RMG estimates this spin-forbidden reaction with a high rate coefficient
+""",
+)
+
+entry(
+ index=411,
+ label="HNO + HNO(T) <=> HNO(T) + HNO(T)",
+ kinetics=Arrhenius(A=(1e-5, 'cm^3/(mol*s)'), n=0, Ea=(10000, 'kcal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc =
+u"""
+RMG estimates this spin-forbidden reaction with a high rate coefficient
+""",
+)
+
+entry(
+ index=412,
+ label="HNO + NHOH <=> HNO(T) + NHOH",
+ kinetics=Arrhenius(A=(1e-5, 'cm^3/(mol*s)'), n=0, Ea=(10000, 'kcal/mol'), T0=(1, 'K')),
+ shortDesc=u"""est.""",
+ longDesc =
+u"""
+RMG estimates this spin-forbidden reaction with a high rate coefficient
+""",
+)
+
+entry(
+ index=413,
+ label='N2H4 + H <=> N2H3 + H2',
+ kinetics=Arrhenius(A=(2.76e+05, 'cm^3/(mol*s)'), n=2.56, Ea=(1218, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(2000, 'K')),
+ shortDesc=u"""[Kanno2020]""",
+ longDesc=
+ u"""
+ Table 4
+ CBS-QB3//DSD-BLYP-D3(BJ)/Def2-TZVP
+ """,
+)
+
+entry(
+ index=414,
+ label='N2H4 + OH <=> N2H3 + H2O',
+ kinetics=PDepArrhenius(
+ pressures=([1, 760, 7600], 'torr'),
+ arrhenius=[
+ Arrhenius(A=(3.49e+08, 'cm^3/(mol*s)'), n=1.544, Ea=(-5.45, 'kJ/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(2.48e+08, 'cm^3/(mol*s)'), n=1.585, Ea=(-5.86, 'kJ/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.62e+08, 'cm^3/(mol*s)'), n=1.637, Ea=(-6.39, 'kJ/mol'), T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(3000, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Huynh2019]""",
+ longDesc=
+ u"""
+ CCSD(T)/CBS//M06-2X/6-311++G(3df,2p)
+ Fitted Arrhenius expressions to raw data given seperately for each of the three pressures in Table S4
+ """,
+)
+
+entry(
+ index=415,
+ label='NH + O2 <=> NO2 + H',
+ kinetics=Arrhenius(A=(2.3e+10, 'cm^3/(mol*s)'), n=0, Ea=(2482, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[DeanBozz2000]""",
+ longDesc=
+ u"""
+ """,
+)
+
+entry(
+ index=416,
+ label="NH + O2 <=> HNOO",
+ degeneracy=1,
+ elementary_high_p=True,
+ kinetics=PDepArrhenius(
+ pressures=([0.1, 1, 10], 'atm'),
+ arrhenius=[
+ Arrhenius(A=(3.5e+23, 'cm^3/(mol*s)'), n=-5, Ea=(2275, 'cal/mol'), T0=(1, 'K')),
+ Arrhenius(A=(3.7e+24, 'cm^3/(mol*s)'), n=-5, Ea=(2295, 'cal/mol'), T0=(1, 'K')),
+ Arrhenius(A=(5.4e+25, 'cm^3/(mol*s)'), n=-5.05, Ea=(2454, 'cal/mol'), T0=(1, 'K')),
+ ],
+ ),
+ shortDesc=u"""[DeanBozz2000]""",
+ longDesc=
+ u"""
+ """,
+)
+
+entry(
+ index=417,
+ label="N2O + H <=> HNNO",
+ kinetics=Arrhenius(A=(8.5e+13, 'cm^3/(mol*s)'), n=0, Ea=(9082, 'cal/mol'), T0=(1, 'K')),
+ elementary_high_p=True,
+ shortDesc=u"""[DeanBozz2000]""",
+ longDesc=
+ u"""
+ Part of the "N2O Pathway"
+ See [DeanBozz2000] 2.6.3, p. 158, and Table 2.6 on p. 163
+ """,
+)
+
+entry(
+ index=418,
+ label="NH2 + OH <=> NH2O + H",
+ kinetics=Arrhenius(A=(6.4e+13, 'cm^3/(mol*s)'), n=0, Ea=(77.1, 'kJ/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Mousavipour2009]""",
+ longDesc=
+ u"""
+ R3
+ CCSD(full)/Aug-cc-pVTZ//B3LYP/6-311++G(3df,3p)
+ Passes through NH2OH*, should be re-computed as PDep
+ This work only gives Arrhenius expressions, unclear whether for 1 bar or as high-P-limit
+ """,
+)
+
+entry(
+ index=419,
+ label="NH2 + OH <=> NHOH + H",
+ duplicate=True,
+ kinetics=MultiArrhenius(
+ arrhenius=[
+ Arrhenius(A=(6.4e+13, 'cm^3/(mol*s)'), n=0, Ea=(131.1, 'kJ/mol'), T0=(1, 'K')),
+ Arrhenius(A=(5.0e+11, 'cm^3/(mol*s)'), n=0, Ea=(107.9, 'kJ/mol'), T0=(1, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Mousavipour2009]""",
+ longDesc=
+ u"""
+ R4 & R5 (cis & trans NHOH)
+ CCSD(full)/Aug-cc-pVTZ//B3LYP/6-311++G(3df,3p)
+ Passes through NH2OH*, should be re-computed as PDep
+ This work only gives Arrhenius expressions, unclear whether for 1 bar or as high-P-limit
+ """,
+)
+
+entry(
+ index=420,
+ label="NO2 + O <=> NO + O2",
+ duplicate=True,
+ kinetics=MultiArrhenius(
+ arrhenius=[
+ Arrhenius(A=(2.589e+15, 'cm^3/(mol*s)'), n=-1.035, Ea=(226, 'J/mol'), T0=(1, 'K'), Tmin=(221, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(4.242e+16, 'cm^3/(mol*s)'), n=-0.861, Ea=(50917, 'J/mol'), T0=(1, 'K'), Tmin=(221, 'K'), Tmax=(3000, 'K')),
+ ],
+ ),
+ shortDesc=u"""[Xu2021]""",
+ longDesc=
+ u"""
+ low-T experiments and high-T W3X-L calculations
+ """,
+)
+
+entry(
+ index=421,
+ label="NH2 <=> NH + H",
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(1.2e+15, 'cm^3/(mol*s)'), n=0, Ea=(318, 'kJ/mol'),
+ T0=(1, 'K'), Tmin=(2200, 'K'), Tmax=(4000, 'K'))),
+ shortDesc=u"""[Wagner1998]""",
+ longDesc=
+ u"""
+ R5a
+ Experimental
+ """,
+)
+
+entry(
+ index=422,
+ label='NH2 + HNO <=> NH3 + NO',
+ duplicate=True,
+ kinetics=Arrhenius(A=(5.9e+02, 'cm^3/(mol*s)'), n=2.950, Ea=(-3469, 'cal/mol'), T0=(1, 'K')),
+ shortDesc=u"""[Glarborg2021]""",
+ longDesc=
+u"""
+Reaction 7, Table 2, Source: [Glarborg2021], Experimental work re-interpreted using direct measurments from
+[Altinay&Macdonald2015]. New parameters obtained with the predicted rate expressions by [ShuchengXu & M.C.Lin2009]
+the potential energy surface of this reaction has been computed by single-point calculations at the
+CCSD(T)/6-311+G(3df,2p) level based on geometries optimized at the CCSD/6-311++G(d,p) level.
+Previously taken from [Lin1996a] in reverse.
+Reaction Part of the "Thermal de-NOx" mechanism
+ k1 on p. 7519
+ T range: 300-5000 K
+ calculations done at the UMP2/6-311G-(d,p)//UMP2/6-311G(d,p) level of theory
+ Added as a training reaction to H_Abstraction
+""",
+)
+
+entry(
+ index=423,
+ label='NH2 + HNO <=> NH3 + NO',
+ duplicate=True,
+ kinetics=PDepArrhenius(
+ pressures=([1, 10, 100, 760, 7600, 76000], 'torr'),
+ arrhenius=[
+ Arrhenius(A=(2.18e-18, 'cm^3/(mol*s)'), n=8.17, Ea=(9064, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(7.71e-17, 'cm^3/(mol*s)'), n=7.79, Ea=(6576, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(2.14e-12, 'cm^3/(mol*s)'), n=6.56, Ea=(3279, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(7.83e-08, 'cm^3/(mol*s)'), n=5.29, Ea=(469, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(5.70e-05, 'cm^3/(mol*s)'), n=4.49, Ea=(-1157, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.31e-03, 'cm^3/(mol*s)'), n=4.11, Ea=(-1938, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ ],
+ ),
+ elementary_high_p = True,
+ shortDesc=u"""[Lin2009c]""",
+ longDesc=
+u"""
+k3, Table II
+CCSD(T)/6-311+G(3df.2p)//CCSD/6-311++G(d,p)
+""",
+)
+
+entry(
+ index=424,
+ label='NH2 + HNO <=> NH2NO + H',
+ duplicate=True,
+ kinetics=PDepArrhenius(
+ pressures=([1, 10, 100, 760, 7600, 76000], 'torr'),
+ arrhenius=[
+ Arrhenius(A=(2.39e+03, 'cm^3/(mol*s)'), n=2.70, Ea=(256, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(7.29e+03, 'cm^3/(mol*s)'), n=2.56, Ea=(18, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(4.07e+04, 'cm^3/(mol*s)'), n=2.36, Ea=(-354, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(2.43e+05, 'cm^3/(mol*s)'), n=2.15, Ea=(-759, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.21e+06, 'cm^3/(mol*s)'), n=1.97, Ea=(-1166, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ Arrhenius(A=(1.95e+06, 'cm^3/(mol*s)'), n=1.92, Ea=(-1312, 'cal/mol'), T0=(1, 'K'), Tmin=(300, 'K'), Tmax=(3000, 'K')),
+ ],
+ ),
+ elementary_high_p = True,
+ shortDesc=u"""[Lin2009c]""",
+ longDesc=
+u"""
+k5, Table II
+CCSD(T)/6-311+G(3df.2p)//CCSD/6-311++G(d,p)
+""",
+)
+
+entry(
+ index=425,
+ label="N2 <=> N + N",
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(1.89e+18, 'cm^3/(mol*s)'), n=-0.8, Ea=(224.95, 'kcal/mol'), T0=(1, 'K')),
+ efficiencies={'O': 16.25, '[C-]#[O+]': 18.75, 'O=C=O': 3.75, 'C': 16.25, 'CC': 16.25}),
+ shortDesc=u"""[Dagaut1998]""",
+ longDesc=
+ u"""
+ R1 Table I
+ Ultimate source is unclear.
+ """,
+)
+
+entry(
+ index=426,
+ label="HNO + HNO <=> N2O + H2O",
+ kinetics=Arrhenius(A=(8.4e+8, 'cm^3/(mol*s)'), n=0.0, Ea=(3102, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(450, 'K'), Tmax=(520, 'K')),
+ shortDesc=u"""[Herron1991]""",
+ longDesc=
+ u"""
+ based on experimental observations by He et al., 10.1021/j100330a028, https://www.osti.gov/biblio/5992224
+ """,
+)
+
+entry(
+ index=427,
+ label="N2H2 <=> NNH + H",
+ kinetics=ThirdBody(
+ arrheniusLow=Arrhenius(A=(3.8e+13, 'cm^3/(mol*s)'), n=1.2, Ea=(293000, 'kJ/mol'), T0=(1, 'K'))),
+ shortDesc = u"""[Mei2019]""",
+ longDesc =
+u"""
+Reinterpreted rate coefficient based on the Miller and Bowman's work (https://doi.org/10.1016/0360-1285(89)90017-8)
+with updated energies by Klippenstein et al. [Klippenstein2009a].
+Actual rate is in their SI:
+N2H2+M=NNH+H+M 3.80E+13 1.2 70100 ! PW ZXY_20190214 estimated from 1979 Miller PECS and the PES calculated by SJK2009 JPCA
+""",
+)
+
+entry(
+ index=428,
+ label="NH3 + NH2 <=> N2H3 + H2",
+ kinetics=Arrhenius(A=(1.3e+13, 'cm^3/(mol*s)'), n=0.0, Ea=(58.8, 'kcal/mol'),
+ T0=(1, 'K'), Tmin=(1000, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Marshall2023]""",
+ longDesc=
+ u"""
+ CBS-APNO//M062X/6-311++G(2df,2p)
+ This is the upper bound for the rate coefficient
+ """,
+)
+
+entry(
+ index=429,
+ label="NH2 + NH <=> NH3 + N",
+ degeneracy=1,
+ kinetics=Arrhenius(A=(9.58e+03, 'cm^3/(mol*s)'), n=2.46, Ea=(107, 'cal/mol'),
+ T0=(1, 'K'), Tmin=(200, 'K'), Tmax=(2500, 'K')),
+ shortDesc=u"""[Klippenstein2009a]""",
+ longDesc=
+u"""
+Part of the "Thermal de-NOx" mechanism
+Table 3, p. 10245
+calculated at the CCSD(T) and CAS+1+2+QC levels
+This is a direct H abstraction on the quartet surface.
+""",
+)
+
+entry(
+ index=430,
+ label="NH3N <=> N2H3",
+ kinetics=Chebyshev(coeffs=[
+ [1.62192, 2.98761, -0.0172178, -0.020185],
+ [2.04996, 1.14874, 0.059362, 0.0133383],
+ [-0.156068, 0.0165013, -0.0612242, -0.00285614],
+ [-0.221207, -0.143405, -0.00936491, 0.0116625],
+ [-0.111577, -0.0462472, 0.0248585, 0.00304618],
+ [-0.0443562, 0.0134884, 0.0114411, -0.00601922]],
+ kunits='s^-1', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=431,
+ label="N2H3 <=> N2H2 + H",
+ kinetics=Chebyshev(coeffs=[
+ [-6.40114, 0.924384, -0.148344, 0.00833621],
+ [14.5099, 0.809594, 0.0374586, -0.0271928],
+ [-0.620903, 0.192692, 0.0680562, 0.00277832],
+ [-0.312241, 0.0135261, 0.0200691, 0.00804536],
+ [-0.133503, -0.0148586, -0.000903153, 0.00233355],
+ [-0.0440289, -0.012249, -0.00402369, -0.000514046]],
+ kunits='s^-1', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ N2H2 here considers both the cis and trans isomers
+ """,
+)
+
+entry(
+ index=432,
+ label="NH3N <=> N2H2 + H",
+ kinetics=Chebyshev(coeffs=[
+ [4.54682, 1.14285, -0.0126825, -0.0172752],
+ [3.52603, 1.07971, 0.0393646, 0.010824],
+ [0.27837, -0.111085, -0.0545489, 0.00264344],
+ [-0.0877328, -0.147749, 0.0140719, 0.0103309],
+ [-0.0843852, -0.000280442, 0.0248168, -0.00447549],
+ [-0.0351658, 0.0360075, -0.00406787, -0.00700382]],
+ kunits='s^-1', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ N2H2 here considers both the cis and trans isomers
+ """,
+)
+
+entry(
+ index=433,
+ label="H2NN(S) + H <=> N2H3",
+ kinetics=Chebyshev(coeffs=[
+ [9.88754, 1.96327, -0.0247589, -0.0130164],
+ [-1.25338, 0.0440103, 0.0294474, 0.0152762],
+ [-0.485991, -0.00550151, -0.00339791, -0.0014976],
+ [-0.189775, -0.0019198, -0.00137436, -0.000796358],
+ [-0.0630576, -0.000352799, -0.000258877, -0.000156026],
+ [-0.0113548, -6.66626e-05, -4.62106e-05, -2.55265e-05]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=434,
+ label="NNH + H2 <=> N2H3",
+ kinetics=Chebyshev(coeffs=[
+ [-19.4481, 1.81065, -0.064276, -0.0253039],
+ [21.5942, 0.261294, 0.0723572, 0.0254092],
+ [0.00869831, -0.0911938, -0.00688808, 0.000544172],
+ [-0.146515, 0.0181683, -0.00270294, -0.0008349],
+ [-0.045904, 0.0027117, 0.000845518, -0.00032746],
+ [0.00161647, -0.0045192, -0.000728323, -0.000335874]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=435,
+ label="NH2 + NH <=> N2H3",
+ kinetics=Chebyshev(coeffs=[
+ [10.6745, 1.97355, -0.0179894, -0.00960556],
+ [-1.3789, 0.0319983, 0.0216463, 0.0114501],
+ [-0.463132, -0.00449203, -0.00288817, -0.00138758],
+ [-0.18362, -0.00113649, -0.000819454, -0.000480313],
+ [-0.0668175, -0.00016533, -0.00012078, -7.23456e-05],
+ [-0.0172416, -4.9409e-05, -3.3737e-05, -1.81469e-05]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=436,
+ label="H2NN(S) + H <=> NH3N",
+ kinetics=Chebyshev(coeffs=[
+ [7.9497, 1.9315, -0.0411005, -0.017793],
+ [1.52556, 0.0759738, 0.0429359, 0.0163813],
+ [-0.0566916, -0.0114325, -0.00353221, 0.00117557],
+ [-0.134646, 0.00557808, 0.00256284, 0.000536153],
+ [-0.0322658, -0.00178426, -0.00103801, -0.000438409],
+ [0.00146998, -0.00181826, -0.00113979, -0.000534662]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=437,
+ label="NNH + H2 <=> NH3N",
+ kinetics=Chebyshev(coeffs=[
+ [-15.387, 1.30288, -0.0651815, -0.0181831],
+ [19.9507, 0.690306, 0.0280544, 0.00353905],
+ [-0.244091, 0.0247959, 0.0284702, 0.0105142],
+ [-0.12177, -0.00866051, 0.00756685, 0.00291541],
+ [-0.0301782, -0.0113845, -0.000934858, -0.000108323],
+ [0.00228621, -0.00838968, -0.00229164, -0.000628152]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=438,
+ label="NH2 + NH <=> NH3N",
+ kinetics=Chebyshev(coeffs=[
+ [5.58313, 1.94247, -0.0383894, -0.0198309],
+ [0.984771, 0.0633005, 0.0418174, 0.0212134],
+ [0.029173, -0.00524497, -0.0030291, -0.00113123],
+ [-0.0607623, 0.000291091, 0.000137828, 2.02387e-05],
+ [-0.0107817, -0.00122639, -0.000828666, -0.000437372],
+ [0.00742192, -0.00109776, -0.00073777, -0.000385944]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=439,
+ label="H2NN(S) + H <=> N2H2 + H",
+ kinetics=Chebyshev(coeffs=[
+ [12.9738, -0.0348987, -0.023535, -0.0123819],
+ [0.0217424, 0.0430664, 0.0288499, 0.0149983],
+ [0.00967646, -0.00629027, -0.00395138, -0.00180868],
+ [0.0182197, -0.00208759, -0.00149626, -0.000868728],
+ [0.0170461, -0.000279099, -0.000208491, -0.000128907],
+ [0.0140615, 2.83061e-05, 1.99858e-05, 1.13116e-05]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ N2H2 here considers both the cis and trans isomers
+ """,
+)
+
+entry(
+ index=440,
+ label="NNH + H2 <=> N2H2 + H",
+ kinetics=Chebyshev(coeffs=[
+ [-16.1853, -0.14093, -0.0565389, -0.0230449],
+ [22.9565, 0.196506, 0.0673816, 0.0248334],
+ [0.404644, -0.0722044, -0.0103491, -0.000799933],
+ [0.0224619, 0.0197784, -0.0008936, -0.00085877],
+ [0.0254218, -0.00200337, 0.000655887, -0.00024798],
+ [0.0181684, -0.00330009, -0.00116873, -0.000353282]],
+kunits = 'cm^3/(mol*s)', Tmin = (300, 'K'), Tmax = (3000, 'K'), Pmin = (0.01, 'bar'), Pmax = (100, 'bar')),
+shortDesc = u"""[Keslin2024]""",
+longDesc =
+u"""
+CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+N2H2 here considers both the cis and trans isomers
+""",
+)
+
+entry(
+ index=441,
+ label="NH2 + NH <=> N2H2 + H",
+ kinetics=Chebyshev(coeffs=[
+ [13.8621, -0.0251585, -0.0171172, -0.0091455],
+ [-0.196208, 0.0312081, 0.0211301, 0.011194],
+ [-0.0307094, -0.00489202, -0.00317176, -0.00154965],
+ [-0.00985134, -0.00118606, -0.000856072, -0.000502599],
+ [-0.00326857, -0.000132028, -9.75936e-05, -5.94732e-05],
+ [-8.726e-06, -1.4787e-05, -9.5427e-06, -4.62632e-06]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ N2H2 here considers both the cis and trans isomers
+ Part of the "Thermal de-NOx" mechanism
+ Also available from [Klippenstein2009a] Table 3, p. 10245 at the (CCSD(T) and CAS+1+2+QC levels
+ Also available from [Hanson1990a]:
+ kinetics = Arrhenius(A=(1.50e+15, 'cm^3/(mol*s)'), n=-0.5, Ea=(0, 'cal/mol'), T0=(1, 'K')),
+ R11 in Table 1, p. 521, T range: 2200-2800 K, Shock Tube
+ """,
+)
+
+entry(
+ index=442,
+ label="NNH + H2 <=> H2NN(S) + H",
+ kinetics=Chebyshev(coeffs=[
+ [-16.2053, -0.0405214, -0.0265622, -0.0133263],
+ [23.3627, 0.0415945, 0.0266499, 0.0128245],
+ [0.268759, -0.000768624, 0.000271828, 0.000812201],
+ [0.0676891, 0.00145817, 0.00076762, 0.000232901],
+ [0.0345808, -0.00194565, -0.00124478, -0.000601945],
+ [0.0144115, -0.00110931, -0.000757264, -0.000404883]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=443,
+ label="NH2 + NH <=> H2NN(S) + H",
+ kinetics=Chebyshev(coeffs=[
+ [10.113, -0.0215131, -0.0146657, -0.00786229],
+ [0.299579, 0.0275924, 0.0187323, 0.00997044],
+ [0.160776, -0.00553739, -0.00365197, -0.00184416],
+ [0.070705, -0.00096409, -0.000705731, -0.000423019],
+ [0.0310207, 3.57075e-05, 2.07511e-05, 7.68633e-06],
+ [0.0138613, 5.45962e-05, 3.92167e-05, 2.28773e-05]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
+
+entry(
+ index=444,
+ label="NH2 + NH <=> NNH + H2",
+ kinetics=Chebyshev(coeffs=[
+ [8.44673, -0.0442893, -0.0298853, -0.0157439],
+ [1.75624, 0.0497843, 0.0333517, 0.0173474],
+ [0.326849, -0.00458896, -0.0028004, -0.00120305],
+ [0.0786275, -8.12092e-05, -0.000116567, -0.000117531],
+ [0.0281961, -0.00123203, -0.000829836, -0.000435818],
+ [0.00876269, -0.000729313, -0.000496902, -0.000266152]],
+ kunits='cm^3/(mol*s)', Tmin=(300, 'K'), Tmax=(3000, 'K'), Pmin=(0.01, 'bar'), Pmax=(100, 'bar')),
+ shortDesc=u"""[Keslin2024]""",
+ longDesc=
+ u"""
+ CCSDT(Q)/aug-cc-pVTZ//B2PLYPD3/aug-cc-pVTZ
+ """,
+)
diff --git a/input/quantum_corrections/data.py b/input/quantum_corrections/data.py
index 5ba8dedf64..369ac77ca3 100644
--- a/input/quantum_corrections/data.py
+++ b/input/quantum_corrections/data.py
@@ -72,695 +72,2326 @@
SOC = {'H': 0.0, 'N': 0.0, 'O': -0.000355, 'C': -0.000135, 'S': -0.000893, 'P': 0.0, 'I': -0.011547226,
'F': -0.000614, 'Si': -0.000682, 'Cl': -0.001338, 'Br': -0.005597, 'B': -0.000046}
+# Atomic energies
# Atomic energies
atom_energies = {
+ # LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian')
+ # H : -0.49529735 +/- 0.00140337 Hartree
+ # C : -37.83264096 +/- 0.00598503 Hartree
+ # N : -54.57008103 +/- 0.00298282 Hartree
+ # O : -75.05233136 +/- 0.00291605 Hartree
+ # F : -99.71592812 +/- 0.00287524 Hartree
+ # S : -397.99037175 +/- 0.00291605 Hartree
+ # Cl: -460.01879078 +/- 0.00269299 Hartree
+ # Br: -2573.73184887 +/- 0.00287524 Hartree
+ "LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.4952973539402791,
+ "C": -37.83264095820032,
+ "N": -54.57008102906242,
+ "O": -75.0523313624635,
+ "F": -99.71592812222478,
+ "S": -397.990371753389,
+ "Cl": -460.01879077751823,
+ "Br": -2573.7318488665655,
+ },
+ # LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian')
+ # H : -0.50109298 +/- 0.00188833 Hartree
+ # C : -37.86564131 +/- 0.00805328 Hartree
+ # N : -54.60589709 +/- 0.00401359 Hartree
+ # O : -75.09767461 +/- 0.00392375 Hartree
+ # F : -99.76836194 +/- 0.00386884 Hartree
+ # S : -398.13451070 +/- 0.00392375 Hartree
+ # Cl: -460.16503889 +/- 0.00362360 Hartree
+ # Br: -2574.14434741 +/- 0.00386884 Hartree
+ "LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.5010929786112002,
+ "C": -37.86564131254805,
+ "N": -54.60589708581987,
+ "O": -75.09767460743954,
+ "F": -99.7683619387686,
+ "S": -398.1345106984206,
+ "Cl": -460.1650388888628,
+ "Br": -2574.144347409212,
+ },
+ # LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian')
+ # H : -0.50127066 +/- 0.00256391 Hartree
+ # C : -37.83595332 +/- 0.01093447 Hartree
+ # N : -54.57089403 +/- 0.00544953 Hartree
+ # O : -75.05961169 +/- 0.00532753 Hartree
+ # F : -99.72396482 +/- 0.00525298 Hartree
+ # S : -398.13368847 +/- 0.00532753 Hartree
+ # Cl: -460.17886366 +/- 0.00492000 Hartree
+ # Br: -2575.43495654 +/- 0.00525298 Hartree
+ "LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.501270660459826,
+ "C": -37.83595332049374,
+ "N": -54.5708940345107,
+ "O": -75.05961168940011,
+ "F": -99.7239648205989,
+ "S": -398.1336884738811,
+ "Cl": -460.1788636621396,
+ "Br": -2575.4349565448424,
+ },
+ # LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian')
+ # H : -0.49941341 +/- 0.00255255 Hartree
+ # C : -37.86243214 +/- 0.01088602 Hartree
+ # N : -54.60642534 +/- 0.00542538 Hartree
+ # O : -75.10164507 +/- 0.00530392 Hartree
+ # F : -99.77104575 +/- 0.00522970 Hartree
+ # S : -398.15971392 +/- 0.00530392 Hartree
+ # Cl: -460.19521670 +/- 0.00489820 Hartree
+ # Br: -2574.39020480 +/- 0.00522970 Hartree
+ "LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.49941341355579333,
+ "C": -37.86243213642464,
+ "N": -54.60642533835312,
+ "O": -75.10164506766172,
+ "F": -99.77104574877968,
+ "S": -398.15971392064284,
+ "Cl": -460.19521669758706,
+ "Br": -2574.3902048042232,
+ },
+ # LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian')
+ # H : -0.49797446 +/- 0.00166053 Hartree
+ # C : -37.84217360 +/- 0.00708178 Hartree
+ # N : -54.58336958 +/- 0.00352942 Hartree
+ # O : -75.07500548 +/- 0.00345041 Hartree
+ # F : -99.74509365 +/- 0.00340212 Hartree
+ # S : -398.12568123 +/- 0.00345041 Hartree
+ # Cl: -460.16277558 +/- 0.00318647 Hartree
+ # Br: -2574.23987744 +/- 0.00340212 Hartree
+ "LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.4979744588432556,
+ "C": -37.84217359939538,
+ "N": -54.58336958010064,
+ "O": -75.07500548464674,
+ "F": -99.74509364612221,
+ "S": -398.12568123352787,
+ "Cl": -460.1627755819003,
+ "Br": -2574.2398774431654,
+ },
+ # LevelOfTheory(method='cbsqb32023',software='gaussian')
+ # H : -0.50034092 +/- 0.00031128 Hartree
+ # C : -37.78372088 +/- 0.00132752 Hartree
+ # N : -54.51985324 +/- 0.00066161 Hartree
+ # O : -74.98822418 +/- 0.00064680 Hartree
+ # F : -99.64381433 +/- 0.00063775 Hartree
+ # S : -397.65864504 +/- 0.00064680 Hartree
+ # Cl: -459.68495386 +/- 0.00059732 Hartree
+ # Br: -2572.82988336 +/- 0.00063775 Hartree
+ "LevelOfTheory(method='cbsqb32023',software='gaussian')": {
+ "H": -0.5003409222835979,
+ "C": -37.78372087719191,
+ "N": -54.519853239756436,
+ "O": -74.98822418407059,
+ "F": -99.64381432983411,
+ "S": -397.65864503995164,
+ "Cl": -459.68495386430743,
+ "Br": -2572.829883362477,
+ },
+ # LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca')
+ # H : -0.49507744 +/- 0.00133101 Hartree
+ # C : -37.77823121 +/- 0.00567644 Hartree
+ # N : -54.50605194 +/- 0.00282902 Hartree
+ # O : -74.97035529 +/- 0.00276569 Hartree
+ # F : -99.62141126 +/- 0.00272699 Hartree
+ # S : -397.63899670 +/- 0.00276569 Hartree
+ # Cl: -459.65767714 +/- 0.00255413 Hartree
+ # Br: -2572.66278410 +/- 0.00272699 Hartree
+ "LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca')": {
+ "H": -0.4950774445359266,
+ "C": -37.77823120503641,
+ "N": -54.50605194139742,
+ "O": -74.97035528634007,
+ "F": -99.62141125652946,
+ "S": -397.63899670124897,
+ "Cl": -459.6576771370135,
+ "Br": -2572.6627840957326,
+ },
+ # LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca')
+ # H : -0.49929550 +/- 0.00057943 Hartree
+ # C : -37.78051567 +/- 0.00245187 Hartree
+ # N : -54.51730377 +/- 0.00120955 Hartree
+ # O : -74.98569618 +/- 0.00118147 Hartree
+ # F : -99.64039375 +/- 0.00116429 Hartree
+ # S : -397.65439293 +/- 0.00118147 Hartree
+ # Cl: -459.67859359 +/- 0.00109037 Hartree
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca')": {
+ "H": -0.4992954979376371,
+ "C": -37.78051566750095,
+ "N": -54.51730377416141,
+ "O": -74.98569617688237,
+ "F": -99.6403937531991,
+ "S": -397.6543929332289,
+ "Cl": -459.6785935923538,
+ },
+ # LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca')
+ # H : -0.50000400 +/- 0.00039344 Hartree
+ # C : -37.78475071 +/- 0.00166487 Hartree
+ # N : -54.52453035 +/- 0.00082131 Hartree
+ # O : -74.99813678 +/- 0.00080225 Hartree
+ # F : -99.65901653 +/- 0.00079058 Hartree
+ # S : -397.66794829 +/- 0.00080225 Hartree
+ # Cl: -459.69651810 +/- 0.00074038 Hartree
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca')": {
+ "H": -0.5000040040073649,
+ "C": -37.78475071221127,
+ "N": -54.52453035051977,
+ "O": -74.99813677621309,
+ "F": -99.65901652526594,
+ "S": -397.6679482878494,
+ "Cl": -459.69651810328156,
+ },
+ # LevelOfTheory(method='g42023',software='gaussian')
+ # H : -0.50146879 +/- 0.00030958 Hartree
+ # C : -37.83455302 +/- 0.00132030 Hartree
+ # N : -54.57384992 +/- 0.00065801 Hartree
+ # O : -75.04536784 +/- 0.00064328 Hartree
+ # F : -99.70482476 +/- 0.00063428 Hartree
+ # S : -397.97981209 +/- 0.00064328 Hartree
+ # Cl: -460.01428276 +/- 0.00059408 Hartree
+ # Br: -2573.58454519 +/- 0.00063428 Hartree
+ "LevelOfTheory(method='g42023',software='gaussian')": {
+ "H": -0.5014687881579099,
+ "C": -37.834553024900075,
+ "N": -54.57384992023186,
+ "O": -75.04536783772086,
+ "F": -99.70482475665925,
+ "S": -397.979812093602,
+ "Cl": -460.0142827624397,
+ "Br": -2573.5845451893033,
+ },
+ # LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian')
+ # H : -0.49612903 +/- 0.00078396 Hartree
+ # C : -37.84647222 +/- 0.00334342 Hartree
+ # N : -54.58607322 +/- 0.00166630 Hartree
+ # O : -75.06672053 +/- 0.00162899 Hartree
+ # F : -99.72959600 +/- 0.00160620 Hartree
+ # S : -398.09635882 +/- 0.00162899 Hartree
+ # Cl: -460.13337063 +/- 0.00150438 Hartree
+ # Br: -2574.15098500 +/- 0.00160620 Hartree
+ "LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.49612903177715456,
+ "C": -37.84647221916602,
+ "N": -54.58607321962029,
+ "O": -75.06672052979316,
+ "F": -99.72959599773542,
+ "S": -398.09635882055426,
+ "Cl": -460.13337063264936,
+ "Br": -2574.150985002579,
+ },
+ # LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian')
+ # H : -0.49690170 +/- 0.00191385 Hartree
+ # C : -37.81768478 +/- 0.00816213 Hartree
+ # N : -54.54253065 +/- 0.00406785 Hartree
+ # O : -75.02012777 +/- 0.00397678 Hartree
+ # F : -99.67260971 +/- 0.00392113 Hartree
+ # S : -397.97739023 +/- 0.00397678 Hartree
+ # Cl: -459.99806998 +/- 0.00367258 Hartree
+ # Br: -2573.81676103 +/- 0.00392113 Hartree
+ "LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.4969017004139632,
+ "C": -37.817684782727156,
+ "N": -54.54253065467822,
+ "O": -75.02012777117845,
+ "F": -99.67260970960807,
+ "S": -397.9773902306994,
+ "Cl": -459.9980699772979,
+ "Br": -2573.8167610348514,
+ },
+ # LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian')
+ # H : -0.49834390 +/- 0.00343200 Hartree
+ # C : -37.87686757 +/- 0.01463668 Hartree
+ # N : -54.61337912 +/- 0.00729463 Hartree
+ # O : -75.10755853 +/- 0.00713133 Hartree
+ # F : -99.77714696 +/- 0.00703153 Hartree
+ # S : -398.14078454 +/- 0.00713133 Hartree
+ # Cl: -460.17037418 +/- 0.00658582 Hartree
+ # Br: -2574.02304834 +/- 0.00703153 Hartree
+ "LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.49834389765055065,
+ "C": -37.87686756587713,
+ "N": -54.61337911655626,
+ "O": -75.10755853424384,
+ "F": -99.77714695716072,
+ "S": -398.14078454240473,
+ "Cl": -460.170374176782,
+ "Br": -2574.023048343404,
+ },
+ # LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem')
+ # H : -0.49338216 +/- 0.00078879 Hartree
+ # C : -37.84772413 +/- 0.00336400 Hartree
+ # N : -54.59351389 +/- 0.00167655 Hartree
+ # O : -75.07749480 +/- 0.00163902 Hartree
+ # F : -99.74200239 +/- 0.00161608 Hartree
+ # S : -398.08208201 +/- 0.00163902 Hartree
+ # Cl: -460.11176718 +/- 0.00151364 Hartree
+ # Br: -2573.97131567 +/- 0.00161608 Hartree
+ "LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem')": {
+ "H": -0.4933821648951652,
+ "C": -37.84772413025377,
+ "N": -54.59351389320949,
+ "O": -75.07749479762596,
+ "F": -99.74200238737181,
+ "S": -398.082082008687,
+ "Cl": -460.11176717720605,
+ "Br": -2573.971315673315,
+ },
+ # LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian')
+ # H : -0.50065579 +/- 0.00155476 Hartree
+ # C : -37.84706210 +/- 0.00663069 Hartree
+ # N : -54.58499595 +/- 0.00330460 Hartree
+ # O : -75.07252406 +/- 0.00323063 Hartree
+ # F : -99.73955551 +/- 0.00318542 Hartree
+ # S : -398.11055304 +/- 0.00323063 Hartree
+ # Cl: -460.14678768 +/- 0.00298350 Hartree
+ # Br: -2574.17453360 +/- 0.00318542 Hartree
+ "LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian')": {
+ "H": -0.5006557872395249,
+ "C": -37.84706210301937,
+ "N": -54.584995947182875,
+ "O": -75.07252406126821,
+ "F": -99.73955550924293,
+ "S": -398.1105530401693,
+ "Cl": -460.1467876783656,
+ "Br": -2574.174533595486,
+ },
"LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem')": {
- 'H': -0.49338216995809725,
- 'C': -37.84772407774059,
- 'N': -54.59351384873174,
- 'O': -75.0774947462408,
- 'F': -99.74200231175924,
- 'S': -398.0820818202818,
- 'Cl': -460.1117669506163,
- 'Br': -2573.9713149056824
+ "H": -0.49338216995809725,
+ "C": -37.84772407774059,
+ "N": -54.59351384873174,
+ "O": -75.0774947462408,
+ "F": -99.74200231175924,
+ "S": -398.0820818202818,
+ "Cl": -460.1117669506163,
+ "Br": -2573.9713149056824,
},
-
-
"LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem')": {
- 'H': -0.49991749801833063,
- 'C': -37.84993993601866,
- 'N': -54.58750889521559,
- 'O': -75.07402423801669,
- 'F': -99.7392410428872,
- 'S': -398.10051734579775,
- 'Cl': -460.1341841971797,
- 'Br': -2574.175384284091
+ "H": -0.49991749801833063,
+ "C": -37.84993993601866,
+ "N": -54.58750889521559,
+ "O": -75.07402423801669,
+ "F": -99.7392410428872,
+ "S": -398.10051734579775,
+ "Cl": -460.1341841971797,
+ "Br": -2574.175384284091,
},
-
"LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem')": {
- 'H': -0.49516021903680546,
- 'C': -37.833878658169624,
- 'N': -54.541699219144505,
- 'O': -75.01524900146931,
- 'F': -99.65948092488345,
- 'S': -397.97912317555034,
- 'Cl': -459.9963616463421,
- 'Br': -2575.1192984500663
+ "H": -0.49516021903680546,
+ "C": -37.833878658169624,
+ "N": -54.541699219144505,
+ "O": -75.01524900146931,
+ "F": -99.65948092488345,
+ "S": -397.97912317555034,
+ "Cl": -459.9963616463421,
+ "Br": -2575.1192984500663,
},
-
# cbs-qb3 and cbs-qb3-paraskevas have the same corrections
"LevelOfTheory(method='cbsqb3',software='gaussian')": {
- 'H': -0.499818 + SOC['H'], 'N': -54.520543 + SOC['N'], 'O': -74.987624 + SOC['O'],
- 'C': -37.785385 + SOC['C'], 'P': -340.817186 + SOC['P'], 'S': -397.657360 + SOC['S']
+ "H": -0.499818 + SOC["H"],
+ "N": -54.520543 + SOC["N"],
+ "O": -74.987624 + SOC["O"],
+ "C": -37.785385 + SOC["C"],
+ "P": -340.817186 + SOC["P"],
+ "S": -397.657360 + SOC["S"],
},
"LevelOfTheory(method='cbsqb3paraskevas',software='gaussian')": {
- 'H': -0.499818 + SOC['H'], 'N': -54.520543 + SOC['N'], 'O': -74.987624 + SOC['O'],
- 'C': -37.785385 + SOC['C'], 'P': -340.817186 + SOC['P'], 'S': -397.657360 + SOC['S']
+ "H": -0.499818 + SOC["H"],
+ "N": -54.520543 + SOC["N"],
+ "O": -74.987624 + SOC["O"],
+ "C": -37.785385 + SOC["C"],
+ "P": -340.817186 + SOC["P"],
+ "S": -397.657360 + SOC["S"],
},
-
"LevelOfTheory(method='m062x',basis='ccpvtz',software='gaussian')": {
- 'H': -0.498135 + SOC['H'], 'N': -54.586780 + SOC['N'], 'O': -75.064242 + SOC['O'],
- 'C': -37.842468 + SOC['C'], 'P': -341.246985 + SOC['P'], 'S': -398.101240 + SOC['S']
+ "H": -0.498135 + SOC["H"],
+ "N": -54.586780 + SOC["N"],
+ "O": -75.064242 + SOC["O"],
+ "C": -37.842468 + SOC["C"],
+ "P": -341.246985 + SOC["P"],
+ "S": -398.101240 + SOC["S"],
},
-
"LevelOfTheory(method='g3',software='gaussian')": {
- 'H': -0.5010030, 'N': -54.564343, 'O': -75.030991, 'C': -37.827717, 'P': -341.116432, 'S': -397.961110
+ "H": -0.5010030,
+ "N": -54.564343,
+ "O": -75.030991,
+ "C": -37.827717,
+ "P": -341.116432,
+ "S": -397.961110,
},
-
# * indicates that the grid size used in the [QChem] electronic
# structure calculation utilized 75 radial points and 434 angular points
# (i.e,, this is specified in the $rem section of the [qchem] input file as: XC_GRID 000075000434)
"LevelOfTheory(method='m08so',basis='mg3s*',software='qchem')": {
- 'H': -0.5017321350 + SOC['H'], 'N': -54.5574039365 + SOC['N'],
- 'O': -75.0382931348 + SOC['O'], 'C': -37.8245648740 + SOC['C'],
- 'P': -341.2444299005 + SOC['P'], 'S': -398.0940312227 + SOC['S']
+ "H": -0.5017321350 + SOC["H"],
+ "N": -54.5574039365 + SOC["N"],
+ "O": -75.0382931348 + SOC["O"],
+ "C": -37.8245648740 + SOC["C"],
+ "P": -341.2444299005 + SOC["P"],
+ "S": -398.0940312227 + SOC["S"],
},
-
"LevelOfTheory(method='klip_1')": {
- 'H': -0.50003976 + SOC['H'], 'N': -54.53383153 + SOC['N'], 'O': -75.00935474 + SOC['O'],
- 'C': -37.79266591 + SOC['C']
+ "H": -0.50003976 + SOC["H"],
+ "N": -54.53383153 + SOC["N"],
+ "O": -75.00935474 + SOC["O"],
+ "C": -37.79266591 + SOC["C"],
},
-
# Klip QCI(tz,qz)
"LevelOfTheory(method='klip_2')": {
- 'H': -0.50003976 + SOC['H'], 'N': -54.53169400 + SOC['N'], 'O': -75.00714902 + SOC['O'],
- 'C': -37.79060419 + SOC['C']
+ "H": -0.50003976 + SOC["H"],
+ "N": -54.53169400 + SOC["N"],
+ "O": -75.00714902 + SOC["O"],
+ "C": -37.79060419 + SOC["C"],
},
-
# Klip QCI(dz,tz)
"LevelOfTheory(method='klip_3')": {
- 'H': -0.50005578 + SOC['H'], 'N': -54.53128140 + SOC['N'], 'O': -75.00356581 + SOC['O'],
- 'C': -37.79025175 + SOC['C']
+ "H": -0.50005578 + SOC["H"],
+ "N": -54.53128140 + SOC["N"],
+ "O": -75.00356581 + SOC["O"],
+ "C": -37.79025175 + SOC["C"],
},
-
# Klip CCSD(T)(tz,qz)
"LevelOfTheory(method='klip_2_cc')": {
- 'H': -0.50003976 + SOC['H'], 'O': -75.00681155 + SOC['O'], 'C': -37.79029443 + SOC['C']
+ "H": -0.50003976 + SOC["H"],
+ "O": -75.00681155 + SOC["O"],
+ "C": -37.79029443 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12_htz',software='molpro')": {
- 'H': -0.499946213243 + SOC['H'], 'N': -54.526406291655 + SOC['N'],
- 'O': -74.995458316117 + SOC['O'], 'C': -37.788203485235 + SOC['C']
+ "H": -0.499946213243 + SOC["H"],
+ "N": -54.526406291655 + SOC["N"],
+ "O": -74.995458316117 + SOC["O"],
+ "C": -37.788203485235 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12_hqz',software='molpro')": {
- 'H': -0.499994558325 + SOC['H'], 'N': -54.526406291655 + SOC['N'],
- 'O': -74.995458316117 + SOC['O'], 'C': -37.788203485235 + SOC['C']
+ "H": -0.499994558325 + SOC["H"],
+ "N": -54.526406291655 + SOC["N"],
+ "O": -74.995458316117 + SOC["O"],
+ "C": -37.788203485235 + SOC["C"],
},
-
# We are assuming that SOC is included in the Bond Energy Corrections
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12',software='molpro')": {
- 'H': -0.50000836574607,
- 'C': -37.784271457731904,
- 'N': -54.523156256858144,
- 'O': -74.99320041804718,
- 'F': -99.6511861642652,
- 'S': -397.6625539051389,
- 'Cl': -459.68886861844055
- },
-
+ "H": -0.50000836574607,
+ "C": -37.784271457731904,
+ "N": -54.523156256858144,
+ "O": -74.99320041804718,
+ "F": -99.6511861642652,
+ "S": -397.6625539051389,
+ "Cl": -459.68886861844055,
+ },
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvtzf12',software='molpro')": {
- 'H': -0.5003554055415579,
- 'C': -37.787690380768844,
- 'N': -54.52874573314225,
- 'O': -75.00314974528959,
- 'F': -99.6658140570029,
- 'S': -397.67549377693314,
- 'Cl': -459.70521576925796
+ "H": -0.5003554055415579,
+ "C": -37.787690380768844,
+ "N": -54.52874573314225,
+ "O": -75.00314974528959,
+ "F": -99.6658140570029,
+ "S": -397.67549377693314,
+ "Cl": -459.70521576925796,
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvqzf12',software='molpro')": {
- 'H': -0.499994558325, 'N': -54.530515226371, 'O': -75.005600062003,
- 'C': -37.789961656228, 'S': -397.676719774973
+ "H": -0.499994558325,
+ "N": -54.530515226371,
+ "O": -75.005600062003,
+ "C": -37.789961656228,
+ "S": -397.676719774973,
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpcvdzf12',software='molpro')": {
- 'H': -0.499811124128 + SOC['H'], 'N': -54.582137180344 + SOC['N'],
- 'O': -75.053045547421 + SOC['O'], 'C': -37.840869118707 + SOC['C']
+ "H": -0.499811124128 + SOC["H"],
+ "N": -54.582137180344 + SOC["N"],
+ "O": -75.053045547421 + SOC["O"],
+ "C": -37.840869118707 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpcvtzf12',software='molpro')": {
- 'H': -0.499946213243 + SOC['H'], 'N': -54.588545831900 + SOC['N'],
- 'O': -75.065995072347 + SOC['O'], 'C': -37.844662139972 + SOC['C']
+ "H": -0.499946213243 + SOC["H"],
+ "N": -54.588545831900 + SOC["N"],
+ "O": -75.065995072347 + SOC["O"],
+ "C": -37.844662139972 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpcvqzf12',software='molpro')": {
- 'H': -0.499994558325 + SOC['H'], 'N': -54.589137594139 + SOC['N'],
- 'O': -75.067412234737 + SOC['O'], 'C': -37.844893820561 + SOC['C']
+ "H": -0.499994558325 + SOC["H"],
+ "N": -54.589137594139 + SOC["N"],
+ "O": -75.067412234737 + SOC["O"],
+ "C": -37.844893820561 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvtzf12(pp)',software='molpro')": {
- 'H': -0.499946213243 + SOC['H'], 'N': -54.53000909621 + SOC['N'],
- 'O': -75.004127673424 + SOC['O'], 'C': -37.789862146471 + SOC['C'],
- 'S': -397.675447487865 + SOC['S'], 'I': -294.81781766 + SOC['I']
+ "H": -0.499946213243 + SOC["H"],
+ "N": -54.53000909621 + SOC["N"],
+ "O": -75.004127673424 + SOC["O"],
+ "C": -37.789862146471 + SOC["C"],
+ "S": -397.675447487865 + SOC["S"],
+ "I": -294.81781766 + SOC["I"],
},
-
# ccsd(t)/aug-cc-pvtz(-pp) atomic energies were fit to a set of 8 small molecules:
# CH4, CH3OH, H2S, H2O, SO2, HI, I2, CH3I
"LevelOfTheory(method='ccsd(t)',basis='augccpvtz(pp)')": {
- 'H': -0.499821176024 + SOC['H'], 'O': -74.96738492 + SOC['O'],
- 'C': -37.77385697 + SOC['C'], 'S': -397.6461604 + SOC['S'],
- 'I': -294.7958443 + SOC['I']
+ "H": -0.499821176024 + SOC["H"],
+ "O": -74.96738492 + SOC["O"],
+ "C": -37.77385697 + SOC["C"],
+ "S": -397.6461604 + SOC["S"],
+ "I": -294.7958443 + SOC["I"],
},
-
# note that all atom corrections but S are fitted, the correction for S is calculated
"LevelOfTheory(method='ccsd(t)f12',basis='augccpvdz',software='molpro')": {
- 'H': -0.499459066131 + SOC['H'], 'N': -54.524279516472 + SOC['N'],
- 'O': -74.992097308083 + SOC['O'], 'C': -37.786694171716 + SOC['C'],
- 'S': -397.648733842400 + SOC['S']
+ "H": -0.499459066131 + SOC["H"],
+ "N": -54.524279516472 + SOC["N"],
+ "O": -74.992097308083 + SOC["O"],
+ "C": -37.786694171716 + SOC["C"],
+ "S": -397.648733842400 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='augccpvtz',software='molpro')": {
- 'H': -0.499844820798 + SOC['H'], 'N': -54.527419359906 + SOC['N'],
- 'O': -75.000001429806 + SOC['O'], 'C': -37.788504810868 + SOC['C'],
- 'S': -397.666903000231 + SOC['S']
+ "H": -0.499844820798 + SOC["H"],
+ "N": -54.527419359906 + SOC["N"],
+ "O": -75.000001429806 + SOC["O"],
+ "C": -37.788504810868 + SOC["C"],
+ "S": -397.666903000231 + SOC["S"],
+ },
+ "LevelOfTheory(method='ccsd(t)f12',basis='augccpvtzf12',software='molpro')": {
+ 'H': -0.499809811302 + SOC["H"],
+ 'N': -54.51301792591 + SOC["N"],
+ 'O': -74.970882177931 + SOC["O"],
+ 'C': -37.776086428513 + SOC["C"],
+ 'S': -397.649699183441 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='augccpvqz',software='molpro')": {
- 'H': -0.499949526073 + SOC['H'], 'N': -54.529569719016 + SOC['N'],
- 'O': -75.004026586610 + SOC['O'], 'C': -37.789387892348 + SOC['C'],
- 'S': -397.671214204994 + SOC['S']
+ "H": -0.499949526073 + SOC["H"],
+ "N": -54.529569719016 + SOC["N"],
+ "O": -75.004026586610 + SOC["O"],
+ "C": -37.789387892348 + SOC["C"],
+ "S": -397.671214204994 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpvdzf12',software='molpro')": {
- 'H': -0.499811124128 + SOC['H'], 'N': -54.523269942190 + SOC['N'],
- 'O': -74.990725918500 + SOC['O'], 'C': -37.785409916465 + SOC['C'],
- 'S': -397.658155086033 + SOC['S']
+ "H": -0.499811124128 + SOC["H"],
+ "N": -54.523269942190 + SOC["N"],
+ "O": -74.990725918500 + SOC["O"],
+ "C": -37.785409916465 + SOC["C"],
+ "S": -397.658155086033 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpvtzf12',software='molpro')": {
- 'H': -0.499946213243 + SOC['H'], 'N': -54.528135889213 + SOC['N'],
- 'O': -75.001094055506 + SOC['O'], 'C': -37.788233578503 + SOC['C'],
- 'S': -397.671745425929 + SOC['S']
+ "H": -0.499946213243 + SOC["H"],
+ "N": -54.528135889213 + SOC["N"],
+ "O": -75.001094055506 + SOC["O"],
+ "C": -37.788233578503 + SOC["C"],
+ "S": -397.671745425929 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpvqzf12',software='molpro')": {
- 'H': -0.499994558325 + SOC['H'], 'N': -54.529425753163 + SOC['N'],
- 'O': -75.003820485005 + SOC['O'], 'C': -37.789006506290 + SOC['C'],
- 'S': -397.674145126931 + SOC['S']
+ "H": -0.499994558325 + SOC["H"],
+ "N": -54.529425753163 + SOC["N"],
+ "O": -75.003820485005 + SOC["O"],
+ "C": -37.789006506290 + SOC["C"],
+ "S": -397.674145126931 + SOC["S"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpcvdzf12',software='molpro')": {
- 'H': -0.499811124128 + SOC['H'], 'N': -54.578602780288 + SOC['N'],
- 'O': -75.048064317367 + SOC['O'], 'C': -37.837592033417 + SOC['C']
+ "H": -0.499811124128 + SOC["H"],
+ "N": -54.578602780288 + SOC["N"],
+ "O": -75.048064317367 + SOC["O"],
+ "C": -37.837592033417 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpcvtzf12',software='molpro')": {
- 'H': -0.499946213243 + SOC['H'], 'N': -54.586402551258 + SOC['N'],
- 'O': -75.062767632757 + SOC['O'], 'C': -37.842729156944 + SOC['C']
+ "H": -0.499946213243 + SOC["H"],
+ "N": -54.586402551258 + SOC["N"],
+ "O": -75.062767632757 + SOC["O"],
+ "C": -37.842729156944 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='ccpcvqzf12',software='molpro')": {
- 'H': -0.49999456 + SOC['H'], 'N': -54.587781507581 + SOC['N'],
- 'O': -75.065397706471 + SOC['O'], 'C': -37.843634971592 + SOC['C']
+ "H": -0.49999456 + SOC["H"],
+ "N": -54.587781507581 + SOC["N"],
+ "O": -75.065397706471 + SOC["O"],
+ "C": -37.843634971592 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='augccpvdz',software='molpro')": {
- 'H': -0.499459066131 + SOC['H'], 'N': -54.520475581942 + SOC['N'],
- 'O': -74.986992215049 + SOC['O'], 'C': -37.783294495799 + SOC['C']
+ "H": -0.499459066131 + SOC["H"],
+ "N": -54.520475581942 + SOC["N"],
+ "O": -74.986992215049 + SOC["O"],
+ "C": -37.783294495799 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='augccpvtz',software='molpro')": {
- 'H': -0.499844820798 + SOC['H'], 'N': -54.524927371700 + SOC['N'],
- 'O': -74.996328829705 + SOC['O'], 'C': -37.786320700792 + SOC['C']
+ "H": -0.499844820798 + SOC["H"],
+ "N": -54.524927371700 + SOC["N"],
+ "O": -74.996328829705 + SOC["O"],
+ "C": -37.786320700792 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12b',basis='augccpvqz',software='molpro')": {
- 'H': -0.499949526073 + SOC['H'], 'N': -54.528189769291 + SOC['N'],
- 'O': -75.001879610563 + SOC['O'], 'C': -37.788165047059 + SOC['C']
+ "H": -0.499949526073 + SOC["H"],
+ "N": -54.528189769291 + SOC["N"],
+ "O": -75.001879610563 + SOC["O"],
+ "C": -37.788165047059 + SOC["C"],
},
-
"LevelOfTheory(method='mp2',basis='ccpvdz')": {
- 'H': -0.49927840 + SOC['H'], 'N': -54.46141996 + SOC['N'], 'O': -74.89408254 + SOC['O'],
- 'C': -37.73792713 + SOC['C']
+ "H": -0.49927840 + SOC["H"],
+ "N": -54.46141996 + SOC["N"],
+ "O": -74.89408254 + SOC["O"],
+ "C": -37.73792713 + SOC["C"],
},
-
"LevelOfTheory(method='mp2',basis='ccpvtz')": {
- 'H': -0.49980981 + SOC['H'], 'N': -54.49615972 + SOC['N'], 'O': -74.95506980 + SOC['O'],
- 'C': -37.75833104 + SOC['C']
+ "H": -0.49980981 + SOC["H"],
+ "N": -54.49615972 + SOC["N"],
+ "O": -74.95506980 + SOC["O"],
+ "C": -37.75833104 + SOC["C"],
},
-
"LevelOfTheory(method='mp2',basis='ccpvqz')": {
- 'H': -0.49994557 + SOC['H'], 'N': -54.50715868 + SOC['N'], 'O': -74.97515364 + SOC['O'],
- 'C': -37.76533215 + SOC['C']
+ "H": -0.49994557 + SOC["H"],
+ "N": -54.50715868 + SOC["N"],
+ "O": -74.97515364 + SOC["O"],
+ "C": -37.76533215 + SOC["C"],
},
-
"LevelOfTheory(method='ccsdf12',basis='ccpvdzf12',software='molpro')": {
- 'H': -0.499811124128 + SOC['H'], 'N': -54.524325513811 + SOC['N'],
- 'O': -74.992326577897 + SOC['O'], 'C': -37.786213495943 + SOC['C']
+ "H": -0.499811124128 + SOC["H"],
+ "N": -54.524325513811 + SOC["N"],
+ "O": -74.992326577897 + SOC["O"],
+ "C": -37.786213495943 + SOC["C"],
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12_noscale',software='molpro')": {
- 'H': -0.499811124128 + SOC['H'], 'N': -54.526026290887 + SOC['N'],
- 'O': -74.994751897699 + SOC['O'], 'C': -37.787881871511 + SOC['C']
+ "H": -0.499811124128 + SOC["H"],
+ "N": -54.526026290887 + SOC["N"],
+ "O": -74.994751897699 + SOC["O"],
+ "C": -37.787881871511 + SOC["C"],
},
-
"LevelOfTheory(method='pbepbe',basis='6311++g(d,p)',software='gaussian')": {
- 'H': -0.499812273282 + SOC['H'], 'N': -54.5289567564 + SOC['N'],
- 'O': -75.0033596764 + SOC['O'], 'C': -37.7937388736 + SOC['C']
- },
-
- "LevelOfTheory(method='fci',basis='ccpvdz')": {
- 'C': -37.789527 + SOC['C']
- },
-
- "LevelOfTheory(method='fci',basis='ccpvtz')": {
- 'C': -37.781266669684 + SOC['C']
- },
-
- "LevelOfTheory(method='fci',basis='ccpvqz')": {
- 'C': -37.787052110598 + SOC['C']
- },
-
+ "H": -0.499812273282 + SOC["H"],
+ "N": -54.5289567564 + SOC["N"],
+ "O": -75.0033596764 + SOC["O"],
+ "C": -37.7937388736 + SOC["C"],
+ },
+ "LevelOfTheory(method='fci',basis='ccpvdz')": {"C": -37.789527 + SOC["C"]},
+ "LevelOfTheory(method='fci',basis='ccpvtz')": {"C": -37.781266669684 + SOC["C"]},
+ "LevelOfTheory(method='fci',basis='ccpvqz')": {"C": -37.787052110598 + SOC["C"]},
# 'bmk/cbsb7' and 'bmk/6-311g(2d,d,p)' have the same corrections
"LevelOfTheory(method='bmk',basis='cbsb7',software='gaussian')": {
- 'H': -0.498618853119 + SOC['H'], 'N': -54.5697851544 + SOC['N'],
- 'O': -75.0515210278 + SOC['O'], 'C': -37.8287310027 + SOC['C'],
- 'P': -341.167615941 + SOC['P'], 'S': -398.001619915 + SOC['S']
+ "H": -0.498618853119 + SOC["H"],
+ "N": -54.5697851544 + SOC["N"],
+ "O": -75.0515210278 + SOC["O"],
+ "C": -37.8287310027 + SOC["C"],
+ "P": -341.167615941 + SOC["P"],
+ "S": -398.001619915 + SOC["S"],
},
"LevelOfTheory(method='bmk',basis='6311g(2d,d,p)',software='gaussian')": {
- 'H': -0.498618853119 + SOC['H'], 'N': -54.5697851544 + SOC['N'],
- 'O': -75.0515210278 + SOC['O'], 'C': -37.8287310027 + SOC['C'],
- 'P': -341.167615941 + SOC['P'], 'S': -398.001619915 + SOC['S']
+ "H": -0.498618853119 + SOC["H"],
+ "N": -54.5697851544 + SOC["N"],
+ "O": -75.0515210278 + SOC["O"],
+ "C": -37.8287310027 + SOC["C"],
+ "P": -341.167615941 + SOC["P"],
+ "S": -398.001619915 + SOC["S"],
},
-
# Fitted to small molecules
"LevelOfTheory(method='b3lyp',basis='631g(d,p)',software='gaussian')": {
- 'H': -0.500426155, 'C': -37.850331697831, 'O': -75.0535872748806, 'S': -398.100820107242
+ "H": -0.500426155,
+ "C": -37.850331697831,
+ "O": -75.0535872748806,
+ "S": -398.100820107242,
},
-
# Calculated atomic energies
"LevelOfTheory(method='b3lyp',basis='6311+g(3df,2p)',software='gaussian')": {
- 'H': -0.502155915123 + SOC['H'], 'C': -37.8574709934 + SOC['C'],
- 'N': -54.6007233609 + SOC['N'], 'O': -75.0909131284 + SOC['O'],
- 'P': -341.281730319 + SOC['P'], 'S': -398.134489850 + SOC['S']
+ "H": -0.502155915123 + SOC["H"],
+ "C": -37.8574709934 + SOC["C"],
+ "N": -54.6007233609 + SOC["N"],
+ "O": -75.0909131284 + SOC["O"],
+ "P": -341.281730319 + SOC["P"],
+ "S": -398.134489850 + SOC["S"],
},
-
"LevelOfTheory(method='wb97xd',basis='augccpvtz',software='gaussian')": {
- 'H': -0.502803 + SOC['H'], 'N': -54.585652 + SOC['N'], 'O': -75.068286 + SOC['O'],
- 'C': -37.842014 + SOC['C']
+ "H": -0.502803 + SOC["H"],
+ "N": -54.585652 + SOC["N"],
+ "O": -75.068286 + SOC["O"],
+ "C": -37.842014 + SOC["C"],
},
-
# Calculated atomic energies (unfitted)
"LevelOfTheory(method='mrci+davidson',basis='augccpv(t+d)z',software='molpro')": {
- 'H': -0.49982118 + SOC['H'], 'C': -37.78321274 + SOC['C'], 'N': -54.51729444 + SOC['N'],
- 'O': -74.97847534 + SOC['O'], 'S': -397.6571654 + SOC['S']
+ "H": -0.49982118 + SOC["H"],
+ "C": -37.78321274 + SOC["C"],
+ "N": -54.51729444 + SOC["N"],
+ "O": -74.97847534 + SOC["O"],
+ "S": -397.6571654 + SOC["S"],
+ },
+ "LevelOfTheory(method='mrcif12+davidson',basis='augccpvtzf12',software='molpro')": {
+ "H": -0.504026724651973 + SOC["H"],
+ "C": -37.7704504799784 + SOC["C"],
+ "N": -54.5192652543354 + SOC["N"],
+ "O": -74.9738328871232 + SOC["O"],
},
-
}
# Petersson-type bond additivity correction parameters
pbac = {
-
"CompositeLevelOfTheory(freq=LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'),energy=LevelOfTheory(method='ccsd(t)f12',basis='ccpvtzf12',software='molpro'))": {
- 'C#C': -0.37319831366523176,
- 'C#N': -0.04394537008104246,
- 'C#O': 0.6845507542289013,
- 'C-C': 0.12602185168066687,
- 'C-Cl': 0.4000395071268901,
- 'C-F': 0.5386953055500939,
- 'C-H': 0.03014784912580578,
- 'C-N': 0.3022567343857892,
- 'C-O': 0.22156464774957604,
- 'C-S': 0.059041022372472614,
- 'C=C': -0.049584091100670837,
- 'C=N': -0.4428639989215071,
- 'C=O': 0.05943900637676746,
- 'C=S': -0.7758177193710785,
- 'Cl-Cl': 0.1382704625282193,
- 'Cl-F': 0.3846791604086004,
- 'Cl-H': 0.19401601074149966,
- 'Cl-N': 0.4109773959959559,
- 'Cl-O': 0.2892748705965537,
- 'Cl-S': 0.21784097251125079,
- 'F-F': -0.6423018409407416,
- 'F-H': 0.1102321131699,
- 'F-O': -0.5555283888816168,
- 'F-S': 0.8514568108157713,
- 'H-H': -0.24061025875957348,
- 'H-N': -0.2458184828878194,
- 'H-O': 0.007966375791966561,
- 'H-S': 0.6141296238226581,
- 'N#N': 0.15991986841815756,
- 'N-N': 1.2279613861249787,
- 'N-O': 0.20879882425699858,
- 'N=N': 0.44949205775999634,
- 'N=O': -1.029059282226874,
- 'O-O': -0.611163660061622,
- 'O-S': -0.43698174359431335,
- 'O=O': -2.8858691436809196,
- 'O=S': 0.3100869947699715,
- 'S-S': 0.10571953923531874,
- 'S=S': -1.6070546530751422
+ "C#C": -0.37319831366523176,
+ "C#N": -0.04394537008104246,
+ "C#O": 0.6845507542289013,
+ "C-C": 0.12602185168066687,
+ "C-Cl": 0.4000395071268901,
+ "C-F": 0.5386953055500939,
+ "C-H": 0.03014784912580578,
+ "C-N": 0.3022567343857892,
+ "C-O": 0.22156464774957604,
+ "C-S": 0.059041022372472614,
+ "C=C": -0.049584091100670837,
+ "C=N": -0.4428639989215071,
+ "C=O": 0.05943900637676746,
+ "C=S": -0.7758177193710785,
+ "Cl-Cl": 0.1382704625282193,
+ "Cl-F": 0.3846791604086004,
+ "Cl-H": 0.19401601074149966,
+ "Cl-N": 0.4109773959959559,
+ "Cl-O": 0.2892748705965537,
+ "Cl-S": 0.21784097251125079,
+ "F-F": -0.6423018409407416,
+ "F-H": 0.1102321131699,
+ "F-O": -0.5555283888816168,
+ "F-S": 0.8514568108157713,
+ "H-H": -0.24061025875957348,
+ "H-N": -0.2458184828878194,
+ "H-O": 0.007966375791966561,
+ "H-S": 0.6141296238226581,
+ "N#N": 0.15991986841815756,
+ "N-N": 1.2279613861249787,
+ "N-O": 0.20879882425699858,
+ "N=N": 0.44949205775999634,
+ "N=O": -1.029059282226874,
+ "O-O": -0.611163660061622,
+ "O-S": -0.43698174359431335,
+ "O=O": -2.8858691436809196,
+ "O=S": 0.3100869947699715,
+ "S-S": 0.10571953923531874,
+ "S=S": -1.6070546530751422,
},
-
"CompositeLevelOfTheory(freq=LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'),energy=LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12',software='molpro'))": {
- 'C#C': -0.7940736288861328,
- 'C#N': -0.2736082180869344,
- 'C#O': 1.215648303725274,
- 'C-C': -0.006153161261658441,
- 'C-Cl': 0.7595723077901367,
- 'C-F': 0.4815204101380463,
- 'C-H': 0.010156098370800108,
- 'C-N': 0.10438905540134882,
- 'C-O': 0.09987252247930076,
- 'C-S': 0.4090396417072708,
- 'C=C': -0.32837634513571645,
- 'C=N': -0.6872690836499937,
- 'C=O': -0.011879042720396643,
- 'C=S': -0.45740929709171363,
- 'Cl-Cl': -0.014451326911147977,
- 'Cl-F': 0.6479093120532244,
- 'Cl-H': 0.37650914650193457,
- 'Cl-N': 0.5872703379266317,
- 'Cl-O': 0.5095510277409292,
- 'Cl-S': 0.646585596795355,
- 'F-F': -0.7037812030852666,
- 'F-H': 0.13879622147405257,
- 'F-O': -0.5823379151756342,
- 'F-S': 0.9474443582208304,
- 'H-H': -0.00879296155638677,
- 'H-N': -0.3973581320058072,
- 'H-O': -0.05082328074118156,
- 'H-S': 0.9006352849672502,
- 'N#N': 0.6426432154389473,
- 'N-N': 1.0261474051290596,
- 'N-O': -0.03642922490749102,
- 'N=N': 0.1708502331465831,
- 'N=O': -0.8042125954300557,
- 'O-O': -0.7325577965540944,
- 'O-S': -0.18825122982916948,
- 'O=O': -2.7021030234346695,
- 'O=S': 0.9232025676598207,
- 'S-S': 0.14102013117456597,
- 'S=S': -0.9855656265939845
+ "C#C": -0.7940736288861328,
+ "C#N": -0.2736082180869344,
+ "C#O": 1.215648303725274,
+ "C-C": -0.006153161261658441,
+ "C-Cl": 0.7595723077901367,
+ "C-F": 0.4815204101380463,
+ "C-H": 0.010156098370800108,
+ "C-N": 0.10438905540134882,
+ "C-O": 0.09987252247930076,
+ "C-S": 0.4090396417072708,
+ "C=C": -0.32837634513571645,
+ "C=N": -0.6872690836499937,
+ "C=O": -0.011879042720396643,
+ "C=S": -0.45740929709171363,
+ "Cl-Cl": -0.014451326911147977,
+ "Cl-F": 0.6479093120532244,
+ "Cl-H": 0.37650914650193457,
+ "Cl-N": 0.5872703379266317,
+ "Cl-O": 0.5095510277409292,
+ "Cl-S": 0.646585596795355,
+ "F-F": -0.7037812030852666,
+ "F-H": 0.13879622147405257,
+ "F-O": -0.5823379151756342,
+ "F-S": 0.9474443582208304,
+ "H-H": -0.00879296155638677,
+ "H-N": -0.3973581320058072,
+ "H-O": -0.05082328074118156,
+ "H-S": 0.9006352849672502,
+ "N#N": 0.6426432154389473,
+ "N-N": 1.0261474051290596,
+ "N-O": -0.03642922490749102,
+ "N=N": 0.1708502331465831,
+ "N=O": -0.8042125954300557,
+ "O-O": -0.7325577965540944,
+ "O-S": -0.18825122982916948,
+ "O=O": -2.7021030234346695,
+ "O=S": 0.9232025676598207,
+ "S-S": 0.14102013117456597,
+ "S=S": -0.9855656265939845,
},
-
"LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem')": {
- 'Br-Br': 3.3184897418778894,
- 'Br-C': -0.6447457118766096,
- 'Br-Cl': 2.5458979359916487,
- 'Br-F': 3.9321266497717513,
- 'Br-H': 3.1450731163630294,
- 'Br-O': -7.328960869354291,
- 'C#C': -19.75782127331025,
- 'C#N': -7.499027151749764,
- 'C#O': -18.475225675145023,
- 'C-C': -6.498460645920902,
- 'C-Cl': -1.9238440096546874,
- 'C-F': -1.9747353079897023,
- 'C-H': 0.01729290032079855,
- 'C-N': -1.7433898062480928,
- 'C-O': -3.8525377364775215,
- 'C-S': -5.419539134610862,
- 'C=C': -12.998063133432941,
- 'C=N': -5.027572638791928,
- 'C=O': -6.801076987753849,
- 'C=S': -5.654222632762431,
- 'Cl-Cl': 1.3452682321784095,
- 'Cl-F': 3.491738723755338,
- 'Cl-H': 0.8075310212109841,
- 'Cl-N': 11.423744786147633,
- 'Cl-O': 5.488334623555848,
- 'Cl-S': -3.0170592756249057,
- 'F-F': 5.002957678305598,
- 'F-H': -8.586384858108858,
- 'F-O': 4.485916714230829,
- 'F-S': -4.159578702518104,
- 'H-H': 8.526122583518188,
- 'H-N': 1.2169107867656828,
- 'H-O': -3.8567427899343043,
- 'H-S': 1.8235600781274208,
- 'N#N': 2.7964223466789293,
- 'N-N': 5.170147621733188,
- 'N-O': 3.5592924696925587,
- 'N=N': 8.731292427600357,
- 'N=O': 5.09080676349987,
- 'O-O': 2.565372397566582,
- 'O-S': -8.578422244244877,
- 'O=O': 1.3114212140745158,
- 'O=S': -14.229024507889747,
- 'S-S': -4.258008825508542,
- 'S=S': -3.631460853989999
+ "Br-Br": 3.3184897418778894,
+ "Br-C": -0.6447457118766096,
+ "Br-Cl": 2.5458979359916487,
+ "Br-F": 3.9321266497717513,
+ "Br-H": 3.1450731163630294,
+ "Br-O": -7.328960869354291,
+ "C#C": -19.75782127331025,
+ "C#N": -7.499027151749764,
+ "C#O": -18.475225675145023,
+ "C-C": -6.498460645920902,
+ "C-Cl": -1.9238440096546874,
+ "C-F": -1.9747353079897023,
+ "C-H": 0.01729290032079855,
+ "C-N": -1.7433898062480928,
+ "C-O": -3.8525377364775215,
+ "C-S": -5.419539134610862,
+ "C=C": -12.998063133432941,
+ "C=N": -5.027572638791928,
+ "C=O": -6.801076987753849,
+ "C=S": -5.654222632762431,
+ "Cl-Cl": 1.3452682321784095,
+ "Cl-F": 3.491738723755338,
+ "Cl-H": 0.8075310212109841,
+ "Cl-N": 11.423744786147633,
+ "Cl-O": 5.488334623555848,
+ "Cl-S": -3.0170592756249057,
+ "F-F": 5.002957678305598,
+ "F-H": -8.586384858108858,
+ "F-O": 4.485916714230829,
+ "F-S": -4.159578702518104,
+ "H-H": 8.526122583518188,
+ "H-N": 1.2169107867656828,
+ "H-O": -3.8567427899343043,
+ "H-S": 1.8235600781274208,
+ "N#N": 2.7964223466789293,
+ "N-N": 5.170147621733188,
+ "N-O": 3.5592924696925587,
+ "N=N": 8.731292427600357,
+ "N=O": 5.09080676349987,
+ "O-O": 2.565372397566582,
+ "O-S": -8.578422244244877,
+ "O=O": 1.3114212140745158,
+ "O=S": -14.229024507889747,
+ "S-S": -4.258008825508542,
+ "S=S": -3.631460853989999,
},
-
"LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem')": {
- 'Br-Br': 2.849979178650586,
- 'Br-C': 0.7381762723415655,
- 'Br-Cl': 1.4764289266543953,
- 'Br-F': 2.7336108440861704,
- 'Br-H': 2.621866526877559,
- 'Br-O': -2.5532834764130006,
- 'C#C': -7.92496166307853,
- 'C#N': -3.864663093893819,
- 'C#O': -7.484067031104203,
- 'C-C': -1.0817871087375186,
- 'C-Cl': -0.5732704243120552,
- 'C-F': 1.3719540592946495,
- 'C-H': 0.07704003746021679,
- 'C-N': 0.5919032459443995,
- 'C-O': -1.2626115105817743,
- 'C-S': -1.2805399168193157,
- 'C=C': -3.890848609981227,
- 'C=N': -1.5036825315665,
- 'C=O': -2.9505302757552596,
- 'C=S': -3.7136643912288623,
- 'Cl-Cl': 0.136962629607007,
- 'Cl-F': 1.043801519750975,
- 'Cl-H': 0.3209061926667829,
- 'Cl-N': 1.254243872961764,
- 'Cl-O': -1.2050377287736824,
- 'Cl-S': -0.353190509282856,
- 'F-F': 1.2363169265407195,
- 'F-H': -1.4703521420571022,
- 'F-O': -0.008583994665357622,
- 'F-S': 0.3093056813192921,
- 'H-H': 0.16749830148486178,
- 'H-N': 0.7806156486742294,
- 'H-O': -1.2446586747155781,
- 'H-S': 1.186472823080999,
- 'N#N': -0.15105524935670453,
- 'N-N': 3.437416216021716,
- 'N-O': 1.4467328418363092,
- 'N=N': 2.786466016509395,
- 'N=O': -2.389849264267907,
- 'O-O': -2.27124059610634,
- 'O-S': -2.6554640707366945,
- 'O=O': -9.840434624890442,
- 'O=S': -3.470457647257026,
- 'S-S': -1.3273180651577856,
- 'S=S': -6.864453512935457
+ "Br-Br": 2.849979178650586,
+ "Br-C": 0.7381762723415655,
+ "Br-Cl": 1.4764289266543953,
+ "Br-F": 2.7336108440861704,
+ "Br-H": 2.621866526877559,
+ "Br-O": -2.5532834764130006,
+ "C#C": -7.92496166307853,
+ "C#N": -3.864663093893819,
+ "C#O": -7.484067031104203,
+ "C-C": -1.0817871087375186,
+ "C-Cl": -0.5732704243120552,
+ "C-F": 1.3719540592946495,
+ "C-H": 0.07704003746021679,
+ "C-N": 0.5919032459443995,
+ "C-O": -1.2626115105817743,
+ "C-S": -1.2805399168193157,
+ "C=C": -3.890848609981227,
+ "C=N": -1.5036825315665,
+ "C=O": -2.9505302757552596,
+ "C=S": -3.7136643912288623,
+ "Cl-Cl": 0.136962629607007,
+ "Cl-F": 1.043801519750975,
+ "Cl-H": 0.3209061926667829,
+ "Cl-N": 1.254243872961764,
+ "Cl-O": -1.2050377287736824,
+ "Cl-S": -0.353190509282856,
+ "F-F": 1.2363169265407195,
+ "F-H": -1.4703521420571022,
+ "F-O": -0.008583994665357622,
+ "F-S": 0.3093056813192921,
+ "H-H": 0.16749830148486178,
+ "H-N": 0.7806156486742294,
+ "H-O": -1.2446586747155781,
+ "H-S": 1.186472823080999,
+ "N#N": -0.15105524935670453,
+ "N-N": 3.437416216021716,
+ "N-O": 1.4467328418363092,
+ "N=N": 2.786466016509395,
+ "N=O": -2.389849264267907,
+ "O-O": -2.27124059610634,
+ "O-S": -2.6554640707366945,
+ "O=O": -9.840434624890442,
+ "O=S": -3.470457647257026,
+ "S-S": -1.3273180651577856,
+ "S=S": -6.864453512935457,
},
-
# 'S-H', 'C-S', 'C=S', 'S-S', 'O-S', 'O=S', 'O=S=O' taken from http://hdl.handle.net/1721.1/98155 (both for
# 'CCSD(T)-F12/cc-pVDZ-F12' and 'CCSD(T)-F12/cc-pVTZ-F12')
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12',software='molpro')": {
- 'C-H': -0.46, 'C-C': -0.68, 'C=C': -1.90, 'C#C': -3.13,
- 'O-H': -0.51, 'C-O': -0.23, 'C=O': -0.69, 'O-O': -0.02, 'C-N': -0.67,
- 'C=N': -1.46, 'C#N': -2.79, 'N-O': 0.74, 'N_O': -0.23, 'N=O': -0.51,
- 'N-H': -0.69, 'N-N': -0.47, 'N=N': -1.54, 'N#N': -2.05, 'S-H': 0.87,
- 'C-S': 0.42, 'C=S': 0.51, 'S-S': 0.86, 'O-S': 0.23, 'O=S': -0.53,
- 'O=S=O': 1.95
+ "C-H": -0.46,
+ "C-C": -0.68,
+ "C=C": -1.90,
+ "C#C": -3.13,
+ "O-H": -0.51,
+ "C-O": -0.23,
+ "C=O": -0.69,
+ "O-O": -0.02,
+ "C-N": -0.67,
+ "C=N": -1.46,
+ "C#N": -2.79,
+ "N-O": 0.74,
+ "N_O": -0.23,
+ "N=O": -0.51,
+ "N-H": -0.69,
+ "N-N": -0.47,
+ "N=N": -1.54,
+ "N#N": -2.05,
+ "S-H": 0.87,
+ "C-S": 0.42,
+ "C=S": 0.51,
+ "S-S": 0.86,
+ "O-S": 0.23,
+ "O=S": -0.53,
+ "O=S=O": 1.95,
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvtzf12',software='molpro')": {
- 'C-H': -0.09, 'C-C': -0.27, 'C=C': -1.03, 'C#C': -1.79,
- 'O-H': -0.06, 'C-O': 0.14, 'C=O': -0.19, 'O-O': 0.16, 'C-N': -0.18,
- 'C=N': -0.41, 'C#N': -1.41, 'N-O': 0.87, 'N_O': -0.09, 'N=O': -0.23,
- 'N-H': -0.01, 'N-N': -0.21, 'N=N': -0.44, 'N#N': -0.76, 'S-H': 0.52,
- 'C-S': 0.13, 'C=S': -0.12, 'S-S': 0.30, 'O-S': 0.15, 'O=S': -2.61,
- 'O=S=O': 0.27
+ "C-H": -0.09,
+ "C-C": -0.27,
+ "C=C": -1.03,
+ "C#C": -1.79,
+ "O-H": -0.06,
+ "C-O": 0.14,
+ "C=O": -0.19,
+ "O-O": 0.16,
+ "C-N": -0.18,
+ "C=N": -0.41,
+ "C#N": -1.41,
+ "N-O": 0.87,
+ "N_O": -0.09,
+ "N=O": -0.23,
+ "N-H": -0.01,
+ "N-N": -0.21,
+ "N=N": -0.44,
+ "N#N": -0.76,
+ "S-H": 0.52,
+ "C-S": 0.13,
+ "C=S": -0.12,
+ "S-S": 0.30,
+ "O-S": 0.15,
+ "O=S": -2.61,
+ "O=S=O": 0.27,
},
-
"LevelOfTheory(method='ccsd(t)f12',basis='ccpvqzf12',software='molpro')": {
- 'C-H': -0.08, 'C-C': -0.26, 'C=C': -1.01, 'C#C': -1.66,
- 'O-H': 0.07, 'C-O': 0.25, 'C=O': -0.03, 'O-O': 0.26, 'C-N': -0.20,
- 'C=N': -0.30, 'C#N': -1.33, 'N-O': 1.01, 'N_O': -0.03, 'N=O': -0.26,
- 'N-H': 0.06, 'N-N': -0.23, 'N=N': -0.37, 'N#N': -0.64
+ "C-H": -0.08,
+ "C-C": -0.26,
+ "C=C": -1.01,
+ "C#C": -1.66,
+ "O-H": 0.07,
+ "C-O": 0.25,
+ "C=O": -0.03,
+ "O-O": 0.26,
+ "C-N": -0.20,
+ "C=N": -0.30,
+ "C#N": -1.33,
+ "N-O": 1.01,
+ "N_O": -0.03,
+ "N=O": -0.26,
+ "N-H": 0.06,
+ "N-N": -0.23,
+ "N=N": -0.37,
+ "N#N": -0.64,
},
-
"LevelOfTheory(method='cbsqb3',software='gaussian')": {
- 'C-H': -0.11, 'C-C': -0.30, 'C=C': -0.08, 'C#C': -0.64, 'O-H': 0.02, 'C-O': 0.33, 'C=O': 0.55,
+ "C-H": -0.11,
+ "C-C": -0.30,
+ "C=C": -0.08,
+ "C#C": -0.64,
+ "O-H": 0.02,
+ "C-O": 0.33,
+ "C=O": 0.55,
# Table IX: Petersson GA (1998) J. of Chemical Physics, DOI: 10.1063/1.477794
- 'N-H': -0.42, 'C-N': -0.13, 'C#N': -0.89, 'C-F': 0.55, 'C-Cl': 1.29, 'S-H': 0.0, 'C-S': 0.43,
- 'O=S': -0.78,
- 'N=O': 1.11, 'N-N': -1.87, 'N=N': -1.58, 'N-O': 0.35,
+ "N-H": -0.42,
+ "C-N": -0.13,
+ "C#N": -0.89,
+ "C-F": 0.55,
+ "C-Cl": 1.29,
+ "S-H": 0.0,
+ "C-S": 0.43,
+ "O=S": -0.78,
+ "N=O": 1.11,
+ "N-N": -1.87,
+ "N=N": -1.58,
+ "N-O": 0.35,
# Table 2: Ashcraft R (2007) J. Phys. Chem. B; DOI: 10.1021/jp073539t
- 'N#N': -2.0, 'O=O': -0.2, 'H-H': 1.1, # Unknown source
+ "N#N": -2.0,
+ "O=O": -0.2,
+ "H-H": 1.1, # Unknown source
},
-
"LevelOfTheory(method='cbsqb3paraskevas',software='gaussian')": {
# NOTE: The Paraskevas corrections are inaccurate for non-oxygenated hydrocarbons,
# and may do poorly in combination with the Petersson corrections
- 'C-C': -0.495, 'C-H': -0.045, 'C=C': -0.825, 'C-O': 0.378, 'C=O': 0.743, 'O-H': -0.423,
+ "C-C": -0.495,
+ "C-H": -0.045,
+ "C=C": -0.825,
+ "C-O": 0.378,
+ "C=O": 0.743,
+ "O-H": -0.423,
# Table2: Paraskevas, PD (2013). Chemistry-A European J., DOI: 10.1002/chem.201301381
- 'C#C': -0.64, 'C#N': -0.89, 'C-S': 0.43, 'O=S': -0.78, 'S-H': 0.0, 'C-N': -0.13, 'C-Cl': 1.29,
- 'C-F': 0.55, # Table IX: Petersson GA (1998) J. of Chemical Physics, DOI: 10.1063/1.477794
- 'N-H': -0.42, 'N=O': 1.11, 'N-N': -1.87, 'N=N': -1.58, 'N-O': 0.35,
+ "C#C": -0.64,
+ "C#N": -0.89,
+ "C-S": 0.43,
+ "O=S": -0.78,
+ "S-H": 0.0,
+ "C-N": -0.13,
+ "C-Cl": 1.29,
+ "C-F": 0.55, # Table IX: Petersson GA (1998) J. of Chemical Physics, DOI: 10.1063/1.477794
+ "N-H": -0.42,
+ "N=O": 1.11,
+ "N-N": -1.87,
+ "N=N": -1.58,
+ "N-O": 0.35,
# Table 2: Ashcraft R (2007) J. Phys. Chem. B; DOI: 10.1021/jp073539t
- 'N#N': -2.0, 'O=O': -0.2, 'H-H': 1.1, # Unknown source
+ "N#N": -2.0,
+ "O=O": -0.2,
+ "H-H": 1.1, # Unknown source
},
-
# Identical corrections for 'b3lyp/cbsb7', 'b3lyp/6-311g(2d,d,p)', 'b3lyp/6-311+g(3df,2p)', 'b3lyp/6-31g(d,p)'
"LevelOfTheory(method='b3lyp',basis='cbsb7',software='gaussian')": {
- 'C-H': 0.25, 'C-C': -1.89, 'C=C': -0.40, 'C#C': -1.50,
- 'O-H': -1.09, 'C-O': -1.18, 'C=O': -0.01, 'N-H': 1.36, 'C-N': -0.44,
- 'C#N': 0.22, 'C-S': -2.35, 'O=S': -5.19, 'S-H': -0.52,
+ "C-H": 0.25,
+ "C-C": -1.89,
+ "C=C": -0.40,
+ "C#C": -1.50,
+ "O-H": -1.09,
+ "C-O": -1.18,
+ "C=O": -0.01,
+ "N-H": 1.36,
+ "C-N": -0.44,
+ "C#N": 0.22,
+ "C-S": -2.35,
+ "O=S": -5.19,
+ "S-H": -0.52,
},
"LevelOfTheory(method='b3lyp',basis='6311g(2d,d,p)',software='gaussian')": {
- 'C-H': 0.25, 'C-C': -1.89, 'C=C': -0.40, 'C#C': -1.50,
- 'O-H': -1.09, 'C-O': -1.18, 'C=O': -0.01, 'N-H': 1.36, 'C-N': -0.44,
- 'C#N': 0.22, 'C-S': -2.35, 'O=S': -5.19, 'S-H': -0.52,
+ "C-H": 0.25,
+ "C-C": -1.89,
+ "C=C": -0.40,
+ "C#C": -1.50,
+ "O-H": -1.09,
+ "C-O": -1.18,
+ "C=O": -0.01,
+ "N-H": 1.36,
+ "C-N": -0.44,
+ "C#N": 0.22,
+ "C-S": -2.35,
+ "O=S": -5.19,
+ "S-H": -0.52,
},
"LevelOfTheory(method='b3lyp',basis='6311+g(3df,2p)',software='gaussian')": {
- 'C-H': 0.25, 'C-C': -1.89, 'C=C': -0.40, 'C#C': -1.50,
- 'O-H': -1.09, 'C-O': -1.18, 'C=O': -0.01, 'N-H': 1.36, 'C-N': -0.44,
- 'C#N': 0.22, 'C-S': -2.35, 'O=S': -5.19, 'S-H': -0.52,
+ "C-H": 0.25,
+ "C-C": -1.89,
+ "C=C": -0.40,
+ "C#C": -1.50,
+ "O-H": -1.09,
+ "C-O": -1.18,
+ "C=O": -0.01,
+ "N-H": 1.36,
+ "C-N": -0.44,
+ "C#N": 0.22,
+ "C-S": -2.35,
+ "O=S": -5.19,
+ "S-H": -0.52,
},
"LevelOfTheory(method='b3lyp',basis='631g(d,p)',software='gaussian')": {
- 'C-H': 0.25, 'C-C': -1.89, 'C=C': -0.40, 'C#C': -1.50,
- 'O-H': -1.09, 'C-O': -1.18, 'C=O': -0.01, 'N-H': 1.36, 'C-N': -0.44,
- 'C#N': 0.22, 'C-S': -2.35, 'O=S': -5.19, 'S-H': -0.52,
+ "C-H": 0.25,
+ "C-C": -1.89,
+ "C=C": -0.40,
+ "C#C": -1.50,
+ "O-H": -1.09,
+ "C-O": -1.18,
+ "C=O": -0.01,
+ "N-H": 1.36,
+ "C-N": -0.44,
+ "C#N": 0.22,
+ "C-S": -2.35,
+ "O=S": -5.19,
+ "S-H": -0.52,
+ },
+ "LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.059009759188325,
+ "Br-C": 1.728247411077905,
+ "Br-Cl": 1.7705054332238108,
+ "Br-F": 2.145902410360824,
+ "Br-H": 2.3597338680998075,
+ "Br-O": -3.4917639850199778,
+ "C#C": -5.746824308728703,
+ "C#N": -2.7771125562616614,
+ "C#O": -5.557285201021813,
+ "C-C": -1.3101018036175862,
+ "C-Cl": -0.271265587412076,
+ "C-F": -0.001035614307651423,
+ "C-H": -0.5652089423901381,
+ "C-N": 0.12712306910937865,
+ "C-O": -1.364758763294224,
+ "C-S": -1.2373072469689421,
+ "C=C": -2.9168189709334387,
+ "C=N": -2.0350223174124165,
+ "C=O": -2.3474322229726594,
+ "C=S": -3.6147810268901464,
+ "Cl-Cl": 0.5229647760769071,
+ "Cl-F": 0.8839036284569417,
+ "Cl-H": 0.5515813525130966,
+ "Cl-N": 3.7879821218436076,
+ "Cl-O": -0.20223744747830605,
+ "Cl-S": -0.22925233279083837,
+ "F-F": 0.5785058988767056,
+ "F-H": -1.045723028089256,
+ "F-O": -1.0807941809981656,
+ "F-S": -0.49856140171038044,
+ "H-H": 1.981379832902674,
+ "H-N": -0.19397304636069254,
+ "H-O": -1.3402494997859746,
+ "H-S": 0.29282357021274386,
+ "N#N": 0.675254744354684,
+ "N-N": 2.8896454770956366,
+ "N-O": 1.189427729872825,
+ "N=N": 2.6520843104440974,
+ "N=O": -1.9256687938946806,
+ "O-O": -2.588105607694028,
+ "O-S": -2.2916657130595217,
+ "O=O": -0.3934164560975584,
+ "O=S": -2.435883326429601,
+ "S-S": -0.9197593963936164,
+ "S=S": -2.705605038808234,
+ },
+ "LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.4633544485714793,
+ "Br-C": 0.8576678821501889,
+ "Br-Cl": 2.2498078932330934,
+ "Br-F": 2.4349799110994486,
+ "Br-H": 1.9120878794248526,
+ "Br-O": -1.2554912099922857,
+ "C#C": -6.083773329564417,
+ "C#N": -2.136860022640749,
+ "C#O": -8.334026246642424,
+ "C-C": -2.214639347011169,
+ "C-Cl": -0.8984356792855536,
+ "C-F": -0.6575826486285459,
+ "C-H": -0.23472079981166077,
+ "C-N": -0.2579772638400554,
+ "C-O": -2.0692673022727166,
+ "C-S": -2.2621724201557067,
+ "C=C": -2.6818763979930718,
+ "C=N": -0.7807981986455196,
+ "C=O": -2.584152582408669,
+ "C=S": -2.085460420020578,
+ "Cl-Cl": 1.0817301972108992,
+ "Cl-F": 1.3696216424205936,
+ "Cl-H": 0.031274551188886335,
+ "Cl-N": 4.4271735162783745,
+ "Cl-O": 0.8034884368888399,
+ "Cl-S": 0.3161530545608124,
+ "F-F": 1.1872897701642178,
+ "F-H": -2.264464731231101,
+ "F-O": 0.7638728656874663,
+ "F-S": -1.7173415232394975,
+ "H-H": 1.8790645235838441,
+ "H-N": 0.3742510173286825,
+ "H-O": -2.1465258087062606,
+ "H-S": 0.2421215092503637,
+ "N#N": -1.8492812668033716,
+ "N-N": 3.3139927859940124,
+ "N-O": 1.7095387674278495,
+ "N=N": 4.064303078434774,
+ "N=O": -1.2520036302053368,
+ "O-O": -0.4557573593961288,
+ "O-S": -2.7142930163638104,
+ "O=O": -8.14129976151346,
+ "O=S": -4.500554640258455,
+ "S-S": -0.5234911635946635,
+ "S=S": -3.7434213748918332,
+ },
+ "LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.3140278799377465,
+ "Br-C": 1.2289462200489791,
+ "Br-Cl": 2.1094180265503435,
+ "Br-F": 2.0434434080787636,
+ "Br-H": 2.5617098362053845,
+ "Br-O": -3.246087168354636,
+ "C#C": -4.66435730423415,
+ "C#N": -0.9908682400784944,
+ "C#O": -10.221105857210006,
+ "C-C": -2.599341418584761,
+ "C-Cl": -0.8620557079089828,
+ "C-F": -2.1779178771276686,
+ "C-H": -0.11076748166165733,
+ "C-N": -0.9365989730244142,
+ "C-O": -3.614393633500103,
+ "C-S": -2.7460115805499634,
+ "C=C": -2.0722043179462704,
+ "C=N": -0.4510601734276718,
+ "C=O": -2.919956084753733,
+ "C=S": -1.5635822352987805,
+ "Cl-Cl": 0.9628633971209355,
+ "Cl-F": 0.9981281936810777,
+ "Cl-H": 0.5303083059247555,
+ "Cl-N": 7.423258439288017,
+ "Cl-O": 1.653035168059409,
+ "Cl-S": 0.5822489667644563,
+ "F-F": 1.4323025507291904,
+ "F-H": -2.578940812254146,
+ "F-O": 1.8896223933835696,
+ "F-S": -3.6387655595351682,
+ "H-H": 4.097890670185417,
+ "H-N": 0.6290630318100182,
+ "H-O": -2.680464999080273,
+ "H-S": 0.0018975919145605626,
+ "N#N": 0.44121916244031656,
+ "N-N": 4.032728955226473,
+ "N-O": 2.0946772750944516,
+ "N=N": 7.003608487336268,
+ "N=O": 3.0707912248338363,
+ "O-O": 0.6066175975926263,
+ "O-S": -4.773870195448138,
+ "O=O": -0.8166459093306052,
+ "O=S": -4.914592301766777,
+ "S-S": -1.186712082584238,
+ "S=S": -1.5684468707048025,
+ },
+ "LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.4296965729683944,
+ "Br-C": 1.1804078532131503,
+ "Br-Cl": 2.2316381050225393,
+ "Br-F": 1.883858873768126,
+ "Br-H": 2.062498627836119,
+ "Br-O": -0.07953982308324851,
+ "C#C": -4.360350132198117,
+ "C#N": -1.104454253524229,
+ "C#O": -11.325891285070613,
+ "C-C": -2.2546240568912967,
+ "C-Cl": -1.1202988913885952,
+ "C-F": -2.20197771967817,
+ "C-H": -0.39098511392954577,
+ "C-N": -0.1767206217782247,
+ "C-O": -2.229397303125661,
+ "C-S": -2.2848047736028954,
+ "C=C": -1.9246140790376502,
+ "C=N": 0.5811770374527077,
+ "C=O": -1.6779764633952212,
+ "C=S": -1.5474715688813812,
+ "Cl-Cl": 1.1595682617352996,
+ "Cl-F": 0.9185779453989352,
+ "Cl-H": -0.2854475866869528,
+ "Cl-N": 8.496610232017414,
+ "Cl-O": 2.644969480335856,
+ "Cl-S": 0.3920284822688385,
+ "F-F": 2.1227864451990017,
+ "F-H": -4.128272542365401,
+ "F-O": 3.9764790170085966,
+ "F-S": -2.9281391096357656,
+ "H-H": 2.56465165299989,
+ "H-N": 0.5774265623765141,
+ "H-O": -2.8463766576148153,
+ "H-S": -0.7614950836691483,
+ "N#N": -0.9729547823847434,
+ "N-N": 5.896959677789185,
+ "N-O": 5.094365633948557,
+ "N=N": 8.045809933288487,
+ "N=O": 3.9531049241387315,
+ "O-O": 4.2287908472557625,
+ "O-S": -3.929643145387658,
+ "O=O": 2.3424105321167645,
+ "O=S": -3.03891696548833,
+ "S-S": -0.4190294411227107,
+ "S=S": 0.39751073025682515,
+ },
+ "LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 2.8633538278498545,
+ "Br-C": 0.07048782085059525,
+ "Br-Cl": 1.7117950344222064,
+ "Br-F": 3.5637034605091835,
+ "Br-H": 2.6659548070854537,
+ "Br-O": -2.1344446856320114,
+ "C#C": -7.073837954941524,
+ "C#N": -2.9307680768338114,
+ "C#O": -6.972154541622802,
+ "C-C": -2.323249402579756,
+ "C-Cl": -1.1784661175576834,
+ "C-F": 1.716088993949538,
+ "C-H": -0.1483588547880497,
+ "C-N": 0.17238176303936206,
+ "C-O": -1.0916454482750733,
+ "C-S": -2.720966590654772,
+ "C=C": -3.353231931887515,
+ "C=N": -0.9915483079154911,
+ "C=O": -2.5451514996918236,
+ "C=S": -4.495436701999252,
+ "Cl-Cl": 0.5832397874142701,
+ "Cl-F": 2.2964780843516834,
+ "Cl-H": 0.49660439822855906,
+ "Cl-N": 2.1886480393054613,
+ "Cl-O": 0.05007834182786373,
+ "Cl-S": -1.0588955273777791,
+ "F-F": 1.1803646657075295,
+ "F-H": -1.6476846237333191,
+ "F-O": 0.3082762218882865,
+ "F-S": 0.751758837257152,
+ "H-H": 0.5084080244324133,
+ "H-N": 0.4971757439897718,
+ "H-O": -1.571869027787519,
+ "H-S": 0.4801382587399086,
+ "N#N": -1.796129296659946,
+ "N-N": 3.4599887570977863,
+ "N-O": 1.857718505829102,
+ "N=N": 2.509802327440527,
+ "N=O": -3.714493493229138,
+ "O-O": -1.8403673435870738,
+ "O-S": -2.1907159047567775,
+ "O=O": -11.20776654794643,
+ "O=S": -4.026752887413983,
+ "S-S": -2.937098043347585,
+ "S=S": -7.115716976262579,
+ },
+ "LevelOfTheory(method='cbsqb32023',software='gaussian')": {
+ "Br-Br": 2.2269550577650072,
+ "Br-C": 3.1293296053726345,
+ "Br-Cl": 1.5782208598502734,
+ "Br-F": 2.0373979958536967,
+ "Br-H": 2.29074673692908,
+ "Br-O": 2.978076046534996,
+ "C#C": 0.937089093546723,
+ "C#N": 1.0343474791613732,
+ "C#O": 1.1447343154691438,
+ "C-C": 0.49439404548563853,
+ "C-Cl": 1.1470001214764225,
+ "C-F": 0.804506514975985,
+ "C-H": -0.1756383632886398,
+ "C-N": 0.9835929518475715,
+ "C-O": 0.9319701451560427,
+ "C-S": 0.42597833659383444,
+ "C=C": 0.8173582569159964,
+ "C=N": 0.4246135717670757,
+ "C=O": 0.8331569811772994,
+ "C=S": 0.7467230406084479,
+ "Cl-Cl": 0.1594011631652554,
+ "Cl-F": -1.0267943453963735,
+ "Cl-H": 0.03366508863307871,
+ "Cl-N": 0.6694403519175366,
+ "Cl-O": -0.118527569264911,
+ "Cl-S": -0.35445578799573746,
+ "F-F": -0.07501948494462776,
+ "F-H": 0.09702167704330122,
+ "F-O": -0.07310344199423886,
+ "F-S": -0.9237919557789857,
+ "H-H": 0.477144217200565,
+ "H-N": -0.5869228482395862,
+ "H-O": -0.5354220474858554,
+ "H-S": 0.17175894986892443,
+ "N#N": 0.2495915499142188,
+ "N-N": 2.296810207887238,
+ "N-O": 1.3845306907773811,
+ "N=N": 1.301051863569286,
+ "N=O": -0.1600630763735871,
+ "O-O": 0.2220760984123553,
+ "O-S": -1.0539657682539878,
+ "O=O": -1.3070645276996482,
+ "O=S": -0.5922916510032458,
+ "S-S": 0.4278201772459137,
+ "S=S": -1.2756796324071913,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca')": {
+ "Br-Br": 2.6692866532033213,
+ "Br-C": 1.6845464774743562,
+ "Br-Cl": 1.4681196418067788,
+ "Br-F": 0.6282260777131672,
+ "Br-H": 2.96440108731956,
+ "Br-O": -4.521327771837686,
+ "C#C": -7.042343246210122,
+ "C#N": -3.4822988063790468,
+ "C#O": -2.323444204880918,
+ "C-C": -1.1667239497948425,
+ "C-Cl": -0.49538124168047604,
+ "C-F": -0.789792202779707,
+ "C-H": -0.3633847071541791,
+ "C-N": -0.6184191720217469,
+ "C-O": -0.9562119342112374,
+ "C-S": -1.4648823410369876,
+ "C=C": -4.343690138752982,
+ "C=N": -3.030979721701755,
+ "C=O": -3.1299504690735014,
+ "C=S": -3.434045697933363,
+ "Cl-Cl": 0.14360211292635708,
+ "Cl-F": -0.32331638917499284,
+ "Cl-H": 0.9644453904120773,
+ "Cl-N": 0.7983522159848101,
+ "Cl-O": 0.021248807460712865,
+ "Cl-S": -1.7721262464460754,
+ "F-F": 0.17920785769661443,
+ "F-H": -1.4761933820210587,
+ "F-O": -2.3543827170315117,
+ "F-S": -1.537783802127554,
+ "H-H": 2.278320724122467,
+ "H-N": -0.7117291326060236,
+ "H-O": -0.5493940818773699,
+ "H-S": 0.8832834155133843,
+ "N#N": 1.7810980556089164,
+ "N-N": 0.8760115730796776,
+ "N-O": -1.5265592683361633,
+ "N=N": -0.3805358578150836,
+ "N=O": -2.221920545559059,
+ "O-O": -2.6641798636044665,
+ "O-S": -2.6493526350754086,
+ "O=O": -3.5706340581770912,
+ "O=S": -3.2065693338084835,
+ "S-S": -2.2378648072331733,
+ "S=S": -5.081160261638716,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca')": {
+ "C#C": -1.7963160382059813,
+ "C#N": -1.0105990066358592,
+ "C#O": -0.2992281586254819,
+ "C-C": -0.3717854270244163,
+ "C-Cl": 0.4221980882594018,
+ "C-F": 0.1001249195852644,
+ "C-H": -0.14473424617095282,
+ "C-N": -0.37198809660449317,
+ "C-O": -0.7728747145658456,
+ "C-S": 0.0823436359505984,
+ "C=C": -0.9349298741276696,
+ "C=N": -1.195759530627507,
+ "C=O": -1.2633797401611344,
+ "C=S": -0.8130054172824345,
+ "Cl-Cl": 0.1371671841260394,
+ "Cl-F": 0.5923866791945667,
+ "Cl-H": 0.4906566100037999,
+ "Cl-N": 0.029032880902240106,
+ "Cl-O": -0.2465738239189468,
+ "Cl-S": 0.961770597557565,
+ "F-F": -0.7714334553307033,
+ "F-H": 0.5180930222556555,
+ "F-O": -1.474677604227942,
+ "F-S": 0.656825952949049,
+ "H-H": -0.007280253070032347,
+ "H-N": -0.4502951731547241,
+ "H-O": -0.2321719698957852,
+ "H-S": 0.757317843184218,
+ "N#N": 0.7942389482700793,
+ "N-N": 0.4956691955717652,
+ "N-O": -1.1952059298538624,
+ "N=N": -0.4239908248569713,
+ "N=O": -2.1501538918685057,
+ "O-O": -2.374464862473847,
+ "O-S": -0.876829581181774,
+ "O=O": -4.1589284529589,
+ "O=S": 0.253595648660723,
+ "S-S": 0.2693498641777743,
+ "S=S": -1.17191989375405,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca')": {
+ "C#C": -0.982597271828914,
+ "C#N": -0.3283125828210814,
+ "C#O": 0.17286574008491584,
+ "C-C": -0.008543746007425343,
+ "C-Cl": 0.3520255124816659,
+ "C-F": 0.631472917414716,
+ "C-H": -0.08017305273944866,
+ "C-N": 0.13833379134615956,
+ "C-O": -0.13764526344273006,
+ "C-S": 0.09397847801178551,
+ "C=C": -0.35527223034098027,
+ "C=N": -0.6082496375886673,
+ "C=O": -0.5925653642190839,
+ "C=S": -0.7916167979435471,
+ "Cl-Cl": 0.102119976777834,
+ "Cl-F": 0.35834979657113486,
+ "Cl-H": 0.37722761336653576,
+ "Cl-N": 0.24362105625176722,
+ "Cl-O": -0.30321812576871465,
+ "Cl-S": 0.3698531320784155,
+ "F-F": -0.5206580899046781,
+ "F-H": 0.10770093360747524,
+ "F-O": -1.093697489896995,
+ "F-S": 0.9537024545758375,
+ "H-H": -0.4695215879854784,
+ "H-N": -0.3001881490725287,
+ "H-O": -0.17273460791217013,
+ "H-S": 0.6453788347829875,
+ "N#N": 0.3536764027271856,
+ "N-N": 1.0280964341867438,
+ "N-O": -0.36569948213780085,
+ "N=N": 0.016819631963059654,
+ "N=O": -2.1355012391692445,
+ "O-O": -1.5577087944484471,
+ "O-S": -0.6020941596112097,
+ "O=O": -4.405777043235522,
+ "O=S": -0.14850188392821617,
+ "S-S": 0.19851252326088406,
+ "S=S": -1.914710085917519,
+ },
+ "LevelOfTheory(method='g42023',software='gaussian')": {
+ "Br-Br": 3.330552840135976,
+ "Br-C": 2.265914817178334,
+ "Br-Cl": 2.082596692689732,
+ "Br-F": 2.6668411525568434,
+ "Br-H": 1.7441168029044984,
+ "Br-O": 2.067795377687666,
+ "C#C": -0.013616303929732211,
+ "C#N": 0.333741952140125,
+ "C#O": 0.8024045649056823,
+ "C-C": -0.04939286902616742,
+ "C-Cl": 0.5854914830917455,
+ "C-F": -0.04093916722939502,
+ "C-H": -0.12420478765638458,
+ "C-N": 0.23013967957390946,
+ "C-O": 0.14423022808334898,
+ "C-S": 0.20462337398273275,
+ "C=C": -0.04276147915532196,
+ "C=N": -0.3545228494138746,
+ "C=O": 0.4420435996563946,
+ "C=S": 0.6654460289199683,
+ "Cl-Cl": 0.4500582163654019,
+ "Cl-F": 0.7154752369757524,
+ "Cl-H": 0.0612171479932364,
+ "Cl-N": 0.4308927261380535,
+ "Cl-O": 0.23700013690914945,
+ "Cl-S": 0.03034950051953038,
+ "F-F": -0.5690848806900756,
+ "F-H": 0.28201184460831996,
+ "F-O": -0.032595287987397054,
+ "F-S": 0.08710563621377787,
+ "H-H": 0.2720460950634287,
+ "H-N": -0.4587040776649823,
+ "H-O": -0.26953505825987695,
+ "H-S": 0.2808109372636024,
+ "N#N": 0.27481522852422535,
+ "N-N": 1.4993282948950248,
+ "N-O": 0.7126894011493969,
+ "N=N": 0.7171001263965149,
+ "N=O": -0.1455260332444097,
+ "O-O": -0.06252099694563559,
+ "O-S": -0.7373601289432214,
+ "O=O": -0.0010764469865813008,
+ "O=S": -0.39949332357812345,
+ "S-S": 0.5639370922718308,
+ "S=S": -0.682380656986219,
+ },
+ "LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.429744659090102,
+ "Br-C": 1.6545485889284366,
+ "Br-Cl": 1.7142907683277278,
+ "Br-F": 2.2658348570979125,
+ "Br-H": 1.4952654036696131,
+ "Br-O": -2.73983038407014,
+ "C#C": -3.9047817565332297,
+ "C#N": -1.5300752489677072,
+ "C#O": -2.6209219311139584,
+ "C-C": -0.24746301450032143,
+ "C-Cl": 0.19636526436470433,
+ "C-F": 3.410224156902478,
+ "C-H": -0.09964335791797772,
+ "C-N": 1.4603163174971885,
+ "C-O": 0.8832746655426813,
+ "C-S": -0.5304185908118494,
+ "C=C": -1.8606239194745202,
+ "C=N": -1.1338124226391004,
+ "C=O": -1.619022224952623,
+ "C=S": -1.916174470276968,
+ "Cl-Cl": 0.503010450927933,
+ "Cl-F": 2.136230915985287,
+ "Cl-H": -0.5469306071556943,
+ "Cl-N": 1.3430977155247574,
+ "Cl-O": -1.4723536555219587,
+ "Cl-S": -0.509553182792621,
+ "F-F": 0.7726629144209081,
+ "F-H": 0.3672782344335701,
+ "F-O": -0.9413715557229175,
+ "F-S": 2.1582926244982157,
+ "H-H": 1.024339779643227,
+ "H-N": -0.09195534602742343,
+ "H-O": -0.15005444853360164,
+ "H-S": 0.4386941672781187,
+ "N#N": -0.2565204342752829,
+ "N-N": 3.0083645666772605,
+ "N-O": 1.3052026526381195,
+ "N=N": 1.7148026016752105,
+ "N=O": -4.6198686582691995,
+ "O-O": -3.391102601541552,
+ "O-S": -0.5430411883709482,
+ "O=O": -13.392374300456533,
+ "O=S": -3.51247621624198,
+ "S-S": -0.2867808330341139,
+ "S=S": -5.476068377604363,
+ },
+ "LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.160134801240953,
+ "Br-C": 1.5891170152596266,
+ "Br-Cl": 1.718115418254066,
+ "Br-F": 1.5116208464258187,
+ "Br-H": 2.0191942239260214,
+ "Br-O": -4.274979415789412,
+ "C#C": -10.067665487825874,
+ "C#N": -5.205505941584992,
+ "C#O": -12.600790287770035,
+ "C-C": -0.08518198823086938,
+ "C-Cl": -0.08550943158177726,
+ "C-F": 1.3321324467225444,
+ "C-H": -0.6353084572809033,
+ "C-N": 2.2187143267832403,
+ "C-O": -0.7621039090865191,
+ "C-S": -0.6399224279659543,
+ "C=C": -3.6551410896361416,
+ "C=N": -0.5484777574178885,
+ "C=O": -4.245923492755485,
+ "C=S": -4.009298135801688,
+ "Cl-Cl": 0.5616568776247103,
+ "Cl-F": 0.6976087192059381,
+ "Cl-H": -0.09745420487609024,
+ "Cl-N": 4.405110342452262,
+ "Cl-O": -0.38264975416233526,
+ "Cl-S": 1.3354104921920222,
+ "F-F": 1.2505750302400769,
+ "F-H": -1.595921528720588,
+ "F-O": -0.40910053540076496,
+ "F-S": 0.8126610386525216,
+ "H-H": -0.062249970759114454,
+ "H-N": 0.8510598933018321,
+ "H-O": -1.5939287430720748,
+ "H-S": -0.1984513445939905,
+ "N#N": -0.9537562203773516,
+ "N-N": 5.822142540017102,
+ "N-O": 3.3554493841559916,
+ "N=N": 5.610266719969122,
+ "N=O": -1.9118686964677922,
+ "O-O": -1.8609895562683292,
+ "O-S": -1.786469649924569,
+ "O=O": -8.395885938590766,
+ "O=S": -3.862921705051701,
+ "S-S": -0.5373927758262487,
+ "S=S": -5.225148003169373,
+ },
+ "LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 3.305654550616759,
+ "Br-C": -0.05727528660907145,
+ "Br-Cl": 2.3761263461502997,
+ "Br-F": 2.120848419907242,
+ "Br-H": 2.0476506226668825,
+ "Br-O": -1.0997935013816484,
+ "C#C": -11.727954014852545,
+ "C#N": -4.936590806911296,
+ "C#O": -14.492230960463981,
+ "C-C": -4.267102307313112,
+ "C-Cl": -2.033906142706713,
+ "C-F": -3.2026754579375702,
+ "C-H": -0.5835221409186703,
+ "C-N": -1.3720772367628005,
+ "C-O": -2.9489145410358137,
+ "C-S": -3.5607880774371488,
+ "C=C": -6.407632356841511,
+ "C=N": -1.9098238790426274,
+ "C=O": -5.249838620654235,
+ "C=S": -4.822361681013005,
+ "Cl-Cl": 1.4636059975680087,
+ "Cl-F": 1.322830676429593,
+ "Cl-H": -0.19275699720874329,
+ "Cl-N": 7.1625698291250055,
+ "Cl-O": 2.6159876021208004,
+ "Cl-S": 0.02375539289852148,
+ "F-F": 2.872921958491552,
+ "F-H": -5.633177576546018,
+ "F-O": 3.4737694689759273,
+ "F-S": -2.581689243703967,
+ "H-H": 5.081754715743211,
+ "H-N": 0.5014882858015278,
+ "H-O": -3.1426589832202807,
+ "H-S": -0.4969695507597558,
+ "N#N": 0.43443087643958667,
+ "N-N": 5.116405402081436,
+ "N-O": 3.161954181174154,
+ "N=N": 6.961082649305189,
+ "N=O": 2.854000729401121,
+ "O-O": 3.7088719491954727,
+ "O-S": -3.6866923268570293,
+ "O=O": -0.12220233349439617,
+ "O=S": -3.8378075068842885,
+ "S-S": -1.5151915860787712,
+ "S=S": -1.749768539958074,
+ },
+ "LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem')": {
+ "Br-Br": 3.141582479299774,
+ "Br-C": 1.639554260206417,
+ "Br-Cl": 1.6286724310473555,
+ "Br-F": 3.0166822668343674,
+ "Br-H": 1.982177664995783,
+ "Br-O": 0.04275401978713398,
+ "C#C": -3.1717397157929743,
+ "C#N": -1.0633066056556169,
+ "C#O": -1.1600692784334292,
+ "C-C": 0.014252623169268175,
+ "C-Cl": 0.10395569463041669,
+ "C-F": 1.5945260087989959,
+ "C-H": -0.02991058487671204,
+ "C-N": 0.9340428985023135,
+ "C-O": 0.015236186458294216,
+ "C-S": -0.22107913768914,
+ "C=C": -0.6483643220895527,
+ "C=N": -0.20572745989472555,
+ "C=O": -0.7732637114989037,
+ "C=S": -1.5372009523458168,
+ "Cl-Cl": 0.25340132435804535,
+ "Cl-F": 1.5791840699673472,
+ "Cl-H": -0.05717749671183725,
+ "Cl-N": 1.0243375166017996,
+ "Cl-O": 0.0010782136371266001,
+ "Cl-S": -0.24673103133295177,
+ "F-F": 0.6857342010242872,
+ "F-H": -0.770451924445311,
+ "F-O": 0.795022814426595,
+ "F-S": 1.0147438850219526,
+ "H-H": -0.45207789121610636,
+ "H-N": 0.22530087903954854,
+ "H-O": -0.18665998013097249,
+ "H-S": 0.7279682055687443,
+ "N#N": 0.4266926529304437,
+ "N-N": 2.5918235837232673,
+ "N-O": 1.0928525967897216,
+ "N=N": 0.8349533441037057,
+ "N=O": -2.5380909847502546,
+ "O-O": -1.2822539038091285,
+ "O-S": -1.2861775067488435,
+ "O=O": -9.168021980597509,
+ "O=S": -2.18756700393691,
+ "S-S": 0.13710935731962776,
+ "S=S": -3.297428933660899,
+ },
+ "LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian')": {
+ "Br-Br": 2.9585184472615715,
+ "Br-C": 0.7891610772258629,
+ "Br-Cl": 1.7702965975878437,
+ "Br-F": 2.5823551057599605,
+ "Br-H": 2.403228751492449,
+ "Br-O": -3.6243516474330164,
+ "C#C": -8.059131721107171,
+ "C#N": -3.4509409111855183,
+ "C#O": -6.985590912375478,
+ "C-C": -0.6045111148538014,
+ "C-Cl": -0.857394403126926,
+ "C-F": 1.1804213854366754,
+ "C-H": -0.1734999058938592,
+ "C-N": 1.1459304236350345,
+ "C-O": -1.142471696990408,
+ "C-S": -1.3772039221627437,
+ "C=C": -3.452592291335914,
+ "C=N": -1.269601800683162,
+ "C=O": -2.6345351928572955,
+ "C=S": -3.7828916464195084,
+ "Cl-Cl": 0.39803960852632625,
+ "Cl-F": 0.9415518900851652,
+ "Cl-H": 0.0969492647413368,
+ "Cl-N": 2.1470385211271954,
+ "Cl-O": -0.9916667770133993,
+ "Cl-S": -0.5848239702837456,
+ "F-F": 1.0970281630553398,
+ "F-H": -1.323542548613382,
+ "F-O": -0.6475999540049119,
+ "F-S": -0.1896393130642669,
+ "H-H": 0.20633209141183748,
+ "H-N": 0.4860812336876893,
+ "H-O": -1.3356442656180472,
+ "H-S": 0.6665444832177948,
+ "N#N": -0.6214827613113917,
+ "N-N": 3.7494112911763042,
+ "N-O": 1.4360531683736724,
+ "N=N": 2.9646887272310924,
+ "N=O": -2.4898048752298974,
+ "O-O": -2.8303041507497038,
+ "O-S": -2.716736732063414,
+ "O=O": -8.634946258422353,
+ "O=S": -3.4539348658753446,
+ "S-S": -1.3276149373182218,
+ "S=S": -5.902725217701505,
},
-
}
# Melius-type bond additivity correction parameters
mbac = {
-
"CompositeLevelOfTheory(freq=LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'),energy=LevelOfTheory(method='ccsd(t)f12',basis='ccpvtzf12',software='molpro'))": {
- 'atom_corr': {
- 'C': -0.6004599146970828,
- 'Cl': -0.21285368087888518,
- 'F': 0.20136534958427602,
- 'H': 0.1409606206795142,
- 'N': 0.44677472396061857,
- 'O': 0.7724579645053421,
- 'S': -0.1294113249415446
- },
- 'bond_corr_length': {
- 'C': 57.600230521006345,
- 'Cl': 72.75494140267224,
- 'F': 2.7637442704545506e-39,
- 'H': 0.04568584404132764,
- 'N': 7.988043181948807,
- 'O': 1.1170405486633287e-25,
- 'S': 337.25420543898184
- },
- 'bond_corr_neighbor': {
- 'C': -0.02675767045779017,
- 'Cl': -0.026157341196276294,
- 'F': -0.09738287356772249,
- 'H': 0.08331791884967885,
- 'N': -0.031799354286893795,
- 'O': -0.04321158886089615,
- 'S': -0.07172725215109269
- },
- 'mol_corr': 0.3057912044551125
+ "atom_corr": {
+ "C": -0.6004599146970828,
+ "Cl": -0.21285368087888518,
+ "F": 0.20136534958427602,
+ "H": 0.1409606206795142,
+ "N": 0.44677472396061857,
+ "O": 0.7724579645053421,
+ "S": -0.1294113249415446,
+ },
+ "bond_corr_length": {
+ "C": 57.600230521006345,
+ "Cl": 72.75494140267224,
+ "F": 2.7637442704545506e-39,
+ "H": 0.04568584404132764,
+ "N": 7.988043181948807,
+ "O": 1.1170405486633287e-25,
+ "S": 337.25420543898184,
+ },
+ "bond_corr_neighbor": {
+ "C": -0.02675767045779017,
+ "Cl": -0.026157341196276294,
+ "F": -0.09738287356772249,
+ "H": 0.08331791884967885,
+ "N": -0.031799354286893795,
+ "O": -0.04321158886089615,
+ "S": -0.07172725215109269,
+ },
+ "mol_corr": 0.3057912044551125,
},
-
"CompositeLevelOfTheory(freq=LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'),energy=LevelOfTheory(method='ccsd(t)f12',basis='ccpvdzf12',software='molpro'))": {
- 'atom_corr': {
- 'C': -0.5464261912627,
- 'Cl': -0.3331232529849068,
- 'F': 0.09684535337591452,
- 'H': 0.3093277751661718,
- 'N': 0.4773300729311916,
- 'O': 0.6949720732175282,
- 'S': -0.9142689727759676
- },
- 'bond_corr_length': {
- 'C': 64.67678783352589,
- 'Cl': 6.316147607205602,
- 'F': 2.9969902462203326e-14,
- 'H': 1.8496519952345347e-16,
- 'N': 9.624991083595463,
- 'O': 1.0824291132601096e-15,
- 'S': 735.661291892654
- },
- 'bond_corr_neighbor': {
- 'C': -0.024587039354705877,
- 'Cl': -0.03540309101545116,
- 'F': -0.016933453385969043,
- 'H': 0.046660614206200754,
- 'N': -0.0053021340471547,
- 'O': -0.01078514461511072,
- 'S': -0.13988268641251655
- },
- 'mol_corr': 0.30287826305208276
+ "atom_corr": {
+ "C": -0.5464261912627,
+ "Cl": -0.3331232529849068,
+ "F": 0.09684535337591452,
+ "H": 0.3093277751661718,
+ "N": 0.4773300729311916,
+ "O": 0.6949720732175282,
+ "S": -0.9142689727759676,
+ },
+ "bond_corr_length": {
+ "C": 64.67678783352589,
+ "Cl": 6.316147607205602,
+ "F": 2.9969902462203326e-14,
+ "H": 1.8496519952345347e-16,
+ "N": 9.624991083595463,
+ "O": 1.0824291132601096e-15,
+ "S": 735.661291892654,
+ },
+ "bond_corr_neighbor": {
+ "C": -0.024587039354705877,
+ "Cl": -0.03540309101545116,
+ "F": -0.016933453385969043,
+ "H": 0.046660614206200754,
+ "N": -0.0053021340471547,
+ "O": -0.01078514461511072,
+ "S": -0.13988268641251655,
+ },
+ "mol_corr": 0.30287826305208276,
},
-
"LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem')": {
- 'atom_corr': {
- 'Br': -4.262780823587865,
- 'C': 4.999999999999999,
- 'Cl': -4.999999999999999,
- 'F': -4.999999999999999,
- 'H': -1.0450492093486716,
- 'N': -4.999999999999999,
- 'O': -4.999999999999999,
- 'S': -4.999999999999999
- },
- 'bond_corr_length': {
- 'Br': 8692.219738590926,
- 'C': 133.3489203999116,
- 'Cl': 983.472669453573,
- 'F': 98.4144446431002,
- 'H': 0.9620481174299411,
- 'N': 1.258833913444385e-27,
- 'O': 356.54294878127047,
- 'S': 4253.837243907855
- },
- 'bond_corr_neighbor': {
- 'Br': -0.637372927288811,
- 'C': 0.07497384490455655,
- 'Cl': 0.412600941322612,
- 'F': 0.44818650615117767,
- 'H': -0.9999999999999999,
- 'N': -0.2675044921389425,
- 'O': -0.16343725217730817,
- 'S': 0.11474046296004109
- },
- 'mol_corr': -3.096451394144581
+ "atom_corr": {
+ "Br": -4.262780823587865,
+ "C": 4.999999999999999,
+ "Cl": -4.999999999999999,
+ "F": -4.999999999999999,
+ "H": -1.0450492093486716,
+ "N": -4.999999999999999,
+ "O": -4.999999999999999,
+ "S": -4.999999999999999,
+ },
+ "bond_corr_length": {
+ "Br": 8692.219738590926,
+ "C": 133.3489203999116,
+ "Cl": 983.472669453573,
+ "F": 98.4144446431002,
+ "H": 0.9620481174299411,
+ "N": 1.258833913444385e-27,
+ "O": 356.54294878127047,
+ "S": 4253.837243907855,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.637372927288811,
+ "C": 0.07497384490455655,
+ "Cl": 0.412600941322612,
+ "F": 0.44818650615117767,
+ "H": -0.9999999999999999,
+ "N": -0.2675044921389425,
+ "O": -0.16343725217730817,
+ "S": 0.11474046296004109,
+ },
+ "mol_corr": -3.096451394144581,
},
-
"LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem')": {
- 'atom_corr': {
- 'Br': -4.236702026546933,
- 'C': 0.2049164817767285,
- 'Cl': -2.5370579912419085,
- 'F': -4.390697891358869,
- 'H': -2.062847444255194,
- 'N': -4.999999999999999,
- 'O': -2.485820286098204,
- 'S': -2.3806435571125646
- },
- 'bond_corr_length': {
- 'Br': 2886.4449179333255,
- 'C': 0.05644392159534064,
- 'Cl': 257.3272543651555,
- 'F': 136.75193570503143,
- 'H': 1.0783080754563377,
- 'N': 4.0393833100316303e-35,
- 'O': 120.00409931223447,
- 'S': 301.39625436311553
- },
- 'bond_corr_neighbor': {
- 'Br': 0.27904803369228603,
- 'C': -0.09439333163743208,
- 'Cl': 0.17830274429860773,
- 'F': 0.14749707198083395,
- 'H': -0.1790691880962216,
- 'N': -0.3694958066667204,
- 'O': -0.07383806558254727,
- 'S': -0.13458257713999408
- },
- 'mol_corr': -3.782190737782739
+ "atom_corr": {
+ "Br": -4.236702026546933,
+ "C": 0.2049164817767285,
+ "Cl": -2.5370579912419085,
+ "F": -4.390697891358869,
+ "H": -2.062847444255194,
+ "N": -4.999999999999999,
+ "O": -2.485820286098204,
+ "S": -2.3806435571125646,
+ },
+ "bond_corr_length": {
+ "Br": 2886.4449179333255,
+ "C": 0.05644392159534064,
+ "Cl": 257.3272543651555,
+ "F": 136.75193570503143,
+ "H": 1.0783080754563377,
+ "N": 4.0393833100316303e-35,
+ "O": 120.00409931223447,
+ "S": 301.39625436311553,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.27904803369228603,
+ "C": -0.09439333163743208,
+ "Cl": 0.17830274429860773,
+ "F": 0.14749707198083395,
+ "H": -0.1790691880962216,
+ "N": -0.3694958066667204,
+ "O": -0.07383806558254727,
+ "S": -0.13458257713999408,
+ },
+ "mol_corr": -3.782190737782739,
+ },
+ "LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.7259185760079045,
+ "C": -0.47431534018069527,
+ "Cl": -2.4547035930961707,
+ "F": -2.1880904814300277,
+ "H": -0.5458308067646468,
+ "N": -4.827381493800466,
+ "O": -2.0527563550660437,
+ "S": -2.442021903933336,
+ },
+ "bond_corr_length": {
+ "Br": 2877.550911258354,
+ "C": 1.5063075895176483,
+ "Cl": 164.17406993034027,
+ "F": 55.68531242170151,
+ "H": 0.1189246585337484,
+ "N": 7.184242319276031e-36,
+ "O": 74.19515612449436,
+ "S": 181.89466317284376,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.22272643015709978,
+ "C": -0.015710916762016396,
+ "Cl": 0.13823711657917678,
+ "F": -0.018286544832416103,
+ "H": -0.3308973634058003,
+ "N": -0.21062470517447895,
+ "O": -0.07509392841717095,
+ "S": 0.018508829643403297,
+ },
+ "mol_corr": -3.128430008492512,
+ },
+ "LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -4.414886941279591,
+ "C": -1.2788561989540084,
+ "Cl": -3.9538214311549296,
+ "F": -2.870933571218488,
+ "H": -1.0559343956431977,
+ "N": -4.999999999999999,
+ "O": -2.722544210188091,
+ "S": -3.423963393906341,
+ },
+ "bond_corr_length": {
+ "Br": 3365.401000284381,
+ "C": 32.41111980292527,
+ "Cl": 1120.3578886231574,
+ "F": 48.528261190125264,
+ "H": 2.0790232813236367,
+ "N": 1.62745158729554e-37,
+ "O": 131.3709480659892,
+ "S": 579.8040088238828,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.06777126459908667,
+ "C": 0.05312915585157329,
+ "Cl": 0.5543274934783898,
+ "F": 0.2413987614489862,
+ "H": -0.3049128401101695,
+ "N": -0.2257645687616031,
+ "O": -0.07051608196041638,
+ "S": 0.07165348172521459,
+ },
+ "mol_corr": -3.0702419255988547,
+ },
+ "LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -4.168564249467533,
+ "C": -1.2030435281332514,
+ "Cl": -4.999999999999999,
+ "F": -2.706573540518185,
+ "H": -0.7727399582352896,
+ "N": -4.999999999999999,
+ "O": -4.135174564412973,
+ "S": -2.452332540274653,
+ },
+ "bond_corr_length": {
+ "Br": 5331.928082845636,
+ "C": 75.74556004229397,
+ "Cl": 2707.1976801998812,
+ "F": 142.21512288890113,
+ "H": 6.996148056419364,
+ "N": 1.0556262870452909e-36,
+ "O": 195.61703921350846,
+ "S": 892.782742028412,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.06706731097399637,
+ "C": 0.061041827439572025,
+ "Cl": 0.6804593728756586,
+ "F": 0.4598760351419994,
+ "H": -0.29427670848195925,
+ "N": -0.0025315496152523874,
+ "O": 0.41430266952081934,
+ "S": 0.06804996251291237,
+ },
+ "mol_corr": -1.9616952218095038,
+ },
+ "LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.276154664685273,
+ "C": -1.2963685703674126,
+ "Cl": -4.999999999999999,
+ "F": -4.536396310466008,
+ "H": 0.05099511639531225,
+ "N": -3.8069458099880804,
+ "O": -4.999999999999999,
+ "S": -2.1764558591290166,
+ },
+ "bond_corr_length": {
+ "Br": 3528.4833183471255,
+ "C": 140.09313568694245,
+ "Cl": 2982.4602944763888,
+ "F": 530.1117358048127,
+ "H": 9.075689278413536,
+ "N": 0.3764981999512931,
+ "O": 219.83506891123866,
+ "S": 1067.881830883473,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.020760193013373018,
+ "C": 0.007454780379914851,
+ "Cl": 0.824433282089211,
+ "F": 0.27309705784694926,
+ "H": -0.25690887927822603,
+ "N": -0.10952708199088418,
+ "O": 0.2283439266449446,
+ "S": 0.01554002958289021,
+ },
+ "mol_corr": -0.8899545265481491,
+ },
+ "LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.6005908602445977,
+ "C": -0.8054340705643968,
+ "Cl": -2.43884963955195,
+ "F": -3.965880960158593,
+ "H": -1.5603528844325838,
+ "N": -4.999999999999999,
+ "O": -1.6957773207754419,
+ "S": -1.2177104292953402,
+ },
+ "bond_corr_length": {
+ "Br": 848.5288225329404,
+ "C": 1.0551476689655458e-39,
+ "Cl": 9.225454937746438e-30,
+ "F": 112.23726917778446,
+ "H": 1.8769786440921787,
+ "N": 0.13802661025364263,
+ "O": 108.07793479598809,
+ "S": 169.79024410176663,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.22593211791285167,
+ "C": 0.061390858199028724,
+ "Cl": 0.34176990325579143,
+ "F": -0.15258880170925185,
+ "H": -0.3028072238954846,
+ "N": -0.3996792877098847,
+ "O": -0.3206390731336443,
+ "S": 0.07717951990956541,
+ },
+ "mol_corr": -3.658715669803949,
+ },
+ "LevelOfTheory(method='cbsqb32023',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.956244604362742,
+ "C": -0.41291914337827523,
+ "Cl": -0.23955330486448284,
+ "F": -0.5689000027425979,
+ "H": 1.0959105596914334,
+ "N": 0.4748731628336118,
+ "O": -0.023774845505725492,
+ "S": -0.47454624519350364,
+ },
+ "bond_corr_length": {
+ "Br": 6539.663981456813,
+ "C": 4.092928713195903,
+ "Cl": 720.3076549059554,
+ "F": 108.17523315623775,
+ "H": 0.21525751639065682,
+ "N": 4.041706869090163,
+ "O": 76.78703364183056,
+ "S": 360.4919885754002,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.2918229064917957,
+ "C": -0.008781517354703708,
+ "Cl": -0.21057330070040398,
+ "F": 0.018240093978181476,
+ "H": -0.1056155775687975,
+ "N": -0.11658786705282323,
+ "O": -0.16087559731939802,
+ "S": 0.039179722012959474,
+ },
+ "mol_corr": 0.611862512788004,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca')": {
+ "atom_corr": {
+ "Br": -3.5644852095010955,
+ "C": -0.45376982445360997,
+ "Cl": -3.5808704925612793,
+ "F": -1.7363664551199853,
+ "H": -1.1806973131117253,
+ "N": -4.999999999999999,
+ "O": -1.626830448935033,
+ "S": -2.6592894208883573,
+ },
+ "bond_corr_length": {
+ "Br": 1834.0981194876176,
+ "C": 1.0585885442318517e-21,
+ "Cl": 762.9740777324495,
+ "F": 40.55945562238725,
+ "H": 9.252603422964685e-26,
+ "N": 4.423943251165408e-23,
+ "O": 31.992189563150998,
+ "S": 387.114931171546,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.42414356737167935,
+ "C": -0.045641254272903165,
+ "Cl": 0.4902253697150646,
+ "F": -0.05310930834934521,
+ "H": -0.409433935552924,
+ "N": -0.07865427046480605,
+ "O": -0.3054328447990402,
+ "S": 0.02400573604899275,
+ },
+ "mol_corr": -4.016453055559416,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca')": {
+ "atom_corr": {
+ "C": -0.8209516796802057,
+ "Cl": -1.0233464499803775,
+ "F": -1.42080650465878,
+ "H": -0.662736098300858,
+ "N": -2.0805956611312655,
+ "O": -0.9019256338033106,
+ "S": -1.206816123113442,
+ },
+ "bond_corr_length": {
+ "C": 1.7959624680737015e-18,
+ "Cl": 1.657760008428399,
+ "F": 109.33596649621812,
+ "H": 6.1676174799228684e-21,
+ "N": 4.78990860280172,
+ "O": 88.21146745609536,
+ "S": 1.264429102412463e-17,
+ },
+ "bond_corr_neighbor": {
+ "C": -0.008479458040908413,
+ "Cl": -0.17628627048085357,
+ "F": 0.14091265946418902,
+ "H": -0.06469961100327634,
+ "N": 0.013788256245008637,
+ "O": 0.025576263037227858,
+ "S": -0.18320934953189208,
+ },
+ "mol_corr": -1.6887901248633321,
+ },
+ "LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca')": {
+ "atom_corr": {
+ "C": -0.7192991361605625,
+ "Cl": -0.5868318592105157,
+ "F": -1.1611822115103871,
+ "H": -0.3766521822580933,
+ "N": -1.4726569565120855,
+ "O": -0.5344613386696786,
+ "S": -0.6510400787662423,
+ },
+ "bond_corr_length": {
+ "C": 3.3271580787803916e-20,
+ "Cl": 3.455909292299488,
+ "F": 99.92687639193103,
+ "H": 4.7943589227632895e-14,
+ "N": 7.886582088343864,
+ "O": 89.94795841549576,
+ "S": 4.240524371582404,
+ },
+ "bond_corr_neighbor": {
+ "C": -0.01757816018371571,
+ "Cl": -0.11926170449708393,
+ "F": 0.003584661151245554,
+ "H": -0.027557685820302255,
+ "N": -0.03168943818791808,
+ "O": -0.05801201669298011,
+ "S": -0.126635441868247,
+ },
+ "mol_corr": -1.0735877686963105,
+ },
+ "LevelOfTheory(method='g42023',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.333543870341022,
+ "C": -0.14908229810960538,
+ "Cl": -0.3078447828919127,
+ "F": 0.17940336460920495,
+ "H": 0.22171701835727972,
+ "N": -0.15062774301706736,
+ "O": -1.1464615689779343,
+ "S": -0.6888675274381341,
+ },
+ "bond_corr_length": {
+ "Br": 3757.947439951815,
+ "C": 16.38596581976308,
+ "Cl": 200.63103545021744,
+ "F": 10.482830451539229,
+ "H": 3.202287596209322,
+ "N": 21.559154548128443,
+ "O": 102.37605178216049,
+ "S": 314.5830776476561,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.19849163930955047,
+ "C": 0.0005271396565984861,
+ "Cl": -0.12084833053663445,
+ "F": -0.06295443992594552,
+ "H": -0.02764534616344858,
+ "N": -0.04738023099936614,
+ "O": -0.008608067386707793,
+ "S": -0.03573497246029344,
+ },
+ "mol_corr": 0.24737574833000994,
+ },
+ "LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.553403199867713,
+ "C": -1.2929770297655796,
+ "Cl": -1.0305292453323327,
+ "F": -4.357497470209941,
+ "H": -0.7955767663727142,
+ "N": -3.6114936250580825,
+ "O": -0.2931200276845658,
+ "S": -2.170731417473225,
+ },
+ "bond_corr_length": {
+ "Br": 1428.4936160856005,
+ "C": 2.339516178389198e-16,
+ "Cl": 1.176684343348929e-19,
+ "F": 239.02200352336857,
+ "H": 1.6775810678171713e-20,
+ "N": 5.536828292858931,
+ "O": 224.51630837481756,
+ "S": 201.5443345743267,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.042444339284190336,
+ "C": -0.03439473658032674,
+ "Cl": -0.22631523398835576,
+ "F": -0.20421885792696448,
+ "H": -0.23196400616550042,
+ "N": -0.3569535061365358,
+ "O": -0.713528669035424,
+ "S": -0.07822334124670632,
+ },
+ "mol_corr": -2.7301776084192952,
+ },
+ "LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.789424528910768,
+ "C": 1.0952813495608267,
+ "Cl": -3.7838880221871736,
+ "F": -4.080595217911424,
+ "H": -1.3777201206730496,
+ "N": -4.999999999999999,
+ "O": -1.649832022377,
+ "S": -2.2238021489733293,
+ },
+ "bond_corr_length": {
+ "Br": 2569.0791647328733,
+ "C": 8.682603794927704,
+ "Cl": 1014.2076885010752,
+ "F": 217.07584329896966,
+ "H": 1.177119022399421,
+ "N": 8.5085377175604e-39,
+ "O": 121.29051636932806,
+ "S": 417.3979125589823,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.20086585677854651,
+ "C": -0.2389406782917879,
+ "Cl": 0.42568219284296516,
+ "F": -0.027377506378446003,
+ "H": 0.0644203880746818,
+ "N": -0.7472109948168077,
+ "O": -0.3878459480536024,
+ "S": -0.2733098348722006,
+ },
+ "mol_corr": -3.3461803834155557,
+ },
+ "LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -3.528658292353861,
+ "C": 1.9064235848236029,
+ "Cl": -4.999999999999999,
+ "F": -3.2250506205878655,
+ "H": -0.21358378003269268,
+ "N": -4.999999999999999,
+ "O": -4.202567837486447,
+ "S": -2.292271844855686,
+ },
+ "bond_corr_length": {
+ "Br": 2936.7442335506016,
+ "C": 118.12271887843596,
+ "Cl": 2413.8972133528496,
+ "F": 224.4595533041108,
+ "H": 2.020887868041552,
+ "N": 2.1985845622668405e-37,
+ "O": 157.75927281896662,
+ "S": 1010.0949589941621,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.1262422110609448,
+ "C": 0.01791339355431293,
+ "Cl": 0.7042761828374674,
+ "F": 0.21823523054319327,
+ "H": -0.47377068060867195,
+ "N": -0.10372751243812463,
+ "O": 0.04837275907672002,
+ "S": 0.01631899962934537,
+ },
+ "mol_corr": -2.124086955220372,
+ },
+ "LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem')": {
+ "atom_corr": {
+ "Br": -2.898280218152727,
+ "C": -1.066313351814782,
+ "Cl": -1.0279619631672152,
+ "F": -2.5655825461986805,
+ "H": -0.7396825464945823,
+ "N": -2.644850920879153,
+ "O": -1.4917690464595663,
+ "S": -1.7542171046751114,
+ },
+ "bond_corr_length": {
+ "Br": 852.5123653912786,
+ "C": 0.774769081994401,
+ "Cl": 0.7007250945366236,
+ "F": 25.310159651065756,
+ "H": 6.430489493604599e-27,
+ "N": 7.134874422099381,
+ "O": 158.68106348629172,
+ "S": 190.47843391507996,
+ },
+ "bond_corr_neighbor": {
+ "Br": -0.01594000205720975,
+ "C": -0.04375819231857719,
+ "Cl": -0.012135487637494124,
+ "F": 0.029308906544620556,
+ "H": -0.054793202049090606,
+ "N": -0.26104792621752937,
+ "O": -0.1528910464380311,
+ "S": -0.06633481354144923,
+ },
+ "mol_corr": -1.8706888079548891,
+ },
+ "LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian')": {
+ "atom_corr": {
+ "Br": -4.209589590684708,
+ "C": -0.08876519321147136,
+ "Cl": -2.639689474125866,
+ "F": -3.793777994555464,
+ "H": -1.3184599805772061,
+ "N": -4.999999999999999,
+ "O": -1.8524880156611057,
+ "S": -1.940469548142586,
+ },
+ "bond_corr_length": {
+ "Br": 2807.4477007584255,
+ "C": 1.0160295284086117e-28,
+ "Cl": 255.00761484462157,
+ "F": 135.24811961680973,
+ "H": 0.5122739168984944,
+ "N": 6.831371458998159e-23,
+ "O": 115.57255727663583,
+ "S": 167.99396110220883,
+ },
+ "bond_corr_neighbor": {
+ "Br": 0.3133369428098526,
+ "C": -0.11442363110904287,
+ "Cl": 0.41635487781588904,
+ "F": 0.1617582076289107,
+ "H": -0.22407198683843807,
+ "N": -0.4662760813081799,
+ "O": -0.14900575762493523,
+ "S": -0.0803890833883211,
+ },
+ "mol_corr": -3.5703271095344267,
},
-
}
-
# Frequency scale factors
# Refer to https://comp.chem.umn.edu/freqscale/index.html for future updates of these factors
#
@@ -800,7 +2431,8 @@
"LevelOfTheory(method='wb97xd',basis='def2tzvp',software='gaussian')": 0.988, # [4]
"LevelOfTheory(method='wb97xd',basis='def2svp',software='gaussian')": 0.986, # [4]
"LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem')": 0.984, # [4]
- "LevelOfTheory(method='wb97mv',basis='def2tzvpd')": 1.002, # [4]
+ "LevelOfTheory(method='wb97mv',basis='def2tzvp',software='qchem')": 0.992, # [4]
+ "LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem')": 1.002, # [4]
"LevelOfTheory(method='b2plypd3',basis='aug-cc-pvtz')": 0.995, # [4]
"LevelOfTheory(method='b2plypd3',basis='cc-pvtz')": 0.993, # [4]
"LevelOfTheory(method='b2plypd3',basis='def2tzvp')": 0.995, # [4]
diff --git a/input/reference_sets/main/(E)-Diazene.yml b/input/reference_sets/main/(E)-Diazene.yml
index 21af784a7f..1488563a5c 100644
--- a/input/reference_sets/main/(E)-Diazene.yml
+++ b/input/reference_sets/main/(E)-Diazene.yml
@@ -73,6 +73,74 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.74003220335767
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174806
+ - -0.660729
+ - -0.0
+ - - 0.591582
+ - 0.190366
+ - -0.0
+ - - -0.591582
+ - -0.190366
+ - 0.0
+ - - -1.174806
+ - 0.660729
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.41961029714004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177798
+ - -0.661834
+ - -0.0
+ - - 0.588273
+ - 0.188148
+ - -0.0
+ - - -0.588273
+ - -0.188148
+ - 0.0
+ - - -1.177798
+ - 0.661834
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.51308061160843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.180708
+ - -0.665399
+ - -0.0
+ - - 0.590763
+ - 0.192806
+ - -0.0
+ - - -0.590763
+ - -0.192806
+ - 0.0
+ - - -1.180708
+ - 0.665399
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.40793341336387
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185408
+ - -0.668593
+ - -0.0
+ - - 0.59312
+ - 0.194666
+ - -0.0
+ - - -0.59312
+ - -0.194666
+ - 0.0
+ - - -1.185408
+ - 0.668593
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.189916674995736
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175157
+ - -0.659868
+ - -0.0
+ - - 0.585476
+ - 0.186287
+ - -0.0
+ - - -0.585476
+ - -0.186287
+ - 0.0
+ - - -1.175157
+ - 0.659868
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.95903918004473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175547
+ - -0.661988
+ - -0.0
+ - - 0.590111
+ - 0.191579
+ - -0.0
+ - - -0.590111
+ - -0.191579
+ - 0.0
+ - - -1.175547
+ - 0.661988
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.54329754903157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173044
+ - -0.659603
+ - -0.0
+ - - 0.586505
+ - 0.188463
+ - 0.0
+ - - -0.586505
+ - -0.188463
+ - 0.0
+ - - -1.173044
+ - 0.659603
+ - -0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.034253803489904
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173044
+ - -0.659603
+ - -0.0
+ - - 0.586505
+ - 0.188463
+ - 0.0
+ - - -0.586505
+ - -0.188463
+ - 0.0
+ - - -1.173044
+ - 0.659603
+ - -0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.46249325699551
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173044
+ - -0.659603
+ - -0.0
+ - - 0.586505
+ - 0.188463
+ - 0.0
+ - - -0.586505
+ - -0.188463
+ - 0.0
+ - - -1.173044
+ - 0.659603
+ - -0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.14467067289372
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177456
+ - -0.663408
+ - 0.0
+ - - 0.590377
+ - 0.192356
+ - 0.0
+ - - -0.590377
+ - -0.192356
+ - 0.0
+ - - -1.177456
+ - 0.663408
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.21117012987229
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173746
+ - -0.660007
+ - -0.0
+ - - 0.584708
+ - 0.187905
+ - -0.0
+ - - -0.584708
+ - -0.187905
+ - 0.0
+ - - -1.173746
+ - 0.660007
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.051470364535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174122
+ - -0.660545
+ - -0.0
+ - - 0.585459
+ - 0.1888
+ - -0.0
+ - - -0.585459
+ - -0.1888
+ - 0.0
+ - - -1.174122
+ - 0.660545
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.12669763657398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.181482
+ - -0.665818
+ - -0.0
+ - - 0.592607
+ - 0.193365
+ - -0.0
+ - - -0.592607
+ - -0.193365
+ - 0.0
+ - - -1.181482
+ - 0.665818
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.41567647205714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1730442229
+ - -0.6596028169
+ - -0.0
+ - - 0.5865048061
+ - 0.1884634825
+ - 0.0
+ - - -0.5865048061
+ - -0.1884634825
+ - 0.0
+ - - -1.1730442229
+ - 0.6596028169
+ - -0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.18254466595103
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173306
+ - -0.659512
+ - -0.0
+ - - 0.585854
+ - 0.187778
+ - -0.0
+ - - -0.585854
+ - -0.187778
+ - 0.0
+ - - -1.173306
+ - 0.659512
+ - 0.0
+ isotopes:
+ - 1
+ - 14
+ - 14
+ - 1
+ symbols:
+ - H
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/(Methylamino)methyl.yml b/input/reference_sets/main/(Methylamino)methyl.yml
index dca5c2c8b4..8ded833509 100644
--- a/input/reference_sets/main/(Methylamino)methyl.yml
+++ b/input/reference_sets/main/(Methylamino)methyl.yml
@@ -129,6 +129,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.64770572846964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185545
+ - -0.186335
+ - -0.032588
+ - - -0.094277
+ - 0.473497
+ - 0.132843
+ - - -1.248092
+ - -0.256578
+ - -0.088914
+ - - 1.371331
+ - -0.505045
+ - -1.064776
+ - - 1.214185
+ - -1.070589
+ - 0.604473
+ - - 1.985854
+ - 0.481924
+ - 0.280823
+ - - -0.119821
+ - 1.412586
+ - -0.233362
+ - - -2.180329
+ - 0.286376
+ - -0.061768
+ - - -1.23407
+ - -1.287369
+ - 0.234028
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.41285569341615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187701
+ - -0.186613
+ - -0.032903
+ - - -0.094795
+ - 0.468822
+ - 0.123854
+ - - -1.253109
+ - -0.255172
+ - -0.086698
+ - - 1.377626
+ - -0.515196
+ - -1.063468
+ - - 1.221883
+ - -1.066606
+ - 0.612388
+ - - 1.985992
+ - 0.488631
+ - 0.274821
+ - - -0.119111
+ - 1.41524
+ - -0.224113
+ - - -2.184779
+ - 0.290468
+ - -0.05585
+ - - -1.241082
+ - -1.291108
+ - 0.222728
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -188,6 +306,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.18779431869194
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.191101
+ - -0.186138
+ - -0.032459
+ - - -0.095928
+ - 0.470593
+ - 0.128031
+ - - -1.258407
+ - -0.257102
+ - -0.095612
+ - - 1.385972
+ - -0.511636
+ - -1.068406
+ - - 1.222362
+ - -1.072915
+ - 0.611225
+ - - 1.990964
+ - 0.491279
+ - 0.282483
+ - - -0.118187
+ - 1.415061
+ - -0.235776
+ - - -2.192216
+ - 0.293525
+ - -0.045668
+ - - -1.245335
+ - -1.294201
+ - 0.226942
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.76714572804446
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.191982
+ - -0.186132
+ - -0.032683
+ - - -0.095791
+ - 0.470245
+ - 0.129177
+ - - -1.258971
+ - -0.256368
+ - -0.089338
+ - - 1.382489
+ - -0.519859
+ - -1.072269
+ - - 1.228564
+ - -1.073229
+ - 0.61824
+ - - 1.99697
+ - 0.494954
+ - 0.275984
+ - - -0.119757
+ - 1.424068
+ - -0.225283
+ - - -2.197413
+ - 0.295339
+ - -0.056994
+ - - -1.247747
+ - -1.300551
+ - 0.223927
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.46204986623439
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183752
+ - -0.186432
+ - -0.033556
+ - - -0.093526
+ - 0.468479
+ - 0.117889
+ - - -1.248991
+ - -0.253717
+ - -0.080682
+ - - 1.375346
+ - -0.515398
+ - -1.061924
+ - - 1.216377
+ - -1.064845
+ - 0.612352
+ - - 1.982767
+ - 0.486167
+ - 0.275091
+ - - -0.119541
+ - 1.415985
+ - -0.222184
+ - - -2.181359
+ - 0.289498
+ - -0.056831
+ - - -1.2345
+ - -1.29127
+ - 0.220605
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.4431123777811
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.190921
+ - -0.185529
+ - -0.034126
+ - - -0.096434
+ - 0.468782
+ - 0.130649
+ - - -1.25687
+ - -0.259474
+ - -0.097573
+ - - 1.387745
+ - -0.502312
+ - -1.069249
+ - - 1.225615
+ - -1.074576
+ - 0.601563
+ - - 1.98927
+ - 0.486697
+ - 0.28688
+ - - -0.120192
+ - 1.410715
+ - -0.235226
+ - - -2.187667
+ - 0.292129
+ - -0.0564
+ - - -1.252062
+ - -1.287966
+ - 0.244242
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.4817511082098
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183814
+ - -0.187242
+ - -0.032027
+ - - -0.093439
+ - 0.474657
+ - 0.127686
+ - - -1.247753
+ - -0.25204
+ - -0.075348
+ - - 1.362534
+ - -0.522211
+ - -1.060376
+ - - 1.216833
+ - -1.061499
+ - 0.619291
+ - - 1.986927
+ - 0.484672
+ - 0.266153
+ - - -0.119137
+ - 1.420035
+ - -0.219413
+ - - -2.182603
+ - 0.286336
+ - -0.063622
+ - - -1.22685
+ - -1.294242
+ - 0.208416
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.17881215253321
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183814
+ - -0.187242
+ - -0.032027
+ - - -0.093438
+ - 0.474657
+ - 0.127686
+ - - -1.247753
+ - -0.25204
+ - -0.075348
+ - - 1.362534
+ - -0.522211
+ - -1.060376
+ - - 1.216833
+ - -1.061499
+ - 0.619291
+ - - 1.986927
+ - 0.484672
+ - 0.266153
+ - - -0.119137
+ - 1.420035
+ - -0.219413
+ - - -2.182603
+ - 0.286336
+ - -0.063622
+ - - -1.22685
+ - -1.294242
+ - 0.208416
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.895468903082076
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183814
+ - -0.187242
+ - -0.032027
+ - - -0.093438
+ - 0.474657
+ - 0.127686
+ - - -1.247753
+ - -0.25204
+ - -0.075348
+ - - 1.362534
+ - -0.522211
+ - -1.060376
+ - - 1.216833
+ - -1.061499
+ - 0.619291
+ - - 1.986927
+ - 0.484672
+ - 0.266153
+ - - -0.119137
+ - 1.420035
+ - -0.219413
+ - - -2.182603
+ - 0.286336
+ - -0.063622
+ - - -1.22685
+ - -1.294242
+ - 0.208416
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.813267921999234
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187912
+ - -0.183982
+ - -0.034419
+ - - -0.097221
+ - 0.469534
+ - 0.129284
+ - - -1.255089
+ - -0.261004
+ - -0.105399
+ - - 1.393696
+ - -0.495145
+ - -1.070798
+ - - 1.216715
+ - -1.080038
+ - 0.594864
+ - - 1.987635
+ - 0.484928
+ - 0.29561
+ - - -0.118762
+ - 1.408292
+ - -0.244212
+ - - -2.186517
+ - 0.291131
+ - -0.048559
+ - - -1.248044
+ - -1.28525
+ - 0.254389
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.14613702782839
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.182253
+ - -0.186306
+ - -0.031936
+ - - -0.093503
+ - 0.476395
+ - 0.131229
+ - - -1.242783
+ - -0.254559
+ - -0.089964
+ - - 1.358913
+ - -0.514591
+ - -1.062701
+ - - 1.207859
+ - -1.065717
+ - 0.613093
+ - - 1.986866
+ - 0.480786
+ - 0.272992
+ - - -0.118414
+ - 1.419733
+ - -0.224008
+ - - -2.179311
+ - 0.281497
+ - -0.061988
+ - - -1.221555
+ - -1.288772
+ - 0.224042
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.28254387553488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.180441
+ - -0.184461
+ - -0.033078
+ - - -0.093116
+ - 0.46947
+ - 0.125414
+ - - -1.245711
+ - -0.254204
+ - -0.085177
+ - - 1.373935
+ - -0.510077
+ - -1.065047
+ - - 1.2133
+ - -1.068568
+ - 0.608676
+ - - 1.982738
+ - 0.485473
+ - 0.280142
+ - - -0.118388
+ - 1.412007
+ - -0.230441
+ - - -2.18012
+ - 0.289731
+ - -0.056553
+ - - -1.232753
+ - -1.290904
+ - 0.226824
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.43904771041675
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.194118
+ - -0.187012
+ - -0.034041
+ - - -0.096214
+ - 0.471759
+ - 0.130718
+ - - -1.257592
+ - -0.261371
+ - -0.098624
+ - - 1.390213
+ - -0.496096
+ - -1.073427
+ - - 1.216367
+ - -1.081102
+ - 0.597738
+ - - 1.990615
+ - 0.486198
+ - 0.295146
+ - - -0.119612
+ - 1.414197
+ - -0.244779
+ - - -2.190348
+ - 0.291697
+ - -0.053336
+ - - -1.247223
+ - -1.289805
+ - 0.251365
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -247,6 +1014,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.24336029343421
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1838140816
+ - -0.1872417005
+ - -0.0320270848
+ - - -0.0934385042
+ - 0.4746567349
+ - 0.1276855821
+ - - -1.2477529659
+ - -0.2520396478
+ - -0.075347621
+ - - 1.3625336034
+ - -0.5222112089
+ - -1.0603757763
+ - - 1.2168325627
+ - -1.061499438
+ - 0.6192905411
+ - - 1.9869267232
+ - 0.4846724903
+ - 0.266153164
+ - - -0.1191367086
+ - 1.4200348882
+ - -0.2194129818
+ - - -2.1826033478
+ - 0.2863363039
+ - -0.0636222346
+ - - -1.2268499981
+ - -1.2942420904
+ - 0.2084164479
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.15611477491711
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183659
+ - -0.185726
+ - -0.033136
+ - - -0.093581
+ - 0.469927
+ - 0.121289
+ - - -1.248889
+ - -0.255061
+ - -0.086855
+ - - 1.376636
+ - -0.509005
+ - -1.064061
+ - - 1.213643
+ - -1.068477
+ - 0.608586
+ - - 1.983178
+ - 0.485065
+ - 0.281336
+ - - -0.118583
+ - 1.412399
+ - -0.230751
+ - - -2.181597
+ - 0.28983
+ - -0.052718
+ - - -1.234141
+ - -1.290485
+ - 0.227069
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/(Methylthio)cyclopentane.yml b/input/reference_sets/main/(Methylthio)cyclopentane.yml
index 3375877a10..f0a8181a0c 100644
--- a/input/reference_sets/main/(Methylthio)cyclopentane.yml
+++ b/input/reference_sets/main/(Methylthio)cyclopentane.yml
@@ -238,75 +238,1492 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.8150387611070431
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.585313
+ - -0.517182
+ - 0.009422
+ - - 1.264503
+ - 0.648109
+ - 0.414386
+ - - 0.00224
+ - 0.15647
+ - -0.809467
+ - - -1.213272
+ - 1.075558
+ - -0.642581
+ - - -2.023341
+ - 0.464417
+ - 0.519962
+ - - -1.568982
+ - -1.014162
+ - 0.622673
+ - - -0.594559
+ - -1.22824
+ - -0.546589
+ - - 2.867388
+ - -0.43203
+ - -1.039799
+ - - 2.303219
+ - -1.544723
+ - 0.231559
+ - - 3.441882
+ - -0.250051
+ - 0.62569
+ - - 0.453189
+ - 0.240354
+ - -1.799628
+ - - -1.792695
+ - 1.040109
+ - -1.567782
+ - - -0.93604
+ - 2.115664
+ - -0.472142
+ - - -3.094167
+ - 0.55048
+ - 0.337955
+ - - -1.814666
+ - 0.991158
+ - 1.450123
+ - - -2.406751
+ - -1.70937
+ - 0.578524
+ - - -1.057312
+ - -1.183449
+ - 1.568758
+ - - -1.139243
+ - -1.536381
+ - -1.444401
+ - - 0.152392
+ - -1.995277
+ - -0.34547
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.3352019464414844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.600753
+ - -0.523845
+ - -0.004569
+ - - 1.283842
+ - 0.648463
+ - 0.408601
+ - - 0.001278
+ - 0.157155
+ - -0.803676
+ - - -1.209608
+ - 1.083982
+ - -0.631307
+ - - -2.047288
+ - 0.459462
+ - 0.507521
+ - - -1.571917
+ - -1.011588
+ - 0.630983
+ - - -0.594934
+ - -1.227892
+ - -0.535803
+ - - 2.879795
+ - -0.439234
+ - -1.055497
+ - - 2.314903
+ - -1.551259
+ - 0.217737
+ - - 3.461038
+ - -0.260871
+ - 0.60941
+ - - 0.445676
+ - 0.238084
+ - -1.796762
+ - - -1.775996
+ - 1.078513
+ - -1.56551
+ - - -0.923338
+ - 2.117359
+ - -0.435007
+ - - -3.112957
+ - 0.524727
+ - 0.287044
+ - - -1.883934
+ - 0.992749
+ - 1.443575
+ - - -2.399577
+ - -1.720343
+ - 0.600684
+ - - -1.054645
+ - -1.158952
+ - 1.57846
+ - - -1.137358
+ - -1.542026
+ - -1.433622
+ - - 0.153365
+ - -1.993031
+ - -0.331071
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 28.626736761989527
+ value: 28.626736761989527
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.6424877891
+ - -0.4721519633
+ - -0.0325249149
+ - - 1.2613094406
+ - 0.6199356737
+ - 0.4681014593
+ - - 0.0047737779
+ - 0.1169072873
+ - -0.7994619543
+ - - -1.2176875026
+ - 1.0552858801
+ - -0.6972294348
+ - - -2.0297926462
+ - 0.5114339774
+ - 0.5092352931
+ - - -1.6425863832
+ - -0.9997082989
+ - 0.6305331275
+ - - -0.6195796958
+ - -1.2638054901
+ - -0.5071686387
+ - - 2.9170667895
+ - -0.2956783049
+ - -1.0829948785
+ - - 2.3951931199
+ - -1.5339130791
+ - 0.1061994264
+ - - 3.5000288754
+ - -0.222444122
+ - 0.6066096004
+ - - 0.493990391
+ - 0.1660597485
+ - -1.7840201284
+ - - -1.7992414535
+ - 0.9466719521
+ - -1.6269720678
+ - - -0.9412690048
+ - 2.1141730273
+ - -0.5991266671
+ - - -3.1094186069
+ - 0.6556220315
+ - 0.3631285586
+ - - -1.7505636439
+ - 1.0511108307
+ - 1.4248029028
+ - - -2.5155429429
+ - -1.661914065
+ - 0.5453529373
+ - - -1.1784350444
+ - -1.1925610323
+ - 1.6065336514
+ - - -1.1402264766
+ - -1.6015045792
+ - -1.4198520912
+ - - 0.1217749123
+ - -2.0323615426
+ - -0.2495854599
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.06588507571832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.609973
+ - -0.52351
+ - -0.006486
+ - - 1.287533
+ - 0.643725
+ - 0.417752
+ - - 0.002927
+ - 0.155544
+ - -0.800896
+ - - -1.209548
+ - 1.087324
+ - -0.630339
+ - - -2.055573
+ - 0.460755
+ - 0.506373
+ - - -1.5766
+ - -1.012846
+ - 0.634742
+ - - -0.599513
+ - -1.231419
+ - -0.535655
+ - - 2.883543
+ - -0.434587
+ - -1.063358
+ - - 2.329629
+ - -1.557451
+ - 0.21585
+ - - 3.475534
+ - -0.256003
+ - 0.606091
+ - - 0.45292
+ - 0.236787
+ - -1.796699
+ - - -1.773012
+ - 1.083522
+ - -1.571451
+ - - -0.920383
+ - 2.123758
+ - -0.430817
+ - - -3.124071
+ - 0.523273
+ - 0.277162
+ - - -1.898718
+ - 0.997782
+ - 1.44643
+ - - -2.406069
+ - -1.726393
+ - 0.609547
+ - - -1.052645
+ - -1.1553
+ - 1.584349
+ - - -1.146051
+ - -1.5408
+ - -1.438243
+ - - 0.149224
+ - -2.002706
+ - -0.333161
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.2308924323898935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.754633
+ - -0.555311
+ - -0.385907
+ - - 1.527967
+ - 0.58735
+ - 0.316061
+ - - 0.021341
+ - 0.109426
+ - -0.616934
+ - - -1.084307
+ - 1.167844
+ - -0.313818
+ - - -2.32347
+ - 0.364095
+ - 0.134588
+ - - -1.725478
+ - -0.902158
+ - 0.767968
+ - - -0.581073
+ - -1.257375
+ - -0.193948
+ - - 2.872123
+ - -0.395219
+ - -1.467691
+ - - 2.493594
+ - -1.605479
+ - -0.192294
+ - - 3.709886
+ - -0.335433
+ - 0.109504
+ - - 0.295257
+ - 0.110116
+ - -1.682719
+ - - -1.278492
+ - 1.811809
+ - -1.182829
+ - - -0.752214
+ - 1.830196
+ - 0.50237
+ - - -2.936688
+ - 0.086799
+ - -0.739452
+ - - -2.969123
+ - 0.93314
+ - 0.819323
+ - - -2.453958
+ - -1.71704
+ - 0.890328
+ - - -1.317101
+ - -0.667136
+ - 1.765028
+ - - -0.990741
+ - -1.762922
+ - -1.085844
+ - - 0.166942
+ - -1.931249
+ - 0.24746
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.7425319466673304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.609793
+ - -0.509629
+ - -0.023571
+ - - 1.284924
+ - 0.625218
+ - 0.417931
+ - - 0.005956
+ - 0.14383
+ - -0.78357
+ - - -1.197113
+ - 1.076539
+ - -0.622982
+ - - -2.051822
+ - 0.460313
+ - 0.500587
+ - - -1.590349
+ - -1.008485
+ - 0.630647
+ - - -0.602213
+ - -1.232546
+ - -0.518938
+ - - 2.890187
+ - -0.394073
+ - -1.070212
+ - - 2.343061
+ - -1.546829
+ - 0.170954
+ - - 3.466819
+ - -0.252172
+ - 0.595906
+ - - 0.449888
+ - 0.218563
+ - -1.776764
+ - - -1.752767
+ - 1.077653
+ - -1.562641
+ - - -0.905419
+ - 2.107005
+ - -0.422693
+ - - -3.11325
+ - 0.533537
+ - 0.265829
+ - - -1.900339
+ - 0.992648
+ - 1.438575
+ - - -2.421875
+ - -1.711196
+ - 0.589961
+ - - -1.089342
+ - -1.160338
+ - 1.585486
+ - - -1.134888
+ - -1.546785
+ - -1.421366
+ - - 0.137846
+ - -2.001798
+ - -0.301945
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.616937696951496
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.652125
+ - -0.517451
+ - -0.039572
+ - - 1.314395
+ - 0.627804
+ - 0.424125
+ - - 0.004055
+ - 0.142463
+ - -0.781813
+ - - -1.19988
+ - 1.090507
+ - -0.614835
+ - - -2.085638
+ - 0.460912
+ - 0.492578
+ - - -1.60722
+ - -1.010932
+ - 0.643012
+ - - -0.609358
+ - -1.24081
+ - -0.509435
+ - - 2.926091
+ - -0.391512
+ - -1.089046
+ - - 2.383412
+ - -1.557073
+ - 0.152681
+ - - 3.511149
+ - -0.25876
+ - 0.580911
+ - - 0.447798
+ - 0.216979
+ - -1.777426
+ - - -1.743434
+ - 1.117212
+ - -1.564475
+ - - -0.899437
+ - 2.11637
+ - -0.39173
+ - - -3.142193
+ - 0.516913
+ - 0.220908
+ - - -1.973767
+ - 0.999587
+ - 1.435542
+ - - -2.434119
+ - -1.723689
+ - 0.610079
+ - - -1.103576
+ - -1.145783
+ - 1.602101
+ - - -1.141748
+ - -1.558651
+ - -1.414683
+ - - 0.130444
+ - -2.012633
+ - -0.28773
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.4675460007714456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.581797
+ - -0.492508
+ - 0.002442
+ - - 1.243019
+ - 0.631806
+ - 0.43595
+ - - 0.004106
+ - 0.14254
+ - -0.802016
+ - - -1.21177
+ - 1.059882
+ - -0.653298
+ - - -1.998209
+ - 0.475748
+ - 0.533308
+ - - -1.595322
+ - -1.016649
+ - 0.610294
+ - - -0.595478
+ - -1.23872
+ - -0.53682
+ - - 2.878712
+ - -0.357719
+ - -1.037695
+ - - 2.311791
+ - -1.53301
+ - 0.175848
+ - - 3.427004
+ - -0.243769
+ - 0.64169
+ - - 0.468742
+ - 0.222061
+ - -1.786387
+ - - -1.802499
+ - 0.99162
+ - -1.570131
+ - - -0.937809
+ - 2.106238
+ - -0.516096
+ - - -3.07196
+ - 0.607087
+ - 0.399902
+ - - -1.726909
+ - 0.98922
+ - 1.455726
+ - - -2.45448
+ - -1.681246
+ - 0.521333
+ - - -1.122898
+ - -1.230103
+ - 1.568448
+ - - -1.11948
+ - -1.561107
+ - -1.441819
+ - - 0.15074
+ - -1.999914
+ - -0.309488
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.221478505612115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.581797
+ - -0.492508
+ - 0.002442
+ - - 1.243019
+ - 0.631806
+ - 0.43595
+ - - 0.004106
+ - 0.14254
+ - -0.802016
+ - - -1.21177
+ - 1.059882
+ - -0.653298
+ - - -1.998209
+ - 0.475748
+ - 0.533308
+ - - -1.595322
+ - -1.016649
+ - 0.610294
+ - - -0.595478
+ - -1.23872
+ - -0.53682
+ - - 2.878712
+ - -0.357719
+ - -1.037695
+ - - 2.311791
+ - -1.53301
+ - 0.175848
+ - - 3.427004
+ - -0.243769
+ - 0.64169
+ - - 0.468742
+ - 0.222061
+ - -1.786387
+ - - -1.802499
+ - 0.99162
+ - -1.570131
+ - - -0.937809
+ - 2.106238
+ - -0.516096
+ - - -3.07196
+ - 0.607087
+ - 0.399902
+ - - -1.726909
+ - 0.98922
+ - 1.455726
+ - - -2.45448
+ - -1.681246
+ - 0.521333
+ - - -1.122898
+ - -1.230103
+ - 1.568448
+ - - -1.11948
+ - -1.561107
+ - -1.441819
+ - - 0.15074
+ - -1.999914
+ - -0.309488
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.93798979675224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.581797
+ - -0.492508
+ - 0.002442
+ - - 1.243019
+ - 0.631806
+ - 0.43595
+ - - 0.004106
+ - 0.14254
+ - -0.802016
+ - - -1.21177
+ - 1.059882
+ - -0.653298
+ - - -1.998209
+ - 0.475748
+ - 0.533308
+ - - -1.595322
+ - -1.016649
+ - 0.610294
+ - - -0.595478
+ - -1.23872
+ - -0.53682
+ - - 2.878712
+ - -0.357719
+ - -1.037695
+ - - 2.311791
+ - -1.53301
+ - 0.175848
+ - - 3.427004
+ - -0.243769
+ - 0.64169
+ - - 0.468742
+ - 0.222061
+ - -1.786387
+ - - -1.802499
+ - 0.99162
+ - -1.570131
+ - - -0.937809
+ - 2.106238
+ - -0.516096
+ - - -3.07196
+ - 0.607087
+ - 0.399902
+ - - -1.726909
+ - 0.98922
+ - 1.455726
+ - - -2.45448
+ - -1.681246
+ - 0.521333
+ - - -1.122898
+ - -1.230103
+ - 1.568448
+ - - -1.11948
+ - -1.561107
+ - -1.441819
+ - - 0.15074
+ - -1.999914
+ - -0.309488
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.207589316368052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.761286
+ - -0.556929
+ - -0.437365
+ - - 1.565564
+ - 0.603513
+ - 0.292577
+ - - 0.028443
+ - 0.114642
+ - -0.581467
+ - - -1.073441
+ - 1.170889
+ - -0.272484
+ - - -2.331373
+ - 0.359485
+ - 0.092498
+ - - -1.759989
+ - -0.900084
+ - 0.759492
+ - - -0.561706
+ - -1.252859
+ - -0.136598
+ - - 2.835233
+ - -0.414914
+ - -1.518988
+ - - 2.49998
+ - -1.595328
+ - -0.219031
+ - - 3.731207
+ - -0.337652
+ - 0.013993
+ - - 0.268557
+ - 0.102463
+ - -1.647854
+ - - -1.226738
+ - 1.854718
+ - -1.110807
+ - - -0.771948
+ - 1.783894
+ - 0.584459
+ - - -2.881657
+ - 0.081184
+ - -0.815008
+ - - -3.020244
+ - 0.918321
+ - 0.732161
+ - - -2.483437
+ - -1.715785
+ - 0.844749
+ - - -1.412625
+ - -0.659622
+ - 1.771455
+ - - -0.912589
+ - -1.796768
+ - -1.022515
+ - - 0.174576
+ - -1.887713
+ - 0.361924
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.778005876378874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.561845
+ - -0.514672
+ - 0.025499
+ - - 1.246693
+ - 0.651649
+ - 0.417809
+ - - 0.003314
+ - 0.160759
+ - -0.81576
+ - - -1.217874
+ - 1.069661
+ - -0.652119
+ - - -1.999374
+ - 0.466829
+ - 0.530447
+ - - -1.563538
+ - -1.017281
+ - 0.611023
+ - - -0.588101
+ - -1.225615
+ - -0.558189
+ - - 2.830125
+ - -0.448283
+ - -1.028762
+ - - 2.284149
+ - -1.538016
+ - 0.271728
+ - - 3.425397
+ - -0.234076
+ - 0.625578
+ - - 0.461996
+ - 0.249578
+ - -1.801597
+ - - -1.809551
+ - 1.007802
+ - -1.568209
+ - - -0.950329
+ - 2.115598
+ - -0.502498
+ - - -3.074036
+ - 0.572754
+ - 0.387734
+ - - -1.745781
+ - 0.985053
+ - 1.454619
+ - - -2.408968
+ - -1.701534
+ - 0.552433
+ - - -1.057356
+ - -1.207058
+ - 1.556525
+ - - -1.131821
+ - -1.53183
+ - -1.456802
+ - - 0.162308
+ - -1.989865
+ - -0.358269
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.614203703294924
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.6424877891
- - -0.4721519633
- - -0.0325249149
- - - 1.2613094406
- - 0.6199356737
- - 0.4681014593
- - - 0.0047737779
- - 0.1169072873
- - -0.7994619543
- - - -1.2176875026
- - 1.0552858801
- - -0.6972294348
- - - -2.0297926462
- - 0.5114339774
- - 0.5092352931
- - - -1.6425863832
- - -0.9997082989
- - 0.6305331275
- - - -0.6195796958
- - -1.2638054901
- - -0.5071686387
- - - 2.9170667895
- - -0.2956783049
- - -1.0829948785
- - - 2.3951931199
- - -1.5339130791
- - 0.1061994264
- - - 3.5000288754
- - -0.222444122
- - 0.6066096004
- - - 0.493990391
- - 0.1660597485
- - -1.7840201284
- - - -1.7992414535
- - 0.9466719521
- - -1.6269720678
- - - -0.9412690048
- - 2.1141730273
- - -0.5991266671
- - - -3.1094186069
- - 0.6556220315
- - 0.3631285586
- - - -1.7505636439
- - 1.0511108307
- - 1.4248029028
- - - -2.5155429429
- - -1.661914065
- - 0.5453529373
- - - -1.1784350444
- - -1.1925610323
- - 1.6065336514
- - - -1.1402264766
- - -1.6015045792
- - -1.4198520912
- - - 0.1217749123
- - -2.0323615426
- - -0.2495854599
+ - - 2.716809
+ - -0.554632
+ - -0.385339
+ - - 1.51247
+ - 0.580864
+ - 0.31133
+ - - 0.023732
+ - 0.112255
+ - -0.607711
+ - - -1.075195
+ - 1.157692
+ - -0.30455
+ - - -2.304906
+ - 0.353993
+ - 0.122388
+ - - -1.708091
+ - -0.893888
+ - 0.761242
+ - - -0.571025
+ - -1.244965
+ - -0.190318
+ - - 2.829439
+ - -0.3977
+ - -1.460205
+ - - 2.452923
+ - -1.596009
+ - -0.192392
+ - - 3.670573
+ - -0.344018
+ - 0.09998
+ - - 0.290777
+ - 0.114983
+ - -1.667281
+ - - -1.261874
+ - 1.808221
+ - -1.160364
+ - - -0.752909
+ - 1.804548
+ - 0.51744
+ - - -2.896874
+ - 0.069858
+ - -0.754285
+ - - -2.961362
+ - 0.915532
+ - 0.790303
+ - - -2.426693
+ - -1.706198
+ - 0.888835
+ - - -1.303643
+ - -0.649363
+ - 1.749001
+ - - -0.977261
+ - -1.746902
+ - -1.075716
+ - - 0.172208
+ - -1.912814
+ - 0.248836
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.69950429541839
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.747327
+ - -0.566569
+ - -0.382536
+ - - 1.525885
+ - 0.58646
+ - 0.313165
+ - - 0.02101
+ - 0.110562
+ - -0.62127
+ - - -1.082398
+ - 1.169914
+ - -0.316208
+ - - -2.320628
+ - 0.364312
+ - 0.129466
+ - - -1.717847
+ - -0.894227
+ - 0.772616
+ - - -0.580492
+ - -1.254821
+ - -0.194947
+ - - 2.862621
+ - -0.409161
+ - -1.459395
+ - - 2.475249
+ - -1.607525
+ - -0.185303
+ - - 3.697673
+ - -0.350644
+ - 0.112372
+ - - 0.293214
+ - 0.111066
+ - -1.681386
+ - - -1.275162
+ - 1.810404
+ - -1.181635
+ - - -0.751246
+ - 1.824416
+ - 0.499142
+ - - -2.922993
+ - 0.07908
+ - -0.742874
+ - - -2.967484
+ - 0.932569
+ - 0.805536
+ - - -2.441032
+ - -1.705605
+ - 0.904113
+ - - -1.30398
+ - -0.648589
+ - 1.75873
+ - - -0.996303
+ - -1.755161
+ - -1.080352
+ - - 0.165684
+ - -1.925028
+ - 0.241959
isotopes:
- 12
- 32
@@ -456,6 +1873,224 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.50906316736575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.5817969765
+ - -0.4925082795
+ - 0.002442184
+ - - 1.2430187211
+ - 0.6318056049
+ - 0.4359501353
+ - - 0.0041061973
+ - 0.1425400932
+ - -0.8020155329
+ - - -1.2117700787
+ - 1.0598821729
+ - -0.6532983667
+ - - -1.9982088261
+ - 0.4757479043
+ - 0.5333083007
+ - - -1.5953215938
+ - -1.0166493058
+ - 0.6102942745
+ - - -0.5954784102
+ - -1.2387203378
+ - -0.5368197411
+ - - 2.8787116028
+ - -0.3577191822
+ - -1.0376954669
+ - - 2.3117905356
+ - -1.5330100564
+ - 0.1758478173
+ - - 3.4270044453
+ - -0.2437689324
+ - 0.641689732
+ - - 0.4687422086
+ - 0.2220611775
+ - -1.7863867723
+ - - -1.8024989899
+ - 0.9916202814
+ - -1.5701305205
+ - - -0.9378085981
+ - 2.106237852
+ - -0.5160957507
+ - - -3.0719599117
+ - 0.6070869022
+ - 0.3999016723
+ - - -1.7269091554
+ - 0.9892196569
+ - 1.4557255004
+ - - -2.4544799452
+ - -1.6812461135
+ - 0.5213334892
+ - - -1.1228976244
+ - -1.2301033481
+ - 1.5684482299
+ - - -1.119479884
+ - -1.5611070422
+ - -1.4418185142
+ - - 0.1507401891
+ - -1.9999143582
+ - -0.3094882922
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.820054081164579
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.594437
+ - -0.515701
+ - -0.006802
+ - - 1.281163
+ - 0.641505
+ - 0.411933
+ - - 0.00669
+ - 0.153781
+ - -0.79309
+ - - -1.204397
+ - 1.077401
+ - -0.62977
+ - - -2.039634
+ - 0.460117
+ - 0.508845
+ - - -1.578364
+ - -1.011623
+ - 0.625342
+ - - -0.59558
+ - -1.227544
+ - -0.532165
+ - - 2.863718
+ - -0.432314
+ - -1.06044
+ - - 2.319531
+ - -1.545153
+ - 0.221223
+ - - 3.459774
+ - -0.24614
+ - 0.597285
+ - - 0.451539
+ - 0.233387
+ - -1.786367
+ - - -1.769344
+ - 1.060933
+ - -1.564772
+ - - -0.923001
+ - 2.113851
+ - -0.441677
+ - - -3.105914
+ - 0.537452
+ - 0.295826
+ - - -1.864319
+ - 0.989512
+ - 1.445265
+ - - -2.411053
+ - -1.713626
+ - 0.582199
+ - - -1.071208
+ - -1.170981
+ - 1.576819
+ - - -1.132879
+ - -1.536417
+ - -1.434463
+ - - 0.147937
+ - -1.996985
+ - -0.324001
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/(Methylthio)ethane.yml b/input/reference_sets/main/(Methylthio)ethane.yml
index cdf374c40a..a8567af03d 100644
--- a/input/reference_sets/main/(Methylthio)ethane.yml
+++ b/input/reference_sets/main/(Methylthio)ethane.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.457776272243091
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.819547
+ - -0.553189
+ - 0.258393
+ - - 0.943159
+ - 0.438978
+ - -0.492249
+ - - -0.710708
+ - 0.678539
+ - 0.217733
+ - - -1.452239
+ - -0.932149
+ - -0.136841
+ - - 1.938773
+ - -0.252186
+ - 1.298582
+ - - 2.808453
+ - -0.610912
+ - -0.201088
+ - - 1.390903
+ - -1.554948
+ - 0.243544
+ - - 0.831337
+ - 0.151539
+ - -1.539612
+ - - 1.392137
+ - 1.432891
+ - -0.477818
+ - - -1.410467
+ - -1.150254
+ - -1.203837
+ - - -0.973385
+ - -1.733348
+ - 0.422609
+ - - -2.495512
+ - -0.871553
+ - 0.167225
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.896491035854821
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.825226
+ - -0.551769
+ - 0.260007
+ - - 0.947752
+ - 0.438845
+ - -0.49251
+ - - -0.713349
+ - 0.679316
+ - 0.213681
+ - - -1.460668
+ - -0.933887
+ - -0.138608
+ - - 1.942838
+ - -0.251491
+ - 1.30162
+ - - 2.816127
+ - -0.60775
+ - -0.198088
+ - - 1.398765
+ - -1.555541
+ - 0.244394
+ - - 0.838241
+ - 0.151185
+ - -1.540654
+ - - 1.393897
+ - 1.434622
+ - -0.477982
+ - - -1.42818
+ - -1.151382
+ - -1.206902
+ - - -0.976918
+ - -1.73642
+ - 0.416528
+ - - -2.501732
+ - -0.872322
+ - 0.175155
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.06939965552106969
+ value: -0.06939965552106969
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8330276821
+ - -0.5567792714
+ - 0.2697570677
+ - - 0.955682581
+ - 0.4355449295
+ - -0.5042239051
+ - - -0.7190571104
+ - 0.6921908119
+ - 0.2210566233
+ - - -1.4592439454
+ - -0.9450078396
+ - -0.1381399633
+ - - 1.9757440721
+ - -0.2207796531
+ - 1.3057964312
+ - - 2.8207233937
+ - -0.6492039091
+ - -0.2097344858
+ - - 1.3745497829
+ - -1.55528866
+ - 0.2938248853
+ - - 0.8339219607
+ - 0.1219619945
+ - -1.5532413249
+ - - 1.4157256789
+ - 1.4348706284
+ - -0.5123741201
+ - - -1.3835001992
+ - -1.1770153926
+ - -1.2107132383
+ - - -0.9885130586
+ - -1.7460233916
+ - 0.4481653074
+ - - -2.52053577
+ - -0.8861215173
+ - 0.1370113767
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.735555116328073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.831722
+ - -0.552129
+ - 0.26086
+ - - 0.948431
+ - 0.438886
+ - -0.492624
+ - - -0.715591
+ - 0.680532
+ - 0.217408
+ - - -1.466562
+ - -0.934069
+ - -0.138181
+ - - 1.947036
+ - -0.252131
+ - 1.307212
+ - - 2.827152
+ - -0.60254
+ - -0.198888
+ - - 1.407609
+ - -1.561296
+ - 0.242014
+ - - 0.836179
+ - 0.148692
+ - -1.544717
+ - - 1.394287
+ - 1.439899
+ - -0.479757
+ - - -1.429239
+ - -1.153061
+ - -1.210774
+ - - -0.985926
+ - -1.741223
+ - 0.422095
+ - - -2.513101
+ - -0.868152
+ - 0.171994
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.504654253226138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.848497
+ - -0.545947
+ - 0.269881
+ - - 0.953156
+ - 0.431476
+ - -0.48996
+ - - -0.714798
+ - 0.670833
+ - 0.221171
+ - - -1.483727
+ - -0.934918
+ - -0.148866
+ - - 1.974563
+ - -0.231024
+ - 1.315451
+ - - 2.844616
+ - -0.599557
+ - -0.198931
+ - - 1.429717
+ - -1.562833
+ - 0.270089
+ - - 0.841591
+ - 0.135539
+ - -1.545571
+ - - 1.390027
+ - 1.441936
+ - -0.485345
+ - - -1.479388
+ - -1.135829
+ - -1.230175
+ - - -0.996786
+ - -1.760952
+ - 0.387297
+ - - -2.525471
+ - -0.865317
+ - 0.1916
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.655886790468527
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.829479
+ - -0.547383
+ - 0.26382
+ - - 0.942451
+ - 0.429676
+ - -0.486882
+ - - -0.705523
+ - 0.664571
+ - 0.219634
+ - - -1.461187
+ - -0.928679
+ - -0.144631
+ - - 1.956305
+ - -0.237541
+ - 1.300688
+ - - 2.815428
+ - -0.603046
+ - -0.201975
+ - - 1.408949
+ - -1.552973
+ - 0.262486
+ - - 0.832909
+ - 0.13667
+ - -1.532591
+ - - 1.38543
+ - 1.426086
+ - -0.482226
+ - - -1.442288
+ - -1.134288
+ - -1.214611
+ - - -0.981294
+ - -1.742998
+ - 0.394779
+ - - -2.498662
+ - -0.866688
+ - 0.178151
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.861998696039352
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.850008
+ - -0.545779
+ - 0.26946
+ - - 0.954884
+ - 0.430796
+ - -0.48994
+ - - -0.715875
+ - 0.670918
+ - 0.222089
+ - - -1.487235
+ - -0.937377
+ - -0.14988
+ - - 1.976926
+ - -0.231964
+ - 1.307712
+ - - 2.838857
+ - -0.597147
+ - -0.198112
+ - - 1.435166
+ - -1.556568
+ - 0.271199
+ - - 0.842137
+ - 0.135548
+ - -1.537049
+ - - 1.390865
+ - 1.432944
+ - -0.485524
+ - - -1.479357
+ - -1.134431
+ - -1.22384
+ - - -1.001846
+ - -1.75506
+ - 0.384155
+ - - -2.522532
+ - -0.868471
+ - 0.186372
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.265457848175615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.811208
+ - -0.553842
+ - 0.259612
+ - - 0.937962
+ - 0.439259
+ - -0.490541
+ - - -0.708258
+ - 0.678309
+ - 0.219354
+ - - -1.440797
+ - -0.929027
+ - -0.138462
+ - - 1.938296
+ - -0.247511
+ - 1.297869
+ - - 2.796996
+ - -0.62232
+ - -0.204834
+ - - 1.373676
+ - -1.552455
+ - 0.252963
+ - - 0.824063
+ - 0.151095
+ - -1.5378
+ - - 1.391459
+ - 1.431216
+ - -0.480383
+ - - -1.402821
+ - -1.142151
+ - -1.206866
+ - - -0.956067
+ - -1.730485
+ - 0.415917
+ - - -2.48372
+ - -0.878681
+ - 0.169812
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.910281612779798
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.811208
+ - -0.553842
+ - 0.259612
+ - - 0.937962
+ - 0.439259
+ - -0.490541
+ - - -0.708258
+ - 0.678309
+ - 0.219354
+ - - -1.440797
+ - -0.929027
+ - -0.138462
+ - - 1.938296
+ - -0.247511
+ - 1.297869
+ - - 2.796996
+ - -0.62232
+ - -0.204834
+ - - 1.373676
+ - -1.552455
+ - 0.252963
+ - - 0.824063
+ - 0.151095
+ - -1.5378
+ - - 1.391459
+ - 1.431216
+ - -0.480383
+ - - -1.402821
+ - -1.142151
+ - -1.206866
+ - - -0.956067
+ - -1.730485
+ - 0.415917
+ - - -2.48372
+ - -0.878681
+ - 0.169812
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.775096089240643
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.811208
+ - -0.553842
+ - 0.259612
+ - - 0.937962
+ - 0.439259
+ - -0.490541
+ - - -0.708258
+ - 0.678309
+ - 0.219354
+ - - -1.440797
+ - -0.929027
+ - -0.138462
+ - - 1.938296
+ - -0.247511
+ - 1.297869
+ - - 2.796996
+ - -0.62232
+ - -0.204834
+ - - 1.373676
+ - -1.552455
+ - 0.252963
+ - - 0.824063
+ - 0.151095
+ - -1.5378
+ - - 1.391459
+ - 1.431216
+ - -0.480383
+ - - -1.402821
+ - -1.142151
+ - -1.206866
+ - - -0.956067
+ - -1.730485
+ - 0.415917
+ - - -2.48372
+ - -0.878681
+ - 0.169812
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.05502872414506
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.8330276821
- - -0.5567792714
- - 0.2697570677
- - - 0.955682581
- - 0.4355449295
- - -0.5042239051
- - - -0.7190571104
- - 0.6921908119
- - 0.2210566233
- - - -1.4592439454
- - -0.9450078396
- - -0.1381399633
- - - 1.9757440721
- - -0.2207796531
- - 1.3057964312
- - - 2.8207233937
- - -0.6492039091
- - -0.2097344858
- - - 1.3745497829
- - -1.55528866
- - 0.2938248853
- - - 0.8339219607
- - 0.1219619945
- - -1.5532413249
- - - 1.4157256789
- - 1.4348706284
- - -0.5123741201
- - - -1.3835001992
- - -1.1770153926
- - -1.2107132383
- - - -0.9885130586
- - -1.7460233916
- - 0.4481653074
- - - -2.52053577
- - -0.8861215173
- - 0.1370113767
+ - - 1.846529
+ - -0.546532
+ - 0.26922
+ - - 0.953187
+ - 0.433183
+ - -0.489562
+ - - -0.716117
+ - 0.672452
+ - 0.220875
+ - - -1.483497
+ - -0.936365
+ - -0.148856
+ - - 1.976187
+ - -0.233022
+ - 1.308573
+ - - 2.835156
+ - -0.602364
+ - -0.201025
+ - - 1.426034
+ - -1.55648
+ - 0.271502
+ - - 0.842148
+ - 0.13778
+ - -1.538252
+ - - 1.391348
+ - 1.435809
+ - -0.484702
+ - - -1.472749
+ - -1.136776
+ - -1.223588
+ - - -0.995522
+ - -1.753776
+ - 0.386375
+ - - -2.520708
+ - -0.8705
+ - 0.186082
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.668900611444483
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.795057
+ - -0.56217
+ - 0.24355
+ - - 0.937463
+ - 0.451018
+ - -0.497227
+ - - -0.712044
+ - 0.690714
+ - 0.205975
+ - - -1.426153
+ - -0.931494
+ - -0.119682
+ - - 1.897519
+ - -0.284157
+ - 1.29227
+ - - 2.790509
+ - -0.617578
+ - -0.200952
+ - - 1.357623
+ - -1.559682
+ - 0.197969
+ - - 0.827979
+ - 0.17957
+ - -1.549066
+ - - 1.396702
+ - 1.439562
+ - -0.464607
+ - - -1.339003
+ - -1.182562
+ - -1.176877
+ - - -0.9624
+ - -1.708416
+ - 0.48519
+ - - -2.481254
+ - -0.871399
+ - 0.1401
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.119139183688185
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.825034
+ - -0.548422
+ - 0.262808
+ - - 0.942509
+ - 0.429447
+ - -0.488243
+ - - -0.704655
+ - 0.664896
+ - 0.213327
+ - - -1.45622
+ - -0.92801
+ - -0.143172
+ - - 1.946651
+ - -0.241639
+ - 1.303223
+ - - 2.815308
+ - -0.603087
+ - -0.198982
+ - - 1.404422
+ - -1.556103
+ - 0.255989
+ - - 0.834698
+ - 0.140477
+ - -1.538038
+ - - 1.384095
+ - 1.429307
+ - -0.479196
+ - - -1.441178
+ - -1.137851
+ - -1.214811
+ - - -0.973979
+ - -1.741668
+ - 0.400113
+ - - -2.494688
+ - -0.86394
+ - 0.183624
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.6946619095719574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.845694
+ - -0.547531
+ - 0.271149
+ - - 0.952344
+ - 0.431329
+ - -0.491389
+ - - -0.713999
+ - 0.670198
+ - 0.223881
+ - - -1.480352
+ - -0.936358
+ - -0.150273
+ - - 1.972514
+ - -0.228407
+ - 1.309896
+ - - 2.835422
+ - -0.603328
+ - -0.199512
+ - - 1.422771
+ - -1.55722
+ - 0.274209
+ - - 0.837127
+ - 0.132491
+ - -1.539735
+ - - 1.388898
+ - 1.435635
+ - -0.485711
+ - - -1.473601
+ - -1.129034
+ - -1.227535
+ - - -0.988495
+ - -1.755693
+ - 0.380552
+ - - -2.516325
+ - -0.868673
+ - 0.191111
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.234878138385987
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8112080904
+ - -0.5538418082
+ - 0.2596124159
+ - - 0.9379615325
+ - 0.4392593564
+ - -0.4905406664
+ - - -0.7082575792
+ - 0.6783094368
+ - 0.2193537927
+ - - -1.4407965018
+ - -0.9290274233
+ - -0.1384615736
+ - - 1.9382958816
+ - -0.2475109117
+ - 1.2978688762
+ - - 2.796996313
+ - -0.6223198531
+ - -0.2048339915
+ - - 1.3736762081
+ - -1.552454952
+ - 0.2529628127
+ - - 0.8240625648
+ - 0.1510948298
+ - -1.5378002544
+ - - 1.3914591883
+ - 1.4312162405
+ - -0.4803831133
+ - - -1.4028206522
+ - -1.1421506994
+ - -1.2068655822
+ - - -0.9560668563
+ - -1.73048545
+ - 0.4159173083
+ - - -2.483720107
+ - -0.8786809434
+ - 0.1698122054
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.576069128843468
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.816322
+ - -0.554334
+ - 0.255759
+ - - 0.941119
+ - 0.439163
+ - -0.491596
+ - - -0.710881
+ - 0.677553
+ - 0.206397
+ - - -1.449601
+ - -0.929624
+ - -0.133775
+ - - 1.929738
+ - -0.262099
+ - 1.300173
+ - - 2.80813
+ - -0.603876
+ - -0.199496
+ - - 1.391952
+ - -1.559017
+ - 0.229478
+ - - 0.836626
+ - 0.15606
+ - -1.541505
+ - - 1.391182
+ - 1.433106
+ - -0.472258
+ - - -1.405764
+ - -1.159684
+ - -1.199103
+ - - -0.972264
+ - -1.726412
+ - 0.435639
+ - - -2.494562
+ - -0.867428
+ - 0.166928
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/(R)-(-)-2-Butanol.yml b/input/reference_sets/main/(R)-(-)-2-Butanol.yml
index 3ce9d41976..b1a4c1452c 100644
--- a/input/reference_sets/main/(R)-(-)-2-Butanol.yml
+++ b/input/reference_sets/main/(R)-(-)-2-Butanol.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.83117413778134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.780471
+ - 0.678708
+ - -0.000636
+ - - -0.475398
+ - -0.030575
+ - -0.324315
+ - - -0.469565
+ - -1.357905
+ - 0.211529
+ - - 0.730878
+ - 0.682886
+ - 0.262442
+ - - 2.056491
+ - 0.029632
+ - -0.109988
+ - - -1.914434
+ - 0.745558
+ - 1.079767
+ - - -2.63338
+ - 0.139343
+ - -0.418413
+ - - -1.789437
+ - 1.687067
+ - -0.417341
+ - - -0.354441
+ - -0.082301
+ - -1.415278
+ - - -1.232115
+ - -1.828591
+ - -0.140282
+ - - 0.614454
+ - 0.704465
+ - 1.349501
+ - - 0.713679
+ - 1.720154
+ - -0.081569
+ - - 2.195324
+ - 0.019058
+ - -1.192979
+ - - 2.896017
+ - 0.570308
+ - 0.32792
+ - - 2.090811
+ - -0.999664
+ - 0.242357
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.389842715174424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.783235
+ - 0.681427
+ - -0.002684
+ - - -0.477589
+ - -0.033712
+ - -0.320274
+ - - -0.477517
+ - -1.361444
+ - 0.217472
+ - - 0.732583
+ - 0.679761
+ - 0.264628
+ - - 2.060968
+ - 0.032205
+ - -0.112674
+ - - -1.921474
+ - 0.754696
+ - 1.077788
+ - - -2.637227
+ - 0.142114
+ - -0.42087
+ - - -1.788835
+ - 1.6888
+ - -0.424304
+ - - -0.355008
+ - -0.088512
+ - -1.412049
+ - - -1.235805
+ - -1.836796
+ - -0.137323
+ - - 0.619866
+ - 0.699537
+ - 1.352957
+ - - 0.71204
+ - 1.718991
+ - -0.075657
+ - - 2.201675
+ - 0.030182
+ - -1.196589
+ - - 2.899652
+ - 0.57176
+ - 0.330729
+ - - 2.09832
+ - -1.000866
+ - 0.231565
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -43.882573244447734
+ value: -43.882573244447734
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7994095781
+ - 0.6776274498
+ - 0.0028953839
+ - - -0.4793340716
+ - -0.0333779505
+ - -0.3295177989
+ - - -0.4608108754
+ - -1.3654236052
+ - 0.2118672784
+ - - 0.7339049143
+ - 0.6945308318
+ - 0.2633909253
+ - - 2.0693568805
+ - 0.0314052919
+ - -0.1089207111
+ - - -1.9353549825
+ - 0.7228055733
+ - 1.0933076954
+ - - -2.6564970307
+ - 0.1367985933
+ - -0.4304599022
+ - - -1.8103552962
+ - 1.702411436
+ - -0.3981995004
+ - - -0.3593048748
+ - -0.0667898413
+ - -1.4327910556
+ - - -1.2389788553
+ - -1.8313044939
+ - -0.1462746261
+ - - 0.6134267132
+ - 0.7154648656
+ - 1.3588016047
+ - - 0.7140148546
+ - 1.7391849133
+ - -0.0865021688
+ - - 2.2142558642
+ - 0.0327724148
+ - -1.2007583935
+ - - 2.9173959154
+ - 0.5624820907
+ - 0.3479079984
+ - - 2.0807758245
+ - -1.0115504479
+ - 0.2329433256
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.79352336688799
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.787367
+ - 0.682908
+ - -0.005364
+ - - -0.478915
+ - -0.039855
+ - -0.318639
+ - - -0.48446
+ - -1.374814
+ - 0.222671
+ - - 0.735244
+ - 0.674872
+ - 0.269285
+ - - 2.070504
+ - 0.035929
+ - -0.115055
+ - - -1.929364
+ - 0.758996
+ - 1.078628
+ - - -2.645374
+ - 0.14454
+ - -0.427932
+ - - -1.78719
+ - 1.693621
+ - -0.430518
+ - - -0.353037
+ - -0.095523
+ - -1.415562
+ - - -1.258469
+ - -1.832084
+ - -0.131076
+ - - 0.623754
+ - 0.690703
+ - 1.3621
+ - - 0.708196
+ - 1.719454
+ - -0.068123
+ - - 2.206662
+ - 0.036661
+ - -1.203802
+ - - 2.909855
+ - 0.583959
+ - 0.327448
+ - - 2.118375
+ - -1.001224
+ - 0.228655
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.55748718689002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.791636
+ - 0.683183
+ - -0.003681
+ - - -0.480526
+ - -0.036591
+ - -0.319899
+ - - -0.479485
+ - -1.37238
+ - 0.226708
+ - - 0.737091
+ - 0.678778
+ - 0.265698
+ - - 2.072418
+ - 0.033362
+ - -0.114552
+ - - -1.933666
+ - 0.760029
+ - 1.085111
+ - - -2.653168
+ - 0.140203
+ - -0.42504
+ - - -1.799266
+ - 1.698103
+ - -0.430874
+ - - -0.356501
+ - -0.094508
+ - -1.422157
+ - - -1.252076
+ - -1.840577
+ - -0.134673
+ - - 0.623911
+ - 0.698271
+ - 1.363535
+ - - 0.713082
+ - 1.727773
+ - -0.074332
+ - - 2.218954
+ - 0.038113
+ - -1.206491
+ - - 2.916624
+ - 0.574737
+ - 0.337647
+ - - 2.112656
+ - -1.010351
+ - 0.225715
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.53512139397404
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.777506
+ - 0.679874
+ - -0.002366
+ - - -0.476023
+ - -0.032232
+ - -0.319692
+ - - -0.476408
+ - -1.351901
+ - 0.216559
+ - - 0.730258
+ - 0.679287
+ - 0.262612
+ - - 2.053794
+ - 0.031957
+ - -0.112197
+ - - -1.91352
+ - 0.754311
+ - 1.077456
+ - - -2.6309
+ - 0.138951
+ - -0.417113
+ - - -1.785977
+ - 1.685586
+ - -0.425165
+ - - -0.353867
+ - -0.087748
+ - -1.410484
+ - - -1.22763
+ - -1.834721
+ - -0.138573
+ - - 0.616738
+ - 0.698641
+ - 1.350004
+ - - 0.711082
+ - 1.717827
+ - -0.077086
+ - - 2.197441
+ - 0.031024
+ - -1.194785
+ - - 2.892342
+ - 0.56818
+ - 0.333082
+ - - 2.088589
+ - -1.000893
+ - 0.230464
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -71.01771694045048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.793741
+ - 0.684043
+ - 0.000701
+ - - -0.481737
+ - -0.031254
+ - -0.318424
+ - - -0.476432
+ - -1.353909
+ - 0.234386
+ - - 0.736106
+ - 0.687497
+ - 0.258685
+ - - 2.065712
+ - 0.026806
+ - -0.112476
+ - - -1.932804
+ - 0.752737
+ - 1.082976
+ - - -2.647002
+ - 0.139198
+ - -0.416717
+ - - -1.807921
+ - 1.693949
+ - -0.419838
+ - - -0.36431
+ - -0.092272
+ - -1.41243
+ - - -1.206138
+ - -1.843357
+ - -0.156803
+ - - 0.624317
+ - 0.714954
+ - 1.348689
+ - - 0.721252
+ - 1.726326
+ - -0.08914
+ - - 2.220441
+ - 0.033073
+ - -1.196364
+ - - 2.907789
+ - 0.551598
+ - 0.346434
+ - - 2.082881
+ - -1.011246
+ - 0.223037
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.09246665046645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.77777
+ - 0.679857
+ - -0.0003
+ - - -0.475001
+ - -0.030929
+ - -0.323877
+ - - -0.469882
+ - -1.355523
+ - 0.211057
+ - - 0.728736
+ - 0.683409
+ - 0.263771
+ - - 2.052187
+ - 0.029768
+ - -0.109617
+ - - -1.906771
+ - 0.752032
+ - 1.081055
+ - - -2.63265
+ - 0.139197
+ - -0.412718
+ - - -1.784775
+ - 1.686319
+ - -0.422128
+ - - -0.350908
+ - -0.083247
+ - -1.415067
+ - - -1.222485
+ - -1.834884
+ - -0.147714
+ - - 0.609932
+ - 0.703594
+ - 1.351317
+ - - 0.709734
+ - 1.7214
+ - -0.079328
+ - - 2.188299
+ - 0.017129
+ - -1.193556
+ - - 2.893503
+ - 0.569744
+ - 0.325719
+ - - 2.086265
+ - -0.999724
+ - 0.2441
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.7313360206627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.77777
+ - 0.679857
+ - -0.0003
+ - - -0.475001
+ - -0.030929
+ - -0.323877
+ - - -0.469882
+ - -1.355523
+ - 0.211057
+ - - 0.728736
+ - 0.683409
+ - 0.263771
+ - - 2.052187
+ - 0.029768
+ - -0.109617
+ - - -1.906771
+ - 0.752032
+ - 1.081055
+ - - -2.63265
+ - 0.139197
+ - -0.412718
+ - - -1.784775
+ - 1.686319
+ - -0.422128
+ - - -0.350908
+ - -0.083247
+ - -1.415067
+ - - -1.222485
+ - -1.834884
+ - -0.147714
+ - - 0.609932
+ - 0.703594
+ - 1.351317
+ - - 0.709734
+ - 1.7214
+ - -0.079328
+ - - 2.188299
+ - 0.017129
+ - -1.193556
+ - - 2.893503
+ - 0.569744
+ - 0.325719
+ - - 2.086265
+ - -0.999724
+ - 0.2441
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.01275345395625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.77777
+ - 0.679857
+ - -0.0003
+ - - -0.475001
+ - -0.030929
+ - -0.323877
+ - - -0.469882
+ - -1.355523
+ - 0.211057
+ - - 0.728736
+ - 0.683409
+ - 0.263771
+ - - 2.052187
+ - 0.029768
+ - -0.109617
+ - - -1.906771
+ - 0.752032
+ - 1.081055
+ - - -2.63265
+ - 0.139197
+ - -0.412718
+ - - -1.784775
+ - 1.686319
+ - -0.422128
+ - - -0.350908
+ - -0.083247
+ - -1.415067
+ - - -1.222485
+ - -1.834884
+ - -0.147714
+ - - 0.609932
+ - 0.703594
+ - 1.351317
+ - - 0.709734
+ - 1.7214
+ - -0.079328
+ - - 2.188299
+ - 0.017129
+ - -1.193556
+ - - 2.893503
+ - 0.569744
+ - 0.325719
+ - - 2.086265
+ - -0.999724
+ - 0.2441
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.01547199417526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.792308
+ - 0.680168
+ - 0.001608
+ - - -0.480217
+ - -0.035333
+ - -0.321434
+ - - -0.469677
+ - -1.355873
+ - 0.219971
+ - - 0.735465
+ - 0.686661
+ - 0.259757
+ - - 2.065806
+ - 0.026747
+ - -0.110313
+ - - -1.930335
+ - 0.752738
+ - 1.085225
+ - - -2.64846
+ - 0.135978
+ - -0.414361
+ - - -1.806022
+ - 1.690394
+ - -0.420817
+ - - -0.362697
+ - -0.083321
+ - -1.418511
+ - - -1.218493
+ - -1.834316
+ - -0.148605
+ - - 0.622796
+ - 0.716
+ - 1.350999
+ - - 0.71889
+ - 1.726261
+ - -0.088968
+ - - 2.218066
+ - 0.026838
+ - -1.195765
+ - - 2.909014
+ - 0.556325
+ - 0.343628
+ - - 2.086586
+ - -1.011125
+ - 0.230302
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.64807060630272
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.7994095781
- - 0.6776274498
- - 0.0028953839
- - - -0.4793340716
- - -0.0333779505
- - -0.3295177989
- - - -0.4608108754
- - -1.3654236052
- - 0.2118672784
- - - 0.7339049143
- - 0.6945308318
- - 0.2633909253
- - - 2.0693568805
- - 0.0314052919
- - -0.1089207111
- - - -1.9353549825
- - 0.7228055733
- - 1.0933076954
- - - -2.6564970307
- - 0.1367985933
- - -0.4304599022
- - - -1.8103552962
- - 1.702411436
- - -0.3981995004
- - - -0.3593048748
- - -0.0667898413
- - -1.4327910556
- - - -1.2389788553
- - -1.8313044939
- - -0.1462746261
- - - 0.6134267132
- - 0.7154648656
- - 1.3588016047
- - - 0.7140148546
- - 1.7391849133
- - -0.0865021688
- - - 2.2142558642
- - 0.0327724148
- - -1.2007583935
- - - 2.9173959154
- - 0.5624820907
- - 0.3479079984
- - - 2.0807758245
- - -1.0115504479
- - 0.2329433256
+ - - -1.778227
+ - 0.675498
+ - 0.001262
+ - - -0.472514
+ - -0.027705
+ - -0.328401
+ - - -0.460328
+ - -1.347091
+ - 0.203287
+ - - 0.729813
+ - 0.69062
+ - 0.258983
+ - - 2.049838
+ - 0.026435
+ - -0.107086
+ - - -1.905237
+ - 0.73297
+ - 1.083586
+ - - -2.630508
+ - 0.134855
+ - -0.416409
+ - - -1.790129
+ - 1.686695
+ - -0.408029
+ - - -0.350794
+ - -0.075388
+ - -1.419787
+ - - -1.218762
+ - -1.827242
+ - -0.140166
+ - - 0.607545
+ - 0.714494
+ - 1.34572
+ - - 0.715767
+ - 1.726166
+ - -0.090206
+ - - 2.187584
+ - 0.008757
+ - -1.190277
+ - - 2.893777
+ - 0.560915
+ - 0.329233
+ - - 2.070588
+ - -1.001837
+ - 0.251004
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.676779516893774
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.775101
+ - 0.676934
+ - -0.002266
+ - - -0.475176
+ - -0.037673
+ - -0.318748
+ - - -0.47368
+ - -1.354047
+ - 0.214765
+ - - 0.729896
+ - 0.677376
+ - 0.261767
+ - - 2.053307
+ - 0.033255
+ - -0.111976
+ - - -1.913489
+ - 0.750332
+ - 1.079399
+ - - -2.631661
+ - 0.139127
+ - -0.420044
+ - - -1.78122
+ - 1.68536
+ - -0.423644
+ - - -0.352286
+ - -0.088002
+ - -1.41313
+ - - -1.235894
+ - -1.822752
+ - -0.133458
+ - - 0.615786
+ - 0.699591
+ - 1.351419
+ - - 0.706612
+ - 1.717364
+ - -0.079936
+ - - 2.198531
+ - 0.033118
+ - -1.196262
+ - - 2.89295
+ - 0.570208
+ - 0.335011
+ - - 2.089838
+ - -1.002047
+ - 0.229817
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.946579985583476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.792413
+ - 0.684112
+ - -0.002757
+ - - -0.479944
+ - -0.031275
+ - -0.323063
+ - - -0.476487
+ - -1.367582
+ - 0.227408
+ - - 0.736334
+ - 0.682399
+ - 0.265929
+ - - 2.069851
+ - 0.030717
+ - -0.114116
+ - - -1.929638
+ - 0.758954
+ - 1.081432
+ - - -2.647887
+ - 0.139235
+ - -0.421288
+ - - -1.800937
+ - 1.694498
+ - -0.42838
+ - - -0.358341
+ - -0.094333
+ - -1.418242
+ - - -1.239541
+ - -1.841478
+ - -0.138941
+ - - 0.623739
+ - 0.700126
+ - 1.358107
+ - - 0.717088
+ - 1.725623
+ - -0.075569
+ - - 2.213903
+ - 0.036748
+ - -1.201398
+ - - 2.910197
+ - 0.568502
+ - 0.338109
+ - - 2.102489
+ - -1.008104
+ - 0.225483
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.333797107694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7777698531
+ - 0.6798566149
+ - -0.0003000975
+ - - -0.4750007067
+ - -0.0309294297
+ - -0.323876803
+ - - -0.4698823182
+ - -1.355523172
+ - 0.2110569821
+ - - 0.7287359612
+ - 0.6834089824
+ - 0.263771209
+ - - 2.0521871431
+ - 0.0297676589
+ - -0.1096171146
+ - - -1.906771242
+ - 0.752032088
+ - 1.0810546458
+ - - -2.6326502573
+ - 0.1391973589
+ - -0.412717985
+ - - -1.784774857
+ - 1.6863192208
+ - -0.422127535
+ - - -0.3509077731
+ - -0.0832469638
+ - -1.4150671848
+ - - -1.2224848155
+ - -1.8348836397
+ - -0.1477136337
+ - - 0.6099318772
+ - 0.703594462
+ - 1.3513167597
+ - - 0.7097335322
+ - 1.7213998732
+ - -0.0793275165
+ - - 2.1882992632
+ - 0.0171294997
+ - -1.1935560063
+ - - 2.8935028006
+ - 0.5697440546
+ - 0.32571937
+ - - 2.0862647498
+ - -0.9997235367
+ - 0.2441000652
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.85641338305452
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.779341
+ - 0.680453
+ - -0.001442
+ - - -0.47724
+ - -0.038235
+ - -0.318089
+ - - -0.47896
+ - -1.35563
+ - 0.214827
+ - - 0.730156
+ - 0.677601
+ - 0.264558
+ - - 2.056326
+ - 0.032227
+ - -0.11171
+ - - -1.916121
+ - 0.753877
+ - 1.079293
+ - - -2.634807
+ - 0.143754
+ - -0.419456
+ - - -1.780517
+ - 1.687375
+ - -0.423304
+ - - -0.354352
+ - -0.088918
+ - -1.410403
+ - - -1.227902
+ - -1.831963
+ - -0.145448
+ - - 0.618109
+ - 0.699334
+ - 1.352848
+ - - 0.708558
+ - 1.715686
+ - -0.078466
+ - - 2.19356
+ - 0.025336
+ - -1.195856
+ - - 2.894024
+ - 0.576258
+ - 0.327255
+ - - 2.09692
+ - -0.99901
+ - 0.238108
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/(Z)-2-Pentene.yml b/input/reference_sets/main/(Z)-2-Pentene.yml
index 3c7355e7ab..12f8c3b7ec 100644
--- a/input/reference_sets/main/(Z)-2-Pentene.yml
+++ b/input/reference_sets/main/(Z)-2-Pentene.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.312536617650123
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.033086
+ - -0.689234
+ - 0.073885
+ - - 1.295108
+ - 0.6114
+ - 0.154323
+ - - 0.011861
+ - 0.837552
+ - -0.133543
+ - - -1.015107
+ - -0.153041
+ - -0.591247
+ - - -2.150391
+ - -0.310966
+ - 0.424509
+ - - 2.467718
+ - -0.944238
+ - 1.043233
+ - - 1.398439
+ - -1.516298
+ - -0.236496
+ - - 2.863394
+ - -0.618761
+ - -0.63295
+ - - 1.887366
+ - 1.458514
+ - 0.486301
+ - - -0.355621
+ - 1.852573
+ - -0.008873
+ - - -1.436549
+ - 0.18838
+ - -1.541824
+ - - -0.56094
+ - -1.124163
+ - -0.786921
+ - - -2.629311
+ - 0.648508
+ - 0.626503
+ - - -2.915074
+ - -0.99677
+ - 0.057595
+ - - -1.770456
+ - -0.697267
+ - 1.370845
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.537885391428138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0383
+ - -0.687451
+ - 0.069561
+ - - 1.29631
+ - 0.610527
+ - 0.154117
+ - - 0.014696
+ - 0.83478
+ - -0.128035
+ - - -1.014097
+ - -0.15484
+ - -0.585106
+ - - -2.15877
+ - -0.308197
+ - 0.423072
+ - - 2.478981
+ - -0.943175
+ - 1.037542
+ - - 1.405405
+ - -1.517651
+ - -0.239755
+ - - 2.867351
+ - -0.61441
+ - -0.640658
+ - - 1.890283
+ - 1.45786
+ - 0.485479
+ - - -0.355597
+ - 1.849195
+ - -7.5e-05
+ - - -1.429522
+ - 0.182848
+ - -1.541115
+ - - -0.561475
+ - -1.128839
+ - -0.775078
+ - - -2.639295
+ - 0.652923
+ - 0.619123
+ - - -2.92173
+ - -0.994946
+ - 0.051493
+ - - -1.787317
+ - -0.692436
+ - 1.374774
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 24.419949124682425
+ value: 24.419949124682425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0661978385
+ - -0.6868875969
+ - 0.071116392
+ - - 1.3075915482
+ - 0.6140122347
+ - 0.1597431732
+ - - 0.00941502
+ - 0.8346650242
+ - -0.1256840409
+ - - -1.0251126312
+ - -0.1614413527
+ - -0.5913234384
+ - - -2.1814623595
+ - -0.3086210927
+ - 0.4232557142
+ - - 2.5338108392
+ - -0.9295344874
+ - 1.0400304212
+ - - 1.4301267644
+ - -1.5339930182
+ - -0.2174837306
+ - - 2.8854858733
+ - -0.6132631388
+ - -0.6638323039
+ - - 1.9023186234
+ - 1.4690683421
+ - 0.4990520343
+ - - -0.3736614973
+ - 1.8525285416
+ - 0.0111559083
+ - - -1.4440715955
+ - 0.1797126389
+ - -1.5546429523
+ - - -0.5742803503
+ - -1.1463134459
+ - -0.7809652246
+ - - -2.6609164116
+ - 0.664021953
+ - 0.6129573844
+ - - -2.9508302401
+ - -1.0000713086
+ - 0.0475093637
+ - - -1.8077585012
+ - -0.6925193753
+ - 1.3835722998
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.626638612449845
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.040327
+ - -0.690292
+ - 0.07634
+ - - 1.299939
+ - 0.612159
+ - 0.152833
+ - - 0.013223
+ - 0.840418
+ - -0.137414
+ - - -1.019382
+ - -0.149634
+ - -0.593691
+ - - -2.158486
+ - -0.312891
+ - 0.426693
+ - - 2.479013
+ - -0.944425
+ - 1.050859
+ - - 1.404542
+ - -1.523952
+ - -0.233255
+ - - 2.876791
+ - -0.622578
+ - -0.632864
+ - - 1.8975
+ - 1.462875
+ - 0.48507
+ - - -0.356635
+ - 1.860405
+ - -0.01216
+ - - -1.446598
+ - 0.195286
+ - -1.547204
+ - - -0.565476
+ - -1.125717
+ - -0.795498
+ - - -2.640638
+ - 0.649873
+ - 0.633987
+ - - -2.92594
+ - -1.002042
+ - 0.055824
+ - - -1.774658
+ - -0.703296
+ - 1.375821
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.934960022136065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.075853
+ - -0.682312
+ - 0.043021
+ - - 1.313468
+ - 0.605372
+ - 0.163798
+ - - 0.013512
+ - 0.819156
+ - -0.095186
+ - - -1.015312
+ - -0.175098
+ - -0.557952
+ - - -2.20397
+ - -0.288746
+ - 0.413224
+ - - 2.547677
+ - -0.949724
+ - 1.003358
+ - - 1.445744
+ - -1.525508
+ - -0.269904
+ - - 2.895926
+ - -0.585409
+ - -0.688497
+ - - 1.904574
+ - 1.464496
+ - 0.501403
+ - - -0.367011
+ - 1.83728
+ - 0.054735
+ - - -1.396742
+ - 0.14042
+ - -1.546524
+ - - -0.562958
+ - -1.167292
+ - -0.70766
+ - - -2.687131
+ - 0.689136
+ - 0.563859
+ - - -2.965671
+ - -0.98406
+ - 0.029419
+ - - -1.874435
+ - -0.65152
+ - 1.398245
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.56666703633475
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.059815
+ - -0.679937
+ - 0.043781
+ - - 1.298747
+ - 0.601262
+ - 0.16234
+ - - 0.014991
+ - 0.812058
+ - -0.094437
+ - - -1.009349
+ - -0.176221
+ - -0.557206
+ - - -2.185188
+ - -0.287333
+ - 0.410435
+ - - 2.523787
+ - -0.941027
+ - 0.997678
+ - - 1.437092
+ - -1.516336
+ - -0.265983
+ - - 2.871111
+ - -0.580106
+ - -0.681268
+ - - 1.884316
+ - 1.451979
+ - 0.497871
+ - - -0.363195
+ - 1.820334
+ - 0.053705
+ - - -1.386459
+ - 0.140686
+ - -1.534731
+ - - -0.56317
+ - -1.159189
+ - -0.706559
+ - - -2.660942
+ - 0.683192
+ - 0.561881
+ - - -2.942975
+ - -0.974683
+ - 0.032672
+ - - -1.855057
+ - -0.648491
+ - 1.385163
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.390920244693878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.067663
+ - -0.684943
+ - 0.053957
+ - - 1.306458
+ - 0.605997
+ - 0.158845
+ - - 0.016546
+ - 0.823142
+ - -0.106992
+ - - -1.018058
+ - -0.166734
+ - -0.568459
+ - - -2.191376
+ - -0.295668
+ - 0.417729
+ - - 2.52564
+ - -0.943254
+ - 1.015316
+ - - 1.443853
+ - -1.524455
+ - -0.255431
+ - - 2.888091
+ - -0.59399
+ - -0.667054
+ - - 1.896967
+ - 1.458077
+ - 0.490632
+ - - -0.357331
+ - 1.836986
+ - 0.031901
+ - - -1.410969
+ - 0.160996
+ - -1.539784
+ - - -0.571921
+ - -1.150045
+ - -0.736281
+ - - -2.672878
+ - 0.672311
+ - 0.586074
+ - - -2.951068
+ - -0.984619
+ - 0.038154
+ - - -1.848093
+ - -0.66761
+ - 1.386735
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.748583433279445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034414
+ - -0.688098
+ - 0.06987
+ - - 1.293039
+ - 0.611131
+ - 0.159882
+ - - 0.013667
+ - 0.833606
+ - -0.121362
+ - - -1.010963
+ - -0.158132
+ - -0.586543
+ - - -2.154861
+ - -0.307744
+ - 0.417084
+ - - 2.502595
+ - -0.927982
+ - 1.027058
+ - - 1.393243
+ - -1.522081
+ - -0.207951
+ - - 2.839271
+ - -0.622361
+ - -0.665991
+ - - 1.884803
+ - 1.458336
+ - 0.494434
+ - - -0.359368
+ - 1.84662
+ - 0.010889
+ - - -1.41995
+ - 0.181619
+ - -1.5432
+ - - -0.555827
+ - -1.13057
+ - -0.775547
+ - - -2.630078
+ - 0.655406
+ - 0.612766
+ - - -2.920486
+ - -0.989836
+ - 0.045564
+ - - -1.785975
+ - -0.693723
+ - 1.368387
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.686379692591315
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034414
+ - -0.688098
+ - 0.06987
+ - - 1.293039
+ - 0.611131
+ - 0.159882
+ - - 0.013667
+ - 0.833606
+ - -0.121362
+ - - -1.010963
+ - -0.158132
+ - -0.586543
+ - - -2.154861
+ - -0.307744
+ - 0.417084
+ - - 2.502595
+ - -0.927982
+ - 1.027058
+ - - 1.393243
+ - -1.522081
+ - -0.207951
+ - - 2.839271
+ - -0.622361
+ - -0.665991
+ - - 1.884803
+ - 1.458336
+ - 0.494434
+ - - -0.359368
+ - 1.84662
+ - 0.010889
+ - - -1.41995
+ - 0.181619
+ - -1.5432
+ - - -0.555827
+ - -1.13057
+ - -0.775547
+ - - -2.630078
+ - 0.655406
+ - 0.612766
+ - - -2.920486
+ - -0.989836
+ - 0.045564
+ - - -1.785975
+ - -0.693723
+ - 1.368387
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.6045534533653445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034414
+ - -0.688098
+ - 0.06987
+ - - 1.293039
+ - 0.611131
+ - 0.159882
+ - - 0.013667
+ - 0.833606
+ - -0.121362
+ - - -1.010963
+ - -0.158132
+ - -0.586543
+ - - -2.154861
+ - -0.307744
+ - 0.417084
+ - - 2.502595
+ - -0.927982
+ - 1.027058
+ - - 1.393243
+ - -1.522081
+ - -0.207951
+ - - 2.839271
+ - -0.622361
+ - -0.665991
+ - - 1.884803
+ - 1.458336
+ - 0.494434
+ - - -0.359368
+ - 1.84662
+ - 0.010889
+ - - -1.41995
+ - 0.181619
+ - -1.5432
+ - - -0.555827
+ - -1.13057
+ - -0.775547
+ - - -2.630078
+ - 0.655406
+ - 0.612766
+ - - -2.920486
+ - -0.989836
+ - 0.045564
+ - - -1.785975
+ - -0.693723
+ - 1.368387
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.351839892221994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0745
+ - -0.681666
+ - 0.04825
+ - - 1.306233
+ - 0.603557
+ - 0.160567
+ - - 0.01562
+ - 0.816237
+ - -0.101926
+ - - -1.018119
+ - -0.172576
+ - -0.564589
+ - - -2.197137
+ - -0.289182
+ - 0.416188
+ - - 2.532148
+ - -0.946764
+ - 1.009631
+ - - 1.455568
+ - -1.523109
+ - -0.270583
+ - - 2.898864
+ - -0.582289
+ - -0.669301
+ - - 1.896429
+ - 1.455704
+ - 0.495564
+ - - -0.365469
+ - 1.827583
+ - 0.042538
+ - - -1.406245
+ - 0.148332
+ - -1.541838
+ - - -0.574405
+ - -1.160171
+ - -0.723248
+ - - -2.67362
+ - 0.684058
+ - 0.576866
+ - - -2.959911
+ - -0.976387
+ - 0.036584
+ - - -1.860933
+ - -0.657139
+ - 1.39064
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.2656734202936635
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.0661978385
- - -0.6868875969
- - 0.071116392
- - - 1.3075915482
- - 0.6140122347
- - 0.1597431732
- - - 0.00941502
- - 0.8346650242
- - -0.1256840409
- - - -1.0251126312
- - -0.1614413527
- - -0.5913234384
- - - -2.1814623595
- - -0.3086210927
- - 0.4232557142
- - - 2.5338108392
- - -0.9295344874
- - 1.0400304212
- - - 1.4301267644
- - -1.5339930182
- - -0.2174837306
- - - 2.8854858733
- - -0.6132631388
- - -0.6638323039
- - - 1.9023186234
- - 1.4690683421
- - 0.4990520343
- - - -0.3736614973
- - 1.8525285416
- - 0.0111559083
- - - -1.4440715955
- - 0.1797126389
- - -1.5546429523
- - - -0.5742803503
- - -1.1463134459
- - -0.7809652246
- - - -2.6609164116
- - 0.664021953
- - 0.6129573844
- - - -2.9508302401
- - -1.0000713086
- - 0.0475093637
- - - -1.8077585012
- - -0.6925193753
- - 1.3835722998
+ - - 2.039976
+ - -0.687006
+ - 0.064334
+ - - 1.291974
+ - 0.606846
+ - 0.160086
+ - - 0.011869
+ - 0.826445
+ - -0.120823
+ - - -1.012639
+ - -0.164232
+ - -0.585183
+ - - -2.158185
+ - -0.30169
+ - 0.419029
+ - - 2.489625
+ - -0.939296
+ - 1.027155
+ - - 1.408733
+ - -1.51855
+ - -0.240728
+ - - 2.859276
+ - -0.603581
+ - -0.6535
+ - - 1.880403
+ - 1.454609
+ - 0.498853
+ - - -0.363868
+ - 1.837883
+ - 0.014968
+ - - -1.419447
+ - 0.172478
+ - -1.543471
+ - - -0.561399
+ - -1.139447
+ - -0.765928
+ - - -2.630161
+ - 0.665094
+ - 0.602517
+ - - -2.92404
+ - -0.986572
+ - 0.053966
+ - - -1.788593
+ - -0.676791
+ - 1.374065
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.9566929547383993
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.058818
+ - -0.678885
+ - 0.042712
+ - - 1.300837
+ - 0.600198
+ - 0.163219
+ - - 0.012436
+ - 0.811545
+ - -0.09388
+ - - -1.008604
+ - -0.176532
+ - -0.555385
+ - - -2.185011
+ - -0.286664
+ - 0.409626
+ - - 2.52547
+ - -0.943243
+ - 0.997019
+ - - 1.433869
+ - -1.515926
+ - -0.268594
+ - - 2.872349
+ - -0.579999
+ - -0.683455
+ - - 1.886338
+ - 1.453399
+ - 0.49975
+ - - -0.365892
+ - 1.821846
+ - 0.056316
+ - - -1.385748
+ - 0.138363
+ - -1.536485
+ - - -0.559561
+ - -1.161179
+ - -0.703777
+ - - -2.66274
+ - 0.685381
+ - 0.558967
+ - - -2.943369
+ - -0.976486
+ - 0.031805
+ - - -1.855668
+ - -0.645629
+ - 1.387505
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.98147896010297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0652
+ - -0.684845
+ - 0.049854
+ - - 1.3091
+ - 0.60864
+ - 0.160703
+ - - 0.014489
+ - 0.825283
+ - -0.104858
+ - - -1.013866
+ - -0.17059
+ - -0.566265
+ - - -2.1921
+ - -0.294769
+ - 0.418216
+ - - 2.520522
+ - -0.951034
+ - 1.012903
+ - - 1.433366
+ - -1.518491
+ - -0.267486
+ - - 2.889134
+ - -0.591955
+ - -0.670293
+ - - 1.901514
+ - 1.461258
+ - 0.495292
+ - - -0.363334
+ - 1.839791
+ - 0.036522
+ - - -1.406781
+ - 0.150697
+ - -1.542251
+ - - -0.561034
+ - -1.155354
+ - -0.72299
+ - - -2.671901
+ - 0.67749
+ - 0.579145
+ - - -2.950952
+ - -0.986414
+ - 0.035847
+ - - -1.849834
+ - -0.663516
+ - 1.391002
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.941428902070365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034413879
+ - -0.6880983926
+ - 0.069869543
+ - - 1.293039132
+ - 0.6111313382
+ - 0.1598824496
+ - - 0.0136669879
+ - 0.8336056509
+ - -0.1213615624
+ - - -1.0109633692
+ - -0.1581324876
+ - -0.5865427447
+ - - -2.1548614555
+ - -0.3077440956
+ - 0.4170840861
+ - - 2.5025954534
+ - -0.9279820642
+ - 1.0270581144
+ - - 1.3932426082
+ - -1.5220811505
+ - -0.2079512744
+ - - 2.8392710513
+ - -0.6223613288
+ - -0.6659905995
+ - - 1.8848034688
+ - 1.4583360052
+ - 0.4944343078
+ - - -0.3593678552
+ - 1.8466200526
+ - 0.0108887506
+ - - -1.4199504234
+ - 0.1816192445
+ - -1.5431996792
+ - - -0.5558268328
+ - -1.1305698218
+ - -0.7755469501
+ - - -2.6300783461
+ - 0.6554058662
+ - 0.612765758
+ - - -2.92048554
+ - -0.9898360775
+ - 0.0455644241
+ - - -1.7859746291
+ - -0.6937228054
+ - 1.3683865178
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8017085043415411
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.03953
+ - -0.687298
+ - 0.0687
+ - - 1.29347
+ - 0.607189
+ - 0.155111
+ - - 0.01437
+ - 0.829666
+ - -0.124937
+ - - -1.015251
+ - -0.157472
+ - -0.584272
+ - - -2.157667
+ - -0.305606
+ - 0.420955
+ - - 2.484245
+ - -0.936979
+ - 1.03544
+ - - 1.409331
+ - -1.521456
+ - -0.235985
+ - - 2.863051
+ - -0.608946
+ - -0.646031
+ - - 1.885275
+ - 1.455793
+ - 0.487176
+ - - -0.35591
+ - 1.844057
+ - 0.005346
+ - - -1.426159
+ - 0.183318
+ - -1.540108
+ - - -0.56597
+ - -1.133141
+ - -0.773899
+ - - -2.635449
+ - 0.657278
+ - 0.614583
+ - - -2.92184
+ - -0.990746
+ - 0.050036
+ - - -1.787501
+ - -0.689465
+ - 1.373228
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-(Methylthio)butane.yml b/input/reference_sets/main/1-(Methylthio)butane.yml
index 5770141275..c1a52dd27f 100644
--- a/input/reference_sets/main/1-(Methylthio)butane.yml
+++ b/input/reference_sets/main/1-(Methylthio)butane.yml
@@ -25,7 +25,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -26.203310994754386
+ value: -26.203310994754368
class: ThermoData
xyz_dict:
coords:
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.931526078298555
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.035672
+ - -0.601582
+ - 0.156433
+ - - 1.745282
+ - 0.152046
+ - 0.458528
+ - - 0.856663
+ - 0.304793
+ - -0.770315
+ - - -0.447214
+ - 1.052354
+ - -0.506507
+ - - -1.605375
+ - 0.235074
+ - 0.631484
+ - - -2.127563
+ - -1.158077
+ - -0.396337
+ - - 3.658965
+ - -0.696002
+ - 1.046131
+ - - 3.622887
+ - -0.090015
+ - -0.608721
+ - - 2.823919
+ - -1.60846
+ - -0.208633
+ - - 1.982364
+ - 1.145406
+ - 0.851895
+ - - 1.187258
+ - -0.363714
+ - 1.241992
+ - - 1.404233
+ - 0.848798
+ - -1.547607
+ - - 0.638461
+ - -0.681089
+ - -1.190426
+ - - -0.23993
+ - 2.018999
+ - -0.042805
+ - - -0.976338
+ - 1.249824
+ - -1.440931
+ - - -2.542828
+ - -0.8072
+ - -1.340956
+ - - -1.310232
+ - -1.850629
+ - -0.588728
+ - - -2.905049
+ - -1.682946
+ - 0.155612
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.820645084965461
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.033547
+ - -0.607983
+ - 0.157049
+ - - 1.744184
+ - 0.150547
+ - 0.45601
+ - - 0.857367
+ - 0.31511
+ - -0.774273
+ - - -0.447643
+ - 1.062091
+ - -0.511238
+ - - -1.613083
+ - 0.244353
+ - 0.626918
+ - - -2.124778
+ - -1.165474
+ - -0.390441
+ - - 3.651977
+ - -0.709341
+ - 1.050597
+ - - 3.628671
+ - -0.09593
+ - -0.603285
+ - - 2.819943
+ - -1.613441
+ - -0.214195
+ - - 1.983872
+ - 1.140997
+ - 0.857488
+ - - 1.179877
+ - -0.366069
+ - 1.235597
+ - - 1.407621
+ - 0.863402
+ - -1.547664
+ - - 0.63932
+ - -0.667586
+ - -1.203392
+ - - -0.243208
+ - 2.028185
+ - -0.0445
+ - - -0.974556
+ - 1.261128
+ - -1.446854
+ - - -2.541623
+ - -0.827824
+ - -1.340102
+ - - -1.30101
+ - -1.854035
+ - -0.574345
+ - - -2.8993
+ - -1.690549
+ - 0.16674
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 2.256397309234609
+ value: 2.256397309234609
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.0404481905
+ - -0.6211079828
+ - 0.1486898328
+ - - 1.7394681799
+ - 0.1322788108
+ - 0.4693597289
+ - - 0.864526385
+ - 0.340642986
+ - -0.7766091558
+ - - -0.4512393763
+ - 1.0911917885
+ - -0.5050200154
+ - - -1.6228110246
+ - 0.2442124048
+ - 0.6390774937
+ - - -2.1060427908
+ - -1.1742169136
+ - -0.4135852661
+ - - 3.6544298353
+ - -0.7621849513
+ - 1.0505821544
+ - - 3.6440135768
+ - -0.0716570985
+ - -0.5907707158
+ - - 2.822725204
+ - -1.6156530046
+ - -0.2714846593
+ - - 1.9753167196
+ - 1.1157552842
+ - 0.9107087182
+ - - 1.1587399491
+ - -0.4180885434
+ - 1.2255204277
+ - - 1.4315568723
+ - 0.9167197136
+ - -1.5296689539
+ - - 0.6448606975
+ - -0.6350315649
+ - -1.2407234238
+ - - -0.2431113456
+ - 2.0603645056
+ - -0.0256778768
+ - - -0.9830003099
+ - 1.2959989609
+ - -1.4477820336
+ - - -2.527499546
+ - -0.8276469629
+ - -1.3685884237
+ - - -1.2592350363
+ - -1.8464786118
+ - -0.6089532397
+ - - -2.8767837524
+ - -1.7322283376
+ - 0.1345873808
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.310391177061092
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.036339
+ - -0.612768
+ - 0.157248
+ - - 1.744033
+ - 0.148735
+ - 0.456023
+ - - 0.858565
+ - 0.321896
+ - -0.778804
+ - - -0.451588
+ - 1.068232
+ - -0.514932
+ - - -1.618817
+ - 0.250502
+ - 0.627813
+ - - -2.123669
+ - -1.16989
+ - -0.384221
+ - - 3.653609
+ - -0.720476
+ - 1.056182
+ - - 3.637288
+ - -0.096026
+ - -0.601521
+ - - 2.820678
+ - -1.619559
+ - -0.221781
+ - - 1.984067
+ - 1.140598
+ - 0.865568
+ - - 1.172165
+ - -0.372717
+ - 1.233157
+ - - 1.412194
+ - 0.878499
+ - -1.55028
+ - - 0.641493
+ - -0.661512
+ - -1.217309
+ - - -0.247912
+ - 2.038436
+ - -0.045632
+ - - -0.981288
+ - 1.266646
+ - -1.454698
+ - - -2.531985
+ - -0.838404
+ - -1.345074
+ - - -1.296054
+ - -1.864725
+ - -0.554442
+ - - -2.907942
+ - -1.689888
+ - 0.17281
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.477396080682176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.089145
+ - -0.585594
+ - 0.172452
+ - - 1.792443
+ - 0.17631
+ - 0.461438
+ - - 0.877962
+ - 0.291641
+ - -0.762628
+ - - -0.444032
+ - 1.02104
+ - -0.494247
+ - - -1.606511
+ - 0.178552
+ - 0.642676
+ - - -2.217824
+ - -1.156597
+ - -0.430252
+ - - 3.727132
+ - -0.645995
+ - 1.066739
+ - - 3.674929
+ - -0.096708
+ - -0.622359
+ - - 2.880504
+ - -1.61587
+ - -0.156959
+ - - 2.032298
+ - 1.190705
+ - 0.827083
+ - - 1.237824
+ - -0.31978
+ - 1.274908
+ - - 1.407988
+ - 0.83499
+ - -1.566956
+ - - 0.671151
+ - -0.714512
+ - -1.167452
+ - - -0.253422
+ - 1.994903
+ - -0.01491
+ - - -0.980664
+ - 1.225494
+ - -1.434438
+ - - -2.696864
+ - -0.749812
+ - -1.332853
+ - - -1.420425
+ - -1.856917
+ - -0.714659
+ - - -2.970456
+ - -1.704271
+ - 0.152528
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.29228501417796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.070341
+ - -0.577301
+ - 0.164041
+ - - 1.780169
+ - 0.171237
+ - 0.461226
+ - - 0.868313
+ - 0.278422
+ - -0.751782
+ - - -0.440348
+ - 1.010793
+ - -0.486224
+ - - -1.597938
+ - 0.181904
+ - 0.632693
+ - - -2.193827
+ - -1.143177
+ - -0.431091
+ - - 3.709717
+ - -0.633812
+ - 1.045491
+ - - 3.640174
+ - -0.087346
+ - -0.628197
+ - - 2.86571
+ - -1.599073
+ - -0.161903
+ - - 2.014946
+ - 1.178176
+ - 0.819902
+ - - 1.241992
+ - -0.324298
+ - 1.271459
+ - - 1.395133
+ - 0.808328
+ - -1.552408
+ - - 0.659036
+ - -0.721363
+ - -1.142608
+ - - -0.241249
+ - 1.976048
+ - -0.017076
+ - - -0.965244
+ - 1.215299
+ - -1.420762
+ - - -2.649005
+ - -0.74206
+ - -1.336263
+ - - -1.402808
+ - -1.841798
+ - -0.697372
+ - - -2.953935
+ - -1.682399
+ - 0.130983
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.40444603855431
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.096275
+ - -0.577098
+ - 0.16653
+ - - 1.79307
+ - 0.169023
+ - 0.46521
+ - - 0.876003
+ - 0.283096
+ - -0.756587
+ - - -0.441958
+ - 1.020266
+ - -0.494834
+ - - -1.621017
+ - 0.188589
+ - 0.638177
+ - - -2.227701
+ - -1.1554
+ - -0.432275
+ - - 3.732263
+ - -0.63598
+ - 1.053788
+ - - 3.670641
+ - -0.078678
+ - -0.620917
+ - - 2.898452
+ - -1.600721
+ - -0.166938
+ - - 2.02402
+ - 1.176553
+ - 0.832961
+ - - 1.253885
+ - -0.335895
+ - 1.272418
+ - - 1.404635
+ - 0.820046
+ - -1.555603
+ - - 0.668289
+ - -0.716747
+ - -1.155169
+ - - -0.248331
+ - 1.987611
+ - -0.022192
+ - - -0.968639
+ - 1.222111
+ - -1.431666
+ - - -2.683657
+ - -0.754529
+ - -1.339841
+ - - -1.435042
+ - -1.85818
+ - -0.692114
+ - - -2.99001
+ - -1.686486
+ - 0.13916
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.627375974832516
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.019303
+ - -0.606322
+ - 0.152492
+ - - 1.730882
+ - 0.145883
+ - 0.45902
+ - - 0.849105
+ - 0.307164
+ - -0.772041
+ - - -0.449486
+ - 1.061008
+ - -0.510323
+ - - -1.604107
+ - 0.251446
+ - 0.625761
+ - - -2.097719
+ - -1.155588
+ - -0.386452
+ - - 3.640465
+ - -0.715283
+ - 1.042024
+ - - 3.609588
+ - -0.085784
+ - -0.604738
+ - - 2.804893
+ - -1.607424
+ - -0.228093
+ - - 1.966833
+ - 1.136545
+ - 0.861195
+ - - 1.169174
+ - -0.374991
+ - 1.237242
+ - - 1.404457
+ - 0.8474
+ - -1.546564
+ - - 0.62629
+ - -0.677366
+ - -1.195041
+ - - -0.236313
+ - 2.02828
+ - -0.049506
+ - - -0.977369
+ - 1.260456
+ - -1.445172
+ - - -2.503571
+ - -0.821519
+ - -1.341463
+ - - -1.272426
+ - -1.844671
+ - -0.557616
+ - - -2.87882
+ - -1.681655
+ - 0.159383
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.858476460965466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.019303
+ - -0.606322
+ - 0.152492
+ - - 1.730882
+ - 0.145883
+ - 0.45902
+ - - 0.849105
+ - 0.307164
+ - -0.772041
+ - - -0.449486
+ - 1.061008
+ - -0.510323
+ - - -1.604107
+ - 0.251446
+ - 0.625761
+ - - -2.097719
+ - -1.155588
+ - -0.386452
+ - - 3.640465
+ - -0.715283
+ - 1.042024
+ - - 3.609588
+ - -0.085784
+ - -0.604738
+ - - 2.804893
+ - -1.607424
+ - -0.228093
+ - - 1.966833
+ - 1.136545
+ - 0.861195
+ - - 1.169174
+ - -0.374991
+ - 1.237242
+ - - 1.404457
+ - 0.8474
+ - -1.546564
+ - - 0.62629
+ - -0.677366
+ - -1.195041
+ - - -0.236313
+ - 2.02828
+ - -0.049506
+ - - -0.977369
+ - 1.260456
+ - -1.445172
+ - - -2.503571
+ - -0.821519
+ - -1.341463
+ - - -1.272426
+ - -1.844671
+ - -0.557616
+ - - -2.87882
+ - -1.681655
+ - 0.159383
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.60244728441299
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.019303
+ - -0.606322
+ - 0.152492
+ - - 1.730882
+ - 0.145883
+ - 0.45902
+ - - 0.849105
+ - 0.307164
+ - -0.772041
+ - - -0.449486
+ - 1.061008
+ - -0.510323
+ - - -1.604107
+ - 0.251446
+ - 0.625761
+ - - -2.097719
+ - -1.155588
+ - -0.386452
+ - - 3.640465
+ - -0.715283
+ - 1.042024
+ - - 3.609588
+ - -0.085784
+ - -0.604738
+ - - 2.804893
+ - -1.607424
+ - -0.228093
+ - - 1.966833
+ - 1.136545
+ - 0.861195
+ - - 1.169174
+ - -0.374991
+ - 1.237242
+ - - 1.404457
+ - 0.8474
+ - -1.546564
+ - - 0.62629
+ - -0.677366
+ - -1.195041
+ - - -0.236313
+ - 2.02828
+ - -0.049506
+ - - -0.977369
+ - 1.260456
+ - -1.445172
+ - - -2.503571
+ - -0.821519
+ - -1.341463
+ - - -1.272426
+ - -1.844671
+ - -0.557616
+ - - -2.87882
+ - -1.681655
+ - 0.159383
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.685387131961964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.095571
+ - -0.576147
+ - 0.167711
+ - - 1.793074
+ - 0.171112
+ - 0.465447
+ - - 0.875547
+ - 0.27954
+ - -0.756099
+ - - -0.441614
+ - 1.018023
+ - -0.492136
+ - - -1.617508
+ - 0.184968
+ - 0.639793
+ - - -2.226979
+ - -1.152759
+ - -0.434075
+ - - 3.733979
+ - -0.632856
+ - 1.054828
+ - - 3.669222
+ - -0.080129
+ - -0.623553
+ - - 2.896849
+ - -1.601638
+ - -0.163719
+ - - 2.024008
+ - 1.181317
+ - 0.829945
+ - - 1.253487
+ - -0.330517
+ - 1.276508
+ - - 1.402836
+ - 0.812986
+ - -1.560103
+ - - 0.665465
+ - -0.722809
+ - -1.151007
+ - - -0.246316
+ - 1.985863
+ - -0.018237
+ - - -0.969465
+ - 1.221505
+ - -1.42953
+ - - -2.68793
+ - -0.747561
+ - -1.338896
+ - - -1.433129
+ - -1.852562
+ - -0.704465
+ - - -2.985919
+ - -1.690757
+ - 0.137697
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.982250139398783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.958395
+ - -0.635207
+ - 0.132592
+ - - 1.650359
+ - 0.079294
+ - 0.446364
+ - - 0.82691
+ - 0.346735
+ - -0.806406
+ - - -0.45747
+ - 1.129604
+ - -0.55917
+ - - -1.63364
+ - 0.366153
+ - 0.587559
+ - - -1.974352
+ - -1.164533
+ - -0.299601
+ - - 3.53581
+ - -0.826756
+ - 1.037158
+ - - 3.578865
+ - -0.041349
+ - -0.541488
+ - - 2.77
+ - -1.595277
+ - -0.352383
+ - - 1.856364
+ - 1.029738
+ - 0.948254
+ - - 1.058817
+ - -0.512458
+ - 1.148034
+ - - 1.430708
+ - 0.915197
+ - -1.521792
+ - - 0.592327
+ - -0.601112
+ - -1.300313
+ - - -0.227941
+ - 2.097911
+ - -0.109757
+ - - -0.975113
+ - 1.321319
+ - -1.501133
+ - - -2.271371
+ - -0.954909
+ - -1.327397
+ - - -1.115997
+ - -1.834865
+ - -0.29322
+ - - -2.801494
+ - -1.651904
+ - 0.212807
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.048514644766215
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 3.0404481905
- - -0.6211079828
- - 0.1486898328
- - - 1.7394681799
- - 0.1322788108
- - 0.4693597289
- - - 0.864526385
- - 0.340642986
- - -0.7766091558
- - - -0.4512393763
- - 1.0911917885
- - -0.5050200154
- - - -1.6228110246
- - 0.2442124048
- - 0.6390774937
- - - -2.1060427908
- - -1.1742169136
- - -0.4135852661
- - - 3.6544298353
- - -0.7621849513
- - 1.0505821544
- - - 3.6440135768
- - -0.0716570985
- - -0.5907707158
- - - 2.822725204
- - -1.6156530046
- - -0.2714846593
- - - 1.9753167196
- - 1.1157552842
- - 0.9107087182
- - - 1.1587399491
- - -0.4180885434
- - 1.2255204277
- - - 1.4315568723
- - 0.9167197136
- - -1.5296689539
- - - 0.6448606975
- - -0.6350315649
- - -1.2407234238
- - - -0.2431113456
- - 2.0603645056
- - -0.0256778768
- - - -0.9830003099
- - 1.2959989609
- - -1.4477820336
- - - -2.527499546
- - -0.8276469629
- - -1.3685884237
- - - -1.2592350363
- - -1.8464786118
- - -0.6089532397
- - - -2.8767837524
- - -1.7322283376
- - 0.1345873808
+ - - 3.056098
+ - -0.586068
+ - 0.165316
+ - - 1.770556
+ - 0.168646
+ - 0.457215
+ - - 0.867779
+ - 0.289311
+ - -0.759211
+ - - -0.440412
+ - 1.018582
+ - -0.492533
+ - - -1.58946
+ - 0.189522
+ - 0.630472
+ - - -2.172354
+ - -1.146279
+ - -0.421141
+ - - 3.690159
+ - -0.653358
+ - 1.052244
+ - - 3.636908
+ - -0.095099
+ - -0.62101
+ - - 2.847037
+ - -1.606165
+ - -0.169533
+ - - 2.008693
+ - 1.17371
+ - 0.825683
+ - - 1.219308
+ - -0.328073
+ - 1.261548
+ - - 1.399391
+ - 0.827524
+ - -1.554486
+ - - 0.65916
+ - -0.708082
+ - -1.162998
+ - - -0.243934
+ - 1.98601
+ - -0.020521
+ - - -0.971222
+ - 1.223392
+ - -1.426832
+ - - -2.63386
+ - -0.755913
+ - -1.33069
+ - - -1.374245
+ - -1.842644
+ - -0.682245
+ - - -2.928424
+ - -1.687436
+ - 0.148831
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4104795825373
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.081767
+ - -0.58948
+ - 0.172197
+ - - 1.786088
+ - 0.176112
+ - 0.461526
+ - - 0.876812
+ - 0.292736
+ - -0.766986
+ - - -0.44416
+ - 1.025138
+ - -0.497031
+ - - -1.599407
+ - 0.179433
+ - 0.644822
+ - - -2.205948
+ - -1.158056
+ - -0.428698
+ - - 3.713352
+ - -0.651694
+ - 1.065043
+ - - 3.665344
+ - -0.100571
+ - -0.617305
+ - - 2.868504
+ - -1.613259
+ - -0.157961
+ - - 2.028323
+ - 1.18516
+ - 0.823968
+ - - 1.231397
+ - -0.319427
+ - 1.267672
+ - - 1.406578
+ - 0.836481
+ - -1.563699
+ - - 0.668309
+ - -0.708168
+ - -1.168421
+ - - -0.25244
+ - 1.99335
+ - -0.020259
+ - - -0.982804
+ - 1.222603
+ - -1.43093
+ - - -2.680826
+ - -0.750111
+ - -1.326327
+ - - -1.406213
+ - -1.848561
+ - -0.709652
+ - - -2.953498
+ - -1.704108
+ - 0.152151
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.41011413209831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.0193034339
+ - -0.60632175
+ - 0.1524916758
+ - - 1.7308817727
+ - 0.1458832732
+ - 0.4590199826
+ - - 0.8491049264
+ - 0.3071638239
+ - -0.7720406721
+ - - -0.4494862551
+ - 1.0610079608
+ - -0.5103229653
+ - - -1.6041067089
+ - 0.2514462101
+ - 0.62576078
+ - - -2.0977192977
+ - -1.1555877637
+ - -0.3864521724
+ - - 3.6404648218
+ - -0.7152827093
+ - 1.0420242258
+ - - 3.6095876172
+ - -0.085784054
+ - -0.6047378369
+ - - 2.8048932482
+ - -1.6074242759
+ - -0.22809348
+ - - 1.9668332226
+ - 1.1365446654
+ - 0.861195317
+ - - 1.1691743382
+ - -0.374990988
+ - 1.2372418232
+ - - 1.4044572823
+ - 0.8473996523
+ - -1.546563516
+ - - 0.6262895101
+ - -0.6773660076
+ - -1.1950407253
+ - - -0.2363132523
+ - 2.0282798848
+ - -0.0495059653
+ - - -0.9773692614
+ - 1.2604556433
+ - -1.44517174
+ - - -2.5035712672
+ - -0.8215185151
+ - -1.3414631197
+ - - -1.272426394
+ - -1.8446710183
+ - -0.5576160108
+ - - -2.8788200047
+ - -1.6816549041
+ - 0.159383457
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.09828989507777
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.018974
+ - -0.610131
+ - 0.14889
+ - - 1.727292
+ - 0.135268
+ - 0.455672
+ - - 0.850352
+ - 0.318243
+ - -0.775911
+ - - -0.45111
+ - 1.06954
+ - -0.517306
+ - - -1.62109
+ - 0.270603
+ - 0.61104
+ - - -2.096007
+ - -1.161228
+ - -0.37281
+ - - 3.632193
+ - -0.726885
+ - 1.043668
+ - - 3.614835
+ - -0.07894
+ - -0.597314
+ - - 2.810923
+ - -1.608164
+ - -0.244299
+ - - 1.960693
+ - 1.118594
+ - 0.876906
+ - - 1.162224
+ - -0.399434
+ - 1.222675
+ - - 1.40891
+ - 0.872591
+ - -1.53828
+ - - 0.631341
+ - -0.6586
+ - -1.218594
+ - - -0.241005
+ - 2.036661
+ - -0.054582
+ - - -0.969759
+ - 1.269793
+ - -1.457481
+ - - -2.481056
+ - -0.8537
+ - -1.345944
+ - - -1.267153
+ - -1.855483
+ - -0.508178
+ - - -2.889378
+ - -1.671148
+ - 0.17196
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Butanethiol.yml b/input/reference_sets/main/1-Butanethiol.yml
index 9239734921..d413ba43c7 100644
--- a/input/reference_sets/main/1-Butanethiol.yml
+++ b/input/reference_sets/main/1-Butanethiol.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.530278593155673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.353308
+ - -0.199443
+ - 0.087656
+ - - 0.750799
+ - 0.658532
+ - -0.051909
+ - - -0.460324
+ - -0.259133
+ - 0.024829
+ - - -1.77807
+ - 0.509689
+ - -0.037328
+ - - -2.99421
+ - -0.407905
+ - 0.031271
+ - - 2.228222
+ - -0.944537
+ - -1.01909
+ - - 0.739531
+ - 1.246573
+ - -0.969738
+ - - 0.74907
+ - 1.363311
+ - 0.78139
+ - - -0.419924
+ - -0.979293
+ - -0.797913
+ - - -0.410909
+ - -0.841521
+ - 0.947929
+ - - -1.81264
+ - 1.096487
+ - -0.959792
+ - - -1.814233
+ - 1.229216
+ - 0.785783
+ - - -2.997413
+ - -0.983857
+ - 0.95822
+ - - -2.996384
+ - -1.116876
+ - -0.798519
+ - - -3.924466
+ - 0.159117
+ - -0.01244
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.535863844001701
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.361392
+ - -0.197158
+ - 0.088162
+ - - 0.752539
+ - 0.659344
+ - -0.052629
+ - - -0.459593
+ - -0.25831
+ - 0.024325
+ - - -1.780407
+ - 0.508629
+ - -0.036537
+ - - -2.998502
+ - -0.40821
+ - 0.031619
+ - - 2.238443
+ - -0.948896
+ - -1.018697
+ - - 0.742471
+ - 1.24768
+ - -0.970921
+ - - 0.751931
+ - 1.365315
+ - 0.780266
+ - - -0.41917
+ - -0.979302
+ - -0.798547
+ - - -0.409401
+ - -0.842738
+ - 0.946856
+ - - -1.81582
+ - 1.097701
+ - -0.958626
+ - - -1.816828
+ - 1.228967
+ - 0.787095
+ - - -3.003286
+ - -0.985931
+ - 0.958784
+ - - -3.002721
+ - -1.117638
+ - -0.799252
+ - - -3.92869
+ - 0.160905
+ - -0.011548
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 1.0388857476747673
+ value: 1.0388857476747673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3735654749
+ - -0.2049287707
+ - 0.0802722601
+ - - 0.7525290174
+ - 0.6725964364
+ - -0.0579952531
+ - - -0.4657844243
+ - -0.2568050168
+ - 0.0224513646
+ - - -1.7965844607
+ - 0.517286535
+ - -0.0303104407
+ - - -3.0163074307
+ - -0.417442661
+ - 0.0303756926
+ - - 2.183510609
+ - -1.0056014829
+ - -0.995741572
+ - - 0.7356734897
+ - 1.2614391615
+ - -0.9873242091
+ - - 0.7479360966
+ - 1.3845846989
+ - 0.7810136383
+ - - -0.429118906
+ - -0.9768214157
+ - -0.8126995826
+ - - -0.4117990428
+ - -0.8470313176
+ - 0.95078223
+ - - -1.8342406693
+ - 1.1181301653
+ - -0.9547083323
+ - - -1.8335358949
+ - 1.2319205791
+ - 0.8090751747
+ - - -3.009199068
+ - -1.0089551946
+ - 0.9587915774
+ - - -3.0109728853
+ - -1.1219852671
+ - -0.815633238
+ - - -3.9584175376
+ - 0.1493686433
+ - -0.0050400286
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.934437826621785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.371111
+ - -0.194077
+ - 0.088488
+ - - 0.757346
+ - 0.662831
+ - -0.054572
+ - - -0.457159
+ - -0.258336
+ - 0.023324
+ - - -1.782472
+ - 0.509998
+ - -0.035181
+ - - -3.00322
+ - -0.410301
+ - 0.031201
+ - - 2.232391
+ - -0.960182
+ - -1.010401
+ - - 0.746907
+ - 1.252326
+ - -0.977712
+ - - 0.75615
+ - 1.372574
+ - 0.781003
+ - - -0.41665
+ - -0.980736
+ - -0.804004
+ - - -0.404846
+ - -0.84633
+ - 0.948488
+ - - -1.818182
+ - 1.103969
+ - -0.959294
+ - - -1.818432
+ - 1.23097
+ - 0.793676
+ - - -3.006351
+ - -0.993077
+ - 0.960209
+ - - -3.006811
+ - -1.120029
+ - -0.80499
+ - - -3.937422
+ - 0.16076
+ - -0.009888
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.238866795046066
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.378539
+ - -0.196334
+ - 0.0971
+ - - 0.760918
+ - 0.658383
+ - -0.054795
+ - - -0.458038
+ - -0.261108
+ - 0.024526
+ - - -1.785907
+ - 0.508546
+ - -0.035319
+ - - -3.010987
+ - -0.409047
+ - 0.032681
+ - - 2.265178
+ - -0.943944
+ - -1.026859
+ - - 0.755573
+ - 1.250479
+ - -0.982215
+ - - 0.762032
+ - 1.374131
+ - 0.782424
+ - - -0.418454
+ - -0.989849
+ - -0.804191
+ - - -0.405536
+ - -0.85127
+ - 0.95461
+ - - -1.822026
+ - 1.104741
+ - -0.963894
+ - - -1.822128
+ - 1.235429
+ - 0.794949
+ - - -3.019524
+ - -0.992837
+ - 0.966346
+ - - -3.019955
+ - -1.123834
+ - -0.805084
+ - - -3.947328
+ - 0.166873
+ - -0.009931
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.225753604954988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.347593
+ - -0.196728
+ - 0.088132
+ - - 0.750033
+ - 0.653089
+ - -0.051295
+ - - -0.461184
+ - -0.259466
+ - 0.02551
+ - - -1.776777
+ - 0.506067
+ - -0.037455
+ - - -2.992699
+ - -0.405348
+ - 0.031708
+ - - 2.240297
+ - -0.934483
+ - -1.02491
+ - - 0.737519
+ - 1.242933
+ - -0.967657
+ - - 0.746493
+ - 1.359937
+ - 0.779956
+ - - -0.421409
+ - -0.982061
+ - -0.795073
+ - - -0.412859
+ - -0.842317
+ - 0.948393
+ - - -1.811372
+ - 1.093021
+ - -0.95989
+ - - -1.813245
+ - 1.227926
+ - 0.783669
+ - - -3.000113
+ - -0.980731
+ - 0.959202
+ - - -2.998801
+ - -1.116069
+ - -0.796802
+ - - -3.921119
+ - 0.164588
+ - -0.013141
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.960841045600198
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.378581
+ - -0.19864
+ - 0.096735
+ - - 0.758364
+ - 0.65918
+ - -0.056152
+ - - -0.459418
+ - -0.26047
+ - 0.021942
+ - - -1.786637
+ - 0.508685
+ - -0.035402
+ - - -3.01076
+ - -0.409039
+ - 0.033885
+ - - 2.274058
+ - -0.940818
+ - -1.019376
+ - - 0.756881
+ - 1.244078
+ - -0.978316
+ - - 0.758064
+ - 1.369122
+ - 0.775341
+ - - -0.421779
+ - -0.982425
+ - -0.802558
+ - - -0.407728
+ - -0.846087
+ - 0.945695
+ - - -1.825246
+ - 1.100456
+ - -0.957788
+ - - -1.822733
+ - 1.228765
+ - 0.790846
+ - - -3.017334
+ - -0.989685
+ - 0.961264
+ - - -3.021597
+ - -1.117559
+ - -0.8
+ - - -3.940358
+ - 0.164794
+ - -0.005767
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.543795360343797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.343439
+ - -0.203515
+ - 0.078171
+ - - 0.750539
+ - 0.659181
+ - -0.046955
+ - - -0.459957
+ - -0.25722
+ - 0.028226
+ - - -1.775401
+ - 0.510992
+ - -0.039654
+ - - -2.987968
+ - -0.40848
+ - 0.0298
+ - - 2.203519
+ - -0.946203
+ - -1.028568
+ - - 0.73448
+ - 1.254477
+ - -0.960234
+ - - 0.750528
+ - 1.359369
+ - 0.79073
+ - - -0.417241
+ - -0.979989
+ - -0.792999
+ - - -0.413734
+ - -0.838942
+ - 0.952762
+ - - -1.807072
+ - 1.094564
+ - -0.964843
+ - - -1.813288
+ - 1.234624
+ - 0.780343
+ - - -2.99191
+ - -0.979304
+ - 0.960405
+ - - -2.983002
+ - -1.123266
+ - -0.795488
+ - - -3.920574
+ - 0.154072
+ - -0.021349
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.276861159001978
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.343439
+ - -0.203515
+ - 0.078171
+ - - 0.750539
+ - 0.659181
+ - -0.046955
+ - - -0.459957
+ - -0.257221
+ - 0.028226
+ - - -1.775401
+ - 0.510992
+ - -0.039654
+ - - -2.987968
+ - -0.40848
+ - 0.0298
+ - - 2.203519
+ - -0.946203
+ - -1.028568
+ - - 0.73448
+ - 1.254477
+ - -0.960234
+ - - 0.750528
+ - 1.359369
+ - 0.79073
+ - - -0.417241
+ - -0.979989
+ - -0.792999
+ - - -0.413734
+ - -0.838942
+ - 0.952762
+ - - -1.807072
+ - 1.094564
+ - -0.964843
+ - - -1.813288
+ - 1.234624
+ - 0.780343
+ - - -2.99191
+ - -0.979304
+ - 0.960405
+ - - -2.983002
+ - -1.123266
+ - -0.795488
+ - - -3.920574
+ - 0.154072
+ - -0.021349
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.607204820529073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.343439
+ - -0.203515
+ - 0.078171
+ - - 0.750539
+ - 0.659181
+ - -0.046955
+ - - -0.459957
+ - -0.257221
+ - 0.028226
+ - - -1.775401
+ - 0.510992
+ - -0.039654
+ - - -2.987968
+ - -0.40848
+ - 0.0298
+ - - 2.203519
+ - -0.946203
+ - -1.028568
+ - - 0.73448
+ - 1.254477
+ - -0.960234
+ - - 0.750528
+ - 1.359369
+ - 0.79073
+ - - -0.417241
+ - -0.979989
+ - -0.792999
+ - - -0.413734
+ - -0.838942
+ - 0.952762
+ - - -1.807072
+ - 1.094564
+ - -0.964843
+ - - -1.813288
+ - 1.234624
+ - 0.780343
+ - - -2.99191
+ - -0.979304
+ - 0.960405
+ - - -2.983002
+ - -1.123266
+ - -0.795488
+ - - -3.920574
+ - 0.154072
+ - -0.021349
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.5380749052802
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.377699
+ - -0.191906
+ - 0.084391
+ - - 0.757759
+ - 0.661962
+ - -0.053372
+ - - -0.457878
+ - -0.260878
+ - 0.024512
+ - - -1.784224
+ - 0.508799
+ - -0.036118
+ - - -3.007696
+ - -0.409491
+ - 0.031939
+ - - 2.253856
+ - -0.955005
+ - -1.018348
+ - - 0.747982
+ - 1.254488
+ - -0.972591
+ - - 0.760662
+ - 1.368544
+ - 0.782884
+ - - -0.417475
+ - -0.984622
+ - -0.800187
+ - - -0.406858
+ - -0.847403
+ - 0.949365
+ - - -1.820204
+ - 1.100761
+ - -0.960177
+ - - -1.821387
+ - 1.232018
+ - 0.7892
+ - - -3.01584
+ - -0.989308
+ - 0.961362
+ - - -3.015121
+ - -1.121243
+ - -0.800932
+ - - -3.938918
+ - 0.163642
+ - -0.011581
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.511537617911355
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.3735654749
- - -0.2049287707
- - 0.0802722601
- - - 0.7525290174
- - 0.6725964364
- - -0.0579952531
- - - -0.4657844243
- - -0.2568050168
- - 0.0224513646
- - - -1.7965844607
- - 0.517286535
- - -0.0303104407
- - - -3.0163074307
- - -0.417442661
- - 0.0303756926
- - - 2.183510609
- - -1.0056014829
- - -0.995741572
- - - 0.7356734897
- - 1.2614391615
- - -0.9873242091
- - - 0.7479360966
- - 1.3845846989
- - 0.7810136383
- - - -0.429118906
- - -0.9768214157
- - -0.8126995826
- - - -0.4117990428
- - -0.8470313176
- - 0.95078223
- - - -1.8342406693
- - 1.1181301653
- - -0.9547083323
- - - -1.8335358949
- - 1.2319205791
- - 0.8090751747
- - - -3.009199068
- - -1.0089551946
- - 0.9587915774
- - - -3.0109728853
- - -1.1219852671
- - -0.815633238
- - - -3.9584175376
- - 0.1493686433
- - -0.0050400286
+ - - 2.343897
+ - -0.194618
+ - 0.084272
+ - - 0.749389
+ - 0.661657
+ - -0.054513
+ - - -0.459551
+ - -0.256657
+ - 0.023497
+ - - -1.775636
+ - 0.512186
+ - -0.035611
+ - - -2.987114
+ - -0.409092
+ - 0.029325
+ - - 2.198655
+ - -0.963099
+ - -1.001758
+ - - 0.735401
+ - 1.249355
+ - -0.972711
+ - - 0.74558
+ - 1.366779
+ - 0.778623
+ - - -0.420307
+ - -0.976086
+ - -0.800522
+ - - -0.408222
+ - -0.84023
+ - 0.946271
+ - - -1.809875
+ - 1.102454
+ - -0.955857
+ - - -1.811203
+ - 1.227864
+ - 0.790841
+ - - -2.984177
+ - -0.989967
+ - 0.953357
+ - - -2.984464
+ - -1.113545
+ - -0.804472
+ - - -3.920015
+ - 0.153359
+ - -0.010394
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.261804309500196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.343482
+ - -0.193534
+ - 0.091322
+ - - 0.748592
+ - 0.654298
+ - -0.053728
+ - - -0.460681
+ - -0.258261
+ - 0.023763
+ - - -1.775931
+ - 0.505922
+ - -0.036351
+ - - -2.989645
+ - -0.405697
+ - 0.031315
+ - - 2.227935
+ - -0.943459
+ - -1.016514
+ - - 0.738612
+ - 1.245514
+ - -0.972435
+ - - 0.746115
+ - 1.363791
+ - 0.778729
+ - - -0.420971
+ - -0.981662
+ - -0.799148
+ - - -0.409259
+ - -0.844371
+ - 0.947116
+ - - -1.811098
+ - 1.097262
+ - -0.958644
+ - - -1.811768
+ - 1.227831
+ - 0.787752
+ - - -2.996123
+ - -0.985025
+ - 0.958639
+ - - -2.996119
+ - -1.115942
+ - -0.800148
+ - - -3.920783
+ - 0.163693
+ - -0.011321
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.39383008626672794
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.374629
+ - -0.196841
+ - 0.092143
+ - - 0.758616
+ - 0.662117
+ - -0.054812
+ - - -0.458032
+ - -0.26165
+ - 0.024045
+ - - -1.785346
+ - 0.51056
+ - -0.035718
+ - - -3.00904
+ - -0.410579
+ - 0.032334
+ - - 2.252103
+ - -0.947409
+ - -1.019486
+ - - 0.753893
+ - 1.24941
+ - -0.978447
+ - - 0.761464
+ - 1.369781
+ - 0.781557
+ - - -0.418151
+ - -0.983645
+ - -0.803046
+ - - -0.405707
+ - -0.846318
+ - 0.950816
+ - - -1.821806
+ - 1.101268
+ - -0.961315
+ - - -1.821958
+ - 1.231259
+ - 0.792679
+ - - -3.013626
+ - -0.990388
+ - 0.962638
+ - - -3.013822
+ - -1.120791
+ - -0.802827
+ - - -3.94086
+ - 0.163587
+ - -0.010212
isotopes:
- 32
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.21722089110605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3434386507
+ - -0.2035145319
+ - 0.0781710163
+ - - 0.7505391674
+ - 0.6591808408
+ - -0.0469548703
+ - - -0.4599567899
+ - -0.2572204956
+ - 0.0282264529
+ - - -1.7754014636
+ - 0.5109918036
+ - -0.0396538553
+ - - -2.9879684168
+ - -0.4084804677
+ - 0.0297995737
+ - - 2.2035194074
+ - -0.94620278
+ - -1.0285676174
+ - - 0.7344802761
+ - 1.2544772492
+ - -0.9602340844
+ - - 0.7505280239
+ - 1.3593690695
+ - 0.7907300081
+ - - -0.4172412829
+ - -0.979988788
+ - -0.7929989395
+ - - -0.413734124
+ - -0.8389423667
+ - 0.9527618873
+ - - -1.8070720312
+ - 1.0945640256
+ - -0.9648428582
+ - - -1.813287999
+ - 1.2346238656
+ - 0.7803434986
+ - - -2.9919103691
+ - -0.9793044141
+ - 0.9604047663
+ - - -2.9830017678
+ - -1.1232658982
+ - -0.7954876782
+ - - -3.920573528
+ - 0.1540724601
+ - -0.0213490488
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.786497797805243
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.349845
+ - -0.194395
+ - 0.085177
+ - - 0.751362
+ - 0.65584
+ - -0.050945
+ - - -0.46004
+ - -0.260225
+ - 0.02549
+ - - -1.77672
+ - 0.507514
+ - -0.037612
+ - - -2.992809
+ - -0.406581
+ - 0.03118
+ - - 2.228399
+ - -0.941521
+ - -1.02019
+ - - 0.737189
+ - 1.245906
+ - -0.968352
+ - - 0.747018
+ - 1.361832
+ - 0.782191
+ - - -0.420154
+ - -0.981743
+ - -0.797089
+ - - -0.412544
+ - -0.843424
+ - 0.949151
+ - - -1.810746
+ - 1.094274
+ - -0.960909
+ - - -1.81299
+ - 1.228612
+ - 0.784966
+ - - -2.997311
+ - -0.982459
+ - 0.95928
+ - - -2.996208
+ - -1.116717
+ - -0.798844
+ - - -3.921933
+ - 0.163446
+ - -0.013145
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Butene.yml b/input/reference_sets/main/1-Butene.yml
index 275c74a24b..de74f96f61 100644
--- a/input/reference_sets/main/1-Butene.yml
+++ b/input/reference_sets/main/1-Butene.yml
@@ -161,54 +161,942 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.602817732627276
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.440291
+ - -0.573845
+ - -1.4e-05
+ - - 0.640032
+ - 0.721353
+ - -4.1e-05
+ - - -0.851792
+ - 0.560025
+ - -1.0e-06
+ - - -1.521675
+ - -0.589256
+ - 5.4e-05
+ - - 1.218496
+ - -1.176464
+ - -0.881523
+ - - 2.509564
+ - -0.363122
+ - -4.6e-05
+ - - 1.218537
+ - -1.176402
+ - 0.881548
+ - - 0.919011
+ - 1.326704
+ - -0.869061
+ - - 0.919051
+ - 1.326766
+ - 0.868924
+ - - -1.416966
+ - 1.487557
+ - -2.0e-05
+ - - -2.602877
+ - -0.603762
+ - 8.0e-05
+ - - -1.021262
+ - -1.548109
+ - 7.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.68258791611617
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.445347
+ - -0.573906
+ - -1.4e-05
+ - - 0.638343
+ - 0.718497
+ - -4.1e-05
+ - - -0.853597
+ - 0.557131
+ - -1.0e-06
+ - - -1.526517
+ - -0.586908
+ - 5.4e-05
+ - - 1.226245
+ - -1.178707
+ - -0.882031
+ - - 2.51468
+ - -0.358497
+ - -4.6e-05
+ - - 1.226286
+ - -1.178645
+ - 0.882056
+ - - 0.916809
+ - 1.326673
+ - -0.868945
+ - - 0.916849
+ - 1.326734
+ - 0.868808
+ - - -1.414636
+ - 1.488361
+ - -2.1e-05
+ - - -2.608737
+ - -0.599941
+ - 7.9e-05
+ - - -1.030662
+ - -1.549345
+ - 7.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 24.77669407399796
+ value: 24.77669407399796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4531365774
+ - -0.5819029399
+ - 0.0001342717
+ - - 0.6482007499
+ - 0.7255623486
+ - -0.0001606132
+ - - -0.8550352375
+ - 0.5667585295
+ - 0.0001386539
+ - - -1.5388553051
+ - -0.5891252423
+ - -6.34268e-05
+ - - 1.2215156712
+ - -1.1867388155
+ - -0.8890504183
+ - - 2.5324443904
+ - -0.3727371388
+ - -0.0007343772
+ - - 1.2226104027
+ - -1.1857053235
+ - 0.8903151999
+ - - 0.9333717949
+ - 1.3353823147
+ - -0.8768717714
+ - - 0.933754049
+ - 1.3359935302
+ - 0.8759810828
+ - - -1.4170369016
+ - 1.5075032481
+ - 0.0004321026
+ - - -2.6302768077
+ - -0.600962628
+ - 0.0002211782
+ - - -1.0410633062
+ - -1.5604913626
+ - -0.0005863105
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.744144629931222
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.451155
+ - -0.574897
+ - -1.5e-05
+ - - 0.639722
+ - 0.719378
+ - -4.2e-05
+ - - -0.855222
+ - 0.558476
+ - -2.0e-06
+ - - -1.534067
+ - -0.590102
+ - 5.7e-05
+ - - 1.231146
+ - -1.181977
+ - -0.885428
+ - - 2.52438
+ - -0.357113
+ - -3.8e-05
+ - - 1.231174
+ - -1.181923
+ - 0.885442
+ - - 0.919376
+ - 1.331531
+ - -0.871819
+ - - 0.919416
+ - 1.331592
+ - 0.87168
+ - - -1.417296
+ - 1.494821
+ - -2.5e-05
+ - - -2.62104
+ - -0.60059
+ - 8.2e-05
+ - - -1.038334
+ - -1.55775
+ - 8.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.820026172638622
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.452226
+ - -0.57552
+ - -1.4e-05
+ - - 0.64001
+ - 0.719966
+ - -4.1e-05
+ - - -0.856735
+ - 0.560505
+ - -1.0e-06
+ - - -1.53707
+ - -0.590794
+ - 5.5e-05
+ - - 1.233784
+ - -1.186718
+ - -0.888837
+ - - 2.530112
+ - -0.358242
+ - -4.6e-05
+ - - 1.233825
+ - -1.186655
+ - 0.888862
+ - - 0.92112
+ - 1.336412
+ - -0.874406
+ - - 0.92116
+ - 1.336473
+ - 0.874268
+ - - -1.421649
+ - 1.500626
+ - -2.2e-05
+ - - -2.628394
+ - -0.602284
+ - 8.0e-05
+ - - -1.03798
+ - -1.562324
+ - 7.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.636122967485539
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.441462
+ - -0.572245
+ - -1.4e-05
+ - - 0.637548
+ - 0.716188
+ - -4.1e-05
+ - - -0.851617
+ - 0.554981
+ - -1.0e-06
+ - - -1.521678
+ - -0.584645
+ - 5.4e-05
+ - - 1.223503
+ - -1.17698
+ - -0.881257
+ - - 2.510003
+ - -0.35751
+ - -4.6e-05
+ - - 1.223543
+ - -1.176918
+ - 0.881282
+ - - 0.914643
+ - 1.323259
+ - -0.868243
+ - - 0.914683
+ - 1.32332
+ - 0.868106
+ - - -1.413037
+ - 1.485197
+ - -2.1e-05
+ - - -2.603351
+ - -0.596861
+ - 7.9e-05
+ - - -1.025291
+ - -1.546341
+ - 7.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.0007016139717603545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.454148
+ - -0.574928
+ - -1.4e-05
+ - - 0.639121
+ - 0.718479
+ - -4.1e-05
+ - - -0.858187
+ - 0.556538
+ - -1.0e-06
+ - - -1.536964
+ - -0.587281
+ - 5.5e-05
+ - - 1.238609
+ - -1.182034
+ - -0.883537
+ - - 2.524493
+ - -0.354836
+ - -4.5e-05
+ - - 1.238647
+ - -1.181973
+ - 0.883561
+ - - 0.917584
+ - 1.328347
+ - -0.870084
+ - - 0.917623
+ - 1.328409
+ - 0.869946
+ - - -1.417714
+ - 1.490909
+ - -2.2e-05
+ - - -2.621074
+ - -0.59601
+ - 7.9e-05
+ - - -1.045876
+ - -1.554175
+ - 7.8e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.978212104724098
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.434162
+ - -0.574278
+ - 1.8e-05
+ - - 0.640542
+ - 0.722959
+ - -2.5e-05
+ - - -0.851572
+ - 0.560528
+ - 2.3e-05
+ - - -1.513214
+ - -0.587498
+ - -1.0e-05
+ - - 1.208467
+ - -1.17603
+ - -0.881768
+ - - 2.50487
+ - -0.369598
+ - -0.000203
+ - - 1.208774
+ - -1.175779
+ - 0.882054
+ - - 0.919434
+ - 1.328013
+ - -0.86902
+ - - 0.919493
+ - 1.328102
+ - 0.868887
+ - - -1.419752
+ - 1.48691
+ - 7.3e-05
+ - - -2.59519
+ - -0.607831
+ - 8.0e-06
+ - - -1.005604
+ - -1.544051
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.7713382066663295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.434162
+ - -0.574278
+ - 1.8e-05
+ - - 0.640542
+ - 0.722959
+ - -2.5e-05
+ - - -0.851572
+ - 0.560528
+ - 2.3e-05
+ - - -1.513214
+ - -0.587498
+ - -1.0e-05
+ - - 1.208467
+ - -1.17603
+ - -0.881768
+ - - 2.50487
+ - -0.369598
+ - -0.000203
+ - - 1.208774
+ - -1.175779
+ - 0.882054
+ - - 0.919434
+ - 1.328013
+ - -0.86902
+ - - 0.919493
+ - 1.328102
+ - 0.868887
+ - - -1.419752
+ - 1.48691
+ - 7.3e-05
+ - - -2.59519
+ - -0.607831
+ - 8.0e-06
+ - - -1.005604
+ - -1.544051
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3347144066546182
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.4531365774
- - -0.5819029399
- - 0.0001342717
- - - 0.6482007499
- - 0.7255623486
- - -0.0001606132
- - - -0.8550352375
- - 0.5667585295
- - 0.0001386539
- - - -1.5388553051
- - -0.5891252423
- - -6.34268e-05
- - - 1.2215156712
- - -1.1867388155
- - -0.8890504183
- - - 2.5324443904
- - -0.3727371388
- - -0.0007343772
- - - 1.2226104027
- - -1.1857053235
- - 0.8903151999
- - - 0.9333717949
- - 1.3353823147
- - -0.8768717714
- - - 0.933754049
- - 1.3359935302
- - 0.8759810828
- - - -1.4170369016
- - 1.5075032481
- - 0.0004321026
- - - -2.6302768077
- - -0.600962628
- - 0.0002211782
- - - -1.0410633062
- - -1.5604913626
- - -0.0005863105
+ - - 1.434162
+ - -0.574278
+ - 1.8e-05
+ - - 0.640542
+ - 0.722959
+ - -2.5e-05
+ - - -0.851572
+ - 0.560528
+ - 2.3e-05
+ - - -1.513214
+ - -0.587498
+ - -1.0e-05
+ - - 1.208467
+ - -1.17603
+ - -0.881768
+ - - 2.50487
+ - -0.369598
+ - -0.000203
+ - - 1.208774
+ - -1.175779
+ - 0.882054
+ - - 0.919434
+ - 1.328013
+ - -0.86902
+ - - 0.919493
+ - 1.328102
+ - 0.868887
+ - - -1.419752
+ - 1.48691
+ - 7.3e-05
+ - - -2.59519
+ - -0.607831
+ - 8.0e-06
+ - - -1.005604
+ - -1.544051
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.5586922793941258
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.45155
+ - -0.574683
+ - -1.4e-05
+ - - 0.638777
+ - 0.720381
+ - -4.1e-05
+ - - -0.857409
+ - 0.556675
+ - -1.0e-06
+ - - -1.534652
+ - -0.587699
+ - 5.4e-05
+ - - 1.233051
+ - -1.182074
+ - -0.884185
+ - - 2.523711
+ - -0.357754
+ - -4.6e-05
+ - - 1.233091
+ - -1.182012
+ - 0.88421
+ - - 0.919779
+ - 1.331586
+ - -0.870238
+ - - 0.919818
+ - 1.331648
+ - 0.870101
+ - - -1.415677
+ - 1.492709
+ - -2.2e-05
+ - - -2.619354
+ - -0.602727
+ - 8.0e-05
+ - - -1.042276
+ - -1.554603
+ - 7.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.3559743373278685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.431464
+ - -0.574228
+ - -1.4e-05
+ - - 0.641452
+ - 0.724966
+ - -4.1e-05
+ - - -0.84997
+ - 0.561273
+ - -1.0e-06
+ - - -1.508878
+ - -0.588192
+ - 5.5e-05
+ - - 1.200951
+ - -1.173753
+ - -0.881945
+ - - 2.502491
+ - -0.373933
+ - -4.6e-05
+ - - 1.200991
+ - -1.173692
+ - 0.881968
+ - - 0.920167
+ - 1.328928
+ - -0.869623
+ - - 0.920207
+ - 1.328988
+ - 0.869486
+ - - -1.419109
+ - 1.486989
+ - -2.1e-05
+ - - -2.59063
+ - -0.612326
+ - 8.1e-05
+ - - -0.998727
+ - -1.543574
+ - 7.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.446254560001831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.438175
+ - -0.571629
+ - -1.4e-05
+ - - 0.63768
+ - 0.716461
+ - -4.1e-05
+ - - -0.848856
+ - 0.557062
+ - -1.0e-06
+ - - -1.519448
+ - -0.587028
+ - 5.4e-05
+ - - 1.217957
+ - -1.177166
+ - -0.882681
+ - - 2.509346
+ - -0.360456
+ - -4.6e-05
+ - - 1.217997
+ - -1.177104
+ - 0.882706
+ - - 0.916282
+ - 1.3266
+ - -0.868982
+ - - 0.916321
+ - 1.326661
+ - 0.868845
+ - - -1.412816
+ - 1.488333
+ - -2.1e-05
+ - - -2.603082
+ - -0.60105
+ - 8.0e-05
+ - - -1.019147
+ - -1.549239
+ - 7.6e-05
isotopes:
- 12
- 12
@@ -309,13 +1197,161 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.18564246663851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4341623737
+ - -0.574278249
+ - 1.75822e-05
+ - - 0.6405420263
+ - 0.7229588139
+ - -2.54631e-05
+ - - -0.8515723493
+ - 0.5605281812
+ - 2.3207e-05
+ - - -1.5132139699
+ - -0.5874979264
+ - -1.03726e-05
+ - - 1.2084674517
+ - -1.1760302624
+ - -0.8817679075
+ - - 2.5048700277
+ - -0.3695977419
+ - -0.0002034086
+ - - 1.2087739243
+ - -1.1757790472
+ - 0.8820538737
+ - - 0.9194339284
+ - 1.328012514
+ - -0.8690200378
+ - - 0.9194928248
+ - 1.3281020986
+ - 0.8688867673
+ - - -1.4197524527
+ - 1.4869095625
+ - 7.2557e-05
+ - - -2.5951896958
+ - -0.6078307033
+ - 8.1222e-06
+ - - -1.005604493
+ - -1.5440513388
+ - -5.96874e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.864773735641075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.441977
+ - -0.573096
+ - -1.4e-05
+ - - 0.638949
+ - 0.718062
+ - -4.1e-05
+ - - -0.852008
+ - 0.556469
+ - -1.0e-06
+ - - -1.521835
+ - -0.585989
+ - 5.4e-05
+ - - 1.221165
+ - -1.176836
+ - -0.88242
+ - - 2.511347
+ - -0.359338
+ - -4.7e-05
+ - - 1.221207
+ - -1.176773
+ - 0.882447
+ - - 0.915696
+ - 1.324461
+ - -0.869456
+ - - 0.915736
+ - 1.324522
+ - 0.869319
+ - - -1.414443
+ - 1.486833
+ - -2.0e-05
+ - - -2.604377
+ - -0.598934
+ - 7.9e-05
+ - - -1.023004
+ - -1.547936
+ - 7.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 5.471213365466294
+ value: 5.471213365466291
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/1-Butyne.yml b/input/reference_sets/main/1-Butyne.yml
index 73e989006d..153dc2cc0d 100644
--- a/input/reference_sets/main/1-Butyne.yml
+++ b/input/reference_sets/main/1-Butyne.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.41663250145663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.574119
+ - -0.488319
+ - -2.0e-06
+ - - 0.548228
+ - 0.649724
+ - -4.9e-05
+ - - -0.828169
+ - 0.164294
+ - -1.0e-06
+ - - -1.955929
+ - -0.262639
+ - 4.2e-05
+ - - 1.452594
+ - -1.116426
+ - 0.881491
+ - - 1.452584
+ - -1.116508
+ - -0.881436
+ - - 2.586942
+ - -0.085548
+ - -2.7e-05
+ - - 0.69975
+ - 1.286152
+ - 0.874874
+ - - 0.699724
+ - 1.286055
+ - -0.875047
+ - - -2.950947
+ - -0.632332
+ - 7.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.136453407342074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.575774
+ - -0.489329
+ - -2.0e-06
+ - - 0.544095
+ - 0.646401
+ - -4.7e-05
+ - - -0.831042
+ - 0.163507
+ - -1.0e-06
+ - - -1.954297
+ - -0.259228
+ - 3.7e-05
+ - - 1.45703
+ - -1.118825
+ - 0.882109
+ - - 1.457004
+ - -1.118919
+ - -0.882044
+ - - 2.587682
+ - -0.081657
+ - -3.9e-05
+ - - 0.696547
+ - 1.284934
+ - 0.875008
+ - - 0.696521
+ - 1.284841
+ - -0.875174
+ - - -2.950418
+ - -0.627273
+ - 7.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.381244523679676
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.579457
+ - -0.491242
+ - -2.0e-06
+ - - 0.544358
+ - 0.648775
+ - -5.0e-05
+ - - -0.832391
+ - 0.166772
+ - -3.0e-06
+ - - -1.962474
+ - -0.261914
+ - 4.4e-05
+ - - 1.458797
+ - -1.122549
+ - 0.88566
+ - - 1.458786
+ - -1.122632
+ - -0.885603
+ - - 2.595171
+ - -0.081413
+ - -2.8e-05
+ - - 0.699797
+ - 1.290295
+ - 0.878424
+ - - 0.699771
+ - 1.290198
+ - -0.878599
+ - - -2.962376
+ - -0.631839
+ - 7.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.74322275632163
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.584512
+ - -0.491378
+ - -2.0e-06
+ - - 0.543369
+ - 0.644626
+ - -4.7e-05
+ - - -0.835
+ - 0.162916
+ - -1.0e-06
+ - - -1.971616
+ - -0.258715
+ - 3.8e-05
+ - - 1.46933
+ - -1.126968
+ - 0.888871
+ - - 1.469304
+ - -1.127062
+ - -0.888804
+ - - 2.602577
+ - -0.075692
+ - -3.9e-05
+ - - 0.696984
+ - 1.290896
+ - 0.88126
+ - - 0.696958
+ - 1.290802
+ - -0.881428
+ - - -2.977524
+ - -0.624975
+ - 7.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.62568993236878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.574065
+ - -0.486821
+ - -2.0e-06
+ - - 0.545295
+ - 0.642546
+ - -4.7e-05
+ - - -0.830005
+ - 0.158713
+ - -1.0e-06
+ - - -1.950436
+ - -0.256585
+ - 3.7e-05
+ - - 1.457976
+ - -1.116789
+ - 0.881108
+ - - 1.457952
+ - -1.116881
+ - -0.881044
+ - - 2.584926
+ - -0.079239
+ - -3.8e-05
+ - - 0.693689
+ - 1.280616
+ - 0.874044
+ - - 0.693663
+ - 1.280522
+ - -0.874211
+ - - -2.948231
+ - -0.621631
+ - 7.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.293087084414616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.581957
+ - -0.490403
+ - -2.0e-06
+ - - 0.541991
+ - 0.644234
+ - -4.7e-05
+ - - -0.836724
+ - 0.160373
+ - -1.0e-06
+ - - -1.963678
+ - -0.256867
+ - 3.8e-05
+ - - 1.467462
+ - -1.121872
+ - 0.883422
+ - - 1.467439
+ - -1.121964
+ - -0.883358
+ - - 2.594019
+ - -0.078104
+ - -3.7e-05
+ - - 0.694089
+ - 1.284653
+ - 0.875936
+ - - 0.694062
+ - 1.284559
+ - -0.876104
+ - - -2.961722
+ - -0.62016
+ - 7.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.33669113757989
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.572469
+ - -0.487678
+ - -0.0
+ - - 0.550211
+ - 0.650322
+ - -6.0e-06
+ - - -0.828786
+ - 0.162353
+ - 2.9e-05
+ - - -1.949674
+ - -0.261887
+ - -7.0e-06
+ - - 1.449358
+ - -1.11601
+ - 0.881419
+ - - 1.449095
+ - -1.116245
+ - -0.881215
+ - - 2.58641
+ - -0.087641
+ - -0.000205
+ - - 0.697765
+ - 1.287009
+ - 0.874961
+ - - 0.697715
+ - 1.28695
+ - -0.875025
+ - - -2.94567
+ - -0.632723
+ - -3.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.1016503819781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.572469
+ - -0.487678
+ - -0.0
+ - - 0.550211
+ - 0.650322
+ - -6.0e-06
+ - - -0.828786
+ - 0.162353
+ - 2.9e-05
+ - - -1.949674
+ - -0.261887
+ - -7.0e-06
+ - - 1.449358
+ - -1.11601
+ - 0.881419
+ - - 1.449095
+ - -1.116245
+ - -0.881215
+ - - 2.58641
+ - -0.087641
+ - -0.000205
+ - - 0.697765
+ - 1.287009
+ - 0.874961
+ - - 0.697715
+ - 1.28695
+ - -0.875025
+ - - -2.94567
+ - -0.632723
+ - -3.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.32264572624241
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.572469
+ - -0.487678
+ - -0.0
+ - - 0.550211
+ - 0.650322
+ - -6.0e-06
+ - - -0.828786
+ - 0.162353
+ - 2.9e-05
+ - - -1.949674
+ - -0.261887
+ - -7.0e-06
+ - - 1.449358
+ - -1.11601
+ - 0.881419
+ - - 1.449095
+ - -1.116245
+ - -0.881215
+ - - 2.58641
+ - -0.087641
+ - -0.000205
+ - - 0.697765
+ - 1.287009
+ - 0.874961
+ - - 0.697715
+ - 1.28695
+ - -0.875025
+ - - -2.94567
+ - -0.632723
+ - -3.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.028781003792915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.578664
+ - -0.490365
+ - -2.0e-06
+ - - 0.540702
+ - 0.64669
+ - -4.7e-05
+ - - -0.834798
+ - 0.161741
+ - -1.0e-06
+ - - -1.959927
+ - -0.261482
+ - 3.8e-05
+ - - 1.461733
+ - -1.122519
+ - 0.884228
+ - - 1.461708
+ - -1.122613
+ - -0.884163
+ - - 2.592698
+ - -0.079969
+ - -3.8e-05
+ - - 0.697871
+ - 1.288646
+ - 0.875958
+ - - 0.697845
+ - 1.288552
+ - -0.876125
+ - - -2.957601
+ - -0.62423
+ - 7.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.20720096951832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.570652
+ - -0.488123
+ - -2.0e-06
+ - - 0.550917
+ - 0.652568
+ - -4.7e-05
+ - - -0.826128
+ - 0.164421
+ - -1.0e-06
+ - - -1.945215
+ - -0.263189
+ - 3.8e-05
+ - - 1.443495
+ - -1.114891
+ - 0.881691
+ - - 1.443467
+ - -1.114984
+ - -0.881626
+ - - 2.585015
+ - -0.090104
+ - -3.9e-05
+ - - 0.698662
+ - 1.287978
+ - 0.875731
+ - - 0.698636
+ - 1.287886
+ - -0.875896
+ - - -2.940606
+ - -0.637111
+ - 7.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.833956388853615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.573675
+ - -0.486801
+ - -2.0e-06
+ - - 0.545484
+ - 0.641728
+ - -4.7e-05
+ - - -0.826294
+ - 0.160046
+ - -1.0e-06
+ - - -1.951993
+ - -0.257804
+ - 3.8e-05
+ - - 1.45709
+ - -1.117893
+ - 0.882463
+ - - 1.457066
+ - -1.117985
+ - -0.882398
+ - - 2.586239
+ - -0.078313
+ - -3.7e-05
+ - - 0.694503
+ - 1.282399
+ - 0.875469
+ - - 0.694477
+ - 1.282306
+ - -0.875637
+ - - -2.951351
+ - -0.623233
+ - 7.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.933872349489555
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.582711
+ - -0.492309
+ - -2.0e-06
+ - - 0.544002
+ - 0.647169
+ - -4.9e-05
+ - - -0.834781
+ - 0.163177
+ - -0.0
+ - - -1.966269
+ - -0.259215
+ - 4.1e-05
+ - - 1.464819
+ - -1.122786
+ - 0.885948
+ - - 1.464806
+ - -1.122871
+ - -0.885891
+ - - 2.595771
+ - -0.077004
+ - -2.9e-05
+ - - 0.69739
+ - 1.286869
+ - 0.879
+ - - 0.697361
+ - 1.286771
+ - -0.879174
+ - - -2.966915
+ - -0.625348
+ - 7.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,13 +1099,141 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.341374690216185
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.5724692637
+ - -0.4876776389
+ - -8.49e-08
+ - - 0.5502113893
+ - 0.6503217514
+ - -6.1526e-06
+ - - -0.8287860259
+ - 0.1623525706
+ - 2.90625e-05
+ - - -1.9496736591
+ - -0.2618869399
+ - -6.704e-06
+ - - 1.4493583055
+ - -1.1160099264
+ - 0.8814192331
+ - - 1.4490951318
+ - -1.1162445252
+ - -0.8812147812
+ - - 2.58640995
+ - -0.0876407667
+ - -0.0002054904
+ - - 0.6977654297
+ - 1.2870094878
+ - 0.8749607587
+ - - 0.6977151954
+ - 1.2869502722
+ - -0.8750253593
+ - - -2.9456698209
+ - -0.6327230002
+ - -3.10875e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.37735445760261
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.574415
+ - -0.488008
+ - -2.0e-06
+ - - 0.547069
+ - 0.64548
+ - -4.7e-05
+ - - -0.829606
+ - 0.161054
+ - -1.0e-06
+ - - -1.951407
+ - -0.258542
+ - 3.7e-05
+ - - 1.455689
+ - -1.1172
+ - 0.882265
+ - - 1.455662
+ - -1.117294
+ - -0.882199
+ - - 2.586183
+ - -0.080871
+ - -3.9e-05
+ - - 0.695139
+ - 1.282743
+ - 0.875418
+ - - 0.695113
+ - 1.282651
+ - -0.875583
+ - - -2.949361
+ - -0.625561
+ - 7.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 48.93001879785262
+ value: 48.93001879785259
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/1-Hydroxyethyl.yml b/input/reference_sets/main/1-Hydroxyethyl.yml
index 9651d1de48..7b0089aaa4 100644
--- a/input/reference_sets/main/1-Hydroxyethyl.yml
+++ b/input/reference_sets/main/1-Hydroxyethyl.yml
@@ -118,6 +118,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.873338181769444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224776
+ - -0.160957
+ - -0.007739
+ - - -0.090299
+ - 0.509125
+ - 0.102405
+ - - -1.164153
+ - -0.342315
+ - -0.004085
+ - - 1.392293
+ - -0.58343
+ - -1.007549
+ - - 1.299843
+ - -0.983601
+ - 0.705927
+ - - 2.027569
+ - 0.546639
+ - 0.1955
+ - - -0.236095
+ - 1.519754
+ - -0.26308
+ - - -1.978142
+ - 0.170883
+ - 0.014855
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.809091057863347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22517
+ - -0.161647
+ - -0.008898
+ - - -0.090779
+ - 0.505903
+ - 0.095335
+ - - -1.168658
+ - -0.339974
+ - -0.00926
+ - - 1.397954
+ - -0.593337
+ - -1.006557
+ - - 1.305105
+ - -0.98107
+ - 0.710844
+ - - 2.027251
+ - 0.550091
+ - 0.189443
+ - - -0.235879
+ - 1.525118
+ - -0.249255
+ - - -1.984371
+ - 0.171015
+ - 0.014582
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -172,6 +280,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.50151941044485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.226437
+ - -0.162866
+ - -0.009638
+ - - -0.092537
+ - 0.503521
+ - 0.094598
+ - - -1.178801
+ - -0.345876
+ - -0.009804
+ - - 1.408528
+ - -0.596481
+ - -1.010703
+ - - 1.31084
+ - -0.985844
+ - 0.712927
+ - - 2.028143
+ - 0.555433
+ - 0.191481
+ - - -0.238265
+ - 1.527748
+ - -0.2507
+ - - -1.988552
+ - 0.180464
+ - 0.018073
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.495369429744802
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.226868
+ - -0.162975
+ - -0.010266
+ - - -0.092667
+ - 0.503893
+ - 0.091838
+ - - -1.178329
+ - -0.348313
+ - -0.009657
+ - - 1.410629
+ - -0.602957
+ - -1.013552
+ - - 1.312462
+ - -0.987209
+ - 0.717443
+ - - 2.032648
+ - 0.557463
+ - 0.18926
+ - - -0.241761
+ - 1.53512
+ - -0.244192
+ - - -1.994056
+ - 0.181077
+ - 0.01536
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.637060731636192
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223616
+ - -0.161275
+ - -0.009192
+ - - -0.089858
+ - 0.505058
+ - 0.09283
+ - - -1.161881
+ - -0.337201
+ - -0.011106
+ - - 1.392678
+ - -0.593486
+ - -1.004766
+ - - 1.300822
+ - -0.978031
+ - 0.711817
+ - - 2.026071
+ - 0.54863
+ - 0.187905
+ - - -0.236019
+ - 1.525245
+ - -0.245735
+ - - -1.979634
+ - 0.167158
+ - 0.014482
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.515987049888299
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.225855
+ - -0.159886
+ - -0.008369
+ - - -0.094441
+ - 0.510275
+ - 0.098295
+ - - -1.169708
+ - -0.343384
+ - 0.001921
+ - - 1.405772
+ - -0.578418
+ - -1.012279
+ - - 1.29586
+ - -0.991163
+ - 0.700793
+ - - 2.031752
+ - 0.545282
+ - 0.207716
+ - - -0.238234
+ - 1.521234
+ - -0.278419
+ - - -1.981061
+ - 0.172158
+ - 0.026577
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.453594223318666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224898
+ - -0.162675
+ - -0.010336
+ - - -0.090475
+ - 0.503956
+ - 0.089578
+ - - -1.163987
+ - -0.340358
+ - -0.01892
+ - - 1.388928
+ - -0.607885
+ - -1.001389
+ - - 1.308088
+ - -0.970526
+ - 0.720582
+ - - 2.026278
+ - 0.551708
+ - 0.173585
+ - - -0.23972
+ - 1.53142
+ - -0.220912
+ - - -1.978217
+ - 0.170459
+ - 0.004046
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.825236083564022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224898
+ - -0.162675
+ - -0.010336
+ - - -0.090475
+ - 0.503956
+ - 0.089578
+ - - -1.163987
+ - -0.340358
+ - -0.01892
+ - - 1.388929
+ - -0.607885
+ - -1.001389
+ - - 1.308088
+ - -0.970526
+ - 0.720582
+ - - 2.026278
+ - 0.551708
+ - 0.173585
+ - - -0.23972
+ - 1.53142
+ - -0.220912
+ - - -1.978217
+ - 0.170459
+ - 0.004046
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.153294401651202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224898
+ - -0.162675
+ - -0.010336
+ - - -0.090475
+ - 0.503956
+ - 0.089578
+ - - -1.163987
+ - -0.340358
+ - -0.01892
+ - - 1.388929
+ - -0.607885
+ - -1.001389
+ - - 1.308088
+ - -0.970526
+ - 0.720582
+ - - 2.026278
+ - 0.551708
+ - 0.173585
+ - - -0.23972
+ - 1.53142
+ - -0.220912
+ - - -1.978217
+ - 0.170459
+ - 0.004046
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.258783223597067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.225356
+ - -0.161088
+ - -0.009311
+ - - -0.097119
+ - 0.508221
+ - 0.098376
+ - - -1.171924
+ - -0.341345
+ - 0.007087
+ - - 1.414468
+ - -0.576492
+ - -1.013953
+ - - 1.297744
+ - -0.995816
+ - 0.697787
+ - - 2.028671
+ - 0.54738
+ - 0.212073
+ - - -0.239583
+ - 1.518349
+ - -0.284748
+ - - -1.98182
+ - 0.176891
+ - 0.028924
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.678388519303844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224556
+ - -0.160284
+ - -0.007915
+ - - -0.09089
+ - 0.509639
+ - 0.101257
+ - - -1.15823
+ - -0.338013
+ - -0.013754
+ - - 1.387651
+ - -0.586342
+ - -1.006404
+ - - 1.294887
+ - -0.980912
+ - 0.709065
+ - - 2.028399
+ - 0.546553
+ - 0.193162
+ - - -0.233098
+ - 1.522738
+ - -0.259529
+ - - -1.977481
+ - 0.162719
+ - 0.020351
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.045639482279926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.221172
+ - -0.161108
+ - -0.009376
+ - - -0.092426
+ - 0.501958
+ - 0.093065
+ - - -1.163163
+ - -0.339535
+ - -0.009723
+ - - 1.397278
+ - -0.591325
+ - -1.007398
+ - - 1.300516
+ - -0.981531
+ - 0.710396
+ - - 2.022472
+ - 0.551624
+ - 0.192386
+ - - -0.235675
+ - 1.52291
+ - -0.252109
+ - - -1.97438
+ - 0.173106
+ - 0.018993
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.89515871479923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22866
+ - -0.162838
+ - -0.008087
+ - - -0.090419
+ - 0.510838
+ - 0.104185
+ - - -1.174546
+ - -0.347016
+ - -0.000726
+ - - 1.404424
+ - -0.584771
+ - -1.013835
+ - - 1.305527
+ - -0.991435
+ - 0.706538
+ - - 2.032329
+ - 0.55007
+ - 0.20057
+ - - -0.239717
+ - 1.524445
+ - -0.270159
+ - - -1.990464
+ - 0.176805
+ - 0.017748
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -226,6 +928,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.407006226955545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2248984126
+ - -0.1626746116
+ - -0.0103364277
+ - - -0.0904753647
+ - 0.5039563032
+ - 0.0895778026
+ - - -1.1639869944
+ - -0.3403582148
+ - -0.018920111
+ - - 1.3889284995
+ - -0.6078849461
+ - -1.0013888908
+ - - 1.3080882721
+ - -0.9705261668
+ - 0.7205818659
+ - - 2.0262780743
+ - 0.5517076045
+ - 0.1735854344
+ - - -0.2397203108
+ - 1.5314199078
+ - -0.2209122346
+ - - -1.9782168674
+ - 0.1704591698
+ - 0.004046464
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.529577301617795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223638
+ - -0.162252
+ - -0.008719
+ - - -0.093217
+ - 0.502901
+ - 0.095501
+ - - -1.165051
+ - -0.337408
+ - -0.0122
+ - - 1.394374
+ - -0.591283
+ - -1.006315
+ - - 1.303496
+ - -0.980737
+ - 0.71141
+ - - 2.023571
+ - 0.551169
+ - 0.190233
+ - - -0.234701
+ - 1.522741
+ - -0.251006
+ - - -1.976316
+ - 0.170967
+ - 0.01733
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Methyl-1H-Pyrrole.yml b/input/reference_sets/main/1-Methyl-1H-Pyrrole.yml
index dfd8e7ec7f..ef00285edd 100644
--- a/input/reference_sets/main/1-Methyl-1H-Pyrrole.yml
+++ b/input/reference_sets/main/1-Methyl-1H-Pyrrole.yml
@@ -20,7 +20,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 25.897442046843505
+ value: 25.897442046843477
class: ThermoData
xyz_dict:
coords:
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.17617480738699
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0676
+ - -5.0e-06
+ - 0.0246
+ - - -0.62253
+ - -1.8e-05
+ - -0.040384
+ - - 0.172283
+ - -1.116528
+ - -0.014546
+ - - 1.487614
+ - -0.709378
+ - 0.016161
+ - - 1.487616
+ - 0.709356
+ - 0.015917
+ - - 0.172286
+ - 1.116499
+ - -0.014929
+ - - -2.420405
+ - 0.000172
+ - 1.057281
+ - - -2.454024
+ - 0.883101
+ - -0.480294
+ - - -2.454026
+ - -0.883284
+ - -0.479991
+ - - -0.262777
+ - -2.101229
+ - -0.024243
+ - - 2.347322
+ - -1.357474
+ - 0.023874
+ - - 2.347325
+ - 1.357452
+ - 0.023407
+ - - -0.262772
+ - 2.101197
+ - -0.024965
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.08572304731602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.067146
+ - -7.0e-06
+ - 0.02424
+ - - -0.622299
+ - -1.9e-05
+ - -0.038557
+ - - 0.173284
+ - -1.116701
+ - -0.014033
+ - - 1.48668
+ - -0.709801
+ - 0.015453
+ - - 1.486681
+ - 0.70978
+ - 0.015183
+ - - 0.173287
+ - 1.116671
+ - -0.014459
+ - - -2.424064
+ - 7.6e-05
+ - 1.057202
+ - - -2.455123
+ - 0.883453
+ - -0.481053
+ - - -2.45514
+ - -0.883538
+ - -0.480918
+ - - -0.260434
+ - -2.102273
+ - -0.02292
+ - - 2.347506
+ - -1.357214
+ - 0.022994
+ - - 2.347508
+ - 1.357195
+ - 0.022477
+ - - -0.260431
+ - 2.102239
+ - -0.02372
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 63.88086264278401
+ value: 63.88086264278401
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0806827843
+ - 0.0008629824
+ - 0.03562821
+ - - -0.6279151941
+ - 0.0069737954
+ - -0.0538398306
+ - - 0.1672498071
+ - -1.1209459006
+ - -0.0208306746
+ - - 1.4943022855
+ - -0.7199727781
+ - 0.0211648169
+ - - 1.5027046146
+ - 0.708071164
+ - 0.0214162152
+ - - 0.179966932
+ - 1.1286262742
+ - -0.0198427063
+ - - -2.4197951241
+ - -0.0024147248
+ - 1.083325493
+ - - -2.4850560653
+ - 0.887301775
+ - -0.4693874115
+ - - -2.4722800614
+ - -0.8948131902
+ - -0.4653328689
+ - - -0.2818637481
+ - -2.1094542144
+ - -0.0316314207
+ - - 2.354486532
+ - -1.3833478311
+ - 0.0328879988
+ - - 2.3761711666
+ - 1.3527142077
+ - 0.0327553881
+ - - -0.2575014705
+ - 2.1213469589
+ - -0.030953531
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.230575932565294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.072765
+ - -5.0e-06
+ - 0.024177
+ - - -0.624029
+ - -1.8e-05
+ - -0.040935
+ - - 0.173708
+ - -1.122374
+ - -0.014813
+ - - 1.493184
+ - -0.711678
+ - 0.016293
+ - - 1.493186
+ - 0.711656
+ - 0.016049
+ - - 0.173711
+ - 1.122344
+ - -0.015199
+ - - -2.428457
+ - 0.000175
+ - 1.062395
+ - - -2.461781
+ - 0.887447
+ - -0.482626
+ - - -2.461783
+ - -0.887633
+ - -0.482318
+ - - -0.265166
+ - -2.110252
+ - -0.023702
+ - - 2.35783
+ - -1.361414
+ - 0.02373
+ - - 2.357833
+ - 1.361392
+ - 0.023263
+ - - -0.265161
+ - 2.11022
+ - -0.024426
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.358525027015716
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.076416
+ - -5.0e-06
+ - 0.024238
+ - - -0.625116
+ - -1.8e-05
+ - -0.03655
+ - - 0.174848
+ - -1.122798
+ - -0.012938
+ - - 1.497163
+ - -0.712018
+ - 0.015242
+ - - 1.497165
+ - 0.711995
+ - 0.014997
+ - - 0.174851
+ - 1.122768
+ - -0.013325
+ - - -2.439619
+ - 0.000175
+ - 1.064694
+ - - -2.466912
+ - 0.890383
+ - -0.486314
+ - - -2.466914
+ - -0.890569
+ - -0.486006
+ - - -0.264109
+ - -2.116079
+ - -0.021518
+ - - 2.364735
+ - -1.365555
+ - 0.021043
+ - - 2.364739
+ - 1.365531
+ - 0.020572
+ - - -0.264104
+ - 2.116048
+ - -0.022247
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.02361364041333
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.061401
+ - -5.0e-06
+ - 0.024173
+ - - -0.620171
+ - -1.7e-05
+ - -0.034304
+ - - 0.173033
+ - -1.110464
+ - -0.012357
+ - - 1.480617
+ - -0.707677
+ - 0.014096
+ - - 1.480619
+ - 0.707654
+ - 0.013852
+ - - 0.173036
+ - 1.110435
+ - -0.01274
+ - - -2.421544
+ - 0.000172
+ - 1.054701
+ - - -2.448488
+ - 0.88222
+ - -0.482231
+ - - -2.44849
+ - -0.882403
+ - -0.481929
+ - - -0.258936
+ - -2.097003
+ - -0.021179
+ - - 2.340483
+ - -1.356055
+ - 0.021088
+ - - 2.340486
+ - 1.356032
+ - 0.020621
+ - - -0.258931
+ - 2.096972
+ - -0.021902
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.77274814493563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.073228
+ - -5.0e-06
+ - 0.025082
+ - - -0.623275
+ - -1.8e-05
+ - -0.039324
+ - - 0.175858
+ - -1.118534
+ - -0.014037
+ - - 1.490882
+ - -0.710944
+ - 0.015488
+ - - 1.490884
+ - 0.710921
+ - 0.015248
+ - - 0.175861
+ - 1.118504
+ - -0.014415
+ - - -2.432497
+ - 0.000187
+ - 1.059128
+ - - -2.462321
+ - 0.88396
+ - -0.482299
+ - - -2.462321
+ - -0.884158
+ - -0.481971
+ - - -0.257666
+ - -2.106029
+ - -0.022549
+ - - 2.352896
+ - -1.35976
+ - 0.022629
+ - - 2.3529
+ - 1.359737
+ - 0.02217
+ - - -0.257661
+ - 2.105997
+ - -0.023261
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.29457343013068
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.064461
+ - 1.1e-05
+ - 0.024812
+ - - -0.620131
+ - 2.9e-05
+ - -0.036412
+ - - 0.173533
+ - -1.112612
+ - -0.013092
+ - - 1.483705
+ - -0.709458
+ - 0.014332
+ - - 1.483739
+ - 0.709415
+ - 0.014342
+ - - 0.173578
+ - 1.112636
+ - -0.013077
+ - - -2.420473
+ - 0.000995
+ - 1.056423
+ - - -2.450643
+ - 0.882025
+ - -0.482652
+ - - -2.450383
+ - -0.883146
+ - -0.48084
+ - - -0.262002
+ - -2.098177
+ - -0.02336
+ - - 2.342853
+ - -1.359153
+ - 0.02242
+ - - 2.34292
+ - 1.359074
+ - 0.0224
+ - - -0.261925
+ - 2.098219
+ - -0.023408
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.950715303162692
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.064461
+ - 1.1e-05
+ - 0.024812
+ - - -0.620131
+ - 2.9e-05
+ - -0.036412
+ - - 0.173533
+ - -1.112612
+ - -0.013092
+ - - 1.483705
+ - -0.709458
+ - 0.014332
+ - - 1.483739
+ - 0.709415
+ - 0.014342
+ - - 0.173578
+ - 1.112636
+ - -0.013077
+ - - -2.420473
+ - 0.000995
+ - 1.056423
+ - - -2.450643
+ - 0.882025
+ - -0.482652
+ - - -2.450383
+ - -0.883146
+ - -0.48084
+ - - -0.262002
+ - -2.098177
+ - -0.02336
+ - - 2.342853
+ - -1.359153
+ - 0.02242
+ - - 2.34292
+ - 1.359074
+ - 0.0224
+ - - -0.261925
+ - 2.098219
+ - -0.023408
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.595164707922258
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.064461
+ - 1.1e-05
+ - 0.024812
+ - - -0.620131
+ - 2.9e-05
+ - -0.036412
+ - - 0.173533
+ - -1.112612
+ - -0.013092
+ - - 1.483705
+ - -0.709458
+ - 0.014332
+ - - 1.483739
+ - 0.709415
+ - 0.014342
+ - - 0.173578
+ - 1.112636
+ - -0.013077
+ - - -2.420473
+ - 0.000995
+ - 1.056423
+ - - -2.450643
+ - 0.882025
+ - -0.482652
+ - - -2.450383
+ - -0.883146
+ - -0.48084
+ - - -0.262002
+ - -2.098177
+ - -0.02336
+ - - 2.342853
+ - -1.359153
+ - 0.02242
+ - - 2.34292
+ - 1.359074
+ - 0.0224
+ - - -0.261925
+ - 2.098219
+ - -0.023408
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.81813190616408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.067493
+ - -5.0e-06
+ - 0.024761
+ - - -0.621876
+ - -1.8e-05
+ - -0.037252
+ - - 0.175952
+ - -1.11752
+ - -0.013855
+ - - 1.490133
+ - -0.710901
+ - 0.015665
+ - - 1.490135
+ - 0.710878
+ - 0.015423
+ - - 0.175956
+ - 1.11749
+ - -0.014236
+ - - -2.433341
+ - 0.000182
+ - 1.058504
+ - - -2.45799
+ - 0.885488
+ - -0.482717
+ - - -2.457991
+ - -0.88568
+ - -0.482397
+ - - -0.263901
+ - -2.102551
+ - -0.021407
+ - - 2.352308
+ - -1.360016
+ - 0.020992
+ - - 2.352312
+ - 1.359992
+ - 0.020529
+ - - -0.263895
+ - 2.10252
+ - -0.022123
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.660634362730086
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.0806827843
- - 0.0008629824
- - 0.03562821
- - - -0.6279151941
- - 0.0069737954
- - -0.0538398306
- - - 0.1672498071
- - -1.1209459006
- - -0.0208306746
- - - 1.4943022855
- - -0.7199727781
- - 0.0211648169
- - - 1.5027046146
- - 0.708071164
- - 0.0214162152
- - - 0.179966932
- - 1.1286262742
- - -0.0198427063
- - - -2.4197951241
- - -0.0024147248
- - 1.083325493
- - - -2.4850560653
- - 0.887301775
- - -0.4693874115
- - - -2.4722800614
- - -0.8948131902
- - -0.4653328689
- - - -0.2818637481
- - -2.1094542144
- - -0.0316314207
- - - 2.354486532
- - -1.3833478311
- - 0.0328879988
- - - 2.3761711666
- - 1.3527142077
- - 0.0327553881
- - - -0.2575014705
- - 2.1213469589
- - -0.030953531
+ - - -2.063215
+ - -4.0e-06
+ - 0.024069
+ - - -0.619674
+ - -1.7e-05
+ - -0.033858
+ - - 0.172239
+ - -1.112031
+ - -0.012056
+ - - 1.483206
+ - -0.708858
+ - 0.014137
+ - - 1.483208
+ - 0.708834
+ - 0.013908
+ - - 0.172242
+ - 1.112002
+ - -0.012416
+ - - -2.419554
+ - 0.000231
+ - 1.055545
+ - - -2.446178
+ - 0.883704
+ - -0.48311
+ - - -2.446173
+ - -0.883945
+ - -0.482705
+ - - -0.265412
+ - -2.096465
+ - -0.020951
+ - - 2.342513
+ - -1.357898
+ - 0.020695
+ - - 2.342516
+ - 1.357874
+ - 0.020257
+ - - -0.265407
+ - 2.096434
+ - -0.021627
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.639603285325244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.058034
+ - -5.0e-06
+ - 0.024009
+ - - -0.620551
+ - -1.7e-05
+ - -0.034466
+ - - 0.17061
+ - -1.110922
+ - -0.012334
+ - - 1.482071
+ - -0.707349
+ - 0.014509
+ - - 1.482073
+ - 0.707325
+ - 0.014267
+ - - 0.170613
+ - 1.110893
+ - -0.012715
+ - - -2.420249
+ - 0.000177
+ - 1.056276
+ - - -2.446544
+ - 0.883604
+ - -0.48319
+ - - -2.446546
+ - -0.883792
+ - -0.482879
+ - - -0.264369
+ - -2.09812
+ - -0.020801
+ - - 2.342799
+ - -1.357632
+ - 0.020599
+ - - 2.342803
+ - 1.357608
+ - 0.020134
+ - - -0.264363
+ - 2.098089
+ - -0.021521
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.686053970317985
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.077974
+ - -5.0e-06
+ - 0.024002
+ - - -0.624123
+ - -1.8e-05
+ - -0.036408
+ - - 0.175901
+ - -1.121141
+ - -0.012691
+ - - 1.494044
+ - -0.710893
+ - 0.015197
+ - - 1.494046
+ - 0.71087
+ - 0.014953
+ - - 0.175904
+ - 1.121112
+ - -0.013076
+ - - -2.434551
+ - 0.000175
+ - 1.060956
+ - - -2.461893
+ - 0.887893
+ - -0.484372
+ - - -2.461895
+ - -0.888078
+ - -0.484064
+ - - -0.262576
+ - -2.108994
+ - -0.02174
+ - - 2.357998
+ - -1.361077
+ - 0.021032
+ - - 2.358002
+ - 1.361053
+ - 0.020564
+ - - -0.26257
+ - 2.108963
+ - -0.022465
isotopes:
- 12
- 14
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.39056746547506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0644612223
+ - 1.07187e-05
+ - 0.0248116481
+ - - -0.6201308261
+ - 2.9462e-05
+ - -0.0364115133
+ - - 0.1735330808
+ - -1.1126118901
+ - -0.0130923258
+ - - 1.4837052875
+ - -0.7094576405
+ - 0.0143315288
+ - - 1.4837394476
+ - 0.7094153363
+ - 0.0143419538
+ - - 0.1735782048
+ - 1.1126361739
+ - -0.0130766799
+ - - -2.4204734533
+ - 0.0009953267
+ - 1.056422736
+ - - -2.4506431414
+ - 0.8820246716
+ - -0.4826516207
+ - - -2.4503826891
+ - -0.8831459095
+ - -0.4808399169
+ - - -0.2620017633
+ - -2.0981773299
+ - -0.0233599997
+ - - 2.3428533328
+ - -1.3591526663
+ - 0.0224201131
+ - - 2.3429197201
+ - 1.3590743262
+ - 0.0224004752
+ - - -0.2619250137
+ - 2.0982191577
+ - -0.023407943
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.189769046949436
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.061447
+ - -5.0e-06
+ - 0.024001
+ - - -0.620296
+ - -1.7e-05
+ - -0.034981
+ - - 0.172196
+ - -1.110943
+ - -0.012478
+ - - 1.481707
+ - -0.708114
+ - 0.014243
+ - - 1.481709
+ - 0.70809
+ - 0.014008
+ - - 0.172198
+ - 1.110914
+ - -0.012848
+ - - -2.419085
+ - 0.000206
+ - 1.056103
+ - - -2.448182
+ - 0.883183
+ - -0.482868
+ - - -2.44818
+ - -0.8834
+ - -0.482507
+ - - -0.261748
+ - -2.097405
+ - -0.021268
+ - - 2.341589
+ - -1.35731
+ - 0.021449
+ - - 2.341592
+ - 1.357287
+ - 0.020999
+ - - -0.261742
+ - 2.097374
+ - -0.021964
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Methylcyclopentene.yml b/input/reference_sets/main/1-Methylcyclopentene.yml
index 68906d385c..96c7459752 100644
--- a/input/reference_sets/main/1-Methylcyclopentene.yml
+++ b/input/reference_sets/main/1-Methylcyclopentene.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.611862111364294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.245191
+ - 0.028417
+ - 0.041291
+ - - 0.754544
+ - 0.072636
+ - 0.003229
+ - - -0.026511
+ - 1.155005
+ - 0.026878
+ - - -1.488253
+ - 0.814096
+ - -0.093383
+ - - -1.506122
+ - -0.707654
+ - 0.168765
+ - - -0.07276
+ - -1.184435
+ - -0.136007
+ - - 2.64323
+ - -0.447692
+ - -0.859074
+ - - 2.674828
+ - 1.026764
+ - 0.117469
+ - - 2.597466
+ - -0.563044
+ - 0.890378
+ - - 0.34125
+ - 2.172232
+ - 0.077725
+ - - -1.858124
+ - 1.055077
+ - -1.096266
+ - - -2.11669
+ - 1.363827
+ - 0.60996
+ - - -2.262616
+ - -1.230602
+ - -0.415229
+ - - -1.724866
+ - -0.884972
+ - 1.222772
+ - - 0.019239
+ - -1.579737
+ - -1.154463
+ - - 0.25807
+ - -1.979852
+ - 0.536134
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.09817082589483
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.24594
+ - 0.030213
+ - 0.034172
+ - - 0.755451
+ - 0.075047
+ - 0.001841
+ - - -0.024231
+ - 1.154563
+ - 0.023472
+ - - -1.487864
+ - 0.817779
+ - -0.083996
+ - - -1.510746
+ - -0.71006
+ - 0.156692
+ - - -0.069476
+ - -1.18576
+ - -0.123258
+ - - 2.64166
+ - -0.45351
+ - -0.864723
+ - - 2.678229
+ - 1.028869
+ - 0.101852
+ - - 2.602717
+ - -0.556866
+ - 0.886097
+ - - 0.342615
+ - 2.172871
+ - 0.068226
+ - - -1.872025
+ - 1.077085
+ - -1.077931
+ - - -2.106249
+ - 1.360361
+ - 0.635281
+ - - -2.253183
+ - -1.223421
+ - -0.45412
+ - - -1.7585
+ - -0.905726
+ - 1.201479
+ - - 0.036806
+ - -1.603086
+ - -1.132333
+ - - 0.256734
+ - -1.968295
+ - 0.56743
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 46.30920523752908
+ value: 46.30920523752908
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2614025666
+ - 0.0330337402
+ - 0.0403304349
+ - - 0.7606565273
+ - 0.0774488455
+ - 0.0053104894
+ - - -0.0323248348
+ - 1.1665357104
+ - 0.0277192395
+ - - -1.5027595725
+ - 0.816342238
+ - -0.0935221303
+ - - -1.5159089745
+ - -0.7193588283
+ - 0.1685600592
+ - - -0.0664869222
+ - -1.1920806692
+ - -0.1337219616
+ - - 2.6606076735
+ - -0.4449350544
+ - -0.8708901519
+ - - 2.697166217
+ - 1.0390845145
+ - 0.1203186663
+ - - 2.6189758941
+ - -0.5697442858
+ - 0.8924474928
+ - - 0.3306030495
+ - 2.1952140359
+ - 0.0746217177
+ - - -1.8763878472
+ - 1.0566004375
+ - -1.1059835246
+ - - -2.1423977559
+ - 1.3669717599
+ - 0.6149882717
+ - - -2.2724930845
+ - -1.248560455
+ - -0.4274472565
+ - - -1.7413861056
+ - -0.9018199848
+ - 1.2297589878
+ - - 0.0286396106
+ - -1.5907134166
+ - -1.1609086529
+ - - 0.2691996089
+ - -1.9936237708
+ - 0.5450376637
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.3555896863157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.251447
+ - 0.029472
+ - 0.034936
+ - - 0.758195
+ - 0.07474
+ - 0.003218
+ - - -0.026608
+ - 1.159753
+ - 0.024943
+ - - -1.491858
+ - 0.820087
+ - -0.084687
+ - - -1.513971
+ - -0.711587
+ - 0.158529
+ - - -0.069238
+ - -1.187769
+ - -0.123893
+ - - 2.648326
+ - -0.45649
+ - -0.867843
+ - - 2.686741
+ - 1.031471
+ - 0.103654
+ - - 2.610348
+ - -0.56219
+ - 0.888716
+ - - 0.340659
+ - 2.18283
+ - 0.068986
+ - - -1.876
+ - 1.078013
+ - -1.084433
+ - - -2.115936
+ - 1.365881
+ - 0.634347
+ - - -2.260263
+ - -1.228051
+ - -0.452737
+ - - -1.759937
+ - -0.906056
+ - 1.208527
+ - - 0.03667
+ - -1.604128
+ - -1.138559
+ - - 0.259302
+ - -1.97591
+ - 0.566475
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.754984465832024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.256461
+ - 0.03077
+ - 0.033988
+ - - 0.760613
+ - 0.072358
+ - 0.00249
+ - - -0.02694
+ - 1.160653
+ - 0.023829
+ - - -1.494253
+ - 0.822133
+ - -0.083315
+ - - -1.517313
+ - -0.712087
+ - 0.156152
+ - - -0.070395
+ - -1.191554
+ - -0.1225
+ - - 2.659209
+ - -0.456101
+ - -0.871157
+ - - 2.691166
+ - 1.037983
+ - 0.101773
+ - - 2.621298
+ - -0.560086
+ - 0.891587
+ - - 0.343296
+ - 2.187968
+ - 0.066978
+ - - -1.884127
+ - 1.087456
+ - -1.084296
+ - - -2.118706
+ - 1.369439
+ - 0.641674
+ - - -2.266071
+ - -1.229338
+ - -0.460252
+ - - -1.770483
+ - -0.911064
+ - 1.208724
+ - - 0.038019
+ - -1.615919
+ - -1.139025
+ - - 0.256099
+ - -1.982546
+ - 0.573529
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.101886594354813
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.240912
+ - 0.030246
+ - 0.035022
+ - - 0.752458
+ - 0.074533
+ - 0.001521
+ - - -0.023342
+ - 1.149697
+ - 0.023449
+ - - -1.484064
+ - 0.813753
+ - -0.085105
+ - - -1.506013
+ - -0.70748
+ - 0.157313
+ - - -0.071212
+ - -1.182754
+ - -0.124995
+ - - 2.636909
+ - -0.451553
+ - -0.863015
+ - - 2.671357
+ - 1.028651
+ - 0.103148
+ - - 2.596544
+ - -0.555021
+ - 0.886837
+ - - 0.344313
+ - 2.167287
+ - 0.069632
+ - - -1.865335
+ - 1.072011
+ - -1.078857
+ - - -2.10216
+ - 1.356997
+ - 0.632205
+ - - -2.250705
+ - -1.222232
+ - -0.448388
+ - - -1.750338
+ - -0.901087
+ - 1.20254
+ - - 0.033652
+ - -1.596748
+ - -1.134226
+ - - 0.254901
+ - -1.966234
+ - 0.563099
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.7174645460864917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.253926
+ - 0.031439
+ - 0.034543
+ - - 0.757711
+ - 0.074394
+ - 0.000126
+ - - -0.023598
+ - 1.156478
+ - 0.02244
+ - - -1.491922
+ - 0.820214
+ - -0.08358
+ - - -1.516239
+ - -0.711977
+ - 0.156913
+ - - -0.071164
+ - -1.190436
+ - -0.124962
+ - - 2.654337
+ - -0.454552
+ - -0.863244
+ - - 2.685722
+ - 1.032486
+ - 0.099365
+ - - 2.612663
+ - -0.551572
+ - 0.890852
+ - - 0.343141
+ - 2.176749
+ - 0.068203
+ - - -1.878442
+ - 1.081698
+ - -1.07823
+ - - -2.11
+ - 1.364149
+ - 0.638193
+ - - -2.26074
+ - -1.225328
+ - -0.45512
+ - - -1.764813
+ - -0.908985
+ - 1.203278
+ - - 0.033248
+ - -1.609498
+ - -1.135603
+ - - 0.254048
+ - -1.975196
+ - 0.567004
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.628220905328329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.243129
+ - 0.029072
+ - 0.040266
+ - - 0.751742
+ - 0.074428
+ - 0.004113
+ - - -0.024535
+ - 1.15258
+ - 0.026935
+ - - -1.487275
+ - 0.812056
+ - -0.093785
+ - - -1.504984
+ - -0.706806
+ - 0.167898
+ - - -0.073652
+ - -1.183343
+ - -0.133464
+ - - 2.638322
+ - -0.441309
+ - -0.864191
+ - - 2.672477
+ - 1.02715
+ - 0.122189
+ - - 2.59522
+ - -0.568186
+ - 0.885084
+ - - 0.345585
+ - 2.169672
+ - 0.077366
+ - - -1.855214
+ - 1.054236
+ - -1.096988
+ - - -2.1154
+ - 1.361995
+ - 0.609468
+ - - -2.260728
+ - -1.230333
+ - -0.416802
+ - - -1.726521
+ - -0.884806
+ - 1.221791
+ - - 0.021694
+ - -1.58018
+ - -1.151157
+ - - 0.258017
+ - -1.976163
+ - 0.541456
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.5166755784803834
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.243129
+ - 0.029072
+ - 0.040266
+ - - 0.751742
+ - 0.074428
+ - 0.004113
+ - - -0.024535
+ - 1.15258
+ - 0.026935
+ - - -1.487275
+ - 0.812056
+ - -0.093785
+ - - -1.504984
+ - -0.706806
+ - 0.167898
+ - - -0.073652
+ - -1.183343
+ - -0.133464
+ - - 2.638322
+ - -0.441309
+ - -0.864191
+ - - 2.672477
+ - 1.02715
+ - 0.122189
+ - - 2.59522
+ - -0.568186
+ - 0.885084
+ - - 0.345585
+ - 2.169672
+ - 0.077366
+ - - -1.855214
+ - 1.054236
+ - -1.096988
+ - - -2.1154
+ - 1.361995
+ - 0.609468
+ - - -2.260728
+ - -1.230333
+ - -0.416802
+ - - -1.726521
+ - -0.884806
+ - 1.221791
+ - - 0.021694
+ - -1.58018
+ - -1.151157
+ - - 0.258017
+ - -1.976163
+ - 0.541456
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6713404356046635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.243129
+ - 0.029072
+ - 0.040266
+ - - 0.751742
+ - 0.074428
+ - 0.004113
+ - - -0.024535
+ - 1.15258
+ - 0.026935
+ - - -1.487275
+ - 0.812056
+ - -0.093785
+ - - -1.504984
+ - -0.706806
+ - 0.167898
+ - - -0.073652
+ - -1.183343
+ - -0.133464
+ - - 2.638322
+ - -0.441309
+ - -0.864191
+ - - 2.672477
+ - 1.02715
+ - 0.122189
+ - - 2.59522
+ - -0.568186
+ - 0.885084
+ - - 0.345585
+ - 2.169672
+ - 0.077366
+ - - -1.855214
+ - 1.054236
+ - -1.096988
+ - - -2.1154
+ - 1.361995
+ - 0.609468
+ - - -2.260728
+ - -1.230333
+ - -0.416802
+ - - -1.726521
+ - -0.884806
+ - 1.221791
+ - - 0.021694
+ - -1.58018
+ - -1.151157
+ - - 0.258017
+ - -1.976163
+ - 0.541456
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3107736277072346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.252977
+ - 0.031693
+ - 0.032841
+ - - 0.757928
+ - 0.074767
+ - -0.000765
+ - - -0.023657
+ - 1.15652
+ - 0.020771
+ - - -1.491855
+ - 0.822032
+ - -0.081753
+ - - -1.516246
+ - -0.711428
+ - 0.153435
+ - - -0.069369
+ - -1.190571
+ - -0.121391
+ - - 2.656041
+ - -0.453328
+ - -0.86604
+ - - 2.686643
+ - 1.03335
+ - 0.099704
+ - - 2.615167
+ - -0.554571
+ - 0.887352
+ - - 0.341695
+ - 2.177793
+ - 0.064735
+ - - -1.884579
+ - 1.089793
+ - -1.073698
+ - - -2.108734
+ - 1.36482
+ - 0.644048
+ - - -2.258513
+ - -1.224208
+ - -0.463665
+ - - -1.772796
+ - -0.913159
+ - 1.198261
+ - - 0.039135
+ - -1.619489
+ - -1.12884
+ - - 0.254041
+ - -1.973953
+ - 0.575186
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.40025215601094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.242531
+ - 0.028091
+ - 0.04146
+ - - 0.75199
+ - 0.076025
+ - 0.004039
+ - - -0.025547
+ - 1.153554
+ - 0.027576
+ - - -1.487789
+ - 0.811947
+ - -0.093697
+ - - -1.504312
+ - -0.707583
+ - 0.168584
+ - - -0.072622
+ - -1.182459
+ - -0.136193
+ - - 2.635154
+ - -0.451161
+ - -0.85939
+ - - 2.673419
+ - 1.025758
+ - 0.116234
+ - - 2.590368
+ - -0.564658
+ - 0.891234
+ - - 0.342465
+ - 2.171191
+ - 0.078958
+ - - -1.853538
+ - 1.052904
+ - -1.097445
+ - - -2.116376
+ - 1.361568
+ - 0.608859
+ - - -2.26125
+ - -1.231518
+ - -0.413275
+ - - -1.720155
+ - -0.883092
+ - 1.223405
+ - - 0.02247
+ - -1.573621
+ - -1.155529
+ - - 0.261069
+ - -1.976883
+ - 0.535359
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.280703228429271
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2614025666
- - 0.0330337402
- - 0.0403304349
- - - 0.7606565273
- - 0.0774488455
- - 0.0053104894
- - - -0.0323248348
- - 1.1665357104
- - 0.0277192395
- - - -1.5027595725
- - 0.816342238
- - -0.0935221303
- - - -1.5159089745
- - -0.7193588283
- - 0.1685600592
- - - -0.0664869222
- - -1.1920806692
- - -0.1337219616
- - - 2.6606076735
- - -0.4449350544
- - -0.8708901519
- - - 2.697166217
- - 1.0390845145
- - 0.1203186663
- - - 2.6189758941
- - -0.5697442858
- - 0.8924474928
- - - 0.3306030495
- - 2.1952140359
- - 0.0746217177
- - - -1.8763878472
- - 1.0566004375
- - -1.1059835246
- - - -2.1423977559
- - 1.3669717599
- - 0.6149882717
- - - -2.2724930845
- - -1.248560455
- - -0.4274472565
- - - -1.7413861056
- - -0.9018199848
- - 1.2297589878
- - - 0.0286396106
- - -1.5907134166
- - -1.1609086529
- - - 0.2691996089
- - -1.9936237708
- - 0.5450376637
+ - - 2.238984
+ - 0.029166
+ - 0.037838
+ - - 0.753088
+ - 0.072045
+ - 0.003222
+ - - -0.026794
+ - 1.150901
+ - 0.025629
+ - - -1.483263
+ - 0.812224
+ - -0.088333
+ - - -1.502373
+ - -0.705466
+ - 0.161492
+ - - -0.071918
+ - -1.181057
+ - -0.129029
+ - - 2.637777
+ - -0.451394
+ - -0.86241
+ - - 2.67047
+ - 1.028858
+ - 0.109624
+ - - 2.596163
+ - -0.560875
+ - 0.88863
+ - - 0.341253
+ - 2.170578
+ - 0.072614
+ - - -1.860672
+ - 1.065756
+ - -1.087979
+ - - -2.109434
+ - 1.35962
+ - 0.622507
+ - - -2.254868
+ - -1.225951
+ - -0.433544
+ - - -1.736157
+ - -0.892135
+ - 1.212814
+ - - 0.029593
+ - -1.588488
+ - -1.144302
+ - - 0.256029
+ - -1.973718
+ - 0.551408
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.43176365741843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.256094
+ - 0.031191
+ - 0.036938
+ - - 0.758831
+ - 0.071245
+ - 0.001856
+ - - -0.025716
+ - 1.156957
+ - 0.023735
+ - - -1.493
+ - 0.820569
+ - -0.087565
+ - - -1.515163
+ - -0.710861
+ - 0.161011
+ - - -0.071805
+ - -1.191883
+ - -0.128111
+ - - 2.657601
+ - -0.448375
+ - -0.866557
+ - - 2.684609
+ - 1.035337
+ - 0.110155
+ - - 2.615337
+ - -0.560151
+ - 0.890123
+ - - 0.341813
+ - 2.17985
+ - 0.069916
+ - - -1.875719
+ - 1.076462
+ - -1.087832
+ - - -2.116281
+ - 1.367667
+ - 0.630656
+ - - -2.265854
+ - -1.228846
+ - -0.443478
+ - - -1.754037
+ - -0.900292
+ - 1.213258
+ - - 0.028077
+ - -1.605701
+ - -1.143973
+ - - 0.253089
+ - -1.983105
+ - 0.560049
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.3756111071092969
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.243128886
+ - 0.0290720835
+ - 0.0402664039
+ - - 0.7517422369
+ - 0.0744276212
+ - 0.0041133929
+ - - -0.0245350354
+ - 1.152580029
+ - 0.0269351375
+ - - -1.4872747296
+ - 0.812056318
+ - -0.0937845229
+ - - -1.5049843789
+ - -0.706805683
+ - 0.1678979018
+ - - -0.0736522535
+ - -1.1833432148
+ - -0.1334643201
+ - - 2.6383221687
+ - -0.4413091186
+ - -0.8641912569
+ - - 2.6724771961
+ - 1.0271498584
+ - 0.1221894814
+ - - 2.5952195929
+ - -0.5681863343
+ - 0.8850841283
+ - - 0.3455847473
+ - 2.1696724192
+ - 0.0773656093
+ - - -1.8552143033
+ - 1.0542358376
+ - -1.09698824
+ - - -2.1154004304
+ - 1.3619954404
+ - 0.6094678693
+ - - -2.2607277067
+ - -1.230332605
+ - -0.4168023383
+ - - -1.7265208781
+ - -0.8848057355
+ - 1.2217911166
+ - - 0.0216940208
+ - -1.5801799472
+ - -1.1511567846
+ - - 0.258017239
+ - -1.9761627383
+ - 0.5414564563
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.369338234360518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.242516
+ - 0.02963
+ - 0.0359
+ - - 0.752667
+ - 0.075197
+ - 0.001849
+ - - -0.02439
+ - 1.151778
+ - 0.023998
+ - - -1.485582
+ - 0.813994
+ - -0.086325
+ - - -1.506119
+ - -0.707875
+ - 0.159447
+ - - -0.070939
+ - -1.183123
+ - -0.126515
+ - - 2.635915
+ - -0.452681
+ - -0.863801
+ - - 2.674218
+ - 1.028263
+ - 0.10542
+ - - 2.594697
+ - -0.558286
+ - 0.888199
+ - - 0.342777
+ - 2.170169
+ - 0.070576
+ - - -1.863925
+ - 1.069052
+ - -1.082663
+ - - -2.1051
+ - 1.35835
+ - 0.62974
+ - - -2.252215
+ - -1.224088
+ - -0.444338
+ - - -1.746612
+ - -0.899372
+ - 1.20677
+ - - 0.03274
+ - -1.593035
+ - -1.138176
+ - - 0.257227
+ - -1.967908
+ - 0.560099
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Methylethenyl.yml b/input/reference_sets/main/1-Methylethenyl.yml
index 51c94a6315..7ff05e2e42 100644
--- a/input/reference_sets/main/1-Methylethenyl.yml
+++ b/input/reference_sets/main/1-Methylethenyl.yml
@@ -70,7 +70,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 60.32135119636197
+ value: 60.32135119636196
class: ThermoData
xyz_dict:
coords:
@@ -118,6 +118,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.06007074735636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.266572
+ - -0.07673
+ - 5.9e-05
+ - - -0.12513
+ - 0.386543
+ - 0.000201
+ - - -1.338028
+ - -0.100005
+ - -3.1e-05
+ - - 1.801251
+ - 0.282086
+ - 0.880698
+ - - 1.309193
+ - -1.173428
+ - -0.000353
+ - - 1.801293
+ - 0.28275
+ - -0.880283
+ - - -1.513898
+ - -1.17747
+ - -0.000465
+ - - -2.217921
+ - 0.532111
+ - 0.000194
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.23851510769204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.267184
+ - -0.076664
+ - 5.7e-05
+ - - -0.125013
+ - 0.376038
+ - 0.000191
+ - - -1.33946
+ - -0.100531
+ - -2.9e-05
+ - - 1.802138
+ - 0.285893
+ - 0.881174
+ - - 1.321874
+ - -1.174953
+ - -0.000364
+ - - 1.802189
+ - 0.28657
+ - -0.880749
+ - - -1.52821
+ - -1.177687
+ - -0.00045
+ - - -2.217369
+ - 0.537191
+ - 0.000191
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -172,6 +280,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.420184940062626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.27182
+ - -0.076406
+ - 5.9e-05
+ - - -0.123761
+ - 0.370098
+ - 0.000197
+ - - -1.346638
+ - -0.102645
+ - -3.0e-05
+ - - 1.808619
+ - 0.290646
+ - 0.884354
+ - - 1.337556
+ - -1.179091
+ - -0.000356
+ - - 1.808656
+ - 0.291314
+ - -0.883937
+ - - -1.548726
+ - -1.182732
+ - -0.000468
+ - - -2.224195
+ - 0.544674
+ - 0.000201
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.48595607629052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.273778
+ - -0.076866
+ - 5.6e-05
+ - - -0.123194
+ - 0.363709
+ - 0.000186
+ - - -1.350676
+ - -0.102434
+ - -2.8e-05
+ - - 1.811425
+ - 0.294775
+ - 0.887261
+ - - 1.348166
+ - -1.183801
+ - -0.000369
+ - - 1.811476
+ - 0.29546
+ - -0.886831
+ - - -1.559033
+ - -1.186237
+ - -0.000452
+ - - -2.22861
+ - 0.551251
+ - 0.000198
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.29438383653253
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.265224
+ - -0.077339
+ - 5.8e-05
+ - - -0.125855
+ - 0.375795
+ - 0.000192
+ - - -1.335844
+ - -0.100567
+ - -2.9e-05
+ - - 1.797974
+ - 0.285138
+ - 0.880513
+ - - 1.316925
+ - -1.173608
+ - -0.000361
+ - - 1.798024
+ - 0.285812
+ - -0.880091
+ - - -1.520554
+ - -1.176701
+ - -0.000453
+ - - -2.212562
+ - 0.537327
+ - 0.000192
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.79643933028525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.270265
+ - -0.076849
+ - 5.8e-05
+ - - -0.126623
+ - 0.377227
+ - 0.000193
+ - - -1.34369
+ - -0.101175
+ - -2.9e-05
+ - - 1.806446
+ - 0.286675
+ - 0.882282
+ - - 1.328335
+ - -1.176568
+ - -0.000362
+ - - 1.806494
+ - 0.287351
+ - -0.881859
+ - - -1.53568
+ - -1.17943
+ - -0.000454
+ - - -2.222215
+ - 0.538626
+ - 0.000193
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.4833326519493
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.266226
+ - -0.076504
+ - 2.0e-06
+ - - -0.126505
+ - 0.384384
+ - -7.0e-06
+ - - -1.336388
+ - -0.099051
+ - 1.0e-06
+ - - 1.799768
+ - 0.28201
+ - 0.881092
+ - - 1.306746
+ - -1.173653
+ - -0.000652
+ - - 1.800163
+ - 0.283049
+ - -0.880424
+ - - -1.50963
+ - -1.177905
+ - 1.6e-05
+ - - -2.217049
+ - 0.533528
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.8950421420237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.266226
+ - -0.076504
+ - 2.0e-06
+ - - -0.126505
+ - 0.384384
+ - -7.0e-06
+ - - -1.336388
+ - -0.099051
+ - 1.0e-06
+ - - 1.799768
+ - 0.28201
+ - 0.881092
+ - - 1.306746
+ - -1.173653
+ - -0.000652
+ - - 1.800163
+ - 0.283049
+ - -0.880424
+ - - -1.50963
+ - -1.177905
+ - 1.6e-05
+ - - -2.217049
+ - 0.533528
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.981551899052526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.266226
+ - -0.076504
+ - 2.0e-06
+ - - -0.126505
+ - 0.384384
+ - -7.0e-06
+ - - -1.336388
+ - -0.099051
+ - 1.0e-06
+ - - 1.799768
+ - 0.28201
+ - 0.881092
+ - - 1.306746
+ - -1.173653
+ - -0.000652
+ - - 1.800163
+ - 0.283049
+ - -0.880424
+ - - -1.50963
+ - -1.177905
+ - 1.6e-05
+ - - -2.217049
+ - 0.533528
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.306745483046285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.27223
+ - -0.0772
+ - 5.6e-05
+ - - -0.126395
+ - 0.367003
+ - 0.000186
+ - - -1.347277
+ - -0.102106
+ - -2.8e-05
+ - - 1.808779
+ - 0.290241
+ - 0.88247
+ - - 1.343035
+ - -1.177244
+ - -0.000368
+ - - 1.808832
+ - 0.290925
+ - -0.882042
+ - - -1.552631
+ - -1.178171
+ - -0.000446
+ - - -2.223242
+ - 0.542408
+ - 0.000193
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.94786626730993
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.263054
+ - -0.07777
+ - 5.8e-05
+ - - -0.126021
+ - 0.397967
+ - 0.000197
+ - - -1.33227
+ - -0.099733
+ - -3.0e-05
+ - - 1.79845
+ - 0.279132
+ - 0.881136
+ - - 1.295512
+ - -1.173599
+ - -0.000362
+ - - 1.798505
+ - 0.279809
+ - -0.880713
+ - - -1.497721
+ - -1.178187
+ - -0.000448
+ - - -2.216177
+ - 0.528238
+ - 0.000183
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.69655146706519
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.264813
+ - -0.077587
+ - 5.7e-05
+ - - -0.123154
+ - 0.373749
+ - 0.00019
+ - - -1.338118
+ - -0.101795
+ - -2.9e-05
+ - - 1.799291
+ - 0.287452
+ - 0.881484
+ - - 1.322102
+ - -1.175698
+ - -0.000363
+ - - 1.799342
+ - 0.288129
+ - -0.881059
+ - - -1.52722
+ - -1.179277
+ - -0.000451
+ - - -2.213725
+ - 0.540882
+ - 0.000193
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.3241191086796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.273758
+ - -0.077794
+ - 5.9e-05
+ - - -0.124473
+ - 0.373139
+ - 0.000199
+ - - -1.347465
+ - -0.102468
+ - -3.0e-05
+ - - 1.808027
+ - 0.29028
+ - 0.884262
+ - - 1.335672
+ - -1.17943
+ - -0.000356
+ - - 1.808064
+ - 0.290947
+ - -0.883845
+ - - -1.54595
+ - -1.181794
+ - -0.000468
+ - - -2.224302
+ - 0.542975
+ - 0.0002
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -226,6 +928,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.28887008688946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.26622642
+ - -0.0765043596
+ - 1.67e-06
+ - - -0.1265052525
+ - 0.3843843876
+ - -6.9924e-06
+ - - -1.3363875232
+ - -0.0990513736
+ - 1.0657e-06
+ - - 1.7997682706
+ - 0.282010465
+ - 0.8810920903
+ - - 1.306746227
+ - -1.1736533345
+ - -0.0006522593
+ - - 1.800162917
+ - 0.2830486697
+ - -0.8804244902
+ - - -1.5096302791
+ - -1.1779054104
+ - 1.61563e-05
+ - - -2.2170490013
+ - 0.5335276839
+ - -5.9577e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.401379799109456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.26628
+ - -0.077644
+ - 5.7e-05
+ - - -0.125656
+ - 0.381422
+ - 0.00019
+ - - -1.336632
+ - -0.100908
+ - -2.9e-05
+ - - 1.79898
+ - 0.284378
+ - 0.881719
+ - - 1.313752
+ - -1.174616
+ - -0.000367
+ - - 1.799036
+ - 0.285061
+ - -0.881291
+ - - -1.517569
+ - -1.178336
+ - -0.000444
+ - - -2.214858
+ - 0.536499
+ - 0.000187
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Pentanethiol.yml b/input/reference_sets/main/1-Pentanethiol.yml
index 2187eb87b6..da07827317 100644
--- a/input/reference_sets/main/1-Pentanethiol.yml
+++ b/input/reference_sets/main/1-Pentanethiol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.180577716478362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.706007
+ - -0.149658
+ - -0.013603
+ - - 2.361072
+ - 0.566551
+ - 0.040716
+ - - 1.176369
+ - -0.392443
+ - -0.026458
+ - - -0.172655
+ - 0.319423
+ - 0.030927
+ - - -1.342567
+ - -0.650425
+ - -0.045887
+ - - -2.981369
+ - 0.137431
+ - 0.086969
+ - - 4.536453
+ - 0.555304
+ - 0.035559
+ - - 3.811694
+ - -0.847347
+ - 0.819171
+ - - 3.808273
+ - -0.720956
+ - -0.93809
+ - - 2.291592
+ - 1.280857
+ - -0.784762
+ - - 2.294613
+ - 1.15467
+ - 0.960447
+ - - 1.244456
+ - -1.108276
+ - 0.799452
+ - - 1.240576
+ - -0.980916
+ - -0.947704
+ - - -0.243167
+ - 1.0347
+ - -0.793879
+ - - -0.250082
+ - 0.901219
+ - 0.95233
+ - - -1.312311
+ - -1.351956
+ - 0.789582
+ - - -1.30332
+ - -1.240138
+ - -0.961857
+ - - -2.886034
+ - 0.883488
+ - -1.022101
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.884969404996497
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.711441
+ - -0.148772
+ - -0.013012
+ - - 2.364039
+ - 0.565173
+ - 0.040434
+ - - 1.177083
+ - -0.393255
+ - -0.02611
+ - - -0.173998
+ - 0.317841
+ - 0.030386
+ - - -1.345931
+ - -0.650739
+ - -0.046506
+ - - -2.990137
+ - 0.137122
+ - 0.087794
+ - - 4.540861
+ - 0.558965
+ - 0.035945
+ - - 3.819583
+ - -0.846586
+ - 0.820832
+ - - 3.81641
+ - -0.721414
+ - -0.937708
+ - - 2.294487
+ - 1.280395
+ - -0.7855
+ - - 2.297327
+ - 1.155534
+ - 0.959833
+ - - 1.24507
+ - -1.109941
+ - 0.800035
+ - - 1.241451
+ - -0.983945
+ - -0.946794
+ - - -0.244026
+ - 1.03413
+ - -0.794408
+ - - -0.251479
+ - 0.901587
+ - 0.951285
+ - - -1.317417
+ - -1.353565
+ - 0.788523
+ - - -1.308644
+ - -1.240834
+ - -0.962937
+ - - -2.896519
+ - 0.889832
+ - -1.021277
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 2.4876574293618066
+ value: 2.4876574293618066
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.7370213834
+ - -0.1487074011
+ - -0.0028002609
+ - - 2.3805049571
+ - 0.5739001145
+ - 0.035337145
+ - - 1.189190262
+ - -0.3981345341
+ - -0.025568352
+ - - -0.1718131829
+ - 0.3205791227
+ - 0.0214222911
+ - - -1.348773383
+ - -0.6607556205
+ - -0.0577191301
+ - - -3.0077935068
+ - 0.1426779897
+ - 0.0800517634
+ - - 4.5736039172
+ - 0.5644323977
+ - 0.0417599266
+ - - 3.8353342345
+ - -0.8412304205
+ - 0.8475989851
+ - - 3.8413950107
+ - -0.7374264163
+ - -0.9274715853
+ - - 2.311921324
+ - 1.2815178262
+ - -0.8081546174
+ - - 2.3061091311
+ - 1.1780234964
+ - 0.9551698388
+ - - 1.2558681778
+ - -1.1096808565
+ - 0.8158516203
+ - - 1.2574887203
+ - -1.0005408047
+ - -0.9482904736
+ - - -0.2378475858
+ - 1.0354379289
+ - -0.8161709547
+ - - -0.2541684862
+ - 0.9105032302
+ - 0.9476454154
+ - - -1.3126713664
+ - -1.371024084
+ - 0.7820127374
+ - - -1.3068688677
+ - -1.2495716957
+ - -0.9862117179
+ - - -2.8622483202
+ - 0.935421474
+ - -1.0085975473
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.088050682094277
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.7187
+ - -0.148342
+ - -0.011975
+ - - 2.367323
+ - 0.567001
+ - 0.039135
+ - - 1.177265
+ - -0.394536
+ - -0.025634
+ - - -0.178173
+ - 0.317886
+ - 0.029347
+ - - -1.352361
+ - -0.654213
+ - -0.048703
+ - - -3.001521
+ - 0.13374
+ - 0.088981
+ - - 4.551061
+ - 0.562771
+ - 0.035551
+ - - 3.826613
+ - -0.846708
+ - 0.827017
+ - - 3.824053
+ - -0.725893
+ - -0.938621
+ - - 2.296938
+ - 1.282893
+ - -0.791934
+ - - 2.299027
+ - 1.162107
+ - 0.960558
+ - - 1.245481
+ - -1.112237
+ - 0.805231
+ - - 1.242172
+ - -0.989679
+ - -0.948487
+ - - -0.248511
+ - 1.036064
+ - -0.799465
+ - - -0.257551
+ - 0.904536
+ - 0.953267
+ - - -1.322809
+ - -1.361339
+ - 0.788534
+ - - -1.31497
+ - -1.244842
+ - -0.97039
+ - - -2.893138
+ - 0.90232
+ - -1.011599
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.791543188598856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.727004
+ - -0.149683
+ - -0.012013
+ - - 2.373765
+ - 0.566079
+ - 0.040725
+ - - 1.178926
+ - -0.393984
+ - -0.025446
+ - - -0.179167
+ - 0.320397
+ - 0.030594
+ - - -1.358535
+ - -0.649542
+ - -0.048637
+ - - -3.010867
+ - 0.137544
+ - 0.097114
+ - - 4.562688
+ - 0.564231
+ - 0.037052
+ - - 3.839045
+ - -0.852481
+ - 0.82864
+ - - 3.836278
+ - -0.727686
+ - -0.943258
+ - - 2.304508
+ - 1.288011
+ - -0.791757
+ - - 2.306983
+ - 1.163557
+ - 0.966623
+ - - 1.246984
+ - -1.117351
+ - 0.807421
+ - - 1.243741
+ - -0.99167
+ - -0.952888
+ - - -0.248562
+ - 1.044699
+ - -0.799891
+ - - -0.258712
+ - 0.909553
+ - 0.959252
+ - - -1.331829
+ - -1.362332
+ - 0.790635
+ - - -1.326455
+ - -1.243472
+ - -0.974309
+ - - -2.926194
+ - 0.885658
+ - -1.029042
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.680214254301559
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.702763
+ - -0.149974
+ - -0.013837
+ - - 2.360468
+ - 0.563096
+ - 0.04123
+ - - 1.175785
+ - -0.390415
+ - -0.026394
+ - - -0.170639
+ - 0.319037
+ - 0.031614
+ - - -1.341664
+ - -0.644778
+ - -0.045105
+ - - -2.974436
+ - 0.136654
+ - 0.087292
+ - - 4.532377
+ - 0.555901
+ - 0.035997
+ - - 3.811312
+ - -0.848728
+ - 0.817904
+ - - 3.807597
+ - -0.720542
+ - -0.938695
+ - - 2.29218
+ - 1.279624
+ - -0.782458
+ - - 2.29548
+ - 1.151678
+ - 0.960807
+ - - 1.243796
+ - -1.108406
+ - 0.797636
+ - - 1.239629
+ - -0.979302
+ - -0.947399
+ - - -0.240318
+ - 1.036666
+ - -0.791152
+ - - -0.246836
+ - 0.901596
+ - 0.952643
+ - - -1.310296
+ - -1.348087
+ - 0.788526
+ - - -1.301643
+ - -1.236547
+ - -0.959406
+ - - -2.895954
+ - 0.874056
+ - -1.02839
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.168888301646508
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.726591
+ - -0.149454
+ - -0.00967
+ - - 2.373333
+ - 0.565259
+ - 0.040139
+ - - 1.179945
+ - -0.395246
+ - -0.027144
+ - - -0.177276
+ - 0.319216
+ - 0.027223
+ - - -1.355974
+ - -0.65028
+ - -0.049957
+ - - -3.010446
+ - 0.14053
+ - 0.098972
+ - - 4.555143
+ - 0.562102
+ - 0.039902
+ - - 3.837134
+ - -0.846301
+ - 0.82697
+ - - 3.837219
+ - -0.723867
+ - -0.934694
+ - - 2.30692
+ - 1.28062
+ - -0.788324
+ - - 2.306391
+ - 1.158387
+ - 0.959878
+ - - 1.246722
+ - -1.111909
+ - 0.801544
+ - - 1.245497
+ - -0.988028
+ - -0.948602
+ - - -0.244811
+ - 1.036827
+ - -0.798998
+ - - -0.255029
+ - 0.903946
+ - 0.949568
+ - - -1.327528
+ - -1.357614
+ - 0.783238
+ - - -1.329362
+ - -1.236769
+ - -0.970694
+ - - -2.934869
+ - 0.884109
+ - -1.018538
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.71136948305299
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.699413
+ - -0.147443
+ - -0.02155
+ - - 2.355871
+ - 0.566714
+ - 0.045804
+ - - 1.174903
+ - -0.3937
+ - -0.022341
+ - - -0.172099
+ - 0.317452
+ - 0.035531
+ - - -1.341516
+ - -0.650941
+ - -0.039646
+ - - -2.97083
+ - 0.143204
+ - 0.06868
+ - - 4.530755
+ - 0.556212
+ - 0.030787
+ - - 3.808143
+ - -0.854236
+ - 0.803641
+ - - 3.796664
+ - -0.710084
+ - -0.952385
+ - - 2.279451
+ - 1.287519
+ - -0.773986
+ - - 2.292149
+ - 1.148588
+ - 0.97025
+ - - 1.244376
+ - -1.111799
+ - 0.802355
+ - - 1.239682
+ - -0.981202
+ - -0.945023
+ - - -0.242906
+ - 1.032717
+ - -0.790187
+ - - -0.248844
+ - 0.901667
+ - 0.956358
+ - - -1.316693
+ - -1.34424
+ - 0.80338
+ - - -1.294078
+ - -1.251907
+ - -0.94811
+ - - -2.854841
+ - 0.883007
+ - -1.042745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.76106717931861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.699413
+ - -0.147443
+ - -0.02155
+ - - 2.355871
+ - 0.566714
+ - 0.045804
+ - - 1.174903
+ - -0.3937
+ - -0.022341
+ - - -0.172099
+ - 0.317452
+ - 0.035531
+ - - -1.341516
+ - -0.650941
+ - -0.039646
+ - - -2.97083
+ - 0.143204
+ - 0.06868
+ - - 4.530755
+ - 0.556212
+ - 0.030787
+ - - 3.808143
+ - -0.854236
+ - 0.803641
+ - - 3.796664
+ - -0.710084
+ - -0.952385
+ - - 2.279451
+ - 1.287519
+ - -0.773986
+ - - 2.292149
+ - 1.148588
+ - 0.97025
+ - - 1.244376
+ - -1.111799
+ - 0.802355
+ - - 1.239682
+ - -0.981202
+ - -0.945023
+ - - -0.242906
+ - 1.032717
+ - -0.790187
+ - - -0.248844
+ - 0.901667
+ - 0.956358
+ - - -1.316693
+ - -1.34424
+ - 0.80338
+ - - -1.294078
+ - -1.251907
+ - -0.94811
+ - - -2.854841
+ - 0.883007
+ - -1.042745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.55832595795588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.699413
+ - -0.147443
+ - -0.02155
+ - - 2.355871
+ - 0.566714
+ - 0.045804
+ - - 1.174903
+ - -0.3937
+ - -0.022341
+ - - -0.172099
+ - 0.317452
+ - 0.035531
+ - - -1.341516
+ - -0.650941
+ - -0.039646
+ - - -2.97083
+ - 0.143204
+ - 0.06868
+ - - 4.530755
+ - 0.556212
+ - 0.030787
+ - - 3.808143
+ - -0.854236
+ - 0.803641
+ - - 3.796664
+ - -0.710084
+ - -0.952385
+ - - 2.279451
+ - 1.287519
+ - -0.773986
+ - - 2.292149
+ - 1.148588
+ - 0.97025
+ - - 1.244376
+ - -1.111799
+ - 0.802355
+ - - 1.239682
+ - -0.981202
+ - -0.945023
+ - - -0.242906
+ - 1.032717
+ - -0.790187
+ - - -0.248844
+ - 0.901667
+ - 0.956358
+ - - -1.316693
+ - -1.34424
+ - 0.80338
+ - - -1.294078
+ - -1.251907
+ - -0.94811
+ - - -2.854841
+ - 0.883007
+ - -1.042745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.358614254913224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.723334
+ - -0.148789
+ - -0.012646
+ - - 2.370575
+ - 0.56607
+ - 0.040723
+ - - 1.17845
+ - -0.395338
+ - -0.025939
+ - - -0.178029
+ - 0.319568
+ - 0.029865
+ - - -1.354502
+ - -0.653002
+ - -0.047321
+ - - -3.008663
+ - 0.133771
+ - 0.084979
+ - - 4.553413
+ - 0.562775
+ - 0.036619
+ - - 3.834807
+ - -0.84848
+ - 0.82318
+ - - 3.831777
+ - -0.723061
+ - -0.939532
+ - - 2.301755
+ - 1.284321
+ - -0.786933
+ - - 2.304493
+ - 1.159408
+ - 0.9621
+ - - 1.245829
+ - -1.114842
+ - 0.802054
+ - - 1.242589
+ - -0.989295
+ - -0.948398
+ - - -0.247508
+ - 1.038189
+ - -0.797253
+ - - -0.255886
+ - 0.906048
+ - 0.952771
+ - - -1.329902
+ - -1.356586
+ - 0.791071
+ - - -1.318643
+ - -1.247326
+ - -0.964697
+ - - -2.91429
+ - 0.898098
+ - -1.019829
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.097472121383884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.69889
+ - -0.148634
+ - -0.011555
+ - - 2.356346
+ - 0.569058
+ - 0.036646
+ - - 1.175707
+ - -0.392756
+ - -0.026616
+ - - -0.172487
+ - 0.317314
+ - 0.030131
+ - - -1.339208
+ - -0.654164
+ - -0.049439
+ - - -2.970709
+ - 0.130167
+ - 0.086179
+ - - 4.531197
+ - 0.554097
+ - 0.031768
+ - - 3.800304
+ - -0.840069
+ - 0.827099
+ - - 3.797247
+ - -0.72812
+ - -0.931519
+ - - 2.286274
+ - 1.277749
+ - -0.793593
+ - - 2.28681
+ - 1.162196
+ - 0.95293
+ - - 1.245933
+ - -1.106066
+ - 0.801614
+ - - 1.240621
+ - -0.983876
+ - -0.946417
+ - - -0.24329
+ - 1.033741
+ - -0.794231
+ - - -0.252006
+ - 0.897903
+ - 0.952639
+ - - -1.305488
+ - -1.358111
+ - 0.783985
+ - - -1.297502
+ - -1.240962
+ - -0.967344
+ - - -2.859039
+ - 0.90206
+ - -1.001462
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.800832650551836
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 3.7370213834
- - -0.1487074011
- - -0.0028002609
- - - 2.3805049571
- - 0.5739001145
- - 0.035337145
- - - 1.189190262
- - -0.3981345341
- - -0.025568352
- - - -0.1718131829
- - 0.3205791227
- - 0.0214222911
- - - -1.348773383
- - -0.6607556205
- - -0.0577191301
- - - -3.0077935068
- - 0.1426779897
- - 0.0800517634
- - - 4.5736039172
- - 0.5644323977
- - 0.0417599266
- - - 3.8353342345
- - -0.8412304205
- - 0.8475989851
- - - 3.8413950107
- - -0.7374264163
- - -0.9274715853
- - - 2.311921324
- - 1.2815178262
- - -0.8081546174
- - - 2.3061091311
- - 1.1780234964
- - 0.9551698388
- - - 1.2558681778
- - -1.1096808565
- - 0.8158516203
- - - 1.2574887203
- - -1.0005408047
- - -0.9482904736
- - - -0.2378475858
- - 1.0354379289
- - -0.8161709547
- - - -0.2541684862
- - 0.9105032302
- - 0.9476454154
- - - -1.3126713664
- - -1.371024084
- - 0.7820127374
- - - -1.3068688677
- - -1.2495716957
- - -0.9862117179
- - - -2.8622483202
- - 0.935421474
- - -1.0085975473
+ - - 3.69977
+ - -0.148642
+ - -0.012901
+ - - 2.358459
+ - 0.562686
+ - 0.039904
+ - - 1.175324
+ - -0.390871
+ - -0.026051
+ - - -0.170463
+ - 0.317457
+ - 0.029837
+ - - -1.339759
+ - -0.645985
+ - -0.047674
+ - - -2.969613
+ - 0.133886
+ - 0.091181
+ - - 4.531041
+ - 0.558362
+ - 0.035877
+ - - 3.809039
+ - -0.847175
+ - 0.821486
+ - - 3.806125
+ - -0.722589
+ - -0.937795
+ - - 2.289077
+ - 1.279495
+ - -0.786468
+ - - 2.291679
+ - 1.155278
+ - 0.959484
+ - - 1.243486
+ - -1.109186
+ - 0.800689
+ - - 1.240045
+ - -0.983866
+ - -0.947068
+ - - -0.240158
+ - 1.036258
+ - -0.794958
+ - - -0.249449
+ - 0.902717
+ - 0.951646
+ - - -1.309241
+ - -1.35238
+ - 0.786824
+ - - -1.302557
+ - -1.238807
+ - -0.964616
+ - - -2.883206
+ - 0.884892
+ - -1.018584
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5860465534360106
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.725199
+ - -0.149437
+ - -0.012365
+ - - 2.371637
+ - 0.567871
+ - 0.040699
+ - - 1.179124
+ - -0.396244
+ - -0.025732
+ - - -0.178697
+ - 0.320697
+ - 0.030003
+ - - -1.355603
+ - -0.653399
+ - -0.048564
+ - - -3.006572
+ - 0.137915
+ - 0.091924
+ - - 4.555613
+ - 0.563306
+ - 0.036787
+ - - 3.83359
+ - -0.848535
+ - 0.825341
+ - - 3.83078
+ - -0.72366
+ - -0.940498
+ - - 2.302683
+ - 1.283905
+ - -0.789707
+ - - 2.305333
+ - 1.159645
+ - 0.963818
+ - - 1.246517
+ - -1.113433
+ - 0.805145
+ - - 1.24351
+ - -0.988465
+ - -0.950077
+ - - -0.247883
+ - 1.038096
+ - -0.798993
+ - - -0.257673
+ - 0.904637
+ - 0.955203
+ - - -1.331001
+ - -1.357976
+ - 0.790018
+ - - -1.32428
+ - -1.242796
+ - -0.970313
+ - - -2.912677
+ - 0.889402
+ - -1.021877
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.25511790028517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.6994127645
+ - -0.1474425898
+ - -0.021550413
+ - - 2.3558710688
+ - 0.5667136749
+ - 0.0458044121
+ - - 1.1749026082
+ - -0.3936997441
+ - -0.0223412672
+ - - -0.1720988597
+ - 0.317451858
+ - 0.0355311212
+ - - -1.3415162017
+ - -0.6509410566
+ - -0.0396458461
+ - - -2.9708304126
+ - 0.1432040611
+ - 0.0686797658
+ - - 4.5307552115
+ - 0.5562122642
+ - 0.0307873989
+ - - 3.8081430053
+ - -0.8542356309
+ - 0.8036408617
+ - - 3.7966643215
+ - -0.7100836754
+ - -0.9523850055
+ - - 2.2794511776
+ - 1.2875188918
+ - -0.7739860303
+ - - 2.2921491219
+ - 1.148588069
+ - 0.970249788
+ - - 1.244375785
+ - -1.1117990494
+ - 0.8023550378
+ - - 1.2396818849
+ - -0.9812019882
+ - -0.945022883
+ - - -0.2429062486
+ - 1.0327168047
+ - -0.7901873029
+ - - -0.248844239
+ - 0.9016665239
+ - 0.9563582471
+ - - -1.3166927069
+ - -1.344240248
+ - 0.8033803531
+ - - -1.2940784475
+ - -1.2519065657
+ - -0.94811011
+ - - -2.8548405458
+ - 0.8830067712
+ - -1.0427446513
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.06169709880914
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.703449
+ - -0.149617
+ - -0.014612
+ - - 2.359977
+ - 0.564809
+ - 0.041397
+ - - 1.175346
+ - -0.391703
+ - -0.026106
+ - - -0.172061
+ - 0.319705
+ - 0.031391
+ - - -1.342918
+ - -0.647798
+ - -0.044403
+ - - -2.976682
+ - 0.13397
+ - 0.083247
+ - - 4.533263
+ - 0.556932
+ - 0.036146
+ - - 3.809667
+ - -0.849753
+ - 0.817279
+ - - 3.805961
+ - -0.719298
+ - -0.941171
+ - - 2.290374
+ - 1.281125
+ - -0.783171
+ - - 2.294492
+ - 1.152499
+ - 0.962221
+ - - 1.2432
+ - -1.109007
+ - 0.799433
+ - - 1.239226
+ - -0.980758
+ - -0.947834
+ - - -0.241462
+ - 1.035644
+ - -0.79393
+ - - -0.247335
+ - 0.903326
+ - 0.952788
+ - - -1.31091
+ - -1.349331
+ - 0.791859
+ - - -1.300699
+ - -1.240647
+ - -0.959123
+ - - -2.883289
+ - 0.881432
+ - -1.024599
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Pentanol.yml b/input/reference_sets/main/1-Pentanol.yml
index 80c0810293..ae879ad202 100644
--- a/input/reference_sets/main/1-Pentanol.yml
+++ b/input/reference_sets/main/1-Pentanol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.345671300255276
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.934622
+ - -0.507378
+ - -0.107589
+ - - 1.781596
+ - 0.415501
+ - 0.27174
+ - - 0.431895
+ - -0.088712
+ - -0.227841
+ - - -0.723386
+ - 0.834717
+ - 0.143097
+ - - -2.071649
+ - 0.334373
+ - -0.332731
+ - - -2.351433
+ - -0.897059
+ - 0.332075
+ - - 3.888857
+ - -0.130174
+ - 0.262067
+ - - 3.013956
+ - -0.608865
+ - -1.191652
+ - - 2.78723
+ - -1.506219
+ - 0.307051
+ - - 1.742898
+ - 0.52489
+ - 1.35953
+ - - 1.966369
+ - 1.416729
+ - -0.129612
+ - - 0.468573
+ - -0.199193
+ - -1.317349
+ - - 0.238929
+ - -1.083952
+ - 0.177772
+ - - -0.556684
+ - 1.827781
+ - -0.285384
+ - - -0.764261
+ - 0.960246
+ - 1.228692
+ - - -2.051751
+ - 0.187395
+ - -1.419451
+ - - -2.846246
+ - 1.075102
+ - -0.106125
+ - - -3.192678
+ - -1.233855
+ - 0.009867
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.822999703381754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.941059
+ - -0.506665
+ - -0.107121
+ - - 1.784319
+ - 0.413408
+ - 0.272168
+ - - 0.433389
+ - -0.088197
+ - -0.230913
+ - - -0.72507
+ - 0.833285
+ - 0.141105
+ - - -2.076564
+ - 0.333642
+ - -0.331412
+ - - -2.366235
+ - -0.892531
+ - 0.340329
+ - - 3.894193
+ - -0.127974
+ - 0.266835
+ - - 3.024625
+ - -0.605467
+ - -1.19227
+ - - 2.795459
+ - -1.50842
+ - 0.304115
+ - - 1.743924
+ - 0.52037
+ - 1.361102
+ - - 1.969717
+ - 1.417423
+ - -0.124622
+ - - 0.471316
+ - -0.196594
+ - -1.321348
+ - - 0.239743
+ - -1.08585
+ - 0.170422
+ - - -0.560325
+ - 1.827607
+ - -0.287208
+ - - -0.763468
+ - 0.960716
+ - 1.227466
+ - - -2.057142
+ - 0.180117
+ - -1.418667
+ - - -2.847953
+ - 1.081615
+ - -0.110799
+ - - -3.204151
+ - -1.235159
+ - 0.014977
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -38.333117062433985
+ value: -38.333117062433985
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.9516628157
+ - -0.5098161424
+ - -0.1118549812
+ - - 1.7907770406
+ - 0.4184969892
+ - 0.2815763469
+ - - 0.4323176409
+ - -0.0792900536
+ - -0.2393162236
+ - - -0.7338193261
+ - 0.8453502916
+ - 0.1475861693
+ - - -2.0940259001
+ - 0.3330585
+ - -0.3277058605
+ - - -2.3450864085
+ - -0.9158712054
+ - 0.327195126
+ - - 3.9139371578
+ - -0.139302943
+ - 0.2724835645
+ - - 3.0324104784
+ - -0.592276518
+ - -1.2069840868
+ - - 2.7929387254
+ - -1.5233809759
+ - 0.2878796775
+ - - 1.7446130423
+ - 0.5086641933
+ - 1.3802025968
+ - - 1.9799824587
+ - 1.43439419
+ - -0.1060018535
+ - - 0.4739652796
+ - -0.1687936348
+ - -1.3395730891
+ - - 0.2299076401
+ - -1.0887799709
+ - 0.1496815985
+ - - -0.5729742997
+ - 1.8503732686
+ - -0.2774304957
+ - - -0.7692802538
+ - 0.9602114731
+ - 1.2431878425
+ - - -2.0754336654
+ - 0.2163045808
+ - -1.4305493156
+ - - -2.8767290018
+ - 1.0793861282
+ - -0.0846164541
+ - - -3.1941199198
+ - -1.2566276575
+ - -0.0075536987
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.1887271937642
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.952152
+ - -0.504864
+ - -0.108947
+ - - 1.79014
+ - 0.414398
+ - 0.272687
+ - - 0.43597
+ - -0.09208
+ - -0.22956
+ - - -0.727866
+ - 0.828566
+ - 0.145003
+ - - -2.084464
+ - 0.332289
+ - -0.331467
+ - - -2.390144
+ - -0.892978
+ - 0.350621
+ - - 3.908583
+ - -0.121836
+ - 0.264972
+ - - 3.034089
+ - -0.604199
+ - -1.198485
+ - - 2.808848
+ - -1.510813
+ - 0.304245
+ - - 1.750441
+ - 0.52223
+ - 1.365988
+ - - 1.972366
+ - 1.42303
+ - -0.126061
+ - - 0.472606
+ - -0.200522
+ - -1.324292
+ - - 0.246197
+ - -1.094509
+ - 0.172984
+ - - -0.562735
+ - 1.827651
+ - -0.283303
+ - - -0.766227
+ - 0.956007
+ - 1.235673
+ - - -2.059358
+ - 0.171125
+ - -1.42304
+ - - -2.854636
+ - 1.092458
+ - -0.120177
+ - - -3.229122
+ - -1.224628
+ - 0.007315
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.416180908951006
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.957121
+ - -0.507397
+ - -0.107433
+ - - 1.792684
+ - 0.412154
+ - 0.273708
+ - - 0.435355
+ - -0.089473
+ - -0.233282
+ - - -0.730951
+ - 0.833029
+ - 0.140394
+ - - -2.090094
+ - 0.333153
+ - -0.330927
+ - - -2.386574
+ - -0.894466
+ - 0.35618
+ - - 3.916408
+ - -0.124474
+ - 0.272133
+ - - 3.046067
+ - -0.604836
+ - -1.201121
+ - - 2.814876
+ - -1.51928
+ - 0.303619
+ - - 1.751375
+ - 0.518397
+ - 1.372064
+ - - 1.979194
+ - 1.426678
+ - -0.121756
+ - - 0.474425
+ - -0.197545
+ - -1.33318
+ - - 0.239772
+ - -1.0974
+ - 0.167835
+ - - -0.568126
+ - 1.836714
+ - -0.290787
+ - - -0.769156
+ - 0.964308
+ - 1.235903
+ - - -2.071142
+ - 0.171333
+ - -1.427385
+ - - -2.864236
+ - 1.094821
+ - -0.115204
+ - - -3.23016
+ - -1.234389
+ - 0.013396
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.04445339418976
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.932815
+ - -0.504919
+ - -0.106858
+ - - 1.779546
+ - 0.411802
+ - 0.271509
+ - - 0.43269
+ - -0.087246
+ - -0.230968
+ - - -0.72216
+ - 0.831565
+ - 0.139367
+ - - -2.069392
+ - 0.332219
+ - -0.330807
+ - - -2.356679
+ - -0.887369
+ - 0.337503
+ - - 3.884896
+ - -0.127077
+ - 0.267653
+ - - 3.017845
+ - -0.602733
+ - -1.190996
+ - - 2.788013
+ - -1.506345
+ - 0.302868
+ - - 1.739157
+ - 0.517819
+ - 1.35958
+ - - 1.965436
+ - 1.41532
+ - -0.123681
+ - - 0.471543
+ - -0.195605
+ - -1.320589
+ - - 0.237955
+ - -1.084275
+ - 0.169718
+ - - -0.557909
+ - 1.825336
+ - -0.288137
+ - - -0.761762
+ - 0.958274
+ - 1.224907
+ - - -2.051003
+ - 0.178842
+ - -1.417053
+ - - -2.840024
+ - 1.079213
+ - -0.109778
+ - - -3.194129
+ - -1.233495
+ - 0.019918
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -71.79893874897152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.948155
+ - -0.515125
+ - -0.101917
+ - - 1.787901
+ - 0.409695
+ - 0.276891
+ - - 0.43261
+ - -0.077696
+ - -0.246046
+ - - -0.731274
+ - 0.846959
+ - 0.125731
+ - - -2.089402
+ - 0.330004
+ - -0.325909
+ - - -2.352495
+ - -0.893063
+ - 0.363091
+ - - 3.899573
+ - -0.146463
+ - 0.291442
+ - - 3.048438
+ - -0.599244
+ - -1.188696
+ - - 2.792701
+ - -1.523683
+ - 0.293508
+ - - 1.738553
+ - 0.504055
+ - 1.368432
+ - - 1.985377
+ - 1.418741
+ - -0.106215
+ - - 0.480233
+ - -0.175048
+ - -1.339108
+ - - 0.224096
+ - -1.078745
+ - 0.143776
+ - - -0.576256
+ - 1.840239
+ - -0.313259
+ - - -0.763308
+ - 0.983337
+ - 1.212963
+ - - -2.083626
+ - 0.171959
+ - -1.415121
+ - - -2.863355
+ - 1.077139
+ - -0.09918
+ - - -3.181082
+ - -1.251733
+ - 0.033774
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.94434941727861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.930022
+ - -0.506527
+ - -0.108252
+ - - 1.780102
+ - 0.418802
+ - 0.26787
+ - - 0.43141
+ - -0.090612
+ - -0.223983
+ - - -0.72134
+ - 0.8321
+ - 0.150108
+ - - -2.067336
+ - 0.336238
+ - -0.333347
+ - - -2.35159
+ - -0.895905
+ - 0.323408
+ - - 3.886607
+ - -0.127394
+ - 0.253392
+ - - 3.003268
+ - -0.617729
+ - -1.192344
+ - - 2.782948
+ - -1.501945
+ - 0.315774
+ - - 1.743361
+ - 0.537062
+ - 1.355435
+ - - 1.961881
+ - 1.417762
+ - -0.141759
+ - - 0.463126
+ - -0.205436
+ - -1.314024
+ - - 0.243319
+ - -1.085806
+ - 0.18631
+ - - -0.551115
+ - 1.828167
+ - -0.270873
+ - - -0.764722
+ - 0.949894
+ - 1.237188
+ - - -2.041257
+ - 0.192311
+ - -1.42087
+ - - -2.842668
+ - 1.076511
+ - -0.108119
+ - - -3.189178
+ - -1.236167
+ - -0.001757
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.00451657753749
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.930022
+ - -0.506527
+ - -0.108252
+ - - 1.780102
+ - 0.418802
+ - 0.26787
+ - - 0.43141
+ - -0.090612
+ - -0.223983
+ - - -0.72134
+ - 0.8321
+ - 0.150108
+ - - -2.067336
+ - 0.336238
+ - -0.333347
+ - - -2.35159
+ - -0.895905
+ - 0.323408
+ - - 3.886607
+ - -0.127394
+ - 0.253392
+ - - 3.003268
+ - -0.617729
+ - -1.192344
+ - - 2.782948
+ - -1.501945
+ - 0.315774
+ - - 1.743361
+ - 0.537062
+ - 1.355435
+ - - 1.961881
+ - 1.417762
+ - -0.141759
+ - - 0.463126
+ - -0.205436
+ - -1.314024
+ - - 0.243319
+ - -1.085806
+ - 0.18631
+ - - -0.551115
+ - 1.828167
+ - -0.270873
+ - - -0.764722
+ - 0.949894
+ - 1.237188
+ - - -2.041257
+ - 0.192311
+ - -1.42087
+ - - -2.842668
+ - 1.076511
+ - -0.108119
+ - - -3.189178
+ - -1.236167
+ - -0.001757
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.72365283968263
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.930022
+ - -0.506527
+ - -0.108252
+ - - 1.780102
+ - 0.418802
+ - 0.26787
+ - - 0.43141
+ - -0.090612
+ - -0.223983
+ - - -0.72134
+ - 0.8321
+ - 0.150108
+ - - -2.067336
+ - 0.336238
+ - -0.333347
+ - - -2.35159
+ - -0.895905
+ - 0.323408
+ - - 3.886607
+ - -0.127394
+ - 0.253392
+ - - 3.003268
+ - -0.617729
+ - -1.192344
+ - - 2.782948
+ - -1.501945
+ - 0.315774
+ - - 1.743361
+ - 0.537062
+ - 1.355435
+ - - 1.961881
+ - 1.417762
+ - -0.141759
+ - - 0.463126
+ - -0.205436
+ - -1.314024
+ - - 0.243319
+ - -1.085806
+ - 0.18631
+ - - -0.551115
+ - 1.828167
+ - -0.270873
+ - - -0.764722
+ - 0.949894
+ - 1.237188
+ - - -2.041257
+ - 0.192311
+ - -1.42087
+ - - -2.842668
+ - 1.076511
+ - -0.108119
+ - - -3.189178
+ - -1.236167
+ - -0.001757
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.46169595404821
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.94695
+ - -0.514447
+ - -0.104466
+ - - 1.788802
+ - 0.413001
+ - 0.273325
+ - - 0.4314
+ - -0.08274
+ - -0.234745
+ - - -0.73071
+ - 0.844078
+ - 0.136702
+ - - -2.088445
+ - 0.330445
+ - -0.326237
+ - - -2.352158
+ - -0.896303
+ - 0.343072
+ - - 3.902753
+ - -0.138331
+ - 0.27406
+ - - 3.035837
+ - -0.613916
+ - -1.192209
+ - - 2.797848
+ - -1.51931
+ - 0.306124
+ - - 1.747882
+ - 0.521349
+ - 1.365378
+ - - 1.981353
+ - 1.419591
+ - -0.122386
+ - - 0.470932
+ - -0.192713
+ - -1.328204
+ - - 0.227895
+ - -1.082364
+ - 0.16551
+ - - -0.572201
+ - 1.840191
+ - -0.296803
+ - - -0.766027
+ - 0.976293
+ - 1.225774
+ - - -2.078929
+ - 0.189168
+ - -1.419906
+ - - -2.865615
+ - 1.077609
+ - -0.09899
+ - - -3.18073
+ - -1.250274
+ - 0.008159
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.09696614437371
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.925385
+ - -0.510312
+ - -0.107246
+ - - 1.778584
+ - 0.417949
+ - 0.271374
+ - - 0.429536
+ - -0.085274
+ - -0.226639
+ - - -0.721296
+ - 0.84128
+ - 0.144052
+ - - -2.066378
+ - 0.334182
+ - -0.332335
+ - - -2.33065
+ - -0.896151
+ - 0.32284
+ - - 3.882611
+ - -0.138152
+ - 0.259018
+ - - 2.99908
+ - -0.614508
+ - -1.191567
+ - - 2.770585
+ - -1.507038
+ - 0.310133
+ - - 1.739409
+ - 0.530011
+ - 1.35887
+ - - 1.964612
+ - 1.417665
+ - -0.133097
+ - - 0.465016
+ - -0.19883
+ - -1.316139
+ - - 0.233217
+ - -1.079281
+ - 0.182384
+ - - -0.552861
+ - 1.834239
+ - -0.283583
+ - - -0.762859
+ - 0.96304
+ - 1.230372
+ - - -2.044057
+ - 0.193198
+ - -1.42023
+ - - -2.846953
+ - 1.067269
+ - -0.101099
+ - - -3.166143
+ - -1.247959
+ - 0.007047
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.44209163841225
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.9516628157
- - -0.5098161424
- - -0.1118549812
- - - 1.7907770406
- - 0.4184969892
- - 0.2815763469
- - - 0.4323176409
- - -0.0792900536
- - -0.2393162236
- - - -0.7338193261
- - 0.8453502916
- - 0.1475861693
- - - -2.0940259001
- - 0.3330585
- - -0.3277058605
- - - -2.3450864085
- - -0.9158712054
- - 0.327195126
- - - 3.9139371578
- - -0.139302943
- - 0.2724835645
- - - 3.0324104784
- - -0.592276518
- - -1.2069840868
- - - 2.7929387254
- - -1.5233809759
- - 0.2878796775
- - - 1.7446130423
- - 0.5086641933
- - 1.3802025968
- - - 1.9799824587
- - 1.43439419
- - -0.1060018535
- - - 0.4739652796
- - -0.1687936348
- - -1.3395730891
- - - 0.2299076401
- - -1.0887799709
- - 0.1496815985
- - - -0.5729742997
- - 1.8503732686
- - -0.2774304957
- - - -0.7692802538
- - 0.9602114731
- - 1.2431878425
- - - -2.0754336654
- - 0.2163045808
- - -1.4305493156
- - - -2.8767290018
- - 1.0793861282
- - -0.0846164541
- - - -3.1941199198
- - -1.2566276575
- - -0.0075536987
+ - - 2.931249
+ - -0.503544
+ - -0.106834
+ - - 1.778647
+ - 0.411247
+ - 0.27119
+ - - 0.43308
+ - -0.087759
+ - -0.23068
+ - - -0.721745
+ - 0.828884
+ - 0.139623
+ - - -2.069034
+ - 0.327866
+ - -0.327571
+ - - -2.357028
+ - -0.886571
+ - 0.340848
+ - - 3.885407
+ - -0.125375
+ - 0.267725
+ - - 3.016608
+ - -0.602141
+ - -1.192846
+ - - 2.787267
+ - -1.507172
+ - 0.303042
+ - - 1.737724
+ - 0.518441
+ - 1.361441
+ - - 1.963701
+ - 1.41754
+ - -0.123647
+ - - 0.471656
+ - -0.197041
+ - -1.322462
+ - - 0.238849
+ - -1.087705
+ - 0.169664
+ - - -0.559658
+ - 1.824527
+ - -0.289675
+ - - -0.759084
+ - 0.95867
+ - 1.227269
+ - - -2.049222
+ - 0.176334
+ - -1.417142
+ - - -2.838904
+ - 1.081186
+ - -0.11016
+ - - -3.192674
+ - -1.22606
+ - 0.014371
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.55594499960329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.953326
+ - -0.510056
+ - -0.106585
+ - - 1.790936
+ - 0.413613
+ - 0.274869
+ - - 0.434302
+ - -0.088435
+ - -0.235817
+ - - -0.729445
+ - 0.837886
+ - 0.139494
+ - - -2.087629
+ - 0.336991
+ - -0.333884
+ - - -2.37364
+ - -0.895548
+ - 0.353081
+ - - 3.907969
+ - -0.129362
+ - 0.273233
+ - - 3.039826
+ - -0.604791
+ - -1.19571
+ - - 2.806008
+ - -1.516237
+ - 0.303349
+ - - 1.748507
+ - 0.515785
+ - 1.368098
+ - - 1.979318
+ - 1.421721
+ - -0.120934
+ - - 0.474817
+ - -0.191631
+ - -1.330564
+ - - 0.237565
+ - -1.090224
+ - 0.164612
+ - - -0.565785
+ - 1.835287
+ - -0.292343
+ - - -0.767697
+ - 0.965628
+ - 1.229659
+ - - -2.07181
+ - 0.17304
+ - -1.423453
+ - - -2.863546
+ - 1.085535
+ - -0.111119
+ - - -3.216185
+ - -1.237876
+ - 0.018171
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.10810706745289
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.9300223856
+ - -0.5065271391
+ - -0.1082516143
+ - - 1.7801021413
+ - 0.4188020036
+ - 0.2678703489
+ - - 0.4314098029
+ - -0.0906118111
+ - -0.2239830141
+ - - -0.7213404353
+ - 0.8321001948
+ - 0.1501083255
+ - - -2.0673361477
+ - 0.3362381692
+ - -0.3333465903
+ - - -2.3515895697
+ - -0.8959048755
+ - 0.3234080615
+ - - 3.8866067452
+ - -0.1273935959
+ - 0.2533924462
+ - - 3.0032676574
+ - -0.6177290786
+ - -1.1923441813
+ - - 2.7829482442
+ - -1.5019449882
+ - 0.3157739271
+ - - 1.7433609177
+ - 0.5370615483
+ - 1.3554345278
+ - - 1.9618811724
+ - 1.417761665
+ - -0.1417594113
+ - - 0.4631255932
+ - -0.2054358147
+ - -1.314024138
+ - - 0.243319456
+ - -1.0858056419
+ - 0.186309604
+ - - -0.5511149757
+ - 1.8281669821
+ - -0.270873204
+ - - -0.7647216816
+ - 0.9498936584
+ - 1.2371878895
+ - - -2.0412569176
+ - 0.1923111514
+ - -1.4208702069
+ - - -2.8426680471
+ - 1.0765113114
+ - -0.1081190203
+ - - -3.1891780879
+ - -1.236166698
+ - -0.0017574593
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.28748556759017
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.935408
+ - -0.504149
+ - -0.108447
+ - - 1.781239
+ - 0.413954
+ - 0.270738
+ - - 0.432863
+ - -0.091233
+ - -0.227236
+ - - -0.722888
+ - 0.828991
+ - 0.144578
+ - - -2.072483
+ - 0.330367
+ - -0.328715
+ - - -2.366156
+ - -0.886037
+ - 0.335531
+ - - 3.888572
+ - -0.123043
+ - 0.26183
+ - - 3.014851
+ - -0.605341
+ - -1.193483
+ - - 2.790898
+ - -1.504347
+ - 0.306411
+ - - 1.742984
+ - 0.523239
+ - 1.359184
+ - - 1.96369
+ - 1.416532
+ - -0.13002
+ - - 0.468648
+ - -0.20253
+ - -1.317335
+ - - 0.242452
+ - -1.088096
+ - 0.178301
+ - - -0.557072
+ - 1.822743
+ - -0.283858
+ - - -0.761179
+ - 0.955611
+ - 1.230899
+ - - -2.0484
+ - 0.180488
+ - -1.41689
+ - - -2.840791
+ - 1.082805
+ - -0.111004
+ - - -3.195797
+ - -1.228628
+ - 0.003671
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Propanethiol.yml b/input/reference_sets/main/1-Propanethiol.yml
index 018b1f4b19..7ff962388c 100644
--- a/input/reference_sets/main/1-Propanethiol.yml
+++ b/input/reference_sets/main/1-Propanethiol.yml
@@ -93,7 +93,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -17.346058066611302
+ value: -17.34605806661128
class: ThermoData
xyz_dict:
coords:
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.923766395871148
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.408054
+ - -0.07416
+ - -0.010438
+ - - 1.000071
+ - 0.508865
+ - 0.072323
+ - - -0.068636
+ - -0.564834
+ - -0.075706
+ - - -1.77771
+ - 0.049191
+ - 0.079085
+ - - 3.162717
+ - 0.705816
+ - 0.092491
+ - - 2.57659
+ - -0.807071
+ - 0.780512
+ - - 2.573444
+ - -0.57345
+ - -0.966735
+ - - 0.863538
+ - 1.259732
+ - -0.710002
+ - - 0.857485
+ - 1.023634
+ - 1.02408
+ - - 0.024802
+ - -1.307303
+ - 0.718845
+ - - 0.037198
+ - -1.093881
+ - -1.023104
+ - - -1.749928
+ - 0.859334
+ - -0.98797
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.236287959045926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.411676
+ - -0.074025
+ - -0.009617
+ - - 1.001381
+ - 0.507153
+ - 0.071585
+ - - -0.069786
+ - -0.565557
+ - -0.076271
+ - - -1.784189
+ - 0.048352
+ - 0.079665
+ - - 3.165162
+ - 0.708511
+ - 0.093144
+ - - 2.582154
+ - -0.806622
+ - 0.782736
+ - - 2.57979
+ - -0.574705
+ - -0.96598
+ - - 0.865432
+ - 1.258856
+ - -0.711236
+ - - 0.858466
+ - 1.024249
+ - 1.023009
+ - - 0.021898
+ - -1.309292
+ - 0.717982
+ - - 0.034077
+ - -1.095403
+ - -1.024097
+ - - -1.758438
+ - 0.864356
+ - -0.987538
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.4531706105212642
+ value: -0.4531706105212642
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4297110542
+ - -0.0721878142
+ - -0.0088913138
+ - - 1.0085326251
+ - 0.5136994657
+ - 0.0716003081
+ - - -0.0615488291
+ - -0.5765077489
+ - -0.0782909726
+ - - -1.7956447613
+ - 0.0451188774
+ - 0.0728605567
+ - - 3.1886610495
+ - 0.7177308178
+ - 0.0899250711
+ - - 2.597505763
+ - -0.8068049762
+ - 0.7936869408
+ - - 2.5927098633
+ - -0.5817486856
+ - -0.9711635119
+ - - 0.869390971
+ - 1.2667418751
+ - -0.7212772517
+ - - 0.8595675012
+ - 1.0317883477
+ - 1.0307070391
+ - - 0.0379171827
+ - -1.3231952315
+ - 0.7238470052
+ - - 0.0509895118
+ - -1.1077233103
+ - -1.0352609646
+ - - -1.7265947629
+ - 0.8912857099
+ - -0.9827413654
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.827322034949603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.415017
+ - -0.073705
+ - -0.009075
+ - - 1.000315
+ - 0.508336
+ - 0.070478
+ - - -0.072544
+ - -0.568589
+ - -0.077407
+ - - -1.791981
+ - 0.044857
+ - 0.079677
+ - - 3.170558
+ - 0.713038
+ - 0.092346
+ - - 2.585771
+ - -0.807103
+ - 0.788278
+ - - 2.583849
+ - -0.578758
+ - -0.967852
+ - - 0.862963
+ - 1.2612
+ - -0.717097
+ - - 0.854719
+ - 1.028748
+ - 1.024668
+ - - 0.020276
+ - -1.315198
+ - 0.720186
+ - - 0.032078
+ - -1.100388
+ - -1.029478
+ - - -1.753398
+ - 0.873434
+ - -0.981342
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.7540028860499195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.419938
+ - -0.074938
+ - -0.00817
+ - - 1.003977
+ - 0.509113
+ - 0.07187
+ - - -0.075134
+ - -0.564435
+ - -0.07798
+ - - -1.796799
+ - 0.049325
+ - 0.088207
+ - - 3.179443
+ - 0.713928
+ - 0.095276
+ - - 2.593913
+ - -0.812391
+ - 0.790982
+ - - 2.59295
+ - -0.580277
+ - -0.971235
+ - - 0.868835
+ - 1.268776
+ - -0.716469
+ - - 0.858797
+ - 1.031782
+ - 1.030718
+ - - 0.014868
+ - -1.317915
+ - 0.72053
+ - - 0.024053
+ - -1.098962
+ - -1.034809
+ - - -1.777217
+ - 0.861868
+ - -0.995537
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.825285021909416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.406008
+ - -0.074492
+ - -0.01047
+ - - 1.001529
+ - 0.506604
+ - 0.072979
+ - - -0.069856
+ - -0.559997
+ - -0.074856
+ - - -1.771666
+ - 0.050337
+ - 0.079624
+ - - 3.160724
+ - 0.705243
+ - 0.09368
+ - - 2.57671
+ - -0.808825
+ - 0.77897
+ - - 2.573398
+ - -0.572469
+ - -0.967334
+ - - 0.86663
+ - 1.260218
+ - -0.707025
+ - - 0.861146
+ - 1.022167
+ - 1.024725
+ - - 0.024407
+ - -1.304366
+ - 0.717532
+ - - 0.036436
+ - -1.09076
+ - -1.020976
+ - - -1.757842
+ - 0.852213
+ - -0.993466
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.794649529713997
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.420992
+ - -0.075539
+ - -0.007024
+ - - 1.005462
+ - 0.508017
+ - 0.070167
+ - - -0.072972
+ - -0.564768
+ - -0.079451
+ - - -1.797502
+ - 0.052475
+ - 0.086908
+ - - 3.173755
+ - 0.710019
+ - 0.097037
+ - - 2.592732
+ - -0.80717
+ - 0.788341
+ - - 2.594962
+ - -0.577465
+ - -0.963694
+ - - 0.874785
+ - 1.26198
+ - -0.713796
+ - - 0.862451
+ - 1.026646
+ - 1.022694
+ - - 0.016836
+ - -1.312337
+ - 0.713455
+ - - 0.021599
+ - -1.092703
+ - -1.030866
+ - - -1.785476
+ - 0.856716
+ - -0.990389
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.419620883064228
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.402988
+ - -0.07251
+ - -0.012112
+ - - 0.996225
+ - 0.508307
+ - 0.072966
+ - - -0.068225
+ - -0.567759
+ - -0.074514
+ - - -1.770837
+ - 0.044929
+ - 0.071661
+ - - 3.158786
+ - 0.706722
+ - 0.087627
+ - - 2.573018
+ - -0.805198
+ - 0.779251
+ - - 2.564878
+ - -0.573902
+ - -0.968432
+ - - 0.855523
+ - 1.259584
+ - -0.708869
+ - - 0.852185
+ - 1.02297
+ - 1.025097
+ - - 0.027498
+ - -1.307845
+ - 0.722465
+ - - 0.04391
+ - -1.100776
+ - -1.019168
+ - - -1.728324
+ - 0.871352
+ - -0.982591
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.884885765535747
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.402988
+ - -0.07251
+ - -0.012112
+ - - 0.996225
+ - 0.508307
+ - 0.072966
+ - - -0.068225
+ - -0.567759
+ - -0.074514
+ - - -1.770837
+ - 0.044929
+ - 0.071661
+ - - 3.158786
+ - 0.706722
+ - 0.087627
+ - - 2.573018
+ - -0.805198
+ - 0.779251
+ - - 2.564878
+ - -0.573902
+ - -0.968432
+ - - 0.855523
+ - 1.259584
+ - -0.708869
+ - - 0.852185
+ - 1.02297
+ - 1.025097
+ - - 0.027498
+ - -1.307845
+ - 0.722465
+ - - 0.04391
+ - -1.100776
+ - -1.019168
+ - - -1.728324
+ - 0.871352
+ - -0.982591
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.733470447968894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.402988
+ - -0.07251
+ - -0.012112
+ - - 0.996225
+ - 0.508307
+ - 0.072966
+ - - -0.068225
+ - -0.567759
+ - -0.074514
+ - - -1.770837
+ - 0.044929
+ - 0.071661
+ - - 3.158786
+ - 0.706722
+ - 0.087627
+ - - 2.573018
+ - -0.805198
+ - 0.779251
+ - - 2.564878
+ - -0.573902
+ - -0.968432
+ - - 0.855523
+ - 1.259584
+ - -0.708869
+ - - 0.852185
+ - 1.02297
+ - 1.025097
+ - - 0.027498
+ - -1.307845
+ - 0.722465
+ - - 0.04391
+ - -1.100776
+ - -1.019168
+ - - -1.728324
+ - 0.871352
+ - -0.982591
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.769779929221443
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.4297110542
- - -0.0721878142
- - -0.0088913138
- - - 1.0085326251
- - 0.5136994657
- - 0.0716003081
- - - -0.0615488291
- - -0.5765077489
- - -0.0782909726
- - - -1.7956447613
- - 0.0451188774
- - 0.0728605567
- - - 3.1886610495
- - 0.7177308178
- - 0.0899250711
- - - 2.597505763
- - -0.8068049762
- - 0.7936869408
- - - 2.5927098633
- - -0.5817486856
- - -0.9711635119
- - - 0.869390971
- - 1.2667418751
- - -0.7212772517
- - - 0.8595675012
- - 1.0317883477
- - 1.0307070391
- - - 0.0379171827
- - -1.3231952315
- - 0.7238470052
- - - 0.0509895118
- - -1.1077233103
- - -1.0352609646
- - - -1.7265947629
- - 0.8912857099
- - -0.9827413654
+ - - 2.418094
+ - -0.0742
+ - -0.009052
+ - - 1.002468
+ - 0.508347
+ - 0.071361
+ - - -0.072606
+ - -0.568279
+ - -0.07731
+ - - -1.796353
+ - 0.04471
+ - 0.076339
+ - - 3.172164
+ - 0.712046
+ - 0.092889
+ - - 2.591799
+ - -0.807425
+ - 0.786172
+ - - 2.589057
+ - -0.577461
+ - -0.967038
+ - - 0.867876
+ - 1.262827
+ - -0.713474
+ - - 0.859744
+ - 1.027964
+ - 1.02501
+ - - 0.015005
+ - -1.313409
+ - 0.720092
+ - - 0.030271
+ - -1.102262
+ - -1.026349
+ - - -1.769897
+ - 0.873016
+ - -0.985258
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.996233508380922
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.403317
+ - -0.073061
+ - -0.012653
+ - - 0.997402
+ - 0.509976
+ - 0.073731
+ - - -0.067745
+ - -0.565578
+ - -0.073308
+ - - -1.769365
+ - 0.048163
+ - 0.074861
+ - - 3.159598
+ - 0.704926
+ - 0.091118
+ - - 2.569532
+ - -0.809026
+ - 0.776119
+ - - 2.563756
+ - -0.570436
+ - -0.970928
+ - - 0.856843
+ - 1.261019
+ - -0.707934
+ - - 0.85446
+ - 1.022981
+ - 1.026619
+ - - 0.027322
+ - -1.305541
+ - 0.723497
+ - - 0.042066
+ - -1.097177
+ - -1.019044
+ - - -1.729563
+ - 0.859627
+ - -0.988695
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.78484462785022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.403828
+ - -0.0737
+ - -0.00953
+ - - 1.000147
+ - 0.505684
+ - 0.070577
+ - - -0.068851
+ - -0.561276
+ - -0.077253
+ - - -1.768029
+ - 0.046533
+ - 0.082418
+ - - 3.159427
+ - 0.708152
+ - 0.092827
+ - - 2.57538
+ - -0.806645
+ - 0.783648
+ - - 2.573581
+ - -0.575865
+ - -0.965982
+ - - 0.864365
+ - 1.259472
+ - -0.712279
+ - - 0.855411
+ - 1.024414
+ - 1.022556
+ - - 0.024989
+ - -1.307935
+ - 0.716639
+ - - 0.03542
+ - -1.094226
+ - -1.025451
+ - - -1.748045
+ - 0.861265
+ - -0.984788
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4168842101435206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.419437
+ - -0.074665
+ - -0.008389
+ - - 1.002413
+ - 0.509831
+ - 0.070924
+ - - -0.072643
+ - -0.568629
+ - -0.078756
+ - - -1.793755
+ - 0.047992
+ - 0.083376
+ - - 3.172999
+ - 0.713386
+ - 0.093927
+ - - 2.589825
+ - -0.807301
+ - 0.789096
+ - - 2.58881
+ - -0.578101
+ - -0.967399
+ - - 0.868115
+ - 1.262516
+ - -0.71653
+ - - 0.857993
+ - 1.027573
+ - 1.026104
+ - - 0.015265
+ - -1.314465
+ - 0.719082
+ - - 0.025396
+ - -1.098311
+ - -1.031755
+ - - -1.766232
+ - 0.866045
+ - -0.986299
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.243430388384617
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4029882044
+ - -0.0725100373
+ - -0.0121117491
+ - - 0.9962247974
+ - 0.5083074661
+ - 0.0729660671
+ - - -0.0682253962
+ - -0.5677587974
+ - -0.0745136292
+ - - -1.7708374262
+ - 0.0449289573
+ - 0.0716609818
+ - - 3.1587861111
+ - 0.70672159
+ - 0.0876266284
+ - - 2.5730175286
+ - -0.8051978824
+ - 0.7792510336
+ - - 2.5648775772
+ - -0.5739022345
+ - -0.9684319774
+ - - 0.8555228428
+ - 1.2595838437
+ - -0.708869011
+ - - 0.8521845675
+ - 1.0229695635
+ - 1.0250974962
+ - - 0.0274980221
+ - -1.3078451552
+ - 0.7224650405
+ - - 0.0439104921
+ - -1.1007763585
+ - -1.0191678917
+ - - -1.7283239564
+ - 0.8713515277
+ - -0.9825911603
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.5854235071622
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.406323
+ - -0.074195
+ - -0.010529
+ - - 1.00024
+ - 0.508128
+ - 0.072294
+ - - -0.070447
+ - -0.56282
+ - -0.075028
+ - - -1.773687
+ - 0.046536
+ - 0.077501
+ - - 3.160648
+ - 0.706806
+ - 0.093249
+ - - 2.574902
+ - -0.808278
+ - 0.78062
+ - - 2.572011
+ - -0.573283
+ - -0.967977
+ - - 0.86507
+ - 1.260016
+ - -0.710301
+ - - 0.85983
+ - 1.024294
+ - 1.024536
+ - - 0.025229
+ - -1.306518
+ - 0.719042
+ - - 0.037027
+ - -1.09334
+ - -1.022304
+ - - -1.749522
+ - 0.858526
+ - -0.98772
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Propanol.yml b/input/reference_sets/main/1-Propanol.yml
index a671617a3e..79219f779e 100644
--- a/input/reference_sets/main/1-Propanol.yml
+++ b/input/reference_sets/main/1-Propanol.yml
@@ -19,7 +19,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -61.0955916540017
+ value: -61.09559165400165
class: ThermoData
xyz_dict:
coords:
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.10676896974306
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.533889
+ - -0.518236
+ - -0.127077
+ - - 0.633109
+ - 0.639149
+ - 0.289528
+ - - -0.761417
+ - 0.544509
+ - -0.295507
+ - - -1.380837
+ - -0.634883
+ - 0.215272
+ - - 1.650993
+ - -0.54912
+ - -1.212363
+ - - 2.526792
+ - -0.421138
+ - 0.312662
+ - - 1.111277
+ - -1.469615
+ - 0.191371
+ - - 1.069401
+ - 1.589991
+ - -0.027754
+ - - 0.548001
+ - 0.675933
+ - 1.378141
+ - - -0.702748
+ - 0.503382
+ - -1.3901
+ - - -1.342869
+ - 1.431413
+ - -0.021036
+ - - -2.252135
+ - -0.719724
+ - -0.182778
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.17779470201614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.53906
+ - -0.518065
+ - -0.128312
+ - - 0.633043
+ - 0.636949
+ - 0.288726
+ - - -0.764348
+ - 0.543748
+ - -0.294612
+ - - -1.392661
+ - -0.629292
+ - 0.221807
+ - - 1.662957
+ - -0.545256
+ - -1.214081
+ - - 2.530217
+ - -0.420937
+ - 0.317965
+ - - 1.1166
+ - -1.47277
+ - 0.184202
+ - - 1.067801
+ - 1.590149
+ - -0.027034
+ - - 0.549434
+ - 0.673525
+ - 1.37859
+ - - -0.706641
+ - 0.497405
+ - -1.3905
+ - - -1.340891
+ - 1.43714
+ - -0.024855
+ - - -2.261115
+ - -0.720936
+ - -0.181538
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -41.2175354074885
+ value: -41.2175354074885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.5377202964
+ - -0.5218979311
+ - -0.1307999998
+ - - 0.6373532241
+ - 0.65033905
+ - 0.2918252165
+ - - -0.773358201
+ - 0.5499233724
+ - -0.2923737988
+ - - -1.3757974165
+ - -0.644180903
+ - 0.219690295
+ - - 1.6581293475
+ - -0.5448486938
+ - -1.2255128865
+ - - 2.5374268275
+ - -0.4403690095
+ - 0.3205941033
+ - - 1.088777418
+ - -1.4742062077
+ - 0.1804479192
+ - - 1.0758819964
+ - 1.6080445873
+ - -0.0328199505
+ - - 0.5549402525
+ - 0.6866179174
+ - 1.3895838305
+ - - -0.7082696959
+ - 0.5288154619
+ - -1.3995306005
+ - - -1.3567197752
+ - 1.449097381
+ - -0.009536935
+ - - -2.2540789561
+ - -0.7298911596
+ - -0.1926563479
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.93829148885856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.547304
+ - -0.518924
+ - -0.12955
+ - - 0.632951
+ - 0.633521
+ - 0.291564
+ - - -0.7688
+ - 0.541637
+ - -0.293953
+ - - -1.409446
+ - -0.629415
+ - 0.232335
+ - - 1.669004
+ - -0.543885
+ - -1.219873
+ - - 2.542747
+ - -0.415412
+ - 0.316418
+ - - 1.130434
+ - -1.480494
+ - 0.183811
+ - - 1.065552
+ - 1.592956
+ - -0.023803
+ - - 0.549749
+ - 0.668934
+ - 1.385889
+ - - -0.7083
+ - 0.487614
+ - -1.394829
+ - - -1.342552
+ - 1.445763
+ - -0.030987
+ - - -2.275187
+ - -0.710634
+ - -0.186662
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.34670235364427
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.547578
+ - -0.519905
+ - -0.129661
+ - - 0.633783
+ - 0.635904
+ - 0.288931
+ - - -0.7706
+ - 0.543714
+ - -0.293988
+ - - -1.405273
+ - -0.63235
+ - 0.235193
+ - - 1.679426
+ - -0.544593
+ - -1.22333
+ - - 2.544561
+ - -0.422845
+ - 0.32498
+ - - 1.123734
+ - -1.485176
+ - 0.179726
+ - - 1.068697
+ - 1.599281
+ - -0.027581
+ - - 0.550403
+ - 0.674318
+ - 1.388115
+ - - -0.714305
+ - 0.492146
+ - -1.399992
+ - - -1.347507
+ - 1.450162
+ - -0.026398
+ - - -2.27704
+ - -0.718995
+ - -0.185635
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.17420876544533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.533958
+ - -0.515855
+ - -0.128203
+ - - 0.631968
+ - 0.636172
+ - 0.286881
+ - - -0.760885
+ - 0.542003
+ - -0.294255
+ - - -1.384115
+ - -0.625891
+ - 0.218679
+ - - 1.660504
+ - -0.542778
+ - -1.212711
+ - - 2.523618
+ - -0.421641
+ - 0.319594
+ - - 1.109618
+ - -1.469425
+ - 0.182427
+ - - 1.066881
+ - 1.588425
+ - -0.027878
+ - - 0.547114
+ - 0.67227
+ - 1.375646
+ - - -0.703741
+ - 0.496663
+ - -1.38916
+ - - -1.337757
+ - 1.433564
+ - -0.023711
+ - - -2.253708
+ - -0.721848
+ - -0.17695
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.50003039364481
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.539968
+ - -0.520662
+ - -0.128884
+ - - 0.634276
+ - 0.64259
+ - 0.283196
+ - - -0.771249
+ - 0.544873
+ - -0.292864
+ - - -1.385835
+ - -0.632765
+ - 0.230785
+ - - 1.684532
+ - -0.541751
+ - -1.214102
+ - - 2.525511
+ - -0.438697
+ - 0.336832
+ - - 1.097637
+ - -1.472724
+ - 0.169106
+ - - 1.070866
+ - 1.595439
+ - -0.037382
+ - - 0.552251
+ - 0.683686
+ - 1.374661
+ - - -0.719241
+ - 0.503538
+ - -1.391683
+ - - -1.347381
+ - 1.439722
+ - -0.017002
+ - - -2.247879
+ - -0.731588
+ - -0.182304
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.65985342487161
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.531493
+ - -0.516744
+ - -0.128192
+ - - 0.633506
+ - 0.639998
+ - 0.291459
+ - - -0.759201
+ - 0.544505
+ - -0.295408
+ - - -1.38035
+ - -0.630065
+ - 0.218621
+ - - 1.645646
+ - -0.545981
+ - -1.214407
+ - - 2.525574
+ - -0.422498
+ - 0.309871
+ - - 1.107973
+ - -1.468554
+ - 0.189686
+ - - 1.069924
+ - 1.591841
+ - -0.022875
+ - - 0.546314
+ - 0.673929
+ - 1.380505
+ - - -0.697449
+ - 0.496415
+ - -1.39001
+ - - -1.341416
+ - 1.432748
+ - -0.027027
+ - - -2.248561
+ - -0.723933
+ - -0.181864
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.199616836921344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.531493
+ - -0.516744
+ - -0.128192
+ - - 0.633506
+ - 0.639998
+ - 0.291459
+ - - -0.759201
+ - 0.544505
+ - -0.295408
+ - - -1.38035
+ - -0.630065
+ - 0.218621
+ - - 1.645647
+ - -0.545981
+ - -1.214407
+ - - 2.525574
+ - -0.422498
+ - 0.309871
+ - - 1.107973
+ - -1.468554
+ - 0.189686
+ - - 1.069924
+ - 1.591841
+ - -0.022875
+ - - 0.546314
+ - 0.673929
+ - 1.380505
+ - - -0.697449
+ - 0.496415
+ - -1.39001
+ - - -1.341416
+ - 1.432748
+ - -0.027027
+ - - -2.248561
+ - -0.723933
+ - -0.181864
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.9586965886954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.531493
+ - -0.516744
+ - -0.128192
+ - - 0.633506
+ - 0.639998
+ - 0.291459
+ - - -0.759201
+ - 0.544505
+ - -0.295408
+ - - -1.38035
+ - -0.630065
+ - 0.218621
+ - - 1.645647
+ - -0.545981
+ - -1.214407
+ - - 2.525574
+ - -0.422498
+ - 0.309871
+ - - 1.107973
+ - -1.468554
+ - 0.189686
+ - - 1.069924
+ - 1.591841
+ - -0.022875
+ - - 0.546314
+ - 0.673929
+ - 1.380505
+ - - -0.697449
+ - 0.496415
+ - -1.39001
+ - - -1.341416
+ - 1.432748
+ - -0.027027
+ - - -2.248561
+ - -0.723933
+ - -0.181864
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.96397429982647
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.5377202964
- - -0.5218979311
- - -0.1307999998
- - - 0.6373532241
- - 0.65033905
- - 0.2918252165
- - - -0.773358201
- - 0.5499233724
- - -0.2923737988
- - - -1.3757974165
- - -0.644180903
- - 0.219690295
- - - 1.6581293475
- - -0.5448486938
- - -1.2255128865
- - - 2.5374268275
- - -0.4403690095
- - 0.3205941033
- - - 1.088777418
- - -1.4742062077
- - 0.1804479192
- - - 1.0758819964
- - 1.6080445873
- - -0.0328199505
- - - 0.5549402525
- - 0.6866179174
- - 1.3895838305
- - - -0.7082696959
- - 0.5288154619
- - -1.3995306005
- - - -1.3567197752
- - 1.449097381
- - -0.009536935
- - - -2.2540789561
- - -0.7298911596
- - -0.1926563479
+ - - 1.538526
+ - -0.521212
+ - -0.12775
+ - - 0.635012
+ - 0.643354
+ - 0.286062
+ - - -0.771968
+ - 0.542895
+ - -0.29127
+ - - -1.381945
+ - -0.632293
+ - 0.226507
+ - - 1.674542
+ - -0.547246
+ - -1.215145
+ - - 2.528861
+ - -0.437191
+ - 0.329951
+ - - 1.098803
+ - -1.474034
+ - 0.176978
+ - - 1.070311
+ - 1.597483
+ - -0.035318
+ - - 0.554634
+ - 0.684188
+ - 1.37906
+ - - -0.718712
+ - 0.507656
+ - -1.392349
+ - - -1.350773
+ - 1.440101
+ - -0.01926
+ - - -2.243835
+ - -0.732042
+ - -0.187107
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.02442228895835
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.525422
+ - -0.517522
+ - -0.126997
+ - - 0.635329
+ - 0.645773
+ - 0.290449
+ - - -0.75838
+ - 0.545433
+ - -0.294751
+ - - -1.36429
+ - -0.632545
+ - 0.212364
+ - - 1.638997
+ - -0.547485
+ - -1.21284
+ - - 2.519396
+ - -0.431552
+ - 0.312059
+ - - 1.089919
+ - -1.463721
+ - 0.191411
+ - - 1.074103
+ - 1.594582
+ - -0.028028
+ - - 0.548013
+ - 0.680949
+ - 1.379017
+ - - -0.696407
+ - 0.505051
+ - -1.389608
+ - - -1.345684
+ - 1.428455
+ - -0.019814
+ - - -2.232962
+ - -0.735758
+ - -0.182903
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.40595281370479
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.533761
+ - -0.515055
+ - -0.128248
+ - - 0.630914
+ - 0.63414
+ - 0.286656
+ - - -0.762726
+ - 0.537309
+ - -0.291494
+ - - -1.384885
+ - -0.625607
+ - 0.222447
+ - - 1.661749
+ - -0.541419
+ - -1.214501
+ - - 2.524936
+ - -0.421329
+ - 0.32094
+ - - 1.109719
+ - -1.471571
+ - 0.181059
+ - - 1.063128
+ - 1.589369
+ - -0.02994
+ - - 0.548387
+ - 0.672647
+ - 1.377855
+ - - -0.703758
+ - 0.493534
+ - -1.38941
+ - - -1.337367
+ - 1.434921
+ - -0.02383
+ - - -2.250401
+ - -0.715278
+ - -0.181176
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.554840870024655
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.544577
+ - -0.521005
+ - -0.129555
+ - - 0.635016
+ - 0.639172
+ - 0.28946
+ - - -0.767875
+ - 0.548339
+ - -0.297185
+ - - -1.396565
+ - -0.633679
+ - 0.2314
+ - - 1.675123
+ - -0.543008
+ - -1.218454
+ - - 2.536344
+ - -0.425317
+ - 0.325325
+ - - 1.116258
+ - -1.478828
+ - 0.178757
+ - - 1.071935
+ - 1.595355
+ - -0.028072
+ - - 0.550328
+ - 0.674824
+ - 1.383016
+ - - -0.714492
+ - 0.494399
+ - -1.396658
+ - - -1.348757
+ - 1.443114
+ - -0.025257
+ - - -2.268437
+ - -0.721705
+ - -0.182419
isotopes:
- 12
- 12
@@ -309,13 +1271,161 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.1525987686646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.5314926424
+ - -0.5167442818
+ - -0.1281917294
+ - - 0.6335064814
+ - 0.6399979003
+ - 0.2914585316
+ - - -0.7592007584
+ - 0.5445050317
+ - -0.2954082598
+ - - -1.3803496419
+ - -0.6300648352
+ - 0.2186212508
+ - - 1.6456464983
+ - -0.545981183
+ - -1.2144067946
+ - - 2.5255742423
+ - -0.4224979014
+ - 0.3098713876
+ - - 1.1079733136
+ - -1.4685543925
+ - 0.1896855148
+ - - 1.0699243257
+ - 1.5918411349
+ - -0.0228751013
+ - - 0.5463139968
+ - 0.6739289739
+ - 1.3805052005
+ - - -0.6974489936
+ - 0.4964146456
+ - -1.3900104159
+ - - -1.3414158175
+ - 1.4327483041
+ - -0.0270272596
+ - - -2.2485606227
+ - -0.7239328015
+ - -0.1818637923
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.80432362366029
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.535755
+ - -0.517186
+ - -0.127889
+ - - 0.631672
+ - 0.635103
+ - 0.289385
+ - - -0.764426
+ - 0.539614
+ - -0.291855
+ - - -1.38989
+ - -0.624111
+ - 0.218857
+ - - 1.653814
+ - -0.546613
+ - -1.214035
+ - - 2.528324
+ - -0.416436
+ - 0.313631
+ - - 1.116475
+ - -1.471757
+ - 0.18979
+ - - 1.065243
+ - 1.587565
+ - -0.028344
+ - - 0.549807
+ - 0.671818
+ - 1.378981
+ - - -0.703553
+ - 0.496285
+ - -1.388166
+ - - -1.338466
+ - 1.435194
+ - -0.022736
+ - - -2.251299
+ - -0.717815
+ - -0.187261
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -56.91063409835868
+ value: -56.91063409835862
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/1-Propenyl.yml b/input/reference_sets/main/1-Propenyl.yml
index be372af4a3..9c1a03942a 100644
--- a/input/reference_sets/main/1-Propenyl.yml
+++ b/input/reference_sets/main/1-Propenyl.yml
@@ -118,6 +118,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.23966139074773
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189226
+ - -0.152608
+ - -0.0
+ - - -0.212361
+ - 0.388703
+ - -1.0e-06
+ - - -1.308853
+ - -0.32108
+ - 1.0e-06
+ - - 1.734534
+ - 0.196546
+ - 0.878773
+ - - 1.734533
+ - 0.196542
+ - -0.878776
+ - - 1.188975
+ - -1.240534
+ - 2.0e-06
+ - - -0.305438
+ - 1.478606
+ - -3.0e-06
+ - - -2.371534
+ - -0.144964
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.81644011811964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.188768
+ - -0.153069
+ - -0.0
+ - - -0.213849
+ - 0.387205
+ - -1.0e-06
+ - - -1.310995
+ - -0.318195
+ - 1.0e-06
+ - - 1.735241
+ - 0.197664
+ - 0.879299
+ - - 1.73524
+ - 0.19766
+ - -0.879302
+ - - 1.191541
+ - -1.242021
+ - 2.0e-06
+ - - -0.301464
+ - 1.479398
+ - -3.0e-06
+ - - -2.375399
+ - -0.147432
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -172,6 +280,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.26291568362173
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.191042
+ - -0.15379
+ - -0.0
+ - - -0.215207
+ - 0.390204
+ - -1.0e-06
+ - - -1.316388
+ - -0.320744
+ - 2.0e-06
+ - - 1.740154
+ - 0.198444
+ - 0.882726
+ - - 1.740153
+ - 0.19844
+ - -0.882728
+ - - 1.193152
+ - -1.24705
+ - 2.0e-06
+ - - -0.29767
+ - 1.488249
+ - -3.0e-06
+ - - -2.386153
+ - -0.152541
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.56328109358627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.192729
+ - -0.153986
+ - -0.0
+ - - -0.214181
+ - 0.387426
+ - -1.0e-06
+ - - -1.320363
+ - -0.319813
+ - 2.0e-06
+ - - 1.744927
+ - 0.200152
+ - 0.885446
+ - - 1.744926
+ - 0.200148
+ - -0.885448
+ - - 1.196133
+ - -1.251617
+ - 2.0e-06
+ - - -0.300907
+ - 1.490143
+ - -4.0e-06
+ - - -2.394182
+ - -0.151241
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.76362579580487
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.186655
+ - -0.152438
+ - -0.0
+ - - -0.212197
+ - 0.386908
+ - -1.0e-06
+ - - -1.305443
+ - -0.316856
+ - 1.0e-06
+ - - 1.732448
+ - 0.196876
+ - 0.878511
+ - - 1.732448
+ - 0.196872
+ - -0.878513
+ - - 1.188721
+ - -1.240464
+ - 2.0e-06
+ - - -0.303842
+ - 1.477047
+ - -3.0e-06
+ - - -2.369707
+ - -0.146735
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.56568537474271
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.190926
+ - -0.152981
+ - -0.0
+ - - -0.216034
+ - 0.389156
+ - -1.0e-06
+ - - -1.314726
+ - -0.319649
+ - 2.0e-06
+ - - 1.739409
+ - 0.196826
+ - 0.880699
+ - - 1.739408
+ - 0.196822
+ - -0.880702
+ - - 1.193565
+ - -1.243601
+ - 2.0e-06
+ - - -0.302713
+ - 1.483077
+ - -3.0e-06
+ - - -2.380753
+ - -0.14844
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.94379959178798
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189503
+ - -0.153073
+ - 0.0
+ - - -0.212378
+ - 0.38957
+ - 0.0
+ - - -1.306942
+ - -0.316739
+ - -0.0
+ - - 1.734464
+ - 0.195837
+ - 0.878872
+ - - 1.734461
+ - 0.19583
+ - -0.878877
+ - - 1.187829
+ - -1.24125
+ - 4.0e-06
+ - - -0.306265
+ - 1.480095
+ - -0.0
+ - - -2.371589
+ - -0.149058
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.45030712544921
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189503
+ - -0.153073
+ - 0.0
+ - - -0.212378
+ - 0.38957
+ - 0.0
+ - - -1.306942
+ - -0.316739
+ - -0.0
+ - - 1.734464
+ - 0.195837
+ - 0.878872
+ - - 1.734461
+ - 0.19583
+ - -0.878877
+ - - 1.187829
+ - -1.24125
+ - 4.0e-06
+ - - -0.306265
+ - 1.480095
+ - -0.0
+ - - -2.371589
+ - -0.149058
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.53682123552605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189503
+ - -0.153073
+ - 0.0
+ - - -0.212378
+ - 0.38957
+ - 0.0
+ - - -1.306942
+ - -0.316739
+ - -0.0
+ - - 1.734464
+ - 0.195837
+ - 0.878872
+ - - 1.734461
+ - 0.19583
+ - -0.878877
+ - - 1.187829
+ - -1.24125
+ - 4.0e-06
+ - - -0.306265
+ - 1.480095
+ - -0.0
+ - - -2.371589
+ - -0.149058
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.87441985663729
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189381
+ - -0.152369
+ - 0.0
+ - - -0.216904
+ - 0.388839
+ - -1.0e-06
+ - - -1.316598
+ - -0.320313
+ - 2.0e-06
+ - - 1.74062
+ - 0.197678
+ - 0.880756
+ - - 1.740619
+ - 0.197674
+ - -0.880759
+ - - 1.193879
+ - -1.244317
+ - 2.0e-06
+ - - -0.298995
+ - 1.483642
+ - -3.0e-06
+ - - -2.382919
+ - -0.149623
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.90042375142363
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187148
+ - -0.151793
+ - -0.0
+ - - -0.212611
+ - 0.393005
+ - -1.0e-06
+ - - -1.299795
+ - -0.328363
+ - 1.0e-06
+ - - 1.732688
+ - 0.195243
+ - 0.879361
+ - - 1.732687
+ - 0.195239
+ - -0.879364
+ - - 1.17992
+ - -1.240132
+ - 3.0e-06
+ - - -0.309037
+ - 1.481484
+ - -3.0e-06
+ - - -2.361917
+ - -0.143473
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.38031901676183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185688
+ - -0.152239
+ - -0.0
+ - - -0.210097
+ - 0.386307
+ - -1.0e-06
+ - - -1.306808
+ - -0.320937
+ - 2.0e-06
+ - - 1.733787
+ - 0.198203
+ - 0.87945
+ - - 1.733786
+ - 0.198198
+ - -0.879453
+ - - 1.188195
+ - -1.242136
+ - 2.0e-06
+ - - -0.303627
+ - 1.478599
+ - -3.0e-06
+ - - -2.371843
+ - -0.144785
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.0438560474482
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.192389
+ - -0.153749
+ - -0.0
+ - - -0.214431
+ - 0.389724
+ - -1.0e-06
+ - - -1.315959
+ - -0.322723
+ - 2.0e-06
+ - - 1.740638
+ - 0.198471
+ - 0.882576
+ - - 1.740637
+ - 0.198468
+ - -0.882578
+ - - 1.192179
+ - -1.246285
+ - 2.0e-06
+ - - -0.301721
+ - 1.485917
+ - -4.0e-06
+ - - -2.384649
+ - -0.148612
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -226,6 +928,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.32653503177559
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1895030155
+ - -0.1530728289
+ - 8.5e-09
+ - - -0.2123775413
+ - 0.3895698413
+ - 2.697e-07
+ - - -1.306942036
+ - -0.3167391689
+ - -9.5e-08
+ - - 1.7344643232
+ - 0.1958365814
+ - 0.878872024
+ - - 1.7344608366
+ - 0.1958295198
+ - -0.8788770152
+ - - 1.1878288019
+ - -1.2412499324
+ - 4.3026e-06
+ - - -0.3062653285
+ - 1.4800947877
+ - -4.618e-07
+ - - -2.3715892628
+ - -0.1490580175
+ - 5.13e-08
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.8325590804588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.188475
+ - -0.153315
+ - -0.0
+ - - -0.212866
+ - 0.385504
+ - -1.0e-06
+ - - -1.307562
+ - -0.321929
+ - 1.0e-06
+ - - 1.73243
+ - 0.198382
+ - 0.879598
+ - - 1.73243
+ - 0.198378
+ - -0.879601
+ - - 1.192972
+ - -1.242199
+ - 2.0e-06
+ - - -0.305554
+ - 1.476033
+ - -3.0e-06
+ - - -2.371242
+ - -0.139644
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Propynyl anion.yml b/input/reference_sets/main/1-Propynyl anion.yml
index 9d84549976..9336735c8a 100644
--- a/input/reference_sets/main/1-Propynyl anion.yml
+++ b/input/reference_sets/main/1-Propynyl anion.yml
@@ -95,6 +95,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 74.332514416252
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.131443
+ - -9.8e-05
+ - 0.000291
+ - - 0.335909
+ - 2.7e-05
+ - -2.9e-05
+ - - 1.580074
+ - 0.000133
+ - -0.000317
+ - - -1.553512
+ - -0.143081
+ - 1.004506
+ - - -1.553891
+ - 0.940943
+ - -0.377877
+ - - -1.553793
+ - -0.798256
+ - -0.625486
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.83012034218471
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.127363
+ - -9.7e-05
+ - 0.000286
+ - - 0.337053
+ - 2.6e-05
+ - -4.1e-05
+ - - 1.574646
+ - 0.000135
+ - -0.000303
+ - - -1.55343
+ - -0.14321
+ - 1.005394
+ - - -1.553826
+ - 0.941777
+ - -0.378212
+ - - -1.553735
+ - -0.798962
+ - -0.626036
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.02639940078156
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.126994
+ - -9.7e-05
+ - 0.000289
+ - - 0.340096
+ - 2.3e-05
+ - -2.9e-05
+ - - 1.588632
+ - 0.000137
+ - -0.000317
+ - - -1.559236
+ - -0.143792
+ - 1.009483
+ - - -1.559624
+ - 0.945606
+ - -0.379753
+ - - -1.55953
+ - -0.80221
+ - -0.628586
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.0862806751099
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.12696
+ - -9.6e-05
+ - 0.000288
+ - - 0.341579
+ - 2.6e-05
+ - -3.3e-05
+ - - 1.593199
+ - 0.000135
+ - -0.000314
+ - - -1.561259
+ - -0.144271
+ - 1.012844
+ - - -1.561656
+ - 0.948753
+ - -0.381018
+ - - -1.561558
+ - -0.804879
+ - -0.630679
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.16074145726695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.128923
+ - -9.7e-05
+ - 0.000288
+ - - 0.335564
+ - 2.7e-05
+ - -3.3e-05
+ - - 1.565761
+ - 0.000133
+ - -0.000307
+ - - -1.549453
+ - -0.143084
+ - 1.004503
+ - - -1.549849
+ - 0.940939
+ - -0.37788
+ - - -1.549755
+ - -0.79825
+ - -0.625483
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.095747573770154
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124298
+ - -9.5e-05
+ - 0.000286
+ - - 0.342674
+ - 3.0e-05
+ - -3.9e-05
+ - - 1.584991
+ - 0.000131
+ - -0.000308
+ - - -1.559776
+ - -0.143274
+ - 1.005837
+ - - -1.560173
+ - 0.94219
+ - -0.378377
+ - - -1.560074
+ - -0.799314
+ - -0.626311
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 74.45314679209324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.132388
+ - -2.0e-06
+ - 7.6e-05
+ - - 0.336896
+ - 0.000108
+ - -0.000573
+ - - 1.570823
+ - -4.0e-05
+ - 0.000279
+ - - -1.549926
+ - -0.143152
+ - 1.004778
+ - - -1.551214
+ - 0.941377
+ - -0.377908
+ - - -1.550846
+ - -0.798623
+ - -0.625565
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.3328983902144
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.132388
+ - -2.0e-06
+ - 7.6e-05
+ - - 0.336896
+ - 0.000108
+ - -0.000573
+ - - 1.570823
+ - -4.0e-05
+ - 0.000279
+ - - -1.549926
+ - -0.143152
+ - 1.004778
+ - - -1.551214
+ - 0.941377
+ - -0.377908
+ - - -1.550846
+ - -0.798623
+ - -0.625565
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.407786795905444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.132388
+ - -2.0e-06
+ - 7.6e-05
+ - - 0.336896
+ - 0.000108
+ - -0.000573
+ - - 1.570823
+ - -4.0e-05
+ - 0.000279
+ - - -1.549926
+ - -0.143152
+ - 1.004778
+ - - -1.551214
+ - 0.941377
+ - -0.377908
+ - - -1.550846
+ - -0.798623
+ - -0.625565
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.935046142576105
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.116164
+ - -9.6e-05
+ - 0.000282
+ - - 0.343701
+ - 2.7e-05
+ - -3.8e-05
+ - - 1.586734
+ - 0.000137
+ - -0.000305
+ - - -1.563406
+ - -0.143004
+ - 1.003932
+ - - -1.563804
+ - 0.940404
+ - -0.37766
+ - - -1.563716
+ - -0.7978
+ - -0.625123
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.7330801034605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.13325
+ - -9.1e-05
+ - 0.000323
+ - - 0.335888
+ - 3.6e-05
+ - 5.0e-06
+ - - 1.57101
+ - 0.000121
+ - -0.000357
+ - - -1.549911
+ - -0.143188
+ - 1.005236
+ - - -1.550259
+ - 0.941611
+ - -0.378168
+ - - -1.550133
+ - -0.79882
+ - -0.625952
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 77.7075087798419
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.127117
+ - -9.7e-05
+ - 0.000286
+ - - 0.334147
+ - 2.7e-05
+ - -3.8e-05
+ - - 1.572921
+ - 0.000134
+ - -0.000305
+ - - -1.551969
+ - -0.143298
+ - 1.006011
+ - - -1.552365
+ - 0.942355
+ - -0.378446
+ - - -1.552273
+ - -0.799452
+ - -0.626422
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.85732428333344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.129592
+ - -9.6e-05
+ - 0.000289
+ - - 0.339977
+ - 2.5e-05
+ - -3.3e-05
+ - - 1.588154
+ - 0.000136
+ - -0.000312
+ - - -1.558166
+ - -0.143785
+ - 1.00942
+ - - -1.558561
+ - 0.945546
+ - -0.379731
+ - - -1.558467
+ - -0.802158
+ - -0.628545
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.2628109820269
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1323879161
+ - -2.2286e-06
+ - 7.59536e-05
+ - - 0.3368958907
+ - 0.0001083235
+ - -0.0005729442
+ - - 1.5708231027
+ - -3.9699e-05
+ - 0.0002794955
+ - - -1.5499259914
+ - -0.1431520351
+ - 1.0047781031
+ - - -1.5512140073
+ - 0.9413769663
+ - -0.3779083092
+ - - -1.5508464651
+ - -0.7986233068
+ - -0.6255648235
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.84862712366095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.13132
+ - -8.3e-05
+ - 0.000276
+ - - 0.335707
+ - 4.7e-05
+ - -5.1e-05
+ - - 1.570386
+ - 0.000105
+ - -0.000285
+ - - -1.550219
+ - -0.143306
+ - 1.006022
+ - - -1.550675
+ - 0.942372
+ - -0.378451
+ - - -1.550535
+ - -0.799466
+ - -0.626423
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1-Propynyl.yml b/input/reference_sets/main/1-Propynyl.yml
index 7a3cc49b88..cb70b99a4e 100644
--- a/input/reference_sets/main/1-Propynyl.yml
+++ b/input/reference_sets/main/1-Propynyl.yml
@@ -8,6 +8,94 @@ adjacency_list: |
5 H u0 p0 c0 {1,S}
6 H u0 p0 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.19638026111787
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.127771
+ - -0.028395
+ - -0.000241
+ - - -0.311853
+ - 0.153693
+ - -0.001671
+ - - -1.547801
+ - -0.084025
+ - 0.001808
+ - - 1.580592
+ - 0.417193
+ - 0.885756
+ - - 1.353656
+ - -1.098162
+ - 0.012324
+ - - 1.579676
+ - 0.396049
+ - -0.897023
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.44132696670715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.12431
+ - -0.032533
+ - -0.000202
+ - - -0.31423
+ - 0.14358
+ - -0.001274
+ - - -1.545066
+ - -0.067696
+ - 0.001636
+ - - 1.577248
+ - 0.416456
+ - 0.886338
+ - - 1.363526
+ - -1.100804
+ - 0.01112
+ - - 1.576254
+ - 0.39735
+ - -0.896664
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -52,6 +140,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 130.26277863708083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.123572
+ - -0.031011
+ - 2.8e-05
+ - - -0.315932
+ - 0.157489
+ - -0.005142
+ - - -1.550201
+ - -0.078515
+ - 0.00062
+ - - 1.581962
+ - 0.42934
+ - 0.88405
+ - - 1.36026
+ - -1.104387
+ - 0.027605
+ - - 1.582381
+ - 0.383438
+ - -0.906208
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 132.55649951321234
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.122113
+ - -0.032771
+ - 0.000616
+ - - -0.318143
+ - 0.157151
+ - -0.008933
+ - - -1.550687
+ - -0.076563
+ - -0.001849
+ - - 1.580403
+ - 0.443169
+ - 0.881878
+ - - 1.365188
+ - -1.108362
+ - 0.042605
+ - - 1.583168
+ - 0.37373
+ - -0.913361
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 134.5593941555613
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.126493
+ - -0.030828
+ - -0.000208
+ - - -0.311517
+ - 0.12668
+ - -0.001399
+ - - -1.548832
+ - -0.05921
+ - 0.001474
+ - - 1.574619
+ - 0.419448
+ - 0.885959
+ - - 1.367553
+ - -1.097544
+ - 0.012615
+ - - 1.573726
+ - 0.397808
+ - -0.897488
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.21333232992959
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.124828
+ - -0.033703
+ - 0.000226
+ - - -0.317956
+ - 0.146545
+ - -0.003959
+ - - -1.548168
+ - -0.068613
+ - -0.00018
+ - - 1.578518
+ - 0.425163
+ - 0.883375
+ - - 1.36557
+ - -1.102676
+ - 0.021615
+ - - 1.57925
+ - 0.389638
+ - -0.900123
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.22126862919998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.134538
+ - -0.032129
+ - -0.000206
+ - - -0.308957
+ - 0.041942
+ - -0.000458
+ - - -1.584759
+ - 0.011283
+ - 0.000493
+ - - 1.566249
+ - 0.425759
+ - 0.889726
+ - - 1.409451
+ - -1.093518
+ - 0.013223
+ - - 1.56552
+ - 0.403017
+ - -0.901824
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 130.6647050295684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.134538
+ - -0.032129
+ - -0.000206
+ - - -0.308957
+ - 0.041942
+ - -0.000458
+ - - -1.584759
+ - 0.011283
+ - 0.000493
+ - - 1.566249
+ - 0.425759
+ - 0.889726
+ - - 1.409451
+ - -1.093518
+ - 0.013223
+ - - 1.56552
+ - 0.403017
+ - -0.901824
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 129.8673272778663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.134538
+ - -0.032129
+ - -0.000206
+ - - -0.308957
+ - 0.041942
+ - -0.000458
+ - - -1.584759
+ - 0.011283
+ - 0.000493
+ - - 1.566249
+ - 0.425759
+ - 0.889726
+ - - 1.409451
+ - -1.093518
+ - 0.013223
+ - - 1.56552
+ - 0.403017
+ - -0.901824
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 125.6338659106503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.124129
+ - -0.030942
+ - -0.000291
+ - - -0.316838
+ - 0.144795
+ - -0.000252
+ - - -1.557163
+ - -0.069399
+ - 0.002037
+ - - 1.58395
+ - 0.412736
+ - 0.889441
+ - - 1.365423
+ - -1.10227
+ - 0.006309
+ - - 1.582542
+ - 0.401434
+ - -0.89629
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 128.18639235486214
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.127175
+ - -0.06611
+ - 0.000197
+ - - -0.331729
+ - 0.008774
+ - 4.6e-05
+ - - -1.530218
+ - 0.07027
+ - -4.0e-05
+ - - 1.532232
+ - 0.435207
+ - 0.878527
+ - - 1.453243
+ - -1.105522
+ - 0.01268
+ - - 1.531339
+ - 0.413735
+ - -0.890456
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.92291472940246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.121923
+ - -0.065078
+ - 0.000327
+ - - -0.328923
+ - 0.007144
+ - -0.00016
+ - - -1.530522
+ - 0.066958
+ - -0.000578
+ - - 1.53252
+ - 0.443928
+ - 0.874975
+ - - 1.455716
+ - -1.10471
+ - 0.021142
+ - - 1.531328
+ - 0.408112
+ - -0.894751
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 140.76678758821828
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.125355
+ - -0.033009
+ - 0.000426
+ - - -0.317628
+ - 0.160258
+ - -0.008276
+ - - -1.545837
+ - -0.081879
+ - -0.000712
+ - - 1.579195
+ - 0.440772
+ - 0.878425
+ - - 1.359787
+ - -1.104884
+ - 0.040065
+ - - 1.58117
+ - 0.375096
+ - -0.908974
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -96,6 +668,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 128.40606061184235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1345382059
+ - -0.0321294195
+ - -0.0002057213
+ - - -0.3089568693
+ - 0.0419416628
+ - -0.0004583268
+ - - -1.5847593588
+ - 0.0112831744
+ - 0.0004934274
+ - - 1.5662494063
+ - 0.4257589766
+ - 0.889725768
+ - - 1.4094506965
+ - -1.0935183188
+ - 0.0132233907
+ - - 1.5655196175
+ - 0.4030173048
+ - -0.9018244437
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.3596394892902
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.128175
+ - -0.030855
+ - -0.000211
+ - - -0.311923
+ - 0.131257
+ - -0.001459
+ - - -1.549124
+ - -0.063825
+ - 0.001544
+ - - 1.575282
+ - 0.420215
+ - 0.886884
+ - - 1.365251
+ - -1.098931
+ - 0.012663
+ - - 1.574381
+ - 0.398493
+ - -0.898468
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/11-Dichloroethane.yml b/input/reference_sets/main/11-Dichloroethane.yml
index 6b9bb15918..e0c186b593 100644
--- a/input/reference_sets/main/11-Dichloroethane.yml
+++ b/input/reference_sets/main/11-Dichloroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.854347911724016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.729554
+ - -0.144414
+ - - -7.0e-06
+ - 0.334868
+ - 0.430555
+ - - 1.467973
+ - -0.557287
+ - -0.068946
+ - - -1.467893
+ - -0.557329
+ - -0.069146
+ - - -0.888243
+ - 2.262735
+ - 0.192362
+ - - 0.888206
+ - 2.26276
+ - 0.192483
+ - - 8.6e-05
+ - 1.689775
+ - -1.231688
+ - - -8.0e-05
+ - 0.328377
+ - 1.514634
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.550637883674778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.730513
+ - -0.144997
+ - - -7.0e-06
+ - 0.335988
+ - 0.429779
+ - - 1.474716
+ - -0.561769
+ - -0.067345
+ - - -1.47463
+ - -0.561816
+ - -0.067559
+ - - -0.888584
+ - 2.264682
+ - 0.192546
+ - - 0.888559
+ - 2.264701
+ - 0.192648
+ - - 7.5e-05
+ - 1.693878
+ - -1.233178
+ - - -8.6e-05
+ - 0.327276
+ - 1.513945
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.352751138439938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.7328
+ - -0.146839
+ - - -7.0e-06
+ - 0.334864
+ - 0.429694
+ - - 1.482194
+ - -0.564581
+ - -0.066627
+ - - -1.482115
+ - -0.564624
+ - -0.066828
+ - - -0.892306
+ - 2.267945
+ - 0.193198
+ - - 0.892269
+ - 2.267971
+ - 0.193319
+ - - 8.7e-05
+ - 1.696381
+ - -1.238979
+ - - -8.0e-05
+ - 0.322698
+ - 1.5189
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.95802936622504
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.732706
+ - -0.14679
+ - - -7.0e-06
+ - 0.333945
+ - 0.430159
+ - - 1.481834
+ - -0.567912
+ - -0.067563
+ - - -1.481755
+ - -0.567954
+ - -0.067765
+ - - -0.895433
+ - 2.272286
+ - 0.193513
+ - - 0.895396
+ - 2.272311
+ - 0.193635
+ - - 8.7e-05
+ - 1.697835
+ - -1.243924
+ - - -8.1e-05
+ - 0.320236
+ - 1.524573
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.437163028195002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.726869
+ - -0.143607
+ - - -7.0e-06
+ - 0.334067
+ - 0.427252
+ - - 1.462583
+ - -0.556059
+ - -0.067102
+ - - -1.462505
+ - -0.556101
+ - -0.067299
+ - - -0.887664
+ - 2.260869
+ - 0.193359
+ - - 0.887625
+ - 2.260895
+ - 0.193483
+ - - 8.8e-05
+ - 1.691256
+ - -1.231246
+ - - -8.0e-05
+ - 0.331658
+ - 1.511
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.30258180957109
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.733824
+ - -0.146522
+ - - -7.0e-06
+ - 0.336154
+ - 0.430851
+ - - 1.481544
+ - -0.570008
+ - -0.066195
+ - - -1.481464
+ - -0.57005
+ - -0.066397
+ - - -0.889269
+ - 2.269662
+ - 0.192125
+ - - 0.889233
+ - 2.269686
+ - 0.192244
+ - - 8.5e-05
+ - 1.700202
+ - -1.23637
+ - - -8.1e-05
+ - 0.323983
+ - 1.516102
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.92228546481687
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3e-05
+ - 1.72901
+ - -0.143823
+ - - -0.0
+ - 0.334769
+ - 0.430427
+ - - 1.459389
+ - -0.556642
+ - -0.070276
+ - - -1.459396
+ - -0.55663
+ - -0.070277
+ - - -0.888554
+ - 2.261729
+ - 0.193188
+ - - 0.888375
+ - 2.26185
+ - 0.193538
+ - - 0.000233
+ - 1.687955
+ - -1.231859
+ - - -6.0e-06
+ - 0.331412
+ - 1.514922
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.890311984730328
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3e-05
+ - 1.72901
+ - -0.143823
+ - - -0.0
+ - 0.334769
+ - 0.430427
+ - - 1.459389
+ - -0.556642
+ - -0.070276
+ - - -1.459396
+ - -0.55663
+ - -0.070277
+ - - -0.888554
+ - 2.261729
+ - 0.193188
+ - - 0.888375
+ - 2.26185
+ - 0.193538
+ - - 0.000233
+ - 1.687955
+ - -1.231859
+ - - -6.0e-06
+ - 0.331412
+ - 1.514922
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.75791555899901
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3e-05
+ - 1.72901
+ - -0.143823
+ - - -0.0
+ - 0.334769
+ - 0.430427
+ - - 1.459389
+ - -0.556642
+ - -0.070276
+ - - -1.459396
+ - -0.55663
+ - -0.070277
+ - - -0.888554
+ - 2.261729
+ - 0.193188
+ - - 0.888375
+ - 2.26185
+ - 0.193538
+ - - 0.000233
+ - 1.687955
+ - -1.231859
+ - - -6.0e-06
+ - 0.331412
+ - 1.514922
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.415657785277844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.733838
+ - -0.146885
+ - - -7.0e-06
+ - 0.333946
+ - 0.43072
+ - - 1.47912
+ - -0.567652
+ - -0.066434
+ - - -1.479032
+ - -0.5677
+ - -0.066654
+ - - -0.89088
+ - 2.269171
+ - 0.192553
+ - - 0.890858
+ - 2.269186
+ - 0.19265
+ - - 7.2e-05
+ - 1.69908
+ - -1.238017
+ - - -8.9e-05
+ - 0.323585
+ - 1.517907
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.107527420791165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.728902
+ - -0.143192
+ - - -7.0e-06
+ - 0.33424
+ - 0.430955
+ - - 1.459362
+ - -0.551803
+ - -0.070855
+ - - -1.459282
+ - -0.551846
+ - -0.071054
+ - - -0.889402
+ - 2.261011
+ - 0.192618
+ - - 0.889365
+ - 2.261037
+ - 0.192739
+ - - 8.7e-05
+ - 1.683153
+ - -1.230926
+ - - -8.1e-05
+ - 0.328759
+ - 1.515553
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.976273038524614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.725591
+ - -0.144021
+ - - -7.0e-06
+ - 0.333969
+ - 0.426375
+ - - 1.459765
+ - -0.552799
+ - -0.066966
+ - - -1.459685
+ - -0.552841
+ - -0.067165
+ - - -0.889511
+ - 2.260248
+ - 0.193793
+ - - 0.889474
+ - 2.260274
+ - 0.193914
+ - - 8.7e-05
+ - 1.68973
+ - -1.233541
+ - - -8.1e-05
+ - 0.329285
+ - 1.51346
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.483829697957656
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.734423
+ - -0.147433
+ - - -8.0e-06
+ - 0.335934
+ - 0.432734
+ - - 1.480131
+ - -0.564883
+ - -0.067708
+ - - -1.480041
+ - -0.564932
+ - -0.067933
+ - - -0.892375
+ - 2.269121
+ - 0.192335
+ - - 0.892356
+ - 2.269134
+ - 0.192427
+ - - 6.8e-05
+ - 1.695025
+ - -1.238966
+ - - -9.1e-05
+ - 0.319632
+ - 1.520383
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.42840742843039
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.33356e-05
+ - 1.7290097819
+ - -0.1438230167
+ - - -3.509e-07
+ - 0.3347688137
+ - 0.4304273718
+ - - 1.4593887558
+ - -0.5566419253
+ - -0.0702764354
+ - - -1.4593962101
+ - -0.556629704
+ - -0.0702773686
+ - - -0.8885538918
+ - 2.2617293407
+ - 0.1931878594
+ - - 0.8883754896
+ - 2.2618499183
+ - 0.1935375586
+ - - 0.0002330225
+ - 1.6879549109
+ - -1.2318588089
+ - - -5.8045e-06
+ - 0.3314119542
+ - 1.5149219286
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.575685783389282
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - 1.728893
+ - -0.145217
+ - - -7.0e-06
+ - 0.333306
+ - 0.427167
+ - - 1.464087
+ - -0.559628
+ - -0.066296
+ - - -1.464007
+ - -0.55967
+ - -0.066495
+ - - -0.888225
+ - 2.262224
+ - 0.194073
+ - - 0.888188
+ - 2.26225
+ - 0.194194
+ - - 8.7e-05
+ - 1.694766
+ - -1.233834
+ - - -8.0e-05
+ - 0.331312
+ - 1.512247
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/11-Dichloroethene.yml b/input/reference_sets/main/11-Dichloroethene.yml
index bee89a3379..993a41ad18 100644
--- a/input/reference_sets/main/11-Dichloroethene.yml
+++ b/input/reference_sets/main/11-Dichloroethene.yml
@@ -95,6 +95,94 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.290314132818032
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.743342
+ - 0.0
+ - - -2.0e-06
+ - -0.417759
+ - 0.0
+ - - -1.451366
+ - 0.518049
+ - 0.0
+ - - 1.451371
+ - 0.518035
+ - 0.0
+ - - 0.931859
+ - -2.287144
+ - 0.0
+ - - -0.931882
+ - -2.287135
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.003956927445478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.74205
+ - 0.0
+ - - -2.0e-06
+ - -0.419714
+ - 0.0
+ - - -1.454362
+ - 0.52007
+ - 0.0
+ - - 1.454367
+ - 0.520056
+ - 0.0
+ - - 0.931064
+ - -2.288833
+ - 0.0
+ - - -0.931087
+ - -2.288824
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.122325456057566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.745812
+ - 0.0
+ - - -2.0e-06
+ - -0.414788
+ - 0.0
+ - - -1.45663
+ - 0.52423
+ - 0.0
+ - - 1.456635
+ - 0.524216
+ - 0.0
+ - - 0.935434
+ - -2.293576
+ - 0.0
+ - - -0.935457
+ - -2.293566
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.161671706320653
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.747429
+ - 0.0
+ - - -2.0e-06
+ - -0.413723
+ - 0.0
+ - - -1.458012
+ - 0.529005
+ - 0.0
+ - - 1.458017
+ - 0.52899
+ - 0.0
+ - - 0.939215
+ - -2.298074
+ - 0.0
+ - - -0.939239
+ - -2.298064
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.807731349461704
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.737558
+ - 0.0
+ - - -2.0e-06
+ - -0.421318
+ - 0.0
+ - - -1.447104
+ - 0.513601
+ - 0.0
+ - - 1.447109
+ - 0.513587
+ - 0.0
+ - - 0.930888
+ - -2.283809
+ - 0.0
+ - - -0.930911
+ - -2.283799
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.8614793799297453
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.74483
+ - 0.0
+ - - -2.0e-06
+ - -0.420576
+ - 0.0
+ - - -1.461632
+ - 0.525865
+ - 0.0
+ - - 1.461637
+ - 0.52585
+ - 0.0
+ - - 0.932064
+ - -2.292807
+ - 0.0
+ - - -0.932087
+ - -2.292798
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.7815851867462085
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -8.0e-06
+ - -1.740823
+ - 0.0
+ - - 1.0e-06
+ - -0.422211
+ - 0.0
+ - - -1.44743
+ - 0.51608
+ - 0.0
+ - - 1.447434
+ - 0.516074
+ - 0.0
+ - - 0.933049
+ - -2.284216
+ - 0.0
+ - - -0.933076
+ - -2.2842
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.2074838379198087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -8.0e-06
+ - -1.740823
+ - 0.0
+ - - 1.0e-06
+ - -0.422211
+ - 0.0
+ - - -1.44743
+ - 0.51608
+ - 0.0
+ - - 1.447434
+ - 0.516074
+ - 0.0
+ - - 0.933049
+ - -2.284216
+ - 0.0
+ - - -0.933076
+ - -2.2842
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5667094741504087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -8.0e-06
+ - -1.740823
+ - 0.0
+ - - 1.0e-06
+ - -0.422211
+ - 0.0
+ - - -1.44743
+ - 0.51608
+ - 0.0
+ - - 1.447434
+ - 0.516074
+ - 0.0
+ - - 0.933049
+ - -2.284216
+ - 0.0
+ - - -0.933076
+ - -2.2842
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.011773636579486888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.74404
+ - 0.0
+ - - -2.0e-06
+ - -0.418358
+ - 0.0
+ - - -1.45846
+ - 0.525256
+ - 0.0
+ - - 1.458465
+ - 0.525242
+ - 0.0
+ - - 0.932049
+ - -2.293702
+ - 0.0
+ - - -0.932072
+ - -2.293693
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.235136169172557
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.739802
+ - 0.0
+ - - -2.0e-06
+ - -0.420623
+ - 0.0
+ - - -1.445456
+ - 0.513487
+ - 0.0
+ - - 1.44546
+ - 0.513473
+ - 0.0
+ - - 0.933296
+ - -2.28292
+ - 0.0
+ - - -0.933319
+ - -2.28291
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.332599445881201
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.739224
+ - 0.0
+ - - -2.0e-06
+ - -0.417427
+ - 0.0
+ - - -1.442404
+ - 0.513535
+ - 0.0
+ - - 1.442409
+ - 0.513521
+ - 0.0
+ - - 0.933441
+ - -2.284855
+ - 0.0
+ - - -0.933464
+ - -2.284846
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.823141421983784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.746198
+ - 0.0
+ - - -2.0e-06
+ - -0.415708
+ - 0.0
+ - - -1.45636
+ - 0.525674
+ - 0.0
+ - - 1.456364
+ - 0.52566
+ - 0.0
+ - - 0.934596
+ - -2.294366
+ - 0.0
+ - - -0.934619
+ - -2.294357
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.5467092276812138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -7.7813e-06
+ - -1.7408225338
+ - 0.0
+ - - 7.714e-07
+ - -0.4222114168
+ - 0.0
+ - - -1.4474302951
+ - 0.5160802851
+ - 2.4e-09
+ - - 1.4474343239
+ - 0.5160737988
+ - 0.0
+ - - 0.9330494504
+ - -2.2842161322
+ - 0.0
+ - - -0.9330758807
+ - -2.2841995902
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.6806369995673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -9.0e-06
+ - -1.739338
+ - 0.0
+ - - -2.0e-06
+ - -0.420207
+ - 0.0
+ - - -1.448518
+ - 0.515716
+ - 0.0
+ - - 1.448523
+ - 0.515702
+ - 0.0
+ - - 0.931947
+ - -2.285589
+ - 0.0
+ - - -0.93197
+ - -2.28558
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/11-Difluoroethane.yml b/input/reference_sets/main/11-Difluoroethane.yml
index 7e0f8bf279..4b98dcc34e 100644
--- a/input/reference_sets/main/11-Difluoroethane.yml
+++ b/input/reference_sets/main/11-Difluoroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -117.89578819737754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36855
+ - 1.0e-06
+ - 0.090914
+ - - 0.062632
+ - 6.0e-06
+ - -0.357549
+ - - 0.712402
+ - -1.099447
+ - 0.134435
+ - - 0.712463
+ - 1.099326
+ - 0.134652
+ - - -1.405771
+ - -0.000108
+ - 1.178881
+ - - -1.873382
+ - -0.886899
+ - -0.287808
+ - - -1.873332
+ - 0.887007
+ - -0.287629
+ - - 0.195894
+ - 0.000109
+ - -1.439983
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -116.53853838084363
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.369423
+ - 1.0e-06
+ - 0.091402
+ - - 0.063649
+ - 6.0e-06
+ - -0.357273
+ - - 0.715896
+ - -1.10183
+ - 0.134306
+ - - 0.715959
+ - 1.101705
+ - 0.134529
+ - - -1.409104
+ - -0.000104
+ - 1.180608
+ - - -1.87544
+ - -0.887519
+ - -0.288046
+ - - -1.875392
+ - 0.887623
+ - -0.287872
+ - - 0.196211
+ - 0.000112
+ - -1.441741
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -112.95497532295929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.372671
+ - 1.0e-06
+ - 0.093593
+ - - 0.066309
+ - 6.0e-06
+ - -0.356876
+ - - 0.722875
+ - -1.110535
+ - 0.134039
+ - - 0.722944
+ - 1.110396
+ - 0.134289
+ - - -1.41602
+ - -8.8e-05
+ - 1.186562
+ - - -1.879836
+ - -0.890598
+ - -0.289221
+ - - -1.879798
+ - 0.890686
+ - -0.289074
+ - - 0.198553
+ - 0.000126
+ - -1.4474
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -112.5315857124847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.372656
+ - 1.0e-06
+ - 0.092752
+ - - 0.065706
+ - 6.0e-06
+ - -0.358486
+ - - 0.723763
+ - -1.112278
+ - 0.136534
+ - - 0.723825
+ - 1.112155
+ - 0.136756
+ - - -1.413544
+ - -0.000107
+ - 1.190439
+ - - -1.883933
+ - -0.893902
+ - -0.289557
+ - - -1.883883
+ - 0.89401
+ - -0.289379
+ - - 0.203079
+ - 0.000111
+ - -1.453146
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -121.73988736987745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36641
+ - 1.0e-06
+ - 0.090166
+ - - 0.061773
+ - 6.0e-06
+ - -0.356551
+ - - 0.709331
+ - -1.095175
+ - 0.134743
+ - - 0.709393
+ - 1.095052
+ - 0.134962
+ - - -1.403204
+ - -0.000107
+ - 1.178613
+ - - -1.87204
+ - -0.887022
+ - -0.287977
+ - - -1.87199
+ - 0.887128
+ - -0.287799
+ - - 0.195504
+ - 0.00011
+ - -1.440244
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -122.34625739980373
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36979
+ - 2.0e-06
+ - 0.089144
+ - - 0.066365
+ - 6.0e-06
+ - -0.359089
+ - - 0.714572
+ - -1.104652
+ - 0.135952
+ - - 0.714636
+ - 1.104525
+ - 0.136178
+ - - -1.40513
+ - -0.000102
+ - 1.179951
+ - - -1.879739
+ - -0.888966
+ - -0.286155
+ - - -1.879692
+ - 0.889069
+ - -0.285983
+ - - 0.201134
+ - 0.000113
+ - -1.444084
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -116.19308677667703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36873
+ - -3.0e-06
+ - 0.090666
+ - - 0.061548
+ - -0.0
+ - -0.358205
+ - - 0.710849
+ - -1.097844
+ - 0.135737
+ - - 0.710845
+ - 1.097847
+ - 0.135737
+ - - -1.402778
+ - -0.000253
+ - 1.179401
+ - - -1.873309
+ - -0.887265
+ - -0.288116
+ - - -1.873168
+ - 0.887516
+ - -0.287705
+ - - 0.197098
+ - -2.0e-06
+ - -1.441601
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -119.06871076089847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36873
+ - -3.0e-06
+ - 0.090666
+ - - 0.061548
+ - -0.0
+ - -0.358205
+ - - 0.710849
+ - -1.097844
+ - 0.135737
+ - - 0.710845
+ - 1.097847
+ - 0.135737
+ - - -1.402778
+ - -0.000253
+ - 1.179401
+ - - -1.873309
+ - -0.887265
+ - -0.288116
+ - - -1.873168
+ - 0.887516
+ - -0.287705
+ - - 0.197098
+ - -2.0e-06
+ - -1.441601
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -121.09649941002465
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.36873
+ - -3.0e-06
+ - 0.090666
+ - - 0.061548
+ - -0.0
+ - -0.358205
+ - - 0.710849
+ - -1.097844
+ - 0.135737
+ - - 0.710845
+ - 1.097847
+ - 0.135737
+ - - -1.402778
+ - -0.000253
+ - 1.179401
+ - - -1.873309
+ - -0.887265
+ - -0.288116
+ - - -1.873168
+ - 0.887516
+ - -0.287705
+ - - 0.197098
+ - -2.0e-06
+ - -1.441601
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -119.7209001031905
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.368784
+ - 1.0e-06
+ - 0.090617
+ - - 0.074637
+ - 5.0e-06
+ - -0.354072
+ - - 0.713997
+ - -1.096431
+ - 0.134419
+ - - 0.714058
+ - 1.096308
+ - 0.134638
+ - - -1.410552
+ - -0.000108
+ - 1.182795
+ - - -1.877326
+ - -0.889701
+ - -0.288372
+ - - -1.877275
+ - 0.889808
+ - -0.288193
+ - - 0.1936
+ - 0.000111
+ - -1.44592
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -126.61174502690952
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.368374
+ - 2.0e-06
+ - 0.089955
+ - - 0.063413
+ - 6.0e-06
+ - -0.357051
+ - - 0.707477
+ - -1.092002
+ - 0.135469
+ - - 0.707543
+ - 1.09187
+ - 0.135703
+ - - -1.400267
+ - -9.6e-05
+ - 1.178742
+ - - -1.871667
+ - -0.888188
+ - -0.288098
+ - - -1.871623
+ - 0.888286
+ - -0.287936
+ - - 0.195854
+ - 0.000118
+ - -1.440872
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -120.78367923690776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.365581
+ - 1.0e-06
+ - 0.090859
+ - - 0.064258
+ - 6.0e-06
+ - -0.353736
+ - - 0.710388
+ - -1.093813
+ - 0.13357
+ - - 0.710451
+ - 1.093687
+ - 0.133795
+ - - -1.406768
+ - -0.000103
+ - 1.180973
+ - - -1.871676
+ - -0.888081
+ - -0.28924
+ - - -1.871628
+ - 0.888184
+ - -0.289068
+ - - 0.19291
+ - 0.000114
+ - -1.44124
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.51285482882153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.373931
+ - 2.0e-06
+ - 0.092882
+ - - 0.06334
+ - 7.0e-06
+ - -0.361523
+ - - 0.721327
+ - -1.109822
+ - 0.1361
+ - - 0.721401
+ - 1.109674
+ - 0.136364
+ - - -1.41078
+ - -7.8e-05
+ - 1.185462
+ - - -1.88174
+ - -0.890709
+ - -0.287688
+ - - -1.881707
+ - 0.890788
+ - -0.287557
+ - - 0.204445
+ - 0.000133
+ - -1.448126
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,13 +927,121 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -123.17974340903517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.368729578
+ - -2.5279e-06
+ - 0.0906655126
+ - - 0.0615476624
+ - -4.67e-08
+ - -0.3582053592
+ - - 0.7108494679
+ - -1.097844456
+ - 0.1357365464
+ - - 0.7108448039
+ - 1.097846716
+ - 0.1357367363
+ - - -1.4027780207
+ - -0.0002534156
+ - 1.1794014337
+ - - -1.8733092516
+ - -0.8872649702
+ - -0.288115967
+ - - -1.8731676407
+ - 0.8875157757
+ - -0.287705284
+ - - 0.1970979601
+ - -2.2821e-06
+ - -1.4416006473
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -121.13855339853245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.367828
+ - 1.0e-06
+ - 0.092096
+ - - 0.065763
+ - 6.0e-06
+ - -0.354042
+ - - 0.713047
+ - -1.094828
+ - 0.132625
+ - - 0.713109
+ - 1.094703
+ - 0.132847
+ - - -1.410198
+ - -0.000105
+ - 1.181031
+ - - -1.871872
+ - -0.887369
+ - -0.289263
+ - - -1.871824
+ - 0.887474
+ - -0.289089
+ - - 0.192158
+ - 0.000112
+ - -1.440291
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -121.86422318066833
+ value: -121.86422318066826
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/11-Difluoroethene.yml b/input/reference_sets/main/11-Difluoroethene.yml
index 665199402d..661a753586 100644
--- a/input/reference_sets/main/11-Difluoroethene.yml
+++ b/input/reference_sets/main/11-Difluoroethene.yml
@@ -13,7 +13,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -84.06762392693206
+ value: -84.06762392693204
class: ThermoData
xyz_dict:
coords:
@@ -95,6 +95,94 @@ calculated_data:
- F
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -80.30750007006962
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.381924
+ - - 0.0
+ - -0.0
+ - 0.064583
+ - - 1.078863
+ - 0.0
+ - -0.696646
+ - - -1.078863
+ - 0.0
+ - -0.696646
+ - - 0.935583
+ - -0.0
+ - 1.913953
+ - - -0.935583
+ - -0.0
+ - 1.913953
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -79.98418234443646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.38036
+ - - 0.0
+ - -0.0
+ - 0.064802
+ - - 1.080416
+ - 0.0
+ - -0.697979
+ - - -1.080416
+ - 0.0
+ - -0.697979
+ - - 0.935005
+ - -0.0
+ - 1.915958
+ - - -0.935005
+ - -0.0
+ - 1.915958
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- F
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.93024947472892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.384855
+ - - 0.0
+ - -0.0
+ - 0.060798
+ - - 1.087414
+ - 0.0
+ - -0.704683
+ - - -1.087414
+ - 0.0
+ - -0.704683
+ - - 0.938672
+ - -0.0
+ - 1.922417
+ - - -0.938672
+ - -0.0
+ - 1.922417
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.55954077788795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.386426
+ - - 0.0
+ - -0.0
+ - 0.05987
+ - - 1.089354
+ - 0.0
+ - -0.70879
+ - - -1.089354
+ - 0.0
+ - -0.70879
+ - - 0.942568
+ - -0.0
+ - 1.926202
+ - - -0.942568
+ - -0.0
+ - 1.926202
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.1792995826208
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.377143
+ - - 0.0
+ - -0.0
+ - 0.067117
+ - - 1.074846
+ - 0.0
+ - -0.692889
+ - - -1.074846
+ - 0.0
+ - -0.692889
+ - - 0.935262
+ - -0.0
+ - 1.911319
+ - - -0.935262
+ - -0.0
+ - 1.911319
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -85.9233406316046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.381299
+ - - 0.0
+ - 0.0
+ - 0.063804
+ - - 1.08262
+ - 0.0
+ - -0.69926
+ - - -1.08262
+ - 0.0
+ - -0.69926
+ - - 0.936119
+ - -0.0
+ - 1.917269
+ - - -0.936119
+ - -0.0
+ - 1.917269
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.95662110734965
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.380365
+ - - 0.0
+ - 0.0
+ - 0.067673
+ - - 1.077574
+ - 0.0
+ - -0.695083
+ - - -1.077574
+ - 0.0
+ - -0.695083
+ - - 0.937031
+ - 0.0
+ - 1.911624
+ - - -0.937031
+ - -0.0
+ - 1.911624
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -82.33140459887397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.380365
+ - - 0.0
+ - 0.0
+ - 0.067673
+ - - 1.077574
+ - 0.0
+ - -0.695083
+ - - -1.077574
+ - 0.0
+ - -0.695083
+ - - 0.937031
+ - 0.0
+ - 1.911624
+ - - -0.937031
+ - -0.0
+ - 1.911624
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.06515581207695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.380365
+ - - 0.0
+ - 0.0
+ - 0.067673
+ - - 1.077574
+ - 0.0
+ - -0.695083
+ - - -1.077574
+ - 0.0
+ - -0.695083
+ - - 0.937031
+ - 0.0
+ - 1.911624
+ - - -0.937031
+ - -0.0
+ - 1.911624
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.1636603080754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.379451
+ - - 0.0
+ - 0.0
+ - 0.060999
+ - - 1.075321
+ - 0.0
+ - -0.696224
+ - - -1.075321
+ - 0.0
+ - -0.696224
+ - - 0.936146
+ - 0.0
+ - 1.916559
+ - - -0.936146
+ - 0.0
+ - 1.916559
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.40948748515751
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.379468
+ - - 0.0
+ - -0.0
+ - 0.06709
+ - - 1.073315
+ - 0.0
+ - -0.692407
+ - - -1.073315
+ - 0.0
+ - -0.692407
+ - - 0.937473
+ - -0.0
+ - 1.909688
+ - - -0.937473
+ - -0.0
+ - 1.909688
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -82.78354757454063
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.378466
+ - - 0.0
+ - -0.0
+ - 0.063683
+ - - 1.073283
+ - 0.0
+ - -0.693159
+ - - -1.073283
+ - 0.0
+ - -0.693159
+ - - 0.937115
+ - -0.0
+ - 1.912644
+ - - -0.937115
+ - -0.0
+ - 1.912644
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.862586014052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.385651
+ - - 0.0
+ - -0.0
+ - 0.062567
+ - - 1.087198
+ - 0.0
+ - -0.706717
+ - - -1.087198
+ - 0.0
+ - -0.706717
+ - - 0.937959
+ - -0.0
+ - 1.923167
+ - - -0.937959
+ - -0.0
+ - 1.923167
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- F
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.61689326078682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.3803646481
+ - - 0.0
+ - 0.0
+ - 0.067672691
+ - - 1.0775742984
+ - 0.0
+ - -0.6950827568
+ - - -1.0775742984
+ - 5.1e-09
+ - -0.6950827568
+ - - 0.9370307254
+ - 0.0
+ - 1.911624121
+ - - -0.9370307254
+ - -4.47e-08
+ - 1.911624121
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.71347953255385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.377897
+ - - 0.0
+ - -0.0
+ - 0.064307
+ - - 1.073918
+ - 0.0
+ - -0.692636
+ - - -1.073918
+ - 0.0
+ - -0.692636
+ - - 0.936063
+ - -0.0
+ - 1.912094
+ - - -0.936063
+ - -0.0
+ - 1.912094
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 19
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - F
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/11-Dimethoxyethane.yml b/input/reference_sets/main/11-Dimethoxyethane.yml
index 51c5b93170..a512d19870 100644
--- a/input/reference_sets/main/11-Dimethoxyethane.yml
+++ b/input/reference_sets/main/11-Dimethoxyethane.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.72446252004377
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.546296
+ - 1.795531
+ - 0.00988
+ - - 0.006036
+ - 0.402312
+ - 0.23922
+ - - -1.318563
+ - 0.387494
+ - -0.182702
+ - - -1.994386
+ - -0.827757
+ - 0.101589
+ - - 0.724395
+ - -0.570136
+ - -0.505481
+ - - 1.885686
+ - -1.046456
+ - 0.14177
+ - - -0.016797
+ - 2.51929
+ - 0.597353
+ - - 0.453896
+ - 2.042025
+ - -1.046647
+ - - 1.595188
+ - 1.852736
+ - 0.298353
+ - - 0.063133
+ - 0.121215
+ - 1.305587
+ - - -3.031065
+ - -0.684051
+ - -0.191511
+ - - -1.950729
+ - -1.054633
+ - 1.17267
+ - - -1.565748
+ - -1.659268
+ - -0.457958
+ - - 2.29531
+ - -1.836666
+ - -0.482797
+ - - 2.642968
+ - -0.26492
+ - 0.259669
+ - - 1.651032
+ - -1.456992
+ - 1.130437
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -80.51543818353343
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.544756
+ - 1.798867
+ - 0.012613
+ - - 0.006148
+ - 0.402417
+ - 0.239349
+ - - -1.318171
+ - 0.38154
+ - -0.184681
+ - - -2.001776
+ - -0.828266
+ - 0.10144
+ - - 0.730984
+ - -0.569409
+ - -0.502466
+ - - 1.893582
+ - -1.048293
+ - 0.137962
+ - - -0.021012
+ - 2.521896
+ - 0.600209
+ - - 0.455582
+ - 2.048871
+ - -1.044433
+ - - 1.593644
+ - 1.857407
+ - 0.304432
+ - - 0.062504
+ - 0.123198
+ - 1.307377
+ - - -3.035827
+ - -0.68392
+ - -0.205219
+ - - -1.972586
+ - -1.048235
+ - 1.175999
+ - - -1.570391
+ - -1.667872
+ - -0.446731
+ - - 2.294831
+ - -1.846407
+ - -0.484389
+ - - 2.658589
+ - -0.270377
+ - 0.24504
+ - - 1.665795
+ - -1.451695
+ - 1.13293
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -70.74332223838081
+ value: -70.74332223838081
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5398867918
+ - 1.8092169599
+ - 0.0055992131
+ - - 0.000648846
+ - 0.4020675645
+ - 0.2494542911
+ - - -1.3332978263
+ - 0.3870964899
+ - -0.1752623417
+ - - -2.0040329253
+ - -0.8466068126
+ - 0.0928438402
+ - - 0.7301769975
+ - -0.5736492623
+ - -0.5063451035
+ - - 1.9045545268
+ - -1.0425809692
+ - 0.1383697336
+ - - -0.0305407935
+ - 2.5448227514
+ - 0.5884416599
+ - - 0.4473745438
+ - 2.044482337
+ - -1.0625192083
+ - - 1.597667798
+ - 1.8686121876
+ - 0.2951430123
+ - - 0.0679610961
+ - 0.131218367
+ - 1.3295072057
+ - - -3.0439958279
+ - -0.7114917859
+ - -0.2305265712
+ - - -1.9895637652
+ - -1.08419125
+ - 1.1739891111
+ - - -1.5469602103
+ - -1.6812836224
+ - -0.4595323772
+ - - 2.3191400224
+ - -1.837126779
+ - -0.4962281308
+ - - 2.6697839411
+ - -0.2523424477
+ - 0.2566401073
+ - - 1.6877563892
+ - -1.4628580353
+ - 1.1403422838
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.75873740598995
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.542092
+ - 1.812568
+ - 0.008478
+ - - 0.008281
+ - 0.407418
+ - 0.22792
+ - - -1.322251
+ - 0.382832
+ - -0.198085
+ - - -2.003439
+ - -0.832466
+ - 0.10866
+ - - 0.74588
+ - -0.561446
+ - -0.526089
+ - - 1.894807
+ - -1.058063
+ - 0.139205
+ - - -0.02502
+ - 2.532835
+ - 0.606165
+ - - 0.450604
+ - 2.072265
+ - -1.050205
+ - - 1.595539
+ - 1.869713
+ - 0.299496
+ - - 0.068598
+ - 0.119073
+ - 1.298915
+ - - -3.042616
+ - -0.692754
+ - -0.199194
+ - - -1.969929
+ - -1.038157
+ - 1.190977
+ - - -1.569035
+ - -1.681864
+ - -0.431728
+ - - 2.311194
+ - -1.847027
+ - -0.493146
+ - - 2.662632
+ - -0.281434
+ - 0.284044
+ - - 1.639313
+ - -1.48377
+ - 1.124019
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -76.49707317487884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.543635
+ - 1.808671
+ - 0.013855
+ - - 0.0061
+ - 0.403511
+ - 0.233564
+ - - -1.3257
+ - 0.385575
+ - -0.199491
+ - - -2.012519
+ - -0.831454
+ - 0.102402
+ - - 0.740093
+ - -0.572821
+ - -0.520986
+ - - 1.904009
+ - -1.053298
+ - 0.137851
+ - - -0.018683
+ - 2.533603
+ - 0.618707
+ - - 0.44405
+ - 2.072179
+ - -1.048103
+ - - 1.603895
+ - 1.865217
+ - 0.298005
+ - - 0.062831
+ - 0.11029
+ - 1.309755
+ - - -3.053673
+ - -0.687996
+ - -0.212793
+ - - -1.987237
+ - -1.039677
+ - 1.189092
+ - - -1.576279
+ - -1.685074
+ - -0.439269
+ - - 2.309228
+ - -1.863317
+ - -0.482764
+ - - 2.679875
+ - -0.272127
+ - 0.246632
+ - - 1.667026
+ - -1.453559
+ - 1.142976
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.17696382198346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.543692
+ - 1.790546
+ - 0.013458
+ - - 0.007057
+ - 0.398715
+ - 0.241885
+ - - -1.311374
+ - 0.378404
+ - -0.18106
+ - - -1.996747
+ - -0.822928
+ - 0.098967
+ - - 0.727236
+ - -0.569711
+ - -0.492173
+ - - 1.889925
+ - -1.043332
+ - 0.137754
+ - - -0.023297
+ - 2.513395
+ - 0.598262
+ - - 0.452847
+ - 2.036924
+ - -1.043462
+ - - 1.591762
+ - 1.852543
+ - 0.304309
+ - - 0.060944
+ - 0.122127
+ - 1.310063
+ - - -3.030188
+ - -0.675643
+ - -0.20584
+ - - -1.968999
+ - -1.047456
+ - 1.171661
+ - - -1.570137
+ - -1.662023
+ - -0.45215
+ - - 2.289166
+ - -1.842241
+ - -0.483454
+ - - 2.654089
+ - -0.265111
+ - 0.236849
+ - - 1.670677
+ - -1.444485
+ - 1.134363
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.2961139431716
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.540729
+ - 1.811862
+ - 0.009121
+ - - 0.009921
+ - 0.409404
+ - 0.24834
+ - - -1.31916
+ - 0.388343
+ - -0.169394
+ - - -1.998338
+ - -0.830395
+ - 0.104244
+ - - 0.733335
+ - -0.561988
+ - -0.501751
+ - - 1.891802
+ - -1.061403
+ - 0.137673
+ - - -0.032761
+ - 2.538255
+ - 0.588227
+ - - 0.446922
+ - 2.04784
+ - -1.052258
+ - - 1.591528
+ - 1.884679
+ - 0.297928
+ - - 0.07586
+ - 0.133557
+ - 1.318573
+ - - -3.02928
+ - -0.691842
+ - -0.220281
+ - - -1.988307
+ - -1.053826
+ - 1.18059
+ - - -1.550809
+ - -1.666028
+ - -0.439866
+ - - 2.291717
+ - -1.849141
+ - -0.501266
+ - - 2.664664
+ - -0.291643
+ - 0.265446
+ - - 1.658829
+ - -1.487952
+ - 1.124106
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.61784733847445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.55105
+ - 1.786312
+ - 0.012171
+ - - 0.003763
+ - 0.396355
+ - 0.237533
+ - - -1.318112
+ - 0.386342
+ - -0.187061
+ - - -1.994823
+ - -0.823875
+ - 0.100727
+ - - 0.71753
+ - -0.57606
+ - -0.504189
+ - - 1.883495
+ - -1.037132
+ - 0.139432
+ - - -0.011192
+ - 2.510809
+ - 0.599667
+ - - 0.461182
+ - 2.034497
+ - -1.04485
+ - - 1.599854
+ - 1.839095
+ - 0.303705
+ - - 0.055251
+ - 0.112927
+ - 1.304885
+ - - -3.032648
+ - -0.682087
+ - -0.191088
+ - - -1.950723
+ - -1.047907
+ - 1.173139
+ - - -1.569464
+ - -1.659513
+ - -0.456548
+ - - 2.300324
+ - -1.828387
+ - -0.479502
+ - - 2.634775
+ - -0.248062
+ - 0.249166
+ - - 1.656391
+ - -1.443592
+ - 1.132244
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -87.30708305772231
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.55105
+ - 1.786312
+ - 0.012171
+ - - 0.003763
+ - 0.396355
+ - 0.237533
+ - - -1.318112
+ - 0.386342
+ - -0.187061
+ - - -1.994823
+ - -0.823875
+ - 0.100727
+ - - 0.71753
+ - -0.57606
+ - -0.504189
+ - - 1.883495
+ - -1.037132
+ - 0.139432
+ - - -0.011192
+ - 2.510809
+ - 0.599667
+ - - 0.461182
+ - 2.034497
+ - -1.04485
+ - - 1.599854
+ - 1.839095
+ - 0.303705
+ - - 0.055251
+ - 0.112927
+ - 1.304885
+ - - -3.032648
+ - -0.682087
+ - -0.191088
+ - - -1.950723
+ - -1.047907
+ - 1.173139
+ - - -1.569464
+ - -1.659513
+ - -0.456548
+ - - 2.300324
+ - -1.828387
+ - -0.479502
+ - - 2.634775
+ - -0.248062
+ - 0.249166
+ - - 1.656391
+ - -1.443592
+ - 1.132244
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -90.66841848705499
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.55105
+ - 1.786312
+ - 0.012171
+ - - 0.003763
+ - 0.396355
+ - 0.237533
+ - - -1.318112
+ - 0.386342
+ - -0.187061
+ - - -1.994823
+ - -0.823875
+ - 0.100727
+ - - 0.71753
+ - -0.57606
+ - -0.504189
+ - - 1.883495
+ - -1.037132
+ - 0.139432
+ - - -0.011192
+ - 2.510809
+ - 0.599667
+ - - 0.461182
+ - 2.034497
+ - -1.04485
+ - - 1.599854
+ - 1.839095
+ - 0.303705
+ - - 0.055251
+ - 0.112927
+ - 1.304885
+ - - -3.032648
+ - -0.682087
+ - -0.191088
+ - - -1.950723
+ - -1.047907
+ - 1.173139
+ - - -1.569464
+ - -1.659513
+ - -0.456548
+ - - 2.300324
+ - -1.828387
+ - -0.479502
+ - - 2.634775
+ - -0.248062
+ - 0.249166
+ - - 1.656391
+ - -1.443592
+ - 1.132244
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.7760826372801
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5437
+ - 1.803132
+ - 0.016418
+ - - 0.00602
+ - 0.399114
+ - 0.247598
+ - - -1.317515
+ - 0.382814
+ - -0.177375
+ - - -2.001841
+ - -0.825182
+ - 0.101064
+ - - 0.725977
+ - -0.571423
+ - -0.497334
+ - - 1.892869
+ - -1.050759
+ - 0.12913
+ - - -0.030305
+ - 2.528909
+ - 0.598054
+ - - 0.458986
+ - 2.04953
+ - -1.044848
+ - - 1.593437
+ - 1.869645
+ - 0.314599
+ - - 0.067161
+ - 0.124008
+ - 1.320884
+ - - -3.030689
+ - -0.691701
+ - -0.239853
+ - - -2.009083
+ - -1.038811
+ - 1.181304
+ - - -1.550111
+ - -1.673957
+ - -0.423129
+ - - 2.283395
+ - -1.859257
+ - -0.493643
+ - - 2.670811
+ - -0.278197
+ - 0.221623
+ - - 1.68384
+ - -1.448139
+ - 1.13494
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.53766745500472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.554825
+ - 1.780106
+ - 0.011833
+ - - -0.000142
+ - 0.394699
+ - 0.250668
+ - - -1.319863
+ - 0.388321
+ - -0.170265
+ - - -1.994645
+ - -0.822801
+ - 0.09329
+ - - 0.70422
+ - -0.585169
+ - -0.48171
+ - - 1.881418
+ - -1.031901
+ - 0.140806
+ - - -0.012413
+ - 2.513154
+ - 0.58339
+ - - 0.473848
+ - 2.01052
+ - -1.049768
+ - - 1.600788
+ - 1.833667
+ - 0.312099
+ - - 0.051524
+ - 0.121474
+ - 1.320385
+ - - -3.036392
+ - -0.671569
+ - -0.179838
+ - - -1.935184
+ - -1.075257
+ - 1.158507
+ - - -1.576614
+ - -1.643127
+ - -0.491606
+ - - 2.290289
+ - -1.828758
+ - -0.47677
+ - - 2.629397
+ - -0.236675
+ - 0.225786
+ - - 1.675595
+ - -1.426961
+ - 1.142624
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.59135033456803
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.5398867918
- - 1.8092169599
- - 0.0055992131
- - - 0.000648846
- - 0.4020675645
- - 0.2494542911
- - - -1.3332978263
- - 0.3870964899
- - -0.1752623417
- - - -2.0040329253
- - -0.8466068126
- - 0.0928438402
- - - 0.7301769975
- - -0.5736492623
- - -0.5063451035
- - - 1.9045545268
- - -1.0425809692
- - 0.1383697336
- - - -0.0305407935
- - 2.5448227514
- - 0.5884416599
- - - 0.4473745438
- - 2.044482337
- - -1.0625192083
- - - 1.597667798
- - 1.8686121876
- - 0.2951430123
- - - 0.0679610961
- - 0.131218367
- - 1.3295072057
- - - -3.0439958279
- - -0.7114917859
- - -0.2305265712
- - - -1.9895637652
- - -1.08419125
- - 1.1739891111
- - - -1.5469602103
- - -1.6812836224
- - -0.4595323772
- - - 2.3191400224
- - -1.837126779
- - -0.4962281308
- - - 2.6697839411
- - -0.2523424477
- - 0.2566401073
- - - 1.6877563892
- - -1.4628580353
- - 1.1403422838
+ - - 0.545624
+ - 1.783996
+ - 0.016401
+ - - 0.005168
+ - 0.391941
+ - 0.235806
+ - - -1.310804
+ - 0.378135
+ - -0.189327
+ - - -1.993595
+ - -0.819102
+ - 0.09942
+ - - 0.723285
+ - -0.574717
+ - -0.499607
+ - - 1.884414
+ - -1.035585
+ - 0.134418
+ - - -0.019599
+ - 2.506269
+ - 0.607033
+ - - 0.456624
+ - 2.039446
+ - -1.040542
+ - - 1.595374
+ - 1.841299
+ - 0.308887
+ - - 0.057812
+ - 0.110987
+ - 1.306555
+ - - -3.028721
+ - -0.67683
+ - -0.20977
+ - - -1.969927
+ - -1.035799
+ - 1.176273
+ - - -1.565947
+ - -1.666603
+ - -0.442869
+ - - 2.289266
+ - -1.841205
+ - -0.478413
+ - - 2.6495
+ - -0.253813
+ - 0.227374
+ - - 1.668178
+ - -1.428695
+ - 1.137792
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.94764004674211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.543961
+ - 1.809229
+ - 0.013267
+ - - 0.006948
+ - 0.405564
+ - 0.239807
+ - - -1.325456
+ - 0.388652
+ - -0.19221
+ - - -2.008083
+ - -0.835144
+ - 0.102968
+ - - 0.735422
+ - -0.572089
+ - -0.518708
+ - - 1.901499
+ - -1.055404
+ - 0.140293
+ - - -0.015973
+ - 2.53143
+ - 0.614897
+ - - 0.441676
+ - 2.066224
+ - -1.04458
+ - - 1.600327
+ - 1.864395
+ - 0.29402
+ - - 0.065205
+ - 0.112776
+ - 1.307848
+ - - -3.042547
+ - -0.690857
+ - -0.214406
+ - - -1.981418
+ - -1.042585
+ - 1.18367
+ - - -1.563391
+ - -1.675132
+ - -0.44104
+ - - 2.298103
+ - -1.861658
+ - -0.480753
+ - - 2.670173
+ - -0.275182
+ - 0.244669
+ - - 1.660206
+ - -1.450495
+ - 1.139692
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.8761023744375
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5510495073
+ - 1.7863124625
+ - 0.0121709376
+ - - 0.0037626879
+ - 0.3963552566
+ - 0.2375332513
+ - - -1.318112465
+ - 0.3863415364
+ - -0.1870612009
+ - - -1.9948226854
+ - -0.8238745152
+ - 0.1007270033
+ - - 0.7175304092
+ - -0.5760599636
+ - -0.5041887835
+ - - 1.8834948907
+ - -1.0371321651
+ - 0.1394323173
+ - - -0.011191596
+ - 2.5108093861
+ - 0.5996665325
+ - - 0.4611816008
+ - 2.0344967284
+ - -1.044849668
+ - - 1.5998542105
+ - 1.8390948872
+ - 0.3037048387
+ - - 0.0552511421
+ - 0.1129271727
+ - 1.304885288
+ - - -3.0326483455
+ - -0.6820869314
+ - -0.1910875108
+ - - -1.9507232121
+ - -1.0479068936
+ - 1.1731391429
+ - - -1.5694639979
+ - -1.6595129856
+ - -0.4565481423
+ - - 2.30032413
+ - -1.8283865863
+ - -0.4795022396
+ - - 2.6347752829
+ - -0.2480615685
+ - 0.2491661621
+ - - 1.6563908294
+ - -1.443592024
+ - 1.1322444145
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.01969264286603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.544335
+ - 1.795633
+ - 0.00735
+ - - 0.007341
+ - 0.399979
+ - 0.2337
+ - - -1.311067
+ - 0.377601
+ - -0.184479
+ - - -1.987898
+ - -0.823841
+ - 0.103732
+ - - 0.728269
+ - -0.564743
+ - -0.501659
+ - - 1.878189
+ - -1.046086
+ - 0.139578
+ - - -0.022995
+ - 2.517305
+ - 0.59456
+ - - 0.456913
+ - 2.045234
+ - -1.049916
+ - - 1.592725
+ - 1.854208
+ - 0.301426
+ - - 0.065443
+ - 0.125426
+ - 1.304195
+ - - -3.025737
+ - -0.681696
+ - -0.191781
+ - - -1.949674
+ - -1.047621
+ - 1.177812
+ - - -1.563745
+ - -1.664749
+ - -0.449566
+ - - 2.295659
+ - -1.828226
+ - -0.492455
+ - - 2.637143
+ - -0.265652
+ - 0.273774
+ - - 1.64175
+ - -1.47305
+ - 1.123162
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/111-Trichloroethane.yml b/input/reference_sets/main/111-Trichloroethane.yml
index 46b4c13653..b94436d03d 100644
--- a/input/reference_sets/main/111-Trichloroethane.yml
+++ b/input/reference_sets/main/111-Trichloroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.357553915121684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.00218
+ - 0.003052
+ - 1.761859
+ - - -0.000304
+ - 0.000526
+ - 0.249292
+ - - -0.961469
+ - 1.373881
+ - -0.367093
+ - - 1.671692
+ - 0.145328
+ - -0.361747
+ - - -0.708856
+ - -1.520785
+ - -0.361877
+ - - -1.025476
+ - -0.085456
+ - 2.120332
+ - - 0.431634
+ - 0.934014
+ - 2.120445
+ - - 0.585961
+ - -0.837614
+ - 2.123578
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.084038814749242
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.00218
+ - 0.003043
+ - 1.76252
+ - - -0.0003
+ - 0.000473
+ - 0.250216
+ - - -0.964912
+ - 1.379134
+ - -0.369895
+ - - 1.67796
+ - 0.145675
+ - -0.364588
+ - - -0.711676
+ - -1.526383
+ - -0.364778
+ - - -1.025594
+ - -0.085768
+ - 2.122652
+ - - 0.431397
+ - 0.934299
+ - 2.12271
+ - - 0.586308
+ - -0.837526
+ - 2.125952
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,546 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.576346897032142
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.00219
+ - 0.003059
+ - 1.764974
+ - - -0.000343
+ - 0.000532
+ - 0.248626
+ - - -0.969238
+ - 1.385143
+ - -0.372942
+ - - 1.685366
+ - 0.146402
+ - -0.367476
+ - - -0.714734
+ - -1.533149
+ - -0.36767
+ - - -1.029896
+ - -0.086016
+ - 2.125344
+ - - 0.433371
+ - 0.938131
+ - 2.1254
+ - - 0.588667
+ - -0.841155
+ - 2.128532
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.70915959317567
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002185
+ - 0.003051
+ - 1.765119
+ - - -0.000297
+ - 0.000498
+ - 0.248134
+ - - -0.969466
+ - 1.385437
+ - -0.376999
+ - - 1.685716
+ - 0.146488
+ - -0.371644
+ - - -0.714839
+ - -1.533526
+ - -0.371764
+ - - -1.033891
+ - -0.086265
+ - 2.129513
+ - - 0.435102
+ - 0.941719
+ - 2.129612
+ - - 0.590865
+ - -0.844455
+ - 2.132818
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.867125933168065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002182
+ - 0.003047
+ - 1.758698
+ - - -0.00032
+ - 0.000513
+ - 0.249431
+ - - -0.957901
+ - 1.368675
+ - -0.365038
+ - - 1.665387
+ - 0.144833
+ - -0.359684
+ - - -0.706124
+ - -1.515082
+ - -0.359879
+ - - -1.024689
+ - -0.085278
+ - 2.119326
+ - - 0.4314
+ - 0.933254
+ - 2.11939
+ - - 0.585431
+ - -0.837014
+ - 2.122544
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.69063338969663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002293
+ - 0.002991
+ - 1.765673
+ - - -0.000221
+ - 0.000554
+ - 0.249638
+ - - -0.969219
+ - 1.385288
+ - -0.376545
+ - - 1.68562
+ - 0.146597
+ - -0.370954
+ - - -0.714528
+ - -1.533217
+ - -0.371517
+ - - -1.026723
+ - -0.085731
+ - 2.128249
+ - - 0.431841
+ - 0.934983
+ - 2.128589
+ - - 0.586525
+ - -0.838517
+ - 2.131656
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.379974113986737
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001802
+ - 0.003112
+ - 1.760775
+ - - 0.000586
+ - -0.000281
+ - 0.249044
+ - - -0.958323
+ - 1.366928
+ - -0.362864
+ - - 1.664395
+ - 0.145544
+ - -0.360358
+ - - -0.70513
+ - -1.514166
+ - -0.360146
+ - - -1.026294
+ - -0.083913
+ - 2.117
+ - - 0.433096
+ - 0.93464
+ - 2.118133
+ - - 0.584474
+ - -0.838918
+ - 2.123205
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.828712398743136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001802
+ - 0.003112
+ - 1.760775
+ - - 0.000586
+ - -0.000281
+ - 0.249044
+ - - -0.958323
+ - 1.366928
+ - -0.362864
+ - - 1.664395
+ - 0.145544
+ - -0.360358
+ - - -0.70513
+ - -1.514166
+ - -0.360146
+ - - -1.026294
+ - -0.083913
+ - 2.117
+ - - 0.433096
+ - 0.93464
+ - 2.118133
+ - - 0.584474
+ - -0.838918
+ - 2.123205
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.27029292611439
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001802
+ - 0.003112
+ - 1.760775
+ - - 0.000586
+ - -0.000281
+ - 0.249044
+ - - -0.958323
+ - 1.366928
+ - -0.362864
+ - - 1.664395
+ - 0.145544
+ - -0.360358
+ - - -0.70513
+ - -1.514166
+ - -0.360146
+ - - -1.026294
+ - -0.083913
+ - 2.117
+ - - 0.433096
+ - 0.93464
+ - 2.118133
+ - - 0.584474
+ - -0.838918
+ - 2.123205
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.13275937223701
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.00218
+ - 0.003058
+ - 1.766168
+ - - -0.00029
+ - 0.000512
+ - 0.247525
+ - - -0.967599
+ - 1.382723
+ - -0.375477
+ - - 1.682428
+ - 0.14621
+ - -0.37016
+ - - -0.713427
+ - -1.530548
+ - -0.370261
+ - - -1.028403
+ - -0.085765
+ - 2.127851
+ - - 0.432789
+ - 0.936722
+ - 2.127987
+ - - 0.587684
+ - -0.839965
+ - 2.131155
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.581787108490833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002171
+ - 0.003041
+ - 1.757429
+ - - -0.000292
+ - 0.000505
+ - 0.249608
+ - - -0.955966
+ - 1.36606
+ - -0.363255
+ - - 1.662172
+ - 0.144478
+ - -0.357971
+ - - -0.704857
+ - -1.512092
+ - -0.358111
+ - - -1.026987
+ - -0.085623
+ - 2.11789
+ - - 0.43224
+ - 0.935411
+ - 2.118005
+ - - 0.586865
+ - -0.838834
+ - 2.121193
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.659218415295847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002184
+ - 0.003063
+ - 1.767018
+ - - -0.000321
+ - 0.000529
+ - 0.248889
+ - - -0.968065
+ - 1.383424
+ - -0.37433
+ - - 1.683296
+ - 0.146291
+ - -0.368868
+ - - -0.713852
+ - -1.531299
+ - -0.368997
+ - - -1.030266
+ - -0.085995
+ - 2.125909
+ - - 0.433575
+ - 0.93843
+ - 2.126035
+ - - 0.588821
+ - -0.841497
+ - 2.129134
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +873,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.562535783056376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0018016408
+ - 0.0031120136
+ - 1.7607750115
+ - - 0.0005863237
+ - -0.0002813455
+ - 0.2490435918
+ - - -0.958322835
+ - 1.3669281149
+ - -0.3628637533
+ - - 1.6643945978
+ - 0.1455441097
+ - -0.3603579938
+ - - -0.705129658
+ - -1.5141659803
+ - -0.3601458809
+ - - -1.0262940984
+ - -0.0839126266
+ - 2.1169998828
+ - - 0.4330964506
+ - 0.9346400925
+ - 2.1181332629
+ - - 0.584473768
+ - -0.8389176283
+ - 2.1232049117
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.276033046303883
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002181
+ - 0.003051
+ - 1.761608
+ - - -0.000293
+ - 0.000508
+ - 0.248745
+ - - -0.958913
+ - 1.370206
+ - -0.368696
+ - - 1.667225
+ - 0.144983
+ - -0.363423
+ - - -0.706918
+ - -1.516762
+ - -0.363513
+ - - -1.025793
+ - -0.085417
+ - 2.122222
+ - - 0.431813
+ - 0.934271
+ - 2.12234
+ - - 0.586063
+ - -0.837894
+ - 2.125506
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Butadiene.yml b/input/reference_sets/main/12-Butadiene.yml
index 193a5a98de..3b935733ec 100644
--- a/input/reference_sets/main/12-Butadiene.yml
+++ b/input/reference_sets/main/12-Butadiene.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.452657992562386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.933987
+ - -0.215705
+ - -0.000202
+ - - 0.689782
+ - 0.177888
+ - 9.5e-05
+ - - -0.556608
+ - 0.56334
+ - 0.000387
+ - - -1.737895
+ - -0.367893
+ - 3.0e-06
+ - - 2.47071
+ - -0.383607
+ - -0.925945
+ - - 2.470853
+ - -0.38455
+ - 0.925287
+ - - -0.762901
+ - 1.629754
+ - 0.000947
+ - - -1.416652
+ - -1.407573
+ - -0.000543
+ - - -2.362433
+ - -0.19877
+ - 0.879382
+ - - -2.362557
+ - -0.197886
+ - -0.879117
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.22540981273806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.932476
+ - -0.213495
+ - -0.000199
+ - - 0.690819
+ - 0.176755
+ - 9.4e-05
+ - - -0.553257
+ - 0.559196
+ - 0.000384
+ - - -1.738093
+ - -0.368009
+ - 2.0e-06
+ - - 2.472725
+ - -0.381428
+ - -0.925546
+ - - 2.472867
+ - -0.382369
+ - 0.924894
+ - - -0.761392
+ - 1.626592
+ - 0.000943
+ - - -1.422298
+ - -1.410288
+ - -0.000553
+ - - -2.363713
+ - -0.196426
+ - 0.879864
+ - - -2.363848
+ - -0.19553
+ - -0.879589
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.39355168505295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.941497
+ - -0.21452
+ - -0.0002
+ - - 0.694198
+ - 0.178135
+ - 9.5e-05
+ - - -0.556492
+ - 0.561177
+ - 0.000385
+ - - -1.743903
+ - -0.368677
+ - 2.0e-06
+ - - 2.485621
+ - -0.383621
+ - -0.928948
+ - - 2.485762
+ - -0.384567
+ - 0.928293
+ - - -0.768405
+ - 1.63285
+ - 0.000947
+ - - -1.426726
+ - -1.414942
+ - -0.000556
+ - - -2.372566
+ - -0.195869
+ - 0.883207
+ - - -2.3727
+ - -0.194969
+ - -0.882931
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.36195476814647
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.948779
+ - -0.212956
+ - -0.0002
+ - - 0.696611
+ - 0.17341
+ - 9.3e-05
+ - - -0.557462
+ - 0.556914
+ - 0.000385
+ - - -1.749122
+ - -0.368794
+ - 1.0e-06
+ - - 2.495715
+ - -0.380013
+ - -0.932761
+ - - 2.495856
+ - -0.380969
+ - 0.932107
+ - - -0.765265
+ - 1.634312
+ - 0.000953
+ - - -1.437237
+ - -1.421227
+ - -0.000562
+ - - -2.380728
+ - -0.193293
+ - 0.886009
+ - - -2.380862
+ - -0.192385
+ - -0.885731
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.049600585064134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.927648
+ - -0.212543
+ - -0.000201
+ - - 0.688326
+ - 0.173254
+ - 9.3e-05
+ - - -0.551839
+ - 0.555849
+ - 0.000386
+ - - -1.734634
+ - -0.367302
+ - 2.0e-06
+ - - 2.465097
+ - -0.378252
+ - -0.926035
+ - - 2.465241
+ - -0.379202
+ - 0.925379
+ - - -0.754376
+ - 1.623078
+ - 0.00095
+ - - -1.420967
+ - -1.40933
+ - -0.000543
+ - - -2.359046
+ - -0.195719
+ - 0.878925
+ - - -2.359165
+ - -0.194836
+ - -0.878662
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.9531532733596
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.939373
+ - -0.212259
+ - -0.000201
+ - - 0.694123
+ - 0.174378
+ - 9.4e-05
+ - - -0.552564
+ - 0.557583
+ - 0.000386
+ - - -1.74387
+ - -0.368607
+ - 2.0e-06
+ - - 2.481545
+ - -0.379059
+ - -0.926544
+ - - 2.481688
+ - -0.380009
+ - 0.925888
+ - - -0.760101
+ - 1.626836
+ - 0.000951
+ - - -1.432769
+ - -1.414035
+ - -0.000548
+ - - -2.370509
+ - -0.19536
+ - 0.881102
+ - - -2.370631
+ - -0.19447
+ - -0.880837
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.32619242070125
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.928987
+ - -0.215721
+ - 1.5e-05
+ - - 0.687762
+ - 0.176969
+ - -5.1e-05
+ - - -0.554834
+ - 0.563807
+ - -1.1e-05
+ - - -1.735173
+ - -0.368054
+ - -1.2e-05
+ - - 2.462827
+ - -0.382965
+ - -0.927426
+ - - 2.462611
+ - -0.383127
+ - 0.927554
+ - - -0.755113
+ - 1.631435
+ - 0.000167
+ - - -1.411234
+ - -1.407186
+ - -0.001701
+ - - -2.35884
+ - -0.201235
+ - 0.880053
+ - - -2.360708
+ - -0.198924
+ - -0.878295
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.82650329761607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.928987
+ - -0.215721
+ - 1.5e-05
+ - - 0.687762
+ - 0.176969
+ - -5.1e-05
+ - - -0.554834
+ - 0.563807
+ - -1.1e-05
+ - - -1.735173
+ - -0.368054
+ - -1.2e-05
+ - - 2.462827
+ - -0.382965
+ - -0.927426
+ - - 2.462611
+ - -0.383127
+ - 0.927554
+ - - -0.755113
+ - 1.631435
+ - 0.000167
+ - - -1.411234
+ - -1.407186
+ - -0.001701
+ - - -2.35884
+ - -0.201235
+ - 0.880053
+ - - -2.360708
+ - -0.198924
+ - -0.878295
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.307996020197564
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.928987
+ - -0.215721
+ - 1.5e-05
+ - - 0.687762
+ - 0.176969
+ - -5.1e-05
+ - - -0.554834
+ - 0.563807
+ - -1.1e-05
+ - - -1.735173
+ - -0.368054
+ - -1.2e-05
+ - - 2.462827
+ - -0.382965
+ - -0.927426
+ - - 2.462611
+ - -0.383127
+ - 0.927554
+ - - -0.755113
+ - 1.631435
+ - 0.000167
+ - - -1.411234
+ - -1.407186
+ - -0.001701
+ - - -2.35884
+ - -0.201235
+ - 0.880053
+ - - -2.360708
+ - -0.198924
+ - -0.878295
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.84337038732645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.937511
+ - -0.21203
+ - -0.0002
+ - - 0.693722
+ - 0.174031
+ - 9.3e-05
+ - - -0.551652
+ - 0.558132
+ - 0.000386
+ - - -1.742311
+ - -0.367924
+ - 2.0e-06
+ - - 2.482928
+ - -0.380093
+ - -0.925196
+ - - 2.48307
+ - -0.38104
+ - 0.92454
+ - - -0.763372
+ - 1.627247
+ - 0.00095
+ - - -1.430885
+ - -1.414567
+ - -0.000552
+ - - -2.371299
+ - -0.194826
+ - 0.881279
+ - - -2.371426
+ - -0.193932
+ - -0.881009
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.00878008562512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.927687
+ - -0.215787
+ - -0.000202
+ - - 0.687473
+ - 0.17771
+ - 9.4e-05
+ - - -0.555147
+ - 0.563313
+ - 0.000385
+ - - -1.734645
+ - -0.368741
+ - 3.0e-06
+ - - 2.461871
+ - -0.383202
+ - -0.927735
+ - - 2.462013
+ - -0.384156
+ - 0.927076
+ - - -0.757416
+ - 1.630637
+ - 0.000948
+ - - -1.409403
+ - -1.407012
+ - -0.000538
+ - - -2.358011
+ - -0.199321
+ - 0.879759
+ - - -2.358136
+ - -0.198444
+ - -0.879497
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.977475419255896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.931586
+ - -0.212821
+ - -0.000199
+ - - 0.688906
+ - 0.172008
+ - 9.2e-05
+ - - -0.555146
+ - 0.554396
+ - 0.000382
+ - - -1.736123
+ - -0.366955
+ - 2.0e-06
+ - - 2.470961
+ - -0.378276
+ - -0.927764
+ - - 2.471103
+ - -0.379222
+ - 0.927115
+ - - -0.757089
+ - 1.624364
+ - 0.000943
+ - - -1.422794
+ - -1.410893
+ - -0.000555
+ - - -2.362492
+ - -0.19425
+ - 0.880146
+ - - -2.362627
+ - -0.193352
+ - -0.879869
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.92392292695341
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.943563
+ - -0.213688
+ - -0.0002
+ - - 0.694869
+ - 0.175435
+ - 9.4e-05
+ - - -0.555899
+ - 0.559175
+ - 0.000385
+ - - -1.74662
+ - -0.36976
+ - 1.0e-06
+ - - 2.487523
+ - -0.381218
+ - -0.9281
+ - - 2.487663
+ - -0.382166
+ - 0.927447
+ - - -0.766561
+ - 1.630305
+ - 0.000948
+ - - -1.431301
+ - -1.415787
+ - -0.000558
+ - - -2.373408
+ - -0.1941
+ - 0.883228
+ - - -2.373542
+ - -0.193197
+ - -0.882951
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.61083921977386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9289873321
+ - -0.2157214559
+ - 1.47228e-05
+ - - 0.6877616225
+ - 0.1769685994
+ - -5.0732e-05
+ - - -0.5548335315
+ - 0.5638070082
+ - -1.08256e-05
+ - - -1.7351726092
+ - -0.3680537978
+ - -1.18989e-05
+ - - 2.4628273384
+ - -0.3829651635
+ - -0.9274263695
+ - - 2.4626109742
+ - -0.383127446
+ - 0.9275535884
+ - - -0.7551127747
+ - 1.6314353248
+ - 0.0001673451
+ - - -1.4112344234
+ - -1.4071855241
+ - -0.0017006349
+ - - -2.3588399562
+ - -0.2012351578
+ - 0.8800532004
+ - - -2.3607080418
+ - -0.1989241568
+ - -0.8782947267
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.896961046741204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.929256
+ - -0.213862
+ - -0.000199
+ - - 0.688713
+ - 0.175348
+ - 9.5e-05
+ - - -0.553513
+ - 0.558803
+ - 0.000384
+ - - -1.735341
+ - -0.368317
+ - 3.0e-06
+ - - 2.465061
+ - -0.380075
+ - -0.927745
+ - - 2.465206
+ - -0.381018
+ - 0.927095
+ - - -0.756244
+ - 1.626423
+ - 0.000939
+ - - -1.418325
+ - -1.410256
+ - -0.000554
+ - - -2.359196
+ - -0.196475
+ - 0.880119
+ - - -2.359331
+ - -0.195573
+ - -0.879841
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Butanediamine.yml b/input/reference_sets/main/12-Butanediamine.yml
index 9c3edab99a..4ce292caf7 100644
--- a/input/reference_sets/main/12-Butanediamine.yml
+++ b/input/reference_sets/main/12-Butanediamine.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.91187661544638
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.531586
+ - 0.091469
+ - -0.256743
+ - - 1.232082
+ - 0.701063
+ - 0.257156
+ - - -0.027407
+ - -0.031341
+ - -0.215
+ - - -0.110915
+ - -1.437655
+ - 0.192129
+ - - -1.292743
+ - 0.6789
+ - 0.2757
+ - - -2.550691
+ - 0.129682
+ - -0.213922
+ - - 2.666687
+ - -0.928674
+ - 0.104767
+ - - 3.39599
+ - 0.669458
+ - 0.070741
+ - - 2.545197
+ - 0.063951
+ - -1.348442
+ - - 1.169965
+ - 1.744986
+ - -0.064213
+ - - 1.237643
+ - 0.715699
+ - 1.352637
+ - - -0.042297
+ - -0.02463
+ - -1.311204
+ - - 0.047916
+ - -1.519936
+ - 1.191676
+ - - 0.5959
+ - -1.997157
+ - -0.267346
+ - - -1.24395
+ - 1.736239
+ - 0.007824
+ - - -1.304211
+ - 0.636948
+ - 1.370644
+ - - -2.512343
+ - -0.879649
+ - -0.114895
+ - - -2.641949
+ - 0.314539
+ - -1.206476
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.025482554972047
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.536577
+ - 0.095326
+ - -0.25983
+ - - 1.235308
+ - 0.69963
+ - 0.258645
+ - - -0.026794
+ - -0.034066
+ - -0.212044
+ - - -0.11005
+ - -1.44087
+ - 0.196067
+ - - -1.295251
+ - 0.680283
+ - 0.273272
+ - - -2.553381
+ - 0.130364
+ - -0.215447
+ - - 2.671277
+ - -0.929686
+ - 0.091486
+ - - 3.401332
+ - 0.670205
+ - 0.07535
+ - - 2.552886
+ - 0.078213
+ - -1.352725
+ - - 1.170162
+ - 1.745417
+ - -0.058639
+ - - 1.243993
+ - 0.712065
+ - 1.354822
+ - - -0.040028
+ - -0.029775
+ - -1.308825
+ - - 0.040315
+ - -1.527159
+ - 1.196697
+ - - 0.594669
+ - -2.004086
+ - -0.26227
+ - - -1.2443
+ - 1.736954
+ - 0.000378
+ - - -1.30841
+ - 0.645723
+ - 1.369429
+ - - -2.520697
+ - -0.879404
+ - -0.113347
+ - - -2.651147
+ - 0.314757
+ - -1.207988
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -1.3157163262478553
+ value: -1.3157163262478553
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.5529821616
+ - 0.0702340939
+ - -0.240244807
+ - - 1.2454309162
+ - 0.7157582331
+ - 0.245956251
+ - - -0.0266699488
+ - -0.0251458258
+ - -0.2269882758
+ - - -0.1161959738
+ - -1.4392645556
+ - 0.194083718
+ - - -1.3083608397
+ - 0.6972217771
+ - 0.2568374187
+ - - -2.576183342
+ - 0.117844382
+ - -0.2024772004
+ - - 2.6662712187
+ - -0.950196398
+ - 0.1569199728
+ - - 3.4297835967
+ - 0.6497597583
+ - 0.0835494509
+ - - 2.5736377291
+ - 0.008834327
+ - -1.3397965157
+ - - 1.2003239555
+ - 1.761277146
+ - -0.1041173677
+ - - 1.2382156807
+ - 0.7560441514
+ - 1.3499210202
+ - - -0.0373227884
+ - -0.0273892672
+ - -1.3323309361
+ - - 0.0406531268
+ - -1.4822143127
+ - 1.2072812714
+ - - 0.6471578211
+ - -1.9741583133
+ - -0.2272955845
+ - - -1.2667333757
+ - 1.7544733556
+ - -0.0494423865
+ - - -1.307634405
+ - 0.6899100202
+ - 1.3619343738
+ - - -2.5047530947
+ - -0.8926438176
+ - -0.0378126498
+ - - -2.61323799
+ - 0.2078348952
+ - -1.2234197942
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.152025219169843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.542106
+ - 0.093215
+ - -0.260027
+ - - 1.237445
+ - 0.699585
+ - 0.25895
+ - - -0.029828
+ - -0.033884
+ - -0.214455
+ - - -0.117341
+ - -1.447736
+ - 0.189971
+ - - -1.30242
+ - 0.683012
+ - 0.274812
+ - - -2.568639
+ - 0.134495
+ - -0.211704
+ - - 2.677044
+ - -0.935255
+ - 0.09486
+ - - 3.410523
+ - 0.670866
+ - 0.075154
+ - - 2.557431
+ - 0.073413
+ - -1.357146
+ - - 1.173428
+ - 1.750337
+ - -0.057969
+ - - 1.244271
+ - 0.710353
+ - 1.359496
+ - - -0.04347
+ - -0.026976
+ - -1.315792
+ - - 0.040683
+ - -1.525455
+ - 1.194138
+ - - 0.607376
+ - -1.998365
+ - -0.261203
+ - - -1.249432
+ - 1.744076
+ - 0.001367
+ - - -1.313103
+ - 0.646658
+ - 1.375509
+ - - -2.523711
+ - -0.879066
+ - -0.107962
+ - - -2.645902
+ - 0.304618
+ - -1.212967
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.290651410077237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.549744
+ - 0.097723
+ - -0.262467
+ - - 1.241661
+ - 0.698235
+ - 0.260808
+ - - -0.029176
+ - -0.03505
+ - -0.212994
+ - - -0.126982
+ - -1.449359
+ - 0.197002
+ - - -1.305015
+ - 0.687458
+ - 0.269813
+ - - -2.573189
+ - 0.129296
+ - -0.207566
+ - - 2.682754
+ - -0.942317
+ - 0.074135
+ - - 3.421586
+ - 0.667914
+ - 0.090865
+ - - 2.575882
+ - 0.099374
+ - -1.364088
+ - - 1.175167
+ - 1.755763
+ - -0.051019
+ - - 1.250454
+ - 0.706054
+ - 1.366613
+ - - -0.041101
+ - -0.033469
+ - -1.31987
+ - - 0.039352
+ - -1.530345
+ - 1.20581
+ - - 0.587436
+ - -2.016504
+ - -0.263671
+ - - -1.255375
+ - 1.750875
+ - -0.015017
+ - - -1.314573
+ - 0.664867
+ - 1.376303
+ - - -2.516247
+ - -0.890519
+ - -0.107095
+ - - -2.665918
+ - 0.303898
+ - -1.21253
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.928760091172729
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.530577
+ - 0.097942
+ - -0.260266
+ - - 1.232184
+ - 0.696855
+ - 0.25805
+ - - -0.02531
+ - -0.036261
+ - -0.209073
+ - - -0.105816
+ - -1.435256
+ - 0.203328
+ - - -1.289347
+ - 0.67711
+ - 0.271759
+ - - -2.540018
+ - 0.129505
+ - -0.219844
+ - - 2.66965
+ - -0.925919
+ - 0.089621
+ - - 3.393114
+ - 0.67457
+ - 0.074506
+ - - 2.547592
+ - 0.082261
+ - -1.35225
+ - - 1.164759
+ - 1.741655
+ - -0.058465
+ - - 1.242459
+ - 0.709818
+ - 1.353405
+ - - -0.039196
+ - -0.035138
+ - -1.305119
+ - - 0.044769
+ - -1.525729
+ - 1.201833
+ - - 0.580927
+ - -2.010207
+ - -0.263963
+ - - -1.237733
+ - 1.733356
+ - 0.000107
+ - - -1.305162
+ - 0.643235
+ - 1.367086
+ - - -2.516718
+ - -0.878731
+ - -0.118784
+ - - -2.65027
+ - 0.324824
+ - -1.206898
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.44136480182199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.547613
+ - 0.093696
+ - -0.257811
+ - - 1.241702
+ - 0.701921
+ - 0.260791
+ - - -0.029473
+ - -0.028207
+ - -0.213029
+ - - -0.123494
+ - -1.440393
+ - 0.192431
+ - - -1.305815
+ - 0.690069
+ - 0.269591
+ - - -2.56634
+ - 0.121902
+ - -0.205431
+ - - 2.668454
+ - -0.941294
+ - 0.074643
+ - - 3.415727
+ - 0.653648
+ - 0.099262
+ - - 2.577772
+ - 0.098352
+ - -1.352283
+ - - 1.182221
+ - 1.750936
+ - -0.053757
+ - - 1.250698
+ - 0.712416
+ - 1.35899
+ - - -0.04231
+ - -0.022725
+ - -1.311684
+ - - 0.050588
+ - -1.530181
+ - 1.190858
+ - - 0.570558
+ - -2.007907
+ - -0.281103
+ - - -1.263718
+ - 1.745158
+ - -0.01897
+ - - -1.315516
+ - 0.672423
+ - 1.368059
+ - - -2.508566
+ - -0.887511
+ - -0.089795
+ - - -2.653638
+ - 0.281589
+ - -1.20573
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.951564097466224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.526667
+ - 0.091187
+ - -0.257176
+ - - 1.229019
+ - 0.700809
+ - 0.256834
+ - - -0.026883
+ - -0.033396
+ - -0.21455
+ - - -0.104334
+ - -1.436988
+ - 0.196315
+ - - -1.289388
+ - 0.675655
+ - 0.277072
+ - - -2.544589
+ - 0.131127
+ - -0.21897
+ - - 2.667439
+ - -0.925756
+ - 0.113209
+ - - 3.391055
+ - 0.674556
+ - 0.060747
+ - - 2.534517
+ - 0.053666
+ - -1.349233
+ - - 1.163998
+ - 1.744552
+ - -0.065638
+ - - 1.233548
+ - 0.71659
+ - 1.353085
+ - - -0.042641
+ - -0.027952
+ - -1.311592
+ - - 0.053974
+ - -1.517655
+ - 1.196241
+ - - 0.601383
+ - -1.997609
+ - -0.262998
+ - - -1.237509
+ - 1.735204
+ - 0.016266
+ - - -1.300909
+ - 0.628122
+ - 1.372634
+ - - -2.514465
+ - -0.879218
+ - -0.129764
+ - - -2.644419
+ - 0.330999
+ - -1.20745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.88910214693047
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.526667
+ - 0.091187
+ - -0.257176
+ - - 1.229019
+ - 0.700809
+ - 0.256834
+ - - -0.026883
+ - -0.033396
+ - -0.21455
+ - - -0.104334
+ - -1.436988
+ - 0.196315
+ - - -1.289388
+ - 0.675655
+ - 0.277072
+ - - -2.544589
+ - 0.131127
+ - -0.21897
+ - - 2.667439
+ - -0.925756
+ - 0.113209
+ - - 3.391055
+ - 0.674556
+ - 0.060747
+ - - 2.534517
+ - 0.053666
+ - -1.349233
+ - - 1.163998
+ - 1.744552
+ - -0.065638
+ - - 1.233548
+ - 0.71659
+ - 1.353085
+ - - -0.042641
+ - -0.027952
+ - -1.311592
+ - - 0.053974
+ - -1.517655
+ - 1.196241
+ - - 0.601383
+ - -1.997609
+ - -0.262998
+ - - -1.237509
+ - 1.735204
+ - 0.016266
+ - - -1.300909
+ - 0.628122
+ - 1.372634
+ - - -2.514465
+ - -0.879218
+ - -0.129764
+ - - -2.644419
+ - 0.330999
+ - -1.20745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.132763367042923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.526667
+ - 0.091187
+ - -0.257176
+ - - 1.229019
+ - 0.700809
+ - 0.256834
+ - - -0.026883
+ - -0.033396
+ - -0.21455
+ - - -0.104334
+ - -1.436988
+ - 0.196315
+ - - -1.289388
+ - 0.675655
+ - 0.277072
+ - - -2.544589
+ - 0.131127
+ - -0.21897
+ - - 2.667439
+ - -0.925756
+ - 0.113209
+ - - 3.391055
+ - 0.674556
+ - 0.060747
+ - - 2.534517
+ - 0.053666
+ - -1.349233
+ - - 1.163998
+ - 1.744552
+ - -0.065638
+ - - 1.233548
+ - 0.71659
+ - 1.353085
+ - - -0.042641
+ - -0.027952
+ - -1.311592
+ - - 0.053974
+ - -1.517655
+ - 1.196241
+ - - 0.601383
+ - -1.997609
+ - -0.262998
+ - - -1.237509
+ - 1.735204
+ - 0.016266
+ - - -1.300909
+ - 0.628122
+ - 1.372634
+ - - -2.514465
+ - -0.879218
+ - -0.129764
+ - - -2.644419
+ - 0.330999
+ - -1.20745
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.362243895896194
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.544514
+ - 0.093654
+ - -0.261705
+ - - 1.238406
+ - 0.697995
+ - 0.261151
+ - - -0.031324
+ - -0.031651
+ - -0.215256
+ - - -0.127177
+ - -1.443537
+ - 0.188478
+ - - -1.304889
+ - 0.688642
+ - 0.270124
+ - - -2.567953
+ - 0.127994
+ - -0.205808
+ - - 2.668937
+ - -0.943115
+ - 0.06871
+ - - 3.412828
+ - 0.655989
+ - 0.094843
+ - - 2.572739
+ - 0.099254
+ - -1.357468
+ - - 1.177242
+ - 1.749929
+ - -0.047779
+ - - 1.248593
+ - 0.704233
+ - 1.360688
+ - - -0.043031
+ - -0.024958
+ - -1.315649
+ - - 0.035773
+ - -1.523529
+ - 1.190196
+ - - 0.594422
+ - -1.996714
+ - -0.261984
+ - - -1.257194
+ - 1.745888
+ - -0.015121
+ - - -1.313882
+ - 0.667477
+ - 1.370293
+ - - -2.510475
+ - -0.881964
+ - -0.089493
+ - - -2.641069
+ - 0.278304
+ - -1.209187
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.757500539266587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.524503
+ - 0.081669
+ - -0.244922
+ - - 1.22874
+ - 0.709571
+ - 0.251258
+ - - -0.027713
+ - -0.023084
+ - -0.222335
+ - - -0.100046
+ - -1.428541
+ - 0.177844
+ - - -1.291624
+ - 0.676617
+ - 0.280967
+ - - -2.544194
+ - 0.125497
+ - -0.20986
+ - - 2.654385
+ - -0.927626
+ - 0.148501
+ - - 3.391791
+ - 0.665705
+ - 0.062811
+ - - 2.533731
+ - 0.020158
+ - -1.335606
+ - - 1.174595
+ - 1.74968
+ - -0.08297
+ - - 1.223908
+ - 0.735448
+ - 1.34692
+ - - -0.047992
+ - -0.009274
+ - -1.318751
+ - - 0.067331
+ - -1.515475
+ - 1.175999
+ - - 0.601114
+ - -1.986045
+ - -0.293002
+ - - -1.248292
+ - 1.737703
+ - 0.025791
+ - - -1.296505
+ - 0.620572
+ - 1.375894
+ - - -2.506143
+ - -0.884256
+ - -0.112769
+ - - -2.641129
+ - 0.315573
+ - -1.200738
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.418793036791715
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.5529821616
- - 0.0702340939
- - -0.240244807
- - - 1.2454309162
- - 0.7157582331
- - 0.245956251
- - - -0.0266699488
- - -0.0251458258
- - -0.2269882758
- - - -0.1161959738
- - -1.4392645556
- - 0.194083718
- - - -1.3083608397
- - 0.6972217771
- - 0.2568374187
- - - -2.576183342
- - 0.117844382
- - -0.2024772004
- - - 2.6662712187
- - -0.950196398
- - 0.1569199728
- - - 3.4297835967
- - 0.6497597583
- - 0.0835494509
- - - 2.5736377291
- - 0.008834327
- - -1.3397965157
- - - 1.2003239555
- - 1.761277146
- - -0.1041173677
- - - 1.2382156807
- - 0.7560441514
- - 1.3499210202
- - - -0.0373227884
- - -0.0273892672
- - -1.3323309361
- - - 0.0406531268
- - -1.4822143127
- - 1.2072812714
- - - 0.6471578211
- - -1.9741583133
- - -0.2272955845
- - - -1.2667333757
- - 1.7544733556
- - -0.0494423865
- - - -1.307634405
- - 0.6899100202
- - 1.3619343738
- - - -2.5047530947
- - -0.8926438176
- - -0.0378126498
- - - -2.61323799
- - 0.2078348952
- - -1.2234197942
+ - - 2.526992
+ - 0.094719
+ - -0.257705
+ - - 1.230022
+ - 0.695105
+ - 0.25696
+ - - -0.027383
+ - -0.035218
+ - -0.212441
+ - - -0.114496
+ - -1.43373
+ - 0.192558
+ - - -1.290575
+ - 0.678607
+ - 0.269933
+ - - -2.542169
+ - 0.127201
+ - -0.209162
+ - - 2.661422
+ - -0.933338
+ - 0.088883
+ - - 3.39278
+ - 0.666396
+ - 0.083551
+ - - 2.549447
+ - 0.082913
+ - -1.351593
+ - - 1.16438
+ - 1.742947
+ - -0.05839
+ - - 1.236975
+ - 0.708107
+ - 1.354736
+ - - -0.040996
+ - -0.028612
+ - -1.311338
+ - - 0.039336
+ - -1.518754
+ - 1.192196
+ - - 0.589704
+ - -1.997052
+ - -0.265432
+ - - -1.23942
+ - 1.736209
+ - -0.00603
+ - - -1.29886
+ - 0.651536
+ - 1.368281
+ - - -2.498633
+ - -0.88211
+ - -0.108823
+ - - -2.642064
+ - 0.308964
+ - -1.201152
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.3712260308205746
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.547796
+ - 0.095016
+ - -0.263621
+ - - 1.242259
+ - 0.701
+ - 0.262794
+ - - -0.028814
+ - -0.029019
+ - -0.214612
+ - - -0.128588
+ - -1.44478
+ - 0.19799
+ - - -1.303353
+ - 0.690867
+ - 0.271642
+ - - -2.569495
+ - 0.124168
+ - -0.208016
+ - - 2.670682
+ - -0.942682
+ - 0.067848
+ - - 3.417035
+ - 0.657966
+ - 0.092779
+ - - 2.571305
+ - 0.102829
+ - -1.360233
+ - - 1.179759
+ - 1.753452
+ - -0.048272
+ - - 1.252393
+ - 0.703727
+ - 1.362954
+ - - -0.040142
+ - -0.030665
+ - -1.31493
+ - - 0.042454
+ - -1.524095
+ - 1.202411
+ - - 0.582913
+ - -2.009391
+ - -0.263056
+ - - -1.261043
+ - 1.747854
+ - -0.016395
+ - - -1.316492
+ - 0.664499
+ - 1.371584
+ - - -2.505786
+ - -0.891354
+ - -0.104948
+ - - -2.656421
+ - 0.294501
+ - -1.210886
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.613935633200967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.5266670935
+ - 0.0911867798
+ - -0.2571760157
+ - - 1.2290188361
+ - 0.7008088944
+ - 0.2568337534
+ - - -0.0268832674
+ - -0.0333961184
+ - -0.2145503771
+ - - -0.1043336811
+ - -1.4369876263
+ - 0.1963151915
+ - - -1.2893878307
+ - 0.675654575
+ - 0.277072337
+ - - -2.5445888777
+ - 0.1311273046
+ - -0.2189702849
+ - - 2.6674386515
+ - -0.9257558844
+ - 0.1132085158
+ - - 3.3910545638
+ - 0.6745558047
+ - 0.0607470018
+ - - 2.5345167481
+ - 0.0536660997
+ - -1.3492329345
+ - - 1.1639976056
+ - 1.7445518698
+ - -0.0656377461
+ - - 1.2335484295
+ - 0.7165898997
+ - 1.3530847653
+ - - -0.0426414659
+ - -0.0279521006
+ - -1.3115920324
+ - - 0.053973873
+ - -1.5176550662
+ - 1.1962413216
+ - - 0.6013828594
+ - -1.9976092292
+ - -0.2629980129
+ - - -1.237508801
+ - 1.7352038326
+ - 0.0162663888
+ - - -1.3009089594
+ - 0.6281217962
+ - 1.3726342769
+ - - -2.5144654433
+ - -0.8792184769
+ - -0.1297637412
+ - - -2.6444191393
+ - 0.3309989221
+ - -1.2074503352
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.1247875064773
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.530189
+ - 0.090898
+ - -0.251313
+ - - 1.230734
+ - 0.701401
+ - 0.255195
+ - - -0.027777
+ - -0.03307
+ - -0.215299
+ - - -0.104652
+ - -1.435721
+ - 0.186212
+ - - -1.29313
+ - 0.677838
+ - 0.275318
+ - - -2.54678
+ - 0.132117
+ - -0.212583
+ - - 2.66655
+ - -0.926649
+ - 0.120631
+ - - 3.393243
+ - 0.67412
+ - 0.072438
+ - - 2.544958
+ - 0.052736
+ - -1.343574
+ - - 1.168943
+ - 1.74426
+ - -0.070708
+ - - 1.234454
+ - 0.721794
+ - 1.351317
+ - - -0.044132
+ - -0.022253
+ - -1.312104
+ - - 0.058548
+ - -1.526226
+ - 1.182519
+ - - 0.590451
+ - -1.99701
+ - -0.285045
+ - - -1.241463
+ - 1.736068
+ - 0.007625
+ - - -1.303539
+ - 0.638851
+ - 1.371438
+ - - -2.520465
+ - -0.875191
+ - -0.102374
+ - - -2.63967
+ - 0.309928
+ - -1.204662
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Diaminopropane.yml b/input/reference_sets/main/12-Diaminopropane.yml
index 31d7fdd451..88b49b8384 100644
--- a/input/reference_sets/main/12-Diaminopropane.yml
+++ b/input/reference_sets/main/12-Diaminopropane.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.008539024035182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.759616
+ - -0.712481
+ - 0.004424
+ - - -0.475124
+ - 0.033201
+ - -0.321813
+ - - -0.528588
+ - 1.381674
+ - 0.236602
+ - - 0.737381
+ - -0.674571
+ - 0.268525
+ - - 1.968323
+ - 0.027168
+ - -0.105695
+ - - -1.891173
+ - -0.777252
+ - 1.085294
+ - - -1.746582
+ - -1.720949
+ - -0.412421
+ - - -2.625408
+ - -0.191455
+ - -0.407265
+ - - -0.347603
+ - 0.037612
+ - -1.417803
+ - - -1.210911
+ - 1.948377
+ - -0.251989
+ - - 0.380995
+ - 1.815645
+ - 0.122246
+ - - 0.649788
+ - -0.644314
+ - 1.356397
+ - - 0.723003
+ - -1.727374
+ - -0.040436
+ - - 2.206165
+ - -0.166408
+ - -1.071368
+ - - 2.747751
+ - -0.282316
+ - 0.459914
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.255180257513501
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.762998
+ - -0.713004
+ - 0.005391
+ - - -0.476626
+ - 0.033743
+ - -0.319969
+ - - -0.529047
+ - 1.384962
+ - 0.233562
+ - - 0.73963
+ - -0.675837
+ - 0.267745
+ - - 1.972364
+ - 0.023425
+ - -0.105644
+ - - -1.899679
+ - -0.774886
+ - 1.086743
+ - - -1.747232
+ - -1.723774
+ - -0.408094
+ - - -2.628733
+ - -0.194388
+ - -0.411806
+ - - -0.350317
+ - 0.035766
+ - -1.417556
+ - - -1.211933
+ - 1.953333
+ - -0.252628
+ - - 0.381569
+ - 1.81891
+ - 0.125086
+ - - 0.654165
+ - -0.649384
+ - 1.356676
+ - - 0.72243
+ - -1.729403
+ - -0.042889
+ - - 2.211576
+ - -0.161653
+ - -1.073041
+ - - 2.753233
+ - -0.281254
+ - 0.461035
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -1.6456109854772283
+ value: -1.6456109854772283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7718311834
+ - -0.7157282944
+ - -0.0007054003
+ - - -0.4754354227
+ - 0.0398301829
+ - -0.3239149644
+ - - -0.5344718694
+ - 1.392002182
+ - 0.250762668
+ - - 0.7453945271
+ - -0.681217185
+ - 0.2725593768
+ - - 1.9834259672
+ - 0.0282238869
+ - -0.1054408957
+ - - -1.9049421603
+ - -0.7813080246
+ - 1.0890348497
+ - - -1.7526050621
+ - -1.732609181
+ - -0.4219800225
+ - - -2.6436579951
+ - -0.189848636
+ - -0.419137485
+ - - -0.3437163869
+ - 0.0362333025
+ - -1.4316396654
+ - - -1.1942639147
+ - 1.9609693578
+ - -0.2857413982
+ - - 0.3920569913
+ - 1.8132207364
+ - 0.1314095019
+ - - 0.6540532498
+ - -0.6453647567
+ - 1.3691063551
+ - - 0.717358827
+ - -1.7470504531
+ - -0.034166769
+ - - 2.1663642185
+ - -0.1387961516
+ - -1.0992002007
+ - - 2.7779060217
+ - -0.374336897
+ - 0.3974283552
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.201031946738263
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.766705
+ - -0.716199
+ - 0.004482
+ - - -0.478038
+ - 0.03727
+ - -0.317342
+ - - -0.535746
+ - 1.391726
+ - 0.243316
+ - - 0.742995
+ - -0.673272
+ - 0.272239
+ - - 1.979145
+ - 0.030996
+ - -0.103586
+ - - -1.906786
+ - -0.778622
+ - 1.08957
+ - - -1.744838
+ - -1.730738
+ - -0.410801
+ - - -2.635876
+ - -0.198355
+ - -0.417562
+ - - -0.34875
+ - 0.040319
+ - -1.420079
+ - - -1.209294
+ - 1.959116
+ - -0.26471
+ - - 0.380733
+ - 1.821579
+ - 0.128204
+ - - 0.658374
+ - -0.64492
+ - 1.365726
+ - - 0.723611
+ - -1.732205
+ - -0.038484
+ - - 2.20674
+ - -0.15884
+ - -1.076933
+ - - 2.762838
+ - -0.301298
+ - 0.450572
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.507581399428963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.773587
+ - -0.717581
+ - 0.008887
+ - - -0.484118
+ - 0.034432
+ - -0.321567
+ - - -0.530265
+ - 1.389973
+ - 0.243632
+ - - 0.742466
+ - -0.677372
+ - 0.262217
+ - - 1.976236
+ - 0.040015
+ - -0.105433
+ - - -1.91227
+ - -0.774563
+ - 1.099369
+ - - -1.756102
+ - -1.738897
+ - -0.402599
+ - - -2.648826
+ - -0.200926
+ - -0.413951
+ - - -0.360923
+ - 0.037274
+ - -1.430235
+ - - -1.197638
+ - 1.972557
+ - -0.267148
+ - - 0.399267
+ - 1.808659
+ - 0.130567
+ - - 0.655899
+ - -0.657931
+ - 1.361042
+ - - 0.729087
+ - -1.738901
+ - -0.057032
+ - - 2.229222
+ - -0.162634
+ - -1.075911
+ - - 2.759953
+ - -0.26755
+ - 0.472772
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.55930863888191
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.757728
+ - -0.710615
+ - 0.005351
+ - - -0.475552
+ - 0.032825
+ - -0.321092
+ - - -0.52591
+ - 1.378816
+ - 0.228515
+ - - 0.736779
+ - -0.674852
+ - 0.263629
+ - - 1.966139
+ - 0.016707
+ - -0.10972
+ - - -1.890876
+ - -0.774802
+ - 1.086197
+ - - -1.746383
+ - -1.719666
+ - -0.41016
+ - - -2.623638
+ - -0.189959
+ - -0.406577
+ - - -0.350534
+ - 0.03586
+ - -1.417372
+ - - -1.215019
+ - 1.948313
+ - -0.244007
+ - - 0.382101
+ - 1.815675
+ - 0.124975
+ - - 0.65047
+ - -0.647129
+ - 1.351714
+ - - 0.719131
+ - -1.727811
+ - -0.045026
+ - - 2.215522
+ - -0.172365
+ - -1.071907
+ - - 2.743901
+ - -0.264441
+ - 0.470092
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.16971200059028
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.773094
+ - -0.716172
+ - 0.00895
+ - - -0.482497
+ - 0.033038
+ - -0.321338
+ - - -0.529224
+ - 1.38446
+ - 0.242593
+ - - 0.743385
+ - -0.678191
+ - 0.260812
+ - - 1.972549
+ - 0.040073
+ - -0.107073
+ - - -1.912458
+ - -0.767178
+ - 1.092177
+ - - -1.758988
+ - -1.732575
+ - -0.396475
+ - - -2.640302
+ - -0.200655
+ - -0.414146
+ - - -0.362302
+ - 0.036339
+ - -1.421986
+ - - -1.187742
+ - 1.962547
+ - -0.269972
+ - - 0.393637
+ - 1.798691
+ - 0.137713
+ - - 0.656111
+ - -0.658112
+ - 1.351503
+ - - 0.734806
+ - -1.732171
+ - -0.056723
+ - - 2.223822
+ - -0.161897
+ - -1.070203
+ - - 2.750697
+ - -0.26164
+ - 0.468777
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.5063194059241365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.755494
+ - -0.712116
+ - 0.002947
+ - - -0.473515
+ - 0.035425
+ - -0.322733
+ - - -0.528885
+ - 1.382307
+ - 0.235787
+ - - 0.735882
+ - -0.674024
+ - 0.267837
+ - - 1.968423
+ - 0.018862
+ - -0.109931
+ - - -1.88341
+ - -0.780469
+ - 1.084808
+ - - -1.74079
+ - -1.719534
+ - -0.417113
+ - - -2.623291
+ - -0.190757
+ - -0.404643
+ - - -0.344081
+ - 0.0433
+ - -1.418616
+ - - -1.221494
+ - 1.946209
+ - -0.240613
+ - - 0.374826
+ - 1.826887
+ - 0.117573
+ - - 0.645909
+ - -0.639132
+ - 1.356157
+ - - 0.716341
+ - -1.728068
+ - -0.037335
+ - - 2.211671
+ - -0.182877
+ - -1.072413
+ - - 2.746308
+ - -0.279457
+ - 0.462898
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.26608762578536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.755494
+ - -0.712116
+ - 0.002947
+ - - -0.473515
+ - 0.035425
+ - -0.322733
+ - - -0.528885
+ - 1.382307
+ - 0.235787
+ - - 0.735882
+ - -0.674024
+ - 0.267837
+ - - 1.968423
+ - 0.018862
+ - -0.109931
+ - - -1.88341
+ - -0.780469
+ - 1.084808
+ - - -1.74079
+ - -1.719534
+ - -0.417113
+ - - -2.623291
+ - -0.190757
+ - -0.404643
+ - - -0.344081
+ - 0.0433
+ - -1.418616
+ - - -1.221494
+ - 1.946209
+ - -0.240613
+ - - 0.374826
+ - 1.826887
+ - 0.117573
+ - - 0.645909
+ - -0.639132
+ - 1.356157
+ - - 0.716341
+ - -1.728068
+ - -0.037335
+ - - 2.211671
+ - -0.182877
+ - -1.072413
+ - - 2.746308
+ - -0.279457
+ - 0.462898
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.02658429366189
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.755494
+ - -0.712116
+ - 0.002947
+ - - -0.473515
+ - 0.035425
+ - -0.322733
+ - - -0.528885
+ - 1.382307
+ - 0.235787
+ - - 0.735882
+ - -0.674024
+ - 0.267837
+ - - 1.968423
+ - 0.018862
+ - -0.109931
+ - - -1.88341
+ - -0.780469
+ - 1.084808
+ - - -1.74079
+ - -1.719534
+ - -0.417113
+ - - -2.623291
+ - -0.190757
+ - -0.404643
+ - - -0.344081
+ - 0.0433
+ - -1.418616
+ - - -1.221494
+ - 1.946209
+ - -0.240613
+ - - 0.374826
+ - 1.826887
+ - 0.117573
+ - - 0.645909
+ - -0.639132
+ - 1.356157
+ - - 0.716341
+ - -1.728068
+ - -0.037335
+ - - 2.211671
+ - -0.182877
+ - -1.072413
+ - - 2.746308
+ - -0.279457
+ - 0.462898
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.540684352950478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.768632
+ - -0.716721
+ - 0.00372
+ - - -0.478264
+ - 0.037636
+ - -0.316551
+ - - -0.535828
+ - 1.388185
+ - 0.246809
+ - - 0.745043
+ - -0.671594
+ - 0.27321
+ - - 1.974525
+ - 0.038063
+ - -0.103473
+ - - -1.914787
+ - -0.777202
+ - 1.086864
+ - - -1.747971
+ - -1.731226
+ - -0.408533
+ - - -2.636767
+ - -0.201431
+ - -0.420948
+ - - -0.349211
+ - 0.039763
+ - -1.417607
+ - - -1.194359
+ - 1.95946
+ - -0.273611
+ - - 0.383235
+ - 1.809279
+ - 0.137063
+ - - 0.662563
+ - -0.642527
+ - 1.365817
+ - - 0.730365
+ - -1.730406
+ - -0.033432
+ - - 2.198921
+ - -0.152019
+ - -1.07608
+ - - 2.759567
+ - -0.302704
+ - 0.441363
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.722656526364373
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.7718311834
- - -0.7157282944
- - -0.0007054003
- - - -0.4754354227
- - 0.0398301829
- - -0.3239149644
- - - -0.5344718694
- - 1.392002182
- - 0.250762668
- - - 0.7453945271
- - -0.681217185
- - 0.2725593768
- - - 1.9834259672
- - 0.0282238869
- - -0.1054408957
- - - -1.9049421603
- - -0.7813080246
- - 1.0890348497
- - - -1.7526050621
- - -1.732609181
- - -0.4219800225
- - - -2.6436579951
- - -0.189848636
- - -0.419137485
- - - -0.3437163869
- - 0.0362333025
- - -1.4316396654
- - - -1.1942639147
- - 1.9609693578
- - -0.2857413982
- - - 0.3920569913
- - 1.8132207364
- - 0.1314095019
- - - 0.6540532498
- - -0.6453647567
- - 1.3691063551
- - - 0.717358827
- - -1.7470504531
- - -0.034166769
- - - 2.1663642185
- - -0.1387961516
- - -1.0992002007
- - - 2.7779060217
- - -0.374336897
- - 0.3974283552
+ - - -1.75634
+ - -0.711712
+ - 0.002147
+ - - -0.472852
+ - 0.032309
+ - -0.325539
+ - - -0.52634
+ - 1.377165
+ - 0.233574
+ - - 0.735723
+ - -0.676159
+ - 0.269331
+ - - 1.964064
+ - 0.022452
+ - -0.104873
+ - - -1.881179
+ - -0.773374
+ - 1.084515
+ - - -1.744687
+ - -1.72072
+ - -0.413413
+ - - -2.622142
+ - -0.188
+ - -0.406284
+ - - -0.341443
+ - 0.037746
+ - -1.420605
+ - - -1.21632
+ - 1.944086
+ - -0.243438
+ - - 0.380961
+ - 1.816879
+ - 0.121992
+ - - 0.64192
+ - -0.63923
+ - 1.35712
+ - - 0.72072
+ - -1.730106
+ - -0.03563
+ - - 2.199358
+ - -0.163162
+ - -1.072697
+ - - 2.746958
+ - -0.281617
+ - 0.458412
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.748558281575093
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.756104
+ - -0.711611
+ - 0.006968
+ - - -0.477325
+ - 0.03519
+ - -0.320067
+ - - -0.525437
+ - 1.377156
+ - 0.233891
+ - - 0.73645
+ - -0.671859
+ - 0.262238
+ - - 1.96003
+ - 0.028672
+ - -0.103792
+ - - -1.891389
+ - -0.770414
+ - 1.089906
+ - - -1.739418
+ - -1.724732
+ - -0.403517
+ - - -2.625661
+ - -0.196931
+ - -0.409848
+ - - -0.352935
+ - 0.036433
+ - -1.419808
+ - - -1.198202
+ - 1.95121
+ - -0.258155
+ - - 0.390007
+ - 1.801506
+ - 0.128336
+ - - 0.645955
+ - -0.649202
+ - 1.352746
+ - - 0.719494
+ - -1.72663
+ - -0.050128
+ - - 2.203979
+ - -0.157477
+ - -1.06892
+ - - 2.738957
+ - -0.274754
+ - 0.464759
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6010751100032404
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.775177
+ - -0.717753
+ - 0.008038
+ - - -0.483403
+ - 0.029968
+ - -0.324326
+ - - -0.528385
+ - 1.386065
+ - 0.244774
+ - - 0.739803
+ - -0.679669
+ - 0.265658
+ - - 1.971888
+ - 0.044211
+ - -0.105073
+ - - -1.910892
+ - -0.772861
+ - 1.093619
+ - - -1.7585
+ - -1.734646
+ - -0.401614
+ - - -2.643672
+ - -0.199382
+ - -0.414123
+ - - -0.360178
+ - 0.036801
+ - -1.425992
+ - - -1.189183
+ - 1.96815
+ - -0.268771
+ - - 0.399386
+ - 1.800265
+ - 0.133097
+ - - 0.656674
+ - -0.654487
+ - 1.358367
+ - - 0.735429
+ - -1.735528
+ - -0.05182
+ - - 2.219694
+ - -0.157127
+ - -1.073666
+ - - 2.754916
+ - -0.26745
+ - 0.466442
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.38699921364844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7554942626
+ - -0.7121159322
+ - 0.0029469221
+ - - -0.4735146472
+ - 0.0354249931
+ - -0.3227332726
+ - - -0.528884957
+ - 1.3823072001
+ - 0.2357865975
+ - - 0.7358824406
+ - -0.674023568
+ - 0.2678371726
+ - - 1.9684234785
+ - 0.0188621471
+ - -0.1099307163
+ - - -1.8834097277
+ - -0.7804687339
+ - 1.0848081683
+ - - -1.7407898838
+ - -1.7195340507
+ - -0.4171134453
+ - - -2.6232910702
+ - -0.1907572704
+ - -0.4046425569
+ - - -0.344081471
+ - 0.0433000438
+ - -1.4186156688
+ - - -1.2214941247
+ - 1.9462093823
+ - -0.2406129291
+ - - 0.3748256072
+ - 1.8268870093
+ - 0.1175731275
+ - - 0.6459091022
+ - -0.6391316285
+ - 1.3561570875
+ - - 0.7163413834
+ - -1.7280683945
+ - -0.037334742
+ - - 2.2116709215
+ - -0.1828772901
+ - -1.0724133984
+ - - 2.746308428
+ - -0.279457455
+ - 0.4628982559
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.216031208488342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.757883
+ - -0.71241
+ - 0.00517
+ - - -0.475385
+ - 0.036184
+ - -0.319374
+ - - -0.529617
+ - 1.38246
+ - 0.23174
+ - - 0.738707
+ - -0.672572
+ - 0.267772
+ - - 1.967688
+ - 0.020237
+ - -0.105293
+ - - -1.891752
+ - -0.776919
+ - 1.086871
+ - - -1.740828
+ - -1.722068
+ - -0.410831
+ - - -2.624748
+ - -0.193816
+ - -0.409291
+ - - -0.348881
+ - 0.038902
+ - -1.416324
+ - - -1.209619
+ - 1.949545
+ - -0.255904
+ - - 0.380001
+ - 1.815966
+ - 0.127517
+ - - 0.65048
+ - -0.644933
+ - 1.356846
+ - - 0.719956
+ - -1.726515
+ - -0.041521
+ - - 2.203181
+ - -0.162387
+ - -1.071827
+ - - 2.747102
+ - -0.285117
+ - 0.459058
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Dichloroethane.yml b/input/reference_sets/main/12-Dichloroethane.yml
index 77885e1dee..23786e5756 100644
--- a/input/reference_sets/main/12-Dichloroethane.yml
+++ b/input/reference_sets/main/12-Dichloroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.758960530141174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.487018
+ - -0.577037
+ - 5.1e-05
+ - - -2.162482
+ - 0.069923
+ - 5.1e-05
+ - - 0.487018
+ - 0.577037
+ - 5.1e-05
+ - - 2.162482
+ - -0.069923
+ - 5.1e-05
+ - - -0.375004
+ - -1.191489
+ - 0.888116
+ - - -0.375004
+ - -1.191489
+ - -0.888014
+ - - 0.375004
+ - 1.191489
+ - -0.888014
+ - - 0.375004
+ - 1.191489
+ - 0.888116
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.620081395453344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.486391
+ - -0.57753
+ - 5.1e-05
+ - - -2.171035
+ - 0.068722
+ - 5.6e-05
+ - - 0.486391
+ - 0.57753
+ - 5.1e-05
+ - - 2.171035
+ - -0.068722
+ - 5.6e-05
+ - - -0.376926
+ - -1.192552
+ - 0.888632
+ - - -0.376931
+ - -1.192548
+ - -0.888535
+ - - 0.376931
+ - 1.192548
+ - -0.888535
+ - - 0.376926
+ - 1.192552
+ - 0.888632
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.159200144080753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4872
+ - -0.579823
+ - 5.0e-05
+ - - -2.176163
+ - 0.069514
+ - 5.8e-05
+ - - 0.4872
+ - 0.579823
+ - 5.0e-05
+ - - 2.176163
+ - -0.069514
+ - 5.8e-05
+ - - -0.378003
+ - -1.196914
+ - 0.892959
+ - - -0.37801
+ - -1.196909
+ - -0.892863
+ - - 0.37801
+ - 1.196909
+ - -0.892863
+ - - 0.378003
+ - 1.196914
+ - 0.892959
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.693820310449908
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.487981
+ - -0.580092
+ - 5.0e-05
+ - - -2.177531
+ - 0.069866
+ - 6.0e-05
+ - - 0.487981
+ - 0.580092
+ - 5.0e-05
+ - - 2.177531
+ - -0.069866
+ - 6.0e-05
+ - - -0.37891
+ - -1.201124
+ - 0.896511
+ - - -0.378919
+ - -1.201118
+ - -0.896416
+ - - 0.378919
+ - 1.201118
+ - -0.896416
+ - - 0.37891
+ - 1.201124
+ - 0.896511
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.79318282987176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.489022
+ - -0.573653
+ - 5.1e-05
+ - - -2.158188
+ - 0.067685
+ - 5.0e-05
+ - - 0.489022
+ - 0.573653
+ - 5.1e-05
+ - - 2.158188
+ - -0.067685
+ - 5.0e-05
+ - - -0.375264
+ - -1.190021
+ - 0.886636
+ - - -0.375263
+ - -1.190022
+ - -0.886532
+ - - 0.375263
+ - 1.190022
+ - -0.886532
+ - - 0.375264
+ - 1.190021
+ - 0.886636
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.7287757648725
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.486947
+ - -0.580151
+ - 5.1e-05
+ - - -2.183467
+ - 0.065283
+ - 5.2e-05
+ - - 0.486947
+ - 0.580151
+ - 5.1e-05
+ - - 2.183467
+ - -0.065283
+ - 5.2e-05
+ - - -0.381655
+ - -1.195251
+ - 0.890639
+ - - -0.381656
+ - -1.195251
+ - -0.890537
+ - - 0.381656
+ - 1.195251
+ - -0.890537
+ - - 0.381655
+ - 1.195251
+ - 0.890639
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.93167407577565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.488852
+ - -0.575709
+ - 6.1e-05
+ - - -2.155652
+ - 0.070374
+ - -3.2e-05
+ - - 0.488852
+ - 0.575709
+ - 6.1e-05
+ - - 2.155652
+ - -0.070374
+ - -3.2e-05
+ - - -0.373689
+ - -1.191363
+ - 0.88742
+ - - -0.373609
+ - -1.191424
+ - -0.887245
+ - - 0.373609
+ - 1.191424
+ - -0.887245
+ - - 0.373689
+ - 1.191363
+ - 0.88742
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.612240611001827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.488852
+ - -0.575709
+ - 6.1e-05
+ - - -2.155652
+ - 0.070374
+ - -3.2e-05
+ - - 0.488852
+ - 0.575709
+ - 6.1e-05
+ - - 2.155652
+ - -0.070374
+ - -3.2e-05
+ - - -0.373689
+ - -1.191363
+ - 0.88742
+ - - -0.373609
+ - -1.191424
+ - -0.887245
+ - - 0.373609
+ - 1.191424
+ - -0.887245
+ - - 0.373689
+ - 1.191363
+ - 0.88742
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.75529799461296
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.488852
+ - -0.575709
+ - 6.1e-05
+ - - -2.155652
+ - 0.070374
+ - -3.2e-05
+ - - 0.488852
+ - 0.575709
+ - 6.1e-05
+ - - 2.155652
+ - -0.070374
+ - -3.2e-05
+ - - -0.373689
+ - -1.191363
+ - 0.88742
+ - - -0.373609
+ - -1.191424
+ - -0.887245
+ - - 0.373609
+ - 1.191424
+ - -0.887245
+ - - 0.373689
+ - 1.191363
+ - 0.88742
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.00735847323469
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.488151
+ - -0.58012
+ - 5.0e-05
+ - - -2.177909
+ - 0.067364
+ - 5.8e-05
+ - - 0.488151
+ - 0.58012
+ - 5.0e-05
+ - - 2.177909
+ - -0.067364
+ - 5.8e-05
+ - - -0.380004
+ - -1.19747
+ - 0.89099
+ - - -0.380011
+ - -1.197465
+ - -0.890894
+ - - 0.380011
+ - 1.197465
+ - -0.890894
+ - - 0.380004
+ - 1.19747
+ - 0.89099
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.29154980306901
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.488806
+ - -0.575795
+ - 5.0e-05
+ - - -2.152355
+ - 0.070577
+ - 5.6e-05
+ - - 0.488806
+ - 0.575795
+ - 5.0e-05
+ - - 2.152355
+ - -0.070577
+ - 5.6e-05
+ - - -0.373174
+ - -1.190691
+ - 0.88825
+ - - -0.373177
+ - -1.190689
+ - -0.888152
+ - - 0.373177
+ - 1.190689
+ - -0.888152
+ - - 0.373174
+ - 1.190691
+ - 0.88825
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.134398005458696
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.48875
+ - -0.573467
+ - 5.1e-05
+ - - -2.15092
+ - 0.068996
+ - 5.1e-05
+ - - 0.48875
+ - 0.573467
+ - 5.1e-05
+ - - 2.15092
+ - -0.068996
+ - 5.1e-05
+ - - -0.3744
+ - -1.191647
+ - 0.888657
+ - - -0.3744
+ - -1.191647
+ - -0.888554
+ - - 0.3744
+ - 1.191647
+ - -0.888554
+ - - 0.3744
+ - 1.191647
+ - 0.888657
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.96361776017073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.484099
+ - -0.582767
+ - 5.1e-05
+ - - -2.175278
+ - 0.069492
+ - 5.1e-05
+ - - 0.484099
+ - 0.582767
+ - 5.1e-05
+ - - 2.175278
+ - -0.069492
+ - 5.1e-05
+ - - -0.379475
+ - -1.197302
+ - 0.893894
+ - - -0.379475
+ - -1.197302
+ - -0.893791
+ - - 0.379475
+ - 1.197302
+ - -0.893791
+ - - 0.379475
+ - 1.197302
+ - 0.893894
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.43240774074363
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4888515996
+ - -0.5757086495
+ - 6.11815e-05
+ - - -2.1556517198
+ - 0.070373832
+ - -3.19193e-05
+ - - 0.4888515996
+ - 0.5757086495
+ - 6.11815e-05
+ - - 2.1556517198
+ - -0.070373832
+ - -3.19193e-05
+ - - -0.3736892347
+ - -1.1913629764
+ - 0.8874203689
+ - - -0.3736093123
+ - -1.1914244605
+ - -0.8872447835
+ - - 0.3736093123
+ - 1.1914244605
+ - -0.8872447835
+ - - 0.3736892347
+ - 1.1913629764
+ - 0.8874203689
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.99882710724154
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.490051
+ - -0.575271
+ - 5.1e-05
+ - - -2.160157
+ - 0.066467
+ - 5.1e-05
+ - - 0.490051
+ - 0.575271
+ - 5.1e-05
+ - - 2.160157
+ - -0.066467
+ - 5.1e-05
+ - - -0.377002
+ - -1.191599
+ - 0.888215
+ - - -0.377002
+ - -1.191599
+ - -0.888113
+ - - 0.377002
+ - 1.191599
+ - -0.888113
+ - - 0.377002
+ - 1.191599
+ - 0.888215
+ isotopes:
+ - 12
+ - 35
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Difluoroacetylene.yml b/input/reference_sets/main/12-Difluoroacetylene.yml
index 94d61a1e7f..49cf2b4148 100644
--- a/input/reference_sets/main/12-Difluoroacetylene.yml
+++ b/input/reference_sets/main/12-Difluoroacetylene.yml
@@ -11,7 +11,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.9555545638061967
+ value: 0.9555545638061961
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- C
- C
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.890360450773181
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.879321
+ - - 0.0
+ - 0.0
+ - 0.593922
+ - - 0.0
+ - 0.0
+ - -0.593923
+ - - 0.0
+ - 0.0
+ - -1.879321
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.478261981819669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.877051
+ - - 0.0
+ - -0.0
+ - 0.59203
+ - - 0.0
+ - -0.0
+ - -0.59203
+ - - 0.0
+ - -0.0
+ - -1.877051
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- C
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.368593229610897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.885902
+ - - 0.0
+ - 0.0
+ - 0.596662
+ - - 0.0
+ - 0.0
+ - -0.596662
+ - - 0.0
+ - 0.0
+ - -1.885902
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.906632881307731
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.891487
+ - - 0.0
+ - 0.0
+ - 0.598735
+ - - 0.0
+ - 0.0
+ - -0.598735
+ - - 0.0
+ - 0.0
+ - -1.891487
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.846597184343745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.870773
+ - - 0.0
+ - 0.0
+ - 0.589551
+ - - 0.0
+ - 0.0
+ - -0.589551
+ - - 0.0
+ - 0.0
+ - -1.870773
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.1561545742241246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.878712
+ - - 0.0
+ - -0.0
+ - 0.592363
+ - - 0.0
+ - -0.0
+ - -0.592363
+ - - 0.0
+ - -0.0
+ - -1.878712
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.947836780926101
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.5e-05
+ - 1.876778
+ - - -0.0
+ - 7.1e-05
+ - 0.591064
+ - - 0.0
+ - -7.1e-05
+ - -0.591064
+ - - -0.0
+ - 1.5e-05
+ - -1.876778
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.242663050501667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.5e-05
+ - 1.876778
+ - - -0.0
+ - 7.1e-05
+ - 0.591064
+ - - 0.0
+ - -7.1e-05
+ - -0.591064
+ - - -0.0
+ - 1.5e-05
+ - -1.876778
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6980422149143134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.5e-05
+ - 1.876778
+ - - -0.0
+ - 7.1e-05
+ - 0.591064
+ - - 0.0
+ - -7.1e-05
+ - -0.591064
+ - - -0.0
+ - 1.5e-05
+ - -1.876778
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.938463095832929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.872026
+ - - 0.0
+ - 0.0
+ - 0.59243
+ - - 0.0
+ - 0.0
+ - -0.59243
+ - - 0.0
+ - 0.0
+ - -1.872026
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.139348881023158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.871778
+ - - 0.0
+ - 0.0
+ - 0.590428
+ - - 0.0
+ - 0.0
+ - -0.590428
+ - - 0.0
+ - 0.0
+ - -1.871778
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.493377300802091
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.869531
+ - - 0.0
+ - 0.0
+ - 0.591967
+ - - 0.0
+ - 0.0
+ - -0.591967
+ - - 0.0
+ - 0.0
+ - -1.869531
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.160522633315185
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.887917
+ - - 0.0
+ - 0.0
+ - 0.596152
+ - - 0.0
+ - 0.0
+ - -0.596152
+ - - 0.0
+ - 0.0
+ - -1.887917
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- C
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.159752794079884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.48633e-05
+ - 1.876778226
+ - - -0.0
+ - 7.07921e-05
+ - 0.5910644578
+ - - 0.0
+ - -7.07921e-05
+ - -0.5910644578
+ - - -0.0
+ - 1.48633e-05
+ - -1.876778226
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.267985553206586
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.869068
+ - - 0.0
+ - -0.0
+ - 0.590805
+ - - 0.0
+ - -0.0
+ - -0.590805
+ - - 0.0
+ - -0.0
+ - -1.869068
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 19
+ symbols:
+ - F
+ - C
+ - C
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Difluoroethane.yml b/input/reference_sets/main/12-Difluoroethane.yml
index 035c843e98..54eedc7e25 100644
--- a/input/reference_sets/main/12-Difluoroethane.yml
+++ b/input/reference_sets/main/12-Difluoroethane.yml
@@ -15,7 +15,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -108.12024385153421
+ value: -108.12024385153413
class: ThermoData
xyz_dict:
coords:
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.89511585389958
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680969
+ - -0.314648
+ - 0.510283
+ - - 1.440416
+ - 0.16699
+ - -0.547547
+ - - -0.680969
+ - 0.314648
+ - 0.510283
+ - - -1.440416
+ - -0.16699
+ - -0.547547
+ - - 0.605411
+ - -1.397345
+ - 0.405223
+ - - 1.199734
+ - -0.068556
+ - 1.439333
+ - - -0.605411
+ - 1.397345
+ - 0.405223
+ - - -1.199734
+ - 0.068556
+ - 1.439333
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.15232003602381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681786
+ - -0.314805
+ - 0.50955
+ - - 1.447069
+ - 0.169451
+ - -0.545949
+ - - -0.681786
+ - 0.314805
+ - 0.50955
+ - - -1.447069
+ - -0.169451
+ - -0.545949
+ - - 0.607073
+ - -1.398941
+ - 0.401622
+ - - 1.199228
+ - -0.071783
+ - 1.44207
+ - - -0.607073
+ - 1.398941
+ - 0.401622
+ - - -1.199228
+ - 0.071783
+ - 1.44207
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.62792680459972
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.684905
+ - -0.315533
+ - 0.507341
+ - - 1.460774
+ - 0.16692
+ - -0.550165
+ - - -0.684905
+ - 0.315533
+ - 0.507341
+ - - -1.460774
+ - -0.16692
+ - -0.550165
+ - - 0.611125
+ - -1.405308
+ - 0.402945
+ - - 1.199407
+ - -0.068716
+ - 1.447171
+ - - -0.611125
+ - 1.405308
+ - 0.402945
+ - - -1.199407
+ - 0.068716
+ - 1.447171
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.795048384312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.684634
+ - -0.315481
+ - 0.507757
+ - - 1.461777
+ - 0.171738
+ - -0.551364
+ - - -0.684634
+ - 0.315481
+ - 0.507757
+ - - -1.461777
+ - -0.171738
+ - -0.551364
+ - - 0.610718
+ - -1.409608
+ - 0.398967
+ - - 1.202447
+ - -0.071864
+ - 1.451933
+ - - -0.610718
+ - 1.409608
+ - 0.398967
+ - - -1.202447
+ - 0.071864
+ - 1.451933
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.78342985838324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.679553
+ - -0.313442
+ - 0.509089
+ - - 1.437411
+ - 0.171483
+ - -0.541475
+ - - -0.679553
+ - 0.313442
+ - 0.509089
+ - - -1.437411
+ - -0.171483
+ - -0.541475
+ - - 0.603515
+ - -1.396468
+ - 0.398965
+ - - 1.197475
+ - -0.072781
+ - 1.440714
+ - - -0.603515
+ - 1.396468
+ - 0.398965
+ - - -1.197475
+ - 0.072781
+ - 1.440714
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.34775522564524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683708
+ - -0.314571
+ - 0.509476
+ - - 1.448256
+ - 0.174644
+ - -0.546351
+ - - -0.683708
+ - 0.314571
+ - 0.509476
+ - - -1.448256
+ - -0.174644
+ - -0.546351
+ - - 0.603923
+ - -1.399456
+ - 0.399354
+ - - 1.200713
+ - -0.074638
+ - 1.444814
+ - - -0.603923
+ - 1.399456
+ - 0.399354
+ - - -1.200713
+ - 0.074638
+ - 1.444814
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.80590933715963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680718
+ - -0.314459
+ - 0.51051
+ - - 1.438579
+ - 0.171159
+ - -0.54498
+ - - -0.680718
+ - 0.314459
+ - 0.51051
+ - - -1.438579
+ - -0.171159
+ - -0.54498
+ - - 0.604373
+ - -1.39751
+ - 0.400815
+ - - 1.199746
+ - -0.072566
+ - 1.440948
+ - - -0.604373
+ - 1.39751
+ - 0.400815
+ - - -1.199746
+ - 0.072566
+ - 1.440948
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.08164259156878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680718
+ - -0.314459
+ - 0.51051
+ - - 1.438579
+ - 0.171159
+ - -0.54498
+ - - -0.680718
+ - 0.314459
+ - 0.51051
+ - - -1.438579
+ - -0.171159
+ - -0.54498
+ - - 0.604373
+ - -1.39751
+ - 0.400815
+ - - 1.199746
+ - -0.072566
+ - 1.440948
+ - - -0.604373
+ - 1.39751
+ - 0.400815
+ - - -1.199746
+ - 0.072566
+ - 1.440948
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -107.85071741640867
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680718
+ - -0.314459
+ - 0.51051
+ - - 1.438579
+ - 0.171159
+ - -0.54498
+ - - -0.680718
+ - 0.314459
+ - 0.51051
+ - - -1.438579
+ - -0.171159
+ - -0.54498
+ - - 0.604373
+ - -1.39751
+ - 0.400815
+ - - 1.199746
+ - -0.072566
+ - 1.440948
+ - - -0.604373
+ - 1.39751
+ - 0.400815
+ - - -1.199746
+ - 0.072566
+ - 1.440948
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.66756385010767
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.688081
+ - -0.311691
+ - 0.503814
+ - - 1.423912
+ - 0.154527
+ - -0.560938
+ - - -0.688081
+ - 0.311691
+ - 0.503814
+ - - -1.423912
+ - -0.154527
+ - -0.560938
+ - - 0.606228
+ - -1.402927
+ - 0.42607
+ - - 1.206461
+ - -0.058075
+ - 1.438347
+ - - -0.606228
+ - 1.402927
+ - 0.42607
+ - - -1.206461
+ - 0.058075
+ - 1.438347
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -113.39409167796413
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681809
+ - -0.313891
+ - 0.509893
+ - - 1.4261
+ - 0.165817
+ - -0.546366
+ - - -0.681809
+ - 0.313891
+ - 0.509893
+ - - -1.4261
+ - -0.165817
+ - -0.546366
+ - - 0.603282
+ - -1.397682
+ - 0.406283
+ - - 1.203974
+ - -0.06745
+ - 1.437483
+ - - -0.603282
+ - 1.397682
+ - 0.406283
+ - - -1.203974
+ - 0.06745
+ - 1.437483
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -107.53543066662829
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680936
+ - -0.31169
+ - 0.504373
+ - - 1.439924
+ - 0.16505
+ - -0.542378
+ - - -0.680936
+ - 0.31169
+ - 0.504373
+ - - -1.439924
+ - -0.16505
+ - -0.542378
+ - - 0.605376
+ - -1.398452
+ - 0.404262
+ - - 1.193644
+ - -0.067001
+ - 1.441035
+ - - -0.605376
+ - 1.398452
+ - 0.404262
+ - - -1.193644
+ - 0.067001
+ - 1.441035
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.44536031511052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683698
+ - -0.318116
+ - 0.51265
+ - - 1.455426
+ - 0.171456
+ - -0.5499
+ - - -0.683698
+ - 0.318116
+ - 0.51265
+ - - -1.455426
+ - -0.171456
+ - -0.5499
+ - - 0.610781
+ - -1.405152
+ - 0.398323
+ - - 1.206674
+ - -0.073261
+ - 1.446219
+ - - -0.610781
+ - 1.405152
+ - 0.398323
+ - - -1.206674
+ - 0.073261
+ - 1.446219
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,13 +927,121 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.16535848060897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6807176922
+ - -0.3144593987
+ - 0.5105100396
+ - - 1.4385788776
+ - 0.1711587406
+ - -0.5449803379
+ - - -0.6807176922
+ - 0.3144593987
+ - 0.5105100396
+ - - -1.4385788776
+ - -0.1711587406
+ - -0.5449803379
+ - - 0.6043732326
+ - -1.3975097221
+ - 0.4008147922
+ - - 1.1997456648
+ - -0.0725661386
+ - 1.4409479524
+ - - -0.6043732326
+ - 1.3975097221
+ - 0.4008147922
+ - - -1.1997456648
+ - 0.0725661386
+ - 1.4409479524
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.15932391815485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.682636
+ - -0.313103
+ - 0.50513
+ - - 1.44327
+ - 0.164082
+ - -0.542505
+ - - -0.682636
+ - 0.313103
+ - 0.50513
+ - - -1.44327
+ - -0.164082
+ - -0.542505
+ - - 0.607012
+ - -1.398365
+ - 0.404652
+ - - 1.194854
+ - -0.067031
+ - 1.440016
+ - - -0.607012
+ - 1.398365
+ - 0.404652
+ - - -1.194854
+ - 0.067031
+ - 1.440016
+ isotopes:
+ - 12
+ - 19
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - F
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -108.74100248282399
+ value: -108.74100248282393
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/12-Dimethoxyethane.yml b/input/reference_sets/main/12-Dimethoxyethane.yml
index ff9dedffa6..e4c4479702 100644
--- a/input/reference_sets/main/12-Dimethoxyethane.yml
+++ b/input/reference_sets/main/12-Dimethoxyethane.yml
@@ -23,7 +23,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -83.17275811904216
+ value: -83.17275811904209
class: ThermoData
xyz_dict:
coords:
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -72.13931270486817
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.970651
+ - -0.118385
+ - 0.000269
+ - - 1.71429
+ - 0.523285
+ - 0.000218
+ - - 0.643412
+ - -0.396962
+ - 0.000286
+ - - -0.643429
+ - 0.396942
+ - 0.000236
+ - - -1.714307
+ - -0.523305
+ - 0.000289
+ - - -2.970668
+ - 0.118364
+ - 0.000258
+ - - 3.096908
+ - -0.746057
+ - -0.889221
+ - - 3.096909
+ - -0.745913
+ - 0.88986
+ - - 3.731826
+ - 0.658285
+ - 0.000206
+ - - 0.682978
+ - -1.04154
+ - 0.887037
+ - - 0.682971
+ - -1.041663
+ - -0.886375
+ - - -0.682989
+ - 1.041528
+ - -0.886509
+ - - -0.682994
+ - 1.041635
+ - 0.886904
+ - - -3.731843
+ - -0.658305
+ - 0.000297
+ - - -3.096925
+ - 0.74601
+ - 0.889767
+ - - -3.096926
+ - 0.74592
+ - -0.889315
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -71.33448348687294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.977575
+ - -0.118653
+ - 0.000269
+ - - 1.718772
+ - 0.516176
+ - 0.000227
+ - - 0.643506
+ - -0.398751
+ - 0.000288
+ - - -0.643523
+ - 0.398731
+ - 0.000238
+ - - -1.718789
+ - -0.516196
+ - 0.000296
+ - - -2.977591
+ - 0.118633
+ - 0.000257
+ - - 3.109329
+ - -0.746835
+ - -0.890199
+ - - 3.10933
+ - -0.746716
+ - 0.890821
+ - - 3.736235
+ - 0.662443
+ - 0.000216
+ - - 0.680336
+ - -1.045299
+ - 0.887388
+ - - 0.680334
+ - -1.045415
+ - -0.886727
+ - - -0.680352
+ - 1.04528
+ - -0.886861
+ - - -0.680352
+ - 1.045393
+ - 0.887254
+ - - -3.736251
+ - -0.662464
+ - 0.000306
+ - - -3.109346
+ - 0.746811
+ - 0.890727
+ - - -3.109347
+ - 0.7467
+ - -0.890292
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -61.066420398385496
+ value: -61.066420398385496
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.9876810965
+ - -0.1172573366
+ - -5.79976e-05
+ - - 1.7239893674
+ - 0.5271589193
+ - -0.0002146724
+ - - 0.6484649246
+ - -0.4016892755
+ - 6.74093e-05
+ - - -0.64866631
+ - 0.4035919867
+ - 0.0004033291
+ - - -1.7230616466
+ - -0.5266492482
+ - 7.32172e-05
+ - - -2.9879136394
+ - 0.1153960203
+ - -0.0002397571
+ - - 3.1266351574
+ - -0.7537331843
+ - -0.8961278945
+ - - 3.1270973243
+ - -0.7524361675
+ - 0.8968649726
+ - - 3.7517013218
+ - 0.6717748317
+ - -0.0008835366
+ - - 0.679129141
+ - -1.0551766357
+ - 0.8937356224
+ - - 0.6785907962
+ - -1.0550586563
+ - -0.8937240123
+ - - -0.6801140489
+ - 1.0571730595
+ - -0.8931593268
+ - - -0.6801835983
+ - 1.0565650189
+ - 0.8943955747
+ - - -3.7504042108
+ - -0.6751609748
+ - -0.0001159675
+ - - -3.1287444194
+ - 0.751118068
+ - 0.8960708561
+ - - -3.12852566
+ - 0.7506089028
+ - -0.8969625479
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.53529196203205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.986053
+ - -0.119501
+ - 0.000269
+ - - 1.724754
+ - 0.52543
+ - 0.000226
+ - - 0.647409
+ - -0.398434
+ - 0.000288
+ - - -0.647426
+ - 0.398414
+ - 0.000237
+ - - -1.724771
+ - -0.52545
+ - 0.000297
+ - - -2.98607
+ - 0.119481
+ - 0.000257
+ - - 3.116133
+ - -0.751558
+ - -0.894227
+ - - 3.116133
+ - -0.751437
+ - 0.89485
+ - - 3.749495
+ - 0.663487
+ - 0.000216
+ - - 0.68734
+ - -1.047964
+ - 0.891453
+ - - 0.687337
+ - -1.048081
+ - -0.890792
+ - - -0.687356
+ - 1.047945
+ - -0.890926
+ - - -0.687355
+ - 1.04806
+ - 0.891318
+ - - -3.749512
+ - -0.663507
+ - 0.000307
+ - - -3.116149
+ - 0.751534
+ - 0.894755
+ - - -3.11615
+ - 0.751421
+ - -0.894321
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.48402113705532
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.988999
+ - -0.119322
+ - 0.000269
+ - - 1.726325
+ - 0.529521
+ - 0.000228
+ - - 0.648418
+ - -0.398259
+ - 0.000289
+ - - -0.648435
+ - 0.398239
+ - 0.000238
+ - - -1.726342
+ - -0.529541
+ - 0.0003
+ - - -2.989016
+ - 0.119302
+ - 0.000257
+ - - 3.119767
+ - -0.753952
+ - -0.897911
+ - - 3.119769
+ - -0.753837
+ - 0.89853
+ - - 3.756835
+ - 0.665516
+ - 0.000218
+ - - 0.689085
+ - -1.051292
+ - 0.895319
+ - - 0.689085
+ - -1.051408
+ - -0.894657
+ - - -0.689103
+ - 1.051272
+ - -0.894793
+ - - -0.689101
+ - 1.051389
+ - 0.895183
+ - - -3.756852
+ - -0.665537
+ - 0.000309
+ - - -3.119784
+ - 0.753934
+ - 0.898435
+ - - -3.119785
+ - 0.753815
+ - -0.898005
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.27321968623431
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.966269
+ - -0.117309
+ - 0.000269
+ - - 1.712278
+ - 0.511892
+ - 0.000229
+ - - 0.641597
+ - -0.397167
+ - 0.000288
+ - - -0.641614
+ - 0.397147
+ - 0.000238
+ - - -1.712295
+ - -0.511912
+ - 0.000297
+ - - -2.966286
+ - 0.117289
+ - 0.000257
+ - - 3.098592
+ - -0.74471
+ - -0.889296
+ - - 3.098593
+ - -0.744593
+ - 0.889916
+ - - 3.725167
+ - 0.662387
+ - 0.000218
+ - - 0.677512
+ - -1.043325
+ - 0.886613
+ - - 0.677511
+ - -1.04344
+ - -0.885953
+ - - -0.677529
+ - 1.043305
+ - -0.886087
+ - - -0.677528
+ - 1.04342
+ - 0.886479
+ - - -3.725183
+ - -0.662407
+ - 0.000307
+ - - -3.098609
+ - 0.744688
+ - 0.889823
+ - - -3.09861
+ - 0.744574
+ - -0.889389
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -85.38320101195771
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.983053
+ - -0.119283
+ - 0.000269
+ - - 1.720934
+ - 0.514502
+ - 0.000231
+ - - 0.643913
+ - -0.40203
+ - 0.000289
+ - - -0.64393
+ - 0.40201
+ - 0.000238
+ - - -1.720951
+ - -0.514522
+ - 0.000298
+ - - -2.98307
+ - 0.119263
+ - 0.000256
+ - - 3.120567
+ - -0.747478
+ - -0.891808
+ - - 3.120568
+ - -0.747367
+ - 0.892425
+ - - 3.739429
+ - 0.666169
+ - 0.00022
+ - - 0.674696
+ - -1.049424
+ - 0.889095
+ - - 0.674696
+ - -1.049537
+ - -0.888434
+ - - -0.674714
+ - 1.049403
+ - -0.888569
+ - - -0.674712
+ - 1.049518
+ - 0.88896
+ - - -3.739446
+ - -0.666189
+ - 0.000308
+ - - -3.120585
+ - 0.747462
+ - 0.892331
+ - - -3.120584
+ - 0.747344
+ - -0.891902
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.8024968288803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.964296
+ - -0.117216
+ - 0.000231
+ - - 1.711452
+ - 0.525428
+ - -0.000707
+ - - 0.644577
+ - -0.394404
+ - 0.000166
+ - - -0.644583
+ - 0.394475
+ - 0.000371
+ - - -1.711419
+ - -0.525405
+ - -0.000529
+ - - -2.964309
+ - 0.117144
+ - 0.00012
+ - - 3.088814
+ - -0.747317
+ - -0.888295
+ - - 3.089342
+ - -0.743652
+ - 0.891272
+ - - 3.72964
+ - 0.65569
+ - -0.001605
+ - - 0.685273
+ - -1.039467
+ - 0.887298
+ - - 0.684443
+ - -1.040167
+ - -0.886492
+ - - -0.684618
+ - 1.040455
+ - -0.886122
+ - - -0.685156
+ - 1.039312
+ - 0.887672
+ - - -3.729579
+ - -0.655836
+ - -0.001137
+ - - -3.089336
+ - 0.744142
+ - 0.890768
+ - - -3.08897
+ - 0.746656
+ - -0.888803
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.65358123396281
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.964296
+ - -0.117216
+ - 0.000231
+ - - 1.711452
+ - 0.525428
+ - -0.000707
+ - - 0.644577
+ - -0.394404
+ - 0.000166
+ - - -0.644583
+ - 0.394475
+ - 0.000371
+ - - -1.711419
+ - -0.525405
+ - -0.000529
+ - - -2.964309
+ - 0.117144
+ - 0.00012
+ - - 3.088814
+ - -0.747317
+ - -0.888295
+ - - 3.089342
+ - -0.743652
+ - 0.891272
+ - - 3.72964
+ - 0.65569
+ - -0.001605
+ - - 0.685273
+ - -1.039467
+ - 0.887298
+ - - 0.684443
+ - -1.040167
+ - -0.886492
+ - - -0.684618
+ - 1.040455
+ - -0.886122
+ - - -0.685156
+ - 1.039312
+ - 0.887672
+ - - -3.729579
+ - -0.655836
+ - -0.001137
+ - - -3.089336
+ - 0.744142
+ - 0.890768
+ - - -3.08897
+ - 0.746656
+ - -0.888803
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -80.93006678360851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.964296
+ - -0.117216
+ - 0.000231
+ - - 1.711452
+ - 0.525428
+ - -0.000707
+ - - 0.644577
+ - -0.394404
+ - 0.000166
+ - - -0.644583
+ - 0.394475
+ - 0.000371
+ - - -1.711419
+ - -0.525405
+ - -0.000529
+ - - -2.964309
+ - 0.117144
+ - 0.00012
+ - - 3.088814
+ - -0.747317
+ - -0.888295
+ - - 3.089342
+ - -0.743652
+ - 0.891272
+ - - 3.72964
+ - 0.65569
+ - -0.001605
+ - - 0.685273
+ - -1.039467
+ - 0.887298
+ - - 0.684443
+ - -1.040167
+ - -0.886492
+ - - -0.684618
+ - 1.040455
+ - -0.886122
+ - - -0.685156
+ - 1.039312
+ - 0.887672
+ - - -3.729579
+ - -0.655836
+ - -0.001137
+ - - -3.089336
+ - 0.744142
+ - 0.890768
+ - - -3.08897
+ - 0.746656
+ - -0.888803
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.90357404932682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.974918
+ - -0.117068
+ - 0.000269
+ - - 1.717492
+ - 0.513443
+ - 0.000229
+ - - 0.646101
+ - -0.400996
+ - 0.000289
+ - - -0.646118
+ - 0.400976
+ - 0.000238
+ - - -1.717509
+ - -0.513463
+ - 0.000297
+ - - -2.974935
+ - 0.117048
+ - 0.000257
+ - - 3.115651
+ - -0.748921
+ - -0.891195
+ - - 3.115652
+ - -0.748806
+ - 0.891814
+ - - 3.735424
+ - 0.667647
+ - 0.000218
+ - - 0.677697
+ - -1.053284
+ - 0.888326
+ - - 0.677696
+ - -1.053398
+ - -0.887666
+ - - -0.677714
+ - 1.053264
+ - -0.8878
+ - - -0.677713
+ - 1.053378
+ - 0.888192
+ - - -3.735441
+ - -0.667667
+ - 0.000307
+ - - -3.115668
+ - 0.748901
+ - 0.89172
+ - - -3.115669
+ - 0.748786
+ - -0.891288
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.07814274722948
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.960517
+ - -0.11634
+ - 0.000267
+ - - 1.709338
+ - 0.519592
+ - 0.000229
+ - - 0.644114
+ - -0.395391
+ - 0.000289
+ - - -0.64413
+ - 0.395371
+ - 0.000241
+ - - -1.709355
+ - -0.519612
+ - 0.000303
+ - - -2.960534
+ - 0.11632
+ - 0.000256
+ - - 3.085266
+ - -0.7445
+ - -0.889502
+ - - 3.085267
+ - -0.744391
+ - 0.890113
+ - - 3.724472
+ - 0.658383
+ - 0.000219
+ - - 0.682526
+ - -1.040707
+ - 0.887423
+ - - 0.682523
+ - -1.040819
+ - -0.886764
+ - - -0.682543
+ - 1.040685
+ - -0.886895
+ - - -0.682539
+ - 1.040801
+ - 0.887292
+ - - -3.724488
+ - -0.658403
+ - 0.00031
+ - - -3.085285
+ - 0.744489
+ - 0.890019
+ - - -3.085282
+ - 0.744362
+ - -0.889596
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.50806202892257
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.9876810965
- - -0.1172573366
- - -5.79976e-05
- - - 1.7239893674
- - 0.5271589193
- - -0.0002146724
- - - 0.6484649246
- - -0.4016892755
- - 6.74093e-05
- - - -0.64866631
- - 0.4035919867
- - 0.0004033291
- - - -1.7230616466
- - -0.5266492482
- - 7.32172e-05
- - - -2.9879136394
- - 0.1153960203
- - -0.0002397571
- - - 3.1266351574
- - -0.7537331843
- - -0.8961278945
- - - 3.1270973243
- - -0.7524361675
- - 0.8968649726
- - - 3.7517013218
- - 0.6717748317
- - -0.0008835366
- - - 0.679129141
- - -1.0551766357
- - 0.8937356224
- - - 0.6785907962
- - -1.0550586563
- - -0.8937240123
- - - -0.6801140489
- - 1.0571730595
- - -0.8931593268
- - - -0.6801835983
- - 1.0565650189
- - 0.8943955747
- - - -3.7504042108
- - -0.6751609748
- - -0.0001159675
- - - -3.1287444194
- - 0.751118068
- - 0.8960708561
- - - -3.12852566
- - 0.7506089028
- - -0.8969625479
+ - - 2.956706
+ - -0.116072
+ - 0.000268
+ - - 1.70867
+ - 0.517965
+ - 0.000225
+ - - 0.644168
+ - -0.393667
+ - 0.000288
+ - - -0.644185
+ - 0.393646
+ - 0.000238
+ - - -1.708687
+ - -0.517985
+ - 0.000295
+ - - -2.956723
+ - 0.116052
+ - 0.000257
+ - - 3.089051
+ - -0.746196
+ - -0.890449
+ - - 3.089053
+ - -0.746071
+ - 0.891074
+ - - 3.721581
+ - 0.66087
+ - 0.000212
+ - - 0.681455
+ - -1.043044
+ - 0.887737
+ - - 0.681451
+ - -1.043162
+ - -0.887074
+ - - -0.681469
+ - 1.043027
+ - -0.887208
+ - - -0.68147
+ - 1.043139
+ - 0.887603
+ - - -3.721598
+ - -0.66089
+ - 0.000303
+ - - -3.089069
+ - 0.746166
+ - 0.890981
+ - - -3.089069
+ - 0.74606
+ - -0.890542
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.48008122563523
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.989644
+ - -0.121545
+ - 0.000269
+ - - 1.725016
+ - 0.529109
+ - 0.000228
+ - - 0.645859
+ - -0.401329
+ - 0.000289
+ - - -0.645875
+ - 0.401309
+ - 0.000237
+ - - -1.725033
+ - -0.529129
+ - 0.000299
+ - - -2.98966
+ - 0.121525
+ - 0.000257
+ - - 3.114015
+ - -0.751182
+ - -0.894747
+ - - 3.114016
+ - -0.751065
+ - 0.895366
+ - - 3.749851
+ - 0.662876
+ - 0.000217
+ - - 0.689178
+ - -1.046873
+ - 0.892267
+ - - 0.689177
+ - -1.046988
+ - -0.891606
+ - - -0.689195
+ - 1.046852
+ - -0.891741
+ - - -0.689193
+ - 1.046969
+ - 0.892132
+ - - -3.749868
+ - -0.662896
+ - 0.000309
+ - - -3.114032
+ - 0.751162
+ - 0.895272
+ - - -3.114033
+ - 0.751045
+ - -0.89484
isotopes:
- 12
- 16
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -82.07783356829678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.9642959225
+ - -0.1172159582
+ - 0.0002309381
+ - - 1.7114523093
+ - 0.5254281825
+ - -0.0007070041
+ - - 0.6445767324
+ - -0.3944041474
+ - 0.0001661068
+ - - -0.6445831181
+ - 0.3944752596
+ - 0.0003706758
+ - - -1.7114190308
+ - -0.5254046175
+ - -0.0005285304
+ - - -2.9643092512
+ - 0.1171440354
+ - 0.000120494
+ - - 3.0888139157
+ - -0.7473172248
+ - -0.8882952744
+ - - 3.0893421514
+ - -0.7436522003
+ - 0.8912718252
+ - - 3.7296395689
+ - 0.6556897267
+ - -0.0016054515
+ - - 0.685272886
+ - -1.0394667254
+ - 0.8872980496
+ - - 0.6844428414
+ - -1.0401668852
+ - -0.8864922177
+ - - -0.684618002
+ - 1.0404549446
+ - -0.8861220554
+ - - -0.6851559207
+ - 1.0393122889
+ - 0.8876717572
+ - - -3.7295794048
+ - -0.6558360884
+ - -0.0011368086
+ - - -3.0893357247
+ - 0.7441421035
+ - 0.8907684744
+ - - -3.0889702521
+ - 0.746656404
+ - -0.888803311
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -76.57495463348943
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.962331
+ - -0.11685
+ - 0.000272
+ - - 1.711483
+ - 0.513803
+ - 0.000244
+ - - 0.644292
+ - -0.396141
+ - 0.000287
+ - - -0.644309
+ - 0.39612
+ - 0.000235
+ - - -1.711499
+ - -0.513823
+ - 0.000312
+ - - -2.962348
+ - 0.11683
+ - 0.000261
+ - - 3.094903
+ - -0.745637
+ - -0.89007
+ - - 3.094899
+ - -0.745567
+ - 0.890665
+ - - 3.723387
+ - 0.662079
+ - 0.000243
+ - - 0.680102
+ - -1.043594
+ - 0.887429
+ - - 0.680116
+ - -1.043691
+ - -0.886784
+ - - -0.680133
+ - 1.043555
+ - -0.88692
+ - - -0.680118
+ - 1.043689
+ - 0.887293
+ - - -3.723404
+ - -0.662099
+ - 0.000333
+ - - -3.094915
+ - 0.745661
+ - 0.890573
+ - - -3.094921
+ - 0.745503
+ - -0.890162
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Ethanedithiol.yml b/input/reference_sets/main/12-Ethanedithiol.yml
index 01dde3068b..459f575b5e 100644
--- a/input/reference_sets/main/12-Ethanedithiol.yml
+++ b/input/reference_sets/main/12-Ethanedithiol.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.1887360680711283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.770709
+ - -0.439049
+ - 0.101518
+ - - 0.674495
+ - 0.940984
+ - -0.352435
+ - - -0.674457
+ - 0.940902
+ - 0.352317
+ - - -1.770546
+ - -0.439205
+ - -0.101715
+ - - 1.120256
+ - -1.384577
+ - -0.589107
+ - - 1.228931
+ - 1.837852
+ - -0.069347
+ - - 0.546798
+ - 0.955023
+ - -1.433337
+ - - -0.546761
+ - 0.954891
+ - 1.433219
+ - - -1.228975
+ - 1.837736
+ - 0.06928
+ - - -1.120005
+ - -1.384713
+ - 0.588855
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.6147967494486863
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.777533
+ - -0.438308
+ - 0.099818
+ - - 0.674142
+ - 0.942924
+ - -0.353304
+ - - -0.674105
+ - 0.942842
+ - 0.353186
+ - - -1.777369
+ - -0.438464
+ - -0.100015
+ - - 1.118076
+ - -1.390564
+ - -0.579856
+ - - 1.229293
+ - 1.840496
+ - -0.071936
+ - - 0.546326
+ - 0.955686
+ - -1.434621
+ - - -0.546289
+ - 0.955553
+ - 1.434503
+ - - -1.229338
+ - 1.84038
+ - 0.07187
+ - - -1.117824
+ - -1.3907
+ - 0.579603
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.933086576726969
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.780424
+ - -0.442445
+ - 0.100474
+ - - 0.676402
+ - 0.943123
+ - -0.353973
+ - - -0.676364
+ - 0.943041
+ - 0.353855
+ - - -1.780259
+ - -0.442602
+ - -0.100672
+ - - 1.104408
+ - -1.390019
+ - -0.576208
+ - - 1.234002
+ - 1.844049
+ - -0.069831
+ - - 0.548338
+ - 0.955525
+ - -1.439923
+ - - -0.548302
+ - 0.955392
+ - 1.439806
+ - - -1.234046
+ - 1.843933
+ - 0.069765
+ - - -1.104157
+ - -1.390153
+ - 0.575956
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.820408824670042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.786729
+ - -0.442716
+ - 0.100391
+ - - 0.67764
+ - 0.94292
+ - -0.353536
+ - - -0.677602
+ - 0.942838
+ - 0.353418
+ - - -1.786564
+ - -0.442873
+ - -0.100589
+ - - 1.115683
+ - -1.396002
+ - -0.589943
+ - - 1.238939
+ - 1.846845
+ - -0.066528
+ - - 0.553196
+ - 0.959189
+ - -1.444972
+ - - -0.55316
+ - 0.959055
+ - 1.444855
+ - - -1.238984
+ - 1.846728
+ - 0.066462
+ - - -1.115431
+ - -1.396138
+ - 0.58969
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.114593886867894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.778847
+ - -0.427348
+ - 0.100255
+ - - 0.672916
+ - 0.935914
+ - -0.351898
+ - - -0.672878
+ - 0.935832
+ - 0.351779
+ - - -1.778684
+ - -0.427505
+ - -0.100452
+ - - 1.147773
+ - -1.385462
+ - -0.59009
+ - - 1.220752
+ - 1.838452
+ - -0.07589
+ - - 0.544135
+ - 0.948676
+ - -1.432407
+ - - -0.544097
+ - 0.948543
+ - 1.43229
+ - - -1.220796
+ - 1.838336
+ - 0.075824
+ - - -1.147522
+ - -1.385601
+ - 0.589838
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.6904439472490305
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.813416
+ - -0.424132
+ - 0.102844
+ - - 0.674174
+ - 0.939975
+ - -0.358467
+ - - -0.674136
+ - 0.939893
+ - 0.358349
+ - - -1.813254
+ - -0.424292
+ - -0.103041
+ - - 1.192383
+ - -1.393078
+ - -0.59108
+ - - 1.221789
+ - 1.848038
+ - -0.089872
+ - - 0.54357
+ - 0.939437
+ - -1.44093
+ - - -0.543532
+ - 0.939304
+ - 1.440812
+ - - -1.221834
+ - 1.847921
+ - 0.089806
+ - - -1.192131
+ - -1.393221
+ - 0.590827
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.7353631867087014
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.759078
+ - -0.440622
+ - 0.10466
+ - - 0.674614
+ - 0.939931
+ - -0.350602
+ - - -0.674656
+ - 0.939942
+ - 0.350555
+ - - -1.759093
+ - -0.440658
+ - -0.104594
+ - - 1.10732
+ - -1.380875
+ - -0.592717
+ - - 1.229506
+ - 1.836775
+ - -0.068816
+ - - 0.548414
+ - 0.954738
+ - -1.432012
+ - - -0.548442
+ - 0.954852
+ - 1.431963
+ - - -1.229563
+ - 1.836752
+ - 0.068692
+ - - -1.106733
+ - -1.380988
+ - 0.592118
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.8970754017425913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.759078
+ - -0.440622
+ - 0.10466
+ - - 0.674614
+ - 0.939931
+ - -0.350602
+ - - -0.674656
+ - 0.939942
+ - 0.350555
+ - - -1.759093
+ - -0.440658
+ - -0.104594
+ - - 1.10732
+ - -1.380875
+ - -0.592717
+ - - 1.229506
+ - 1.836775
+ - -0.068816
+ - - 0.548414
+ - 0.954738
+ - -1.432012
+ - - -0.548442
+ - 0.954852
+ - 1.431963
+ - - -1.229563
+ - 1.836752
+ - 0.068692
+ - - -1.106733
+ - -1.380988
+ - 0.592118
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.326574492486158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.759078
+ - -0.440622
+ - 0.10466
+ - - 0.674614
+ - 0.939931
+ - -0.350602
+ - - -0.674656
+ - 0.939942
+ - 0.350555
+ - - -1.759093
+ - -0.440658
+ - -0.104594
+ - - 1.10732
+ - -1.380875
+ - -0.592717
+ - - 1.229506
+ - 1.836775
+ - -0.068816
+ - - 0.548414
+ - 0.954738
+ - -1.432012
+ - - -0.548442
+ - 0.954852
+ - 1.431963
+ - - -1.229563
+ - 1.836752
+ - 0.068692
+ - - -1.106733
+ - -1.380988
+ - 0.592118
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.99172241337444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.799422
+ - -0.432617
+ - 0.096118
+ - - 0.675524
+ - 0.94297
+ - -0.357005
+ - - -0.675486
+ - 0.942888
+ - 0.356887
+ - - -1.799258
+ - -0.432776
+ - -0.096316
+ - - 1.143643
+ - -1.398656
+ - -0.573864
+ - - 1.229193
+ - 1.845783
+ - -0.078032
+ - - 0.546289
+ - 0.952757
+ - -1.441014
+ - - -0.546252
+ - 0.952623
+ - 1.440896
+ - - -1.229238
+ - 1.845666
+ - 0.077967
+ - - -1.143391
+ - -1.398794
+ - 0.573612
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.8938736424996243
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.756786
+ - -0.442853
+ - 0.102968
+ - - 0.67524
+ - 0.939964
+ - -0.34975
+ - - -0.675202
+ - 0.939882
+ - 0.349632
+ - - -1.756622
+ - -0.443008
+ - -0.103166
+ - - 1.104194
+ - -1.377037
+ - -0.598529
+ - - 1.231581
+ - 1.834208
+ - -0.063395
+ - - 0.550431
+ - 0.955951
+ - -1.431212
+ - - -0.550394
+ - 0.955819
+ - 1.431094
+ - - -1.231624
+ - 1.834092
+ - 0.063328
+ - - -1.103945
+ - -1.377172
+ - 0.598279
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9752984386840053
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.764962
+ - -0.435087
+ - 0.099096
+ - - 0.67345
+ - 0.936485
+ - -0.349387
+ - - -0.673411
+ - 0.936403
+ - 0.349268
+ - - -1.764798
+ - -0.435242
+ - -0.099293
+ - - 1.112831
+ - -1.382529
+ - -0.5936
+ - - 1.228384
+ - 1.83513
+ - -0.064019
+ - - 0.550061
+ - 0.956234
+ - -1.433055
+ - - -0.550024
+ - 0.956101
+ - 1.432938
+ - - -1.228428
+ - 1.835014
+ - 0.063952
+ - - -1.11258
+ - -1.382664
+ - 0.593348
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.896540101499859
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.77589
+ - -0.449266
+ - 0.097942
+ - - 0.678348
+ - 0.94574
+ - -0.353105
+ - - -0.678311
+ - 0.945658
+ - 0.352987
+ - - -1.775725
+ - -0.449422
+ - -0.09814
+ - - 1.106036
+ - -1.388991
+ - -0.596641
+ - - 1.240478
+ - 1.840159
+ - -0.060037
+ - - 0.556202
+ - 0.962591
+ - -1.438819
+ - - -0.556166
+ - 0.962458
+ - 1.438702
+ - - -1.240522
+ - 1.840043
+ - 0.05997
+ - - -1.105786
+ - -1.389126
+ - 0.596389
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.443250671704633
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.7590776075
+ - -0.4406221556
+ - 0.1046601908
+ - - 0.6746138613
+ - 0.9399308404
+ - -0.3506016814
+ - - -0.6746556897
+ - 0.9399416092
+ - 0.3505545609
+ - - -1.759093357
+ - -0.4406583215
+ - -0.1045943594
+ - - 1.1073204204
+ - -1.3808753871
+ - -0.5927165268
+ - - 1.2295063477
+ - 1.8367747128
+ - -0.068816359
+ - - 0.5484140675
+ - 0.9547383892
+ - -1.4320117035
+ - - -0.5484418964
+ - 0.9548517161
+ - 1.4319634157
+ - - -1.2295625793
+ - 1.8367515877
+ - 0.0686924855
+ - - -1.1067333992
+ - -1.3809880829
+ - 0.592118108
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.6442221729713346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.777493
+ - -0.431364
+ - 0.098059
+ - - 0.674741
+ - 0.936433
+ - -0.351622
+ - - -0.674703
+ - 0.936352
+ - 0.351504
+ - - -1.77733
+ - -0.431521
+ - -0.098256
+ - - 1.136387
+ - -1.384254
+ - -0.591113
+ - - 1.22351
+ - 1.837954
+ - -0.071009
+ - - 0.5477
+ - 0.951466
+ - -1.433404
+ - - -0.547663
+ - 0.951333
+ - 1.433286
+ - - -1.223554
+ - 1.837838
+ - 0.070942
+ - - -1.136137
+ - -1.384392
+ - 0.590861
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/12-Propadienyl anion.yml b/input/reference_sets/main/12-Propadienyl anion.yml
index b8f03e9e8e..947c81440b 100644
--- a/input/reference_sets/main/12-Propadienyl anion.yml
+++ b/input/reference_sets/main/12-Propadienyl anion.yml
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.48186391839714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.243181
+ - 0.022409
+ - 0.0
+ - - 0.110106
+ - 0.017607
+ - -0.0
+ - - 1.379022
+ - -0.129408
+ - -0.0
+ - - -1.812132
+ - 0.013778
+ - -0.923999
+ - - -1.812132
+ - 0.013778
+ - 0.923999
+ - - 2.05907
+ - 0.721446
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.94912182708956
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.236867
+ - 0.021467
+ - 0.0
+ - - 0.112322
+ - 0.009123
+ - -0.0
+ - - 1.378926
+ - -0.136053
+ - -0.0
+ - - -1.809637
+ - 0.018106
+ - -0.923618
+ - - -1.809637
+ - 0.018106
+ - 0.923618
+ - - 2.045149
+ - 0.72875
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.0115739753173
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.241357
+ - 0.021483
+ - 0.0
+ - - 0.113791
+ - 0.017286
+ - 0.0
+ - - 1.388316
+ - -0.140627
+ - -0.0
+ - - -1.818782
+ - 0.015564
+ - -0.927189
+ - - -1.818782
+ - 0.015564
+ - 0.927189
+ - - 2.058226
+ - 0.730484
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.04310453809687
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.244085
+ - 0.021131
+ - -0.0
+ - - 0.113959
+ - 0.01772
+ - 0.0
+ - - 1.39064
+ - -0.139394
+ - 0.0
+ - - -1.823195
+ - 0.014701
+ - -0.930686
+ - - -1.823195
+ - 0.014701
+ - 0.930686
+ - - 2.067165
+ - 0.730863
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.0016981904094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.23265
+ - 0.021975
+ - 0.0
+ - - 0.112799
+ - -0.001244
+ - 0.0
+ - - 1.374631
+ - -0.138607
+ - -0.0
+ - - -1.801652
+ - 0.022115
+ - -0.924092
+ - - -1.801652
+ - 0.022115
+ - 0.924092
+ - - 2.028323
+ - 0.73304
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.32938645510712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.235439
+ - 0.014114
+ - 0.0
+ - - 0.115441
+ - 0.008356
+ - 0.0
+ - - 1.384768
+ - -0.142878
+ - -0.0
+ - - -1.81295
+ - 0.022503
+ - -0.924238
+ - - -1.81295
+ - 0.022503
+ - 0.924238
+ - - 2.042036
+ - 0.735041
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 76.5049821130828
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.232968
+ - 0.022564
+ - 0.0
+ - - 0.115312
+ - -0.006239
+ - 0.0
+ - - 1.381698
+ - -0.148203
+ - 0.0
+ - - -1.799158
+ - 0.025412
+ - -0.926159
+ - - -1.799158
+ - 0.025412
+ - 0.926159
+ - - 2.014068
+ - 0.740448
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.35537970344856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.232968
+ - 0.022564
+ - 0.0
+ - - 0.115312
+ - -0.006239
+ - 0.0
+ - - 1.381698
+ - -0.148203
+ - 0.0
+ - - -1.799158
+ - 0.025412
+ - -0.926159
+ - - -1.799158
+ - 0.025412
+ - 0.926159
+ - - 2.014068
+ - 0.740448
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.42763152181043
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.232968
+ - 0.022564
+ - 0.0
+ - - 0.115312
+ - -0.006239
+ - 0.0
+ - - 1.381698
+ - -0.148203
+ - 0.0
+ - - -1.799158
+ - 0.025412
+ - -0.926159
+ - - -1.799158
+ - 0.025412
+ - 0.926159
+ - - 2.014068
+ - 0.740448
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.850306674126955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.227365
+ - 0.016532
+ - 0.0
+ - - 0.116506
+ - 0.003687
+ - 0.0
+ - - 1.386957
+ - -0.152862
+ - 0.0
+ - - -1.810611
+ - 0.02502
+ - -0.921642
+ - - -1.810611
+ - 0.02502
+ - 0.921642
+ - - 2.026067
+ - 0.742243
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.63230413008522
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.23787
+ - 0.021704
+ - 0.0
+ - - 0.111439
+ - 0.004913
+ - -0.0
+ - - 1.375817
+ - -0.135362
+ - -0.0
+ - - -1.804018
+ - 0.019501
+ - -0.924991
+ - - -1.804018
+ - 0.019501
+ - 0.924991
+ - - 2.038588
+ - 0.72917
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 74.71611080658614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.236176
+ - 0.021656
+ - 0.0
+ - - 0.111714
+ - 0.00789
+ - -0.0
+ - - 1.378199
+ - -0.138258
+ - -0.0
+ - - -1.807279
+ - 0.018877
+ - -0.925613
+ - - -1.807279
+ - 0.018877
+ - 0.925613
+ - - 2.041053
+ - 0.730448
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.20740611611114
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.240868
+ - 0.021051
+ - -0.0
+ - - 0.113729
+ - 0.018847
+ - 0.0
+ - - 1.388552
+ - -0.14212
+ - 0.0
+ - - -1.817772
+ - 0.015745
+ - -0.92658
+ - - -1.817772
+ - 0.015745
+ - 0.92658
+ - - 2.056016
+ - 0.730586
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.32721725328042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.232968052
+ - 0.0225637525
+ - 0.0
+ - - 0.1153115621
+ - -0.0062394481
+ - 0.0
+ - - 1.3816980563
+ - -0.1482031489
+ - 0.0
+ - - -1.7991584119
+ - 0.0254118384
+ - -0.9261587669
+ - - -1.7991584119
+ - 0.0254118384
+ - 0.9261587669
+ - - 2.0140681774
+ - 0.7404482171
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.18489172442081
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.233188
+ - 0.022307
+ - -0.0
+ - - 0.11393
+ - -0.001772
+ - 0.0
+ - - 1.379543
+ - -0.145339
+ - 0.0
+ - - -1.801294
+ - 0.023365
+ - -0.925896
+ - - -1.801294
+ - 0.023365
+ - 0.925896
+ - - 2.022147
+ - 0.737479
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/13-Benzodithiole-2-thione.yml b/input/reference_sets/main/13-Benzodithiole-2-thione.yml
index 8f0ebcf7e9..f98173fdb7 100644
--- a/input/reference_sets/main/13-Benzodithiole-2-thione.yml
+++ b/input/reference_sets/main/13-Benzodithiole-2-thione.yml
@@ -105,7 +105,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 58.190900689956806
+ value: 58.190900689956734
class: ThermoData
xyz_dict:
coords:
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.32934549095921
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.327051
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.690665
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.725116
+ - 1.456346
+ - 1.0e-06
+ - - -0.848026
+ - 0.700847
+ - -1.0e-06
+ - - -2.052421
+ - 1.403561
+ - -3.0e-06
+ - - -3.247239
+ - 0.697992
+ - -5.0e-06
+ - - -3.247247
+ - -0.697958
+ - -5.0e-06
+ - - -2.052438
+ - -1.403541
+ - -4.0e-06
+ - - -0.848034
+ - -0.700841
+ - -2.0e-06
+ - - 0.725099
+ - -1.456357
+ - 0.0
+ - - -2.051352
+ - 2.485277
+ - -2.0e-06
+ - - -4.184326
+ - 1.237416
+ - -6.0e-06
+ - - -4.18434
+ - -1.237372
+ - -7.0e-06
+ - - -2.05138
+ - -2.485257
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.88008607563962
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.327618
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.693499
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.726494
+ - 1.456851
+ - 1.0e-06
+ - - -0.849856
+ - 0.700468
+ - -1.0e-06
+ - - -2.05268
+ - 1.401354
+ - -3.0e-06
+ - - -3.247471
+ - 0.696979
+ - -5.0e-06
+ - - -3.247479
+ - -0.696945
+ - -5.0e-06
+ - - -2.052696
+ - -1.401334
+ - -4.0e-06
+ - - -0.849864
+ - -0.700462
+ - -2.0e-06
+ - - 0.726477
+ - -1.456863
+ - 0.0
+ - - -2.051835
+ - 2.483201
+ - -2.0e-06
+ - - -4.184602
+ - 1.237035
+ - -6.0e-06
+ - - -4.184616
+ - -1.236991
+ - -7.0e-06
+ - - -2.051863
+ - -2.483181
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 147.8797362269494
+ value: 147.87973622694938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.361374103
+ - 0.0003587781
+ - 0.0003870191
+ - - 1.7195012761
+ - 0.0012200503
+ - -0.0007946635
+ - - 0.7258411529
+ - -1.4785775893
+ - -0.0001301428
+ - - -0.8613557179
+ - -0.7103461695
+ - -4.63575e-05
+ - - -2.0773523827
+ - -1.4164225786
+ - 6.73636e-05
+ - - -3.2832453612
+ - -0.7030475625
+ - 0.0001539598
+ - - -3.283432855
+ - 0.7036174767
+ - 0.0001540243
+ - - -2.0768544424
+ - 1.4147060209
+ - 6.73433e-05
+ - - -0.862307387
+ - 0.7063640402
+ - -4.63091e-05
+ - - 0.722750832
+ - 1.4795790144
+ - -0.0001299836
+ - - -2.078157107
+ - -2.5065380383
+ - 8.39519e-05
+ - - -4.2285663666
+ - -1.2464334233
+ - 0.0002347273
+ - - -4.2275518187
+ - 1.2494190843
+ - 0.0002350544
+ - - -2.0749008932
+ - 2.5052414598
+ - 8.38185e-05
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.77789076961535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.343748
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.706324
+ - -1.2e-05
+ - 2.0e-06
+ - - 0.73022
+ - 1.460173
+ - 1.0e-06
+ - - -0.846241
+ - 0.705005
+ - -1.0e-06
+ - - -2.055019
+ - 1.40786
+ - -3.0e-06
+ - - -3.254391
+ - 0.699712
+ - -5.0e-06
+ - - -3.254399
+ - -0.699678
+ - -5.0e-06
+ - - -2.055035
+ - -1.40784
+ - -4.0e-06
+ - - -0.846249
+ - -0.704999
+ - -2.0e-06
+ - - 0.730204
+ - -1.460185
+ - 0.0
+ - - -2.053669
+ - 2.49409
+ - -2.0e-06
+ - - -4.195326
+ - 1.242415
+ - -6.0e-06
+ - - -4.195341
+ - -1.242371
+ - -7.0e-06
+ - - -2.053698
+ - -2.49407
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.74958527492977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.356812
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.714336
+ - -1.2e-05
+ - 2.0e-06
+ - - 0.735765
+ - 1.462317
+ - 1.0e-06
+ - - -0.845383
+ - 0.706285
+ - -1.0e-06
+ - - -2.05683
+ - 1.410784
+ - -3.0e-06
+ - - -3.258217
+ - 0.700989
+ - -5.0e-06
+ - - -3.258225
+ - -0.700955
+ - -5.0e-06
+ - - -2.056846
+ - -1.410764
+ - -4.0e-06
+ - - -0.845391
+ - -0.706279
+ - -2.0e-06
+ - - 0.735749
+ - -1.462329
+ - 0.0
+ - - -2.056959
+ - 2.502008
+ - -2.0e-06
+ - - -4.203341
+ - 1.246136
+ - -6.0e-06
+ - - -4.203355
+ - -1.246092
+ - -7.0e-06
+ - - -2.056987
+ - -2.501988
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 93.05323122213944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.305045
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.678715
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.721868
+ - 1.450473
+ - 1.0e-06
+ - - -0.850721
+ - 0.695895
+ - -1.0e-06
+ - - -2.04883
+ - 1.395457
+ - -3.0e-06
+ - - -3.239226
+ - 0.694618
+ - -5.0e-06
+ - - -3.239234
+ - -0.694585
+ - -5.0e-06
+ - - -2.048846
+ - -1.395437
+ - -4.0e-06
+ - - -0.850729
+ - -0.695889
+ - -2.0e-06
+ - - 0.721851
+ - -1.450485
+ - 0.0
+ - - -2.048145
+ - 2.477226
+ - -2.0e-06
+ - - -4.176217
+ - 1.234371
+ - -6.0e-06
+ - - -4.176231
+ - -1.234327
+ - -7.0e-06
+ - - -2.048173
+ - -2.477206
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.28494577815568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.346949
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.707495
+ - -1.2e-05
+ - 2.0e-06
+ - - 0.734464
+ - 1.463922
+ - 1.0e-06
+ - - -0.850999
+ - 0.701581
+ - -1.0e-06
+ - - -2.056664
+ - 1.405258
+ - -3.0e-06
+ - - -3.254022
+ - 0.69876
+ - -5.0e-06
+ - - -3.25403
+ - -0.698726
+ - -5.0e-06
+ - - -2.056681
+ - -1.405238
+ - -4.0e-06
+ - - -0.851007
+ - -0.701574
+ - -2.0e-06
+ - - 0.734447
+ - -1.463934
+ - 0.0
+ - - -2.056725
+ - 2.488714
+ - -2.0e-06
+ - - -4.192666
+ - 1.239691
+ - -6.0e-06
+ - - -4.19268
+ - -1.239647
+ - -7.0e-06
+ - - -2.056753
+ - -2.488694
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.9802193675314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.305847
+ - 1.3e-05
+ - -9.0e-06
+ - - 1.676908
+ - -2.4e-05
+ - 1.0e-06
+ - - 0.724221
+ - 1.454234
+ - 6.0e-06
+ - - -0.849641
+ - 0.696009
+ - 5.0e-06
+ - - -2.049048
+ - 1.398514
+ - 0.0
+ - - -3.241246
+ - 0.696036
+ - -6.0e-06
+ - - -3.241259
+ - -0.696001
+ - -7.0e-06
+ - - -2.049068
+ - -1.398498
+ - -1.0e-06
+ - - -0.849653
+ - -0.696003
+ - 5.0e-06
+ - - 0.724193
+ - -1.454263
+ - 7.0e-06
+ - - -2.046551
+ - 2.480958
+ - -0.0
+ - - -4.178479
+ - 1.235943
+ - -1.2e-05
+ - - -4.178502
+ - -1.235893
+ - -1.5e-05
+ - - -2.046593
+ - -2.480946
+ - -3.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.10841648175294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.305847
+ - 1.3e-05
+ - -9.0e-06
+ - - 1.676908
+ - -2.4e-05
+ - 1.0e-06
+ - - 0.724221
+ - 1.454234
+ - 6.0e-06
+ - - -0.849641
+ - 0.696009
+ - 5.0e-06
+ - - -2.049048
+ - 1.398514
+ - 0.0
+ - - -3.241246
+ - 0.696036
+ - -6.0e-06
+ - - -3.241259
+ - -0.696001
+ - -7.0e-06
+ - - -2.049068
+ - -1.398498
+ - -1.0e-06
+ - - -0.849653
+ - -0.696003
+ - 5.0e-06
+ - - 0.724193
+ - -1.454263
+ - 7.0e-06
+ - - -2.046551
+ - 2.480958
+ - -0.0
+ - - -4.178479
+ - 1.235943
+ - -1.2e-05
+ - - -4.178502
+ - -1.235893
+ - -1.5e-05
+ - - -2.046593
+ - -2.480946
+ - -3.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.202812962391654
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.305847
+ - 1.3e-05
+ - -9.0e-06
+ - - 1.676908
+ - -2.4e-05
+ - 1.0e-06
+ - - 0.724221
+ - 1.454234
+ - 6.0e-06
+ - - -0.849641
+ - 0.696009
+ - 5.0e-06
+ - - -2.049048
+ - 1.398514
+ - 0.0
+ - - -3.241246
+ - 0.696036
+ - -6.0e-06
+ - - -3.241259
+ - -0.696001
+ - -7.0e-06
+ - - -2.049068
+ - -1.398498
+ - -1.0e-06
+ - - -0.849653
+ - -0.696003
+ - 5.0e-06
+ - - 0.724193
+ - -1.454263
+ - 7.0e-06
+ - - -2.046551
+ - 2.480958
+ - -0.0
+ - - -4.178479
+ - 1.235943
+ - -1.2e-05
+ - - -4.178502
+ - -1.235893
+ - -1.5e-05
+ - - -2.046593
+ - -2.480946
+ - -3.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.84326405947289
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.343802
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.705585
+ - -1.2e-05
+ - 2.0e-06
+ - - 0.73225
+ - 1.460716
+ - 1.0e-06
+ - - -0.850913
+ - 0.701722
+ - -1.0e-06
+ - - -2.055905
+ - 1.405313
+ - -3.0e-06
+ - - -3.252848
+ - 0.698396
+ - -5.0e-06
+ - - -3.252856
+ - -0.698363
+ - -5.0e-06
+ - - -2.055921
+ - -1.405293
+ - -4.0e-06
+ - - -0.850921
+ - -0.701716
+ - -2.0e-06
+ - - 0.732233
+ - -1.460728
+ - 0.0
+ - - -2.054526
+ - 2.48956
+ - -2.0e-06
+ - - -4.192141
+ - 1.239906
+ - -6.0e-06
+ - - -4.192155
+ - -1.239862
+ - -7.0e-06
+ - - -2.054554
+ - -2.48954
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.99943220841756
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 3.361374103
- - 0.0003587781
- - 0.0003870191
- - - 1.7195012761
- - 0.0012200503
- - -0.0007946635
- - - 0.7258411529
- - -1.4785775893
- - -0.0001301428
- - - -0.8613557179
- - -0.7103461695
- - -4.63575e-05
- - - -2.0773523827
- - -1.4164225786
- - 6.73636e-05
- - - -3.2832453612
- - -0.7030475625
- - 0.0001539598
- - - -3.283432855
- - 0.7036174767
- - 0.0001540243
- - - -2.0768544424
- - 1.4147060209
- - 6.73433e-05
- - - -0.862307387
- - 0.7063640402
- - -4.63091e-05
- - - 0.722750832
- - 1.4795790144
- - -0.0001299836
- - - -2.078157107
- - -2.5065380383
- - 8.39519e-05
- - - -4.2285663666
- - -1.2464334233
- - 0.0002347273
- - - -4.2275518187
- - 1.2494190843
- - 0.0002350544
- - - -2.0749008932
- - 2.5052414598
- - 8.38185e-05
+ - - 3.30658
+ - -2.1e-05
+ - 4.0e-06
+ - - 1.679634
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.722127
+ - 1.452618
+ - 1.0e-06
+ - - -0.84871
+ - 0.697598
+ - -1.0e-06
+ - - -2.049192
+ - 1.399289
+ - -3.0e-06
+ - - -3.241712
+ - 0.696223
+ - -5.0e-06
+ - - -3.24172
+ - -0.69619
+ - -5.0e-06
+ - - -2.049208
+ - -1.399269
+ - -4.0e-06
+ - - -0.848718
+ - -0.697592
+ - -2.0e-06
+ - - 0.722111
+ - -1.45263
+ - 0.0
+ - - -2.046091
+ - 2.481426
+ - -2.0e-06
+ - - -4.178919
+ - 1.23604
+ - -6.0e-06
+ - - -4.178934
+ - -1.235996
+ - -7.0e-06
+ - - -2.046119
+ - -2.481407
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.37753627407146
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.308954
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.679374
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.720216
+ - 1.44707
+ - 1.0e-06
+ - - -0.847852
+ - 0.698876
+ - -1.0e-06
+ - - -2.048593
+ - 1.39928
+ - -3.0e-06
+ - - -3.240315
+ - 0.69568
+ - -5.0e-06
+ - - -3.240323
+ - -0.695646
+ - -5.0e-06
+ - - -2.048609
+ - -1.39926
+ - -4.0e-06
+ - - -0.84786
+ - -0.69887
+ - -2.0e-06
+ - - 0.7202
+ - -1.447082
+ - 0.0
+ - - -2.047956
+ - 2.482928
+ - -2.0e-06
+ - - -4.179054
+ - 1.236445
+ - -6.0e-06
+ - - -4.179068
+ - -1.2364
+ - -7.0e-06
+ - - -2.047985
+ - -2.482908
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 113.74097351938967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.347721
+ - -2.1e-05
+ - 5.0e-06
+ - - 1.706932
+ - -1.2e-05
+ - 2.0e-06
+ - - 0.732044
+ - 1.458575
+ - 1.0e-06
+ - - -0.846822
+ - 0.704365
+ - -1.0e-06
+ - - -2.055938
+ - 1.408258
+ - -3.0e-06
+ - - -3.254712
+ - 0.699732
+ - -5.0e-06
+ - - -3.25472
+ - -0.699698
+ - -5.0e-06
+ - - -2.055954
+ - -1.408238
+ - -4.0e-06
+ - - -0.84683
+ - -0.704359
+ - -2.0e-06
+ - - 0.732027
+ - -1.458587
+ - 0.0
+ - - -2.055841
+ - 2.494142
+ - -2.0e-06
+ - - -4.195448
+ - 1.242129
+ - -6.0e-06
+ - - -4.195462
+ - -1.242084
+ - -7.0e-06
+ - - -2.05587
+ - -2.494122
+ - -4.0e-06
isotopes:
- 32
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.21663361012915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.3058466178
+ - 1.28927e-05
+ - -9.3632e-06
+ - - 1.6769078702
+ - -2.37654e-05
+ - 5.053e-07
+ - - 0.7242206229
+ - 1.4542338981
+ - 5.7919e-06
+ - - -0.849641468
+ - 0.6960087731
+ - 5.2033e-06
+ - - -2.0490476223
+ - 1.3985138084
+ - 3.201e-07
+ - - -3.2412463453
+ - 0.6960356112
+ - -6.3588e-06
+ - - -3.2412590125
+ - -0.6960009216
+ - -7.4423e-06
+ - - -2.0490676097
+ - -1.3984976395
+ - -9.926e-07
+ - - -0.849652707
+ - -0.6960026779
+ - 5.0575e-06
+ - - 0.7241932067
+ - -1.454263176
+ - 6.8448e-06
+ - - -2.0465514423
+ - 2.4809579409
+ - -4.478e-07
+ - - -4.1784789647
+ - 1.235943412
+ - -1.23235e-05
+ - - -4.1785021676
+ - -1.2358928117
+ - -1.47524e-05
+ - - -2.0465932172
+ - -2.4809455091
+ - -2.6066e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.3662704617443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.308186
+ - -2.0e-05
+ - 4.0e-06
+ - - 1.679227
+ - -1.1e-05
+ - 2.0e-06
+ - - 0.722774
+ - 1.451192
+ - 1.0e-06
+ - - -0.849474
+ - 0.696844
+ - -1.0e-06
+ - - -2.049116
+ - 1.397892
+ - -3.0e-06
+ - - -3.240436
+ - 0.695476
+ - -5.0e-06
+ - - -3.240444
+ - -0.695443
+ - -5.0e-06
+ - - -2.049132
+ - -1.397872
+ - -4.0e-06
+ - - -0.849482
+ - -0.696838
+ - -2.0e-06
+ - - 0.722757
+ - -1.451204
+ - 0.0
+ - - -2.048908
+ - 2.480235
+ - -2.0e-06
+ - - -4.177937
+ - 1.235511
+ - -6.0e-06
+ - - -4.177951
+ - -1.235466
+ - -7.0e-06
+ - - -2.048937
+ - -2.480215
+ - -4.0e-06
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/13-Butadiene.yml b/input/reference_sets/main/13-Butadiene.yml
index 9e0680ffb8..ee5642f95b 100644
--- a/input/reference_sets/main/13-Butadiene.yml
+++ b/input/reference_sets/main/13-Butadiene.yml
@@ -17,7 +17,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 27.304681183178843
+ value: 27.304681183178833
class: ThermoData
xyz_dict:
coords:
@@ -139,48 +139,880 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.94493733763346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.839651
+ - -0.113815
+ - 0.0
+ - - 0.606198
+ - 0.400118
+ - 0.0
+ - - -0.606199
+ - -0.40013
+ - -0.0
+ - - -1.839653
+ - 0.113802
+ - -0.0
+ - - 2.716632
+ - 0.517703
+ - 0.0
+ - - 2.001125
+ - -1.184666
+ - 0.0
+ - - 0.475547
+ - 1.477792
+ - 0.0
+ - - -0.475549
+ - -1.477804
+ - -0.0
+ - - -2.716633
+ - -0.517716
+ - -0.0
+ - - -2.001126
+ - 1.184654
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.29685776640397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.839153
+ - -0.113791
+ - -0.0
+ - - 0.607167
+ - 0.397717
+ - -0.0
+ - - -0.607168
+ - -0.39773
+ - 0.0
+ - - -1.839154
+ - 0.113778
+ - 0.0
+ - - 2.717045
+ - 0.517925
+ - -0.0
+ - - 2.004542
+ - -1.185002
+ - -0.0
+ - - 0.476381
+ - 1.476393
+ - -0.0
+ - - -0.476382
+ - -1.476406
+ - 0.0
+ - - -2.717046
+ - -0.517938
+ - 0.0
+ - - -2.004543
+ - 1.18499
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 56.80626166893326
+ value: 56.80626166893326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8582598518
+ - -0.1093032916
+ - -0.0
+ - - 0.6081097017
+ - 0.4031238103
+ - 0.0
+ - - -0.6079028685
+ - -0.4027497847
+ - -0.0
+ - - -1.8583012577
+ - 0.1091033646
+ - 0.0
+ - - 2.7408857003
+ - 0.5311044533
+ - 0.0
+ - - 2.029246412
+ - -1.1884872642
+ - -0.0
+ - - 0.4717290703
+ - 1.4898600419
+ - 0.0
+ - - -0.4718904175
+ - -1.4895494434
+ - -0.0
+ - - -2.7404400738
+ - -0.532047385
+ - -0.0
+ - - -2.0305232556
+ - 1.1880750056
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.65631950423926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.847679
+ - -0.115469
+ - -0.0
+ - - 0.60716
+ - 0.397562
+ - -0.0
+ - - -0.607161
+ - -0.397574
+ - 0.0
+ - - -1.84768
+ - 0.115456
+ - 0.0
+ - - 2.728436
+ - 0.520205
+ - -0.0
+ - - 2.014385
+ - -1.191159
+ - -0.0
+ - - 0.47618
+ - 1.481125
+ - -0.0
+ - - -0.476181
+ - -1.481137
+ - 0.0
+ - - -2.728437
+ - -0.520218
+ - 0.0
+ - - -2.014386
+ - 1.191146
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.85651034093124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.851345
+ - -0.11589
+ - 0.0
+ - - 0.608048
+ - 0.397906
+ - 0.0
+ - - -0.608049
+ - -0.397919
+ - -0.0
+ - - -1.851346
+ - 0.115878
+ - -0.0
+ - - 2.735596
+ - 0.522504
+ - 0.0
+ - - 2.019577
+ - -1.195972
+ - 0.0
+ - - 0.476895
+ - 1.486353
+ - 0.0
+ - - -0.476896
+ - -1.486365
+ - -0.0
+ - - -2.735597
+ - -0.522517
+ - -0.0
+ - - -2.019579
+ - 1.195959
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.67841499217116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832554
+ - -0.112013
+ - -0.0
+ - - 0.608181
+ - 0.398866
+ - -0.0
+ - - -0.608182
+ - -0.398879
+ - 0.0
+ - - -1.832555
+ - 0.112
+ - 0.0
+ - - 2.710903
+ - 0.518354
+ - -0.0
+ - - 1.995567
+ - -1.183102
+ - -0.0
+ - - 0.476707
+ - 1.476714
+ - -0.0
+ - - -0.476709
+ - -1.476727
+ - 0.0
+ - - -2.710904
+ - -0.518367
+ - 0.0
+ - - -1.995569
+ - 1.183089
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.039807164500825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.844582
+ - -0.114226
+ - -0.0
+ - - 0.609669
+ - 0.397878
+ - -0.0
+ - - -0.60967
+ - -0.39789
+ - -0.0
+ - - -1.844583
+ - 0.114214
+ - -0.0
+ - - 2.723629
+ - 0.518898
+ - -0.0
+ - - 2.012692
+ - -1.186701
+ - -0.0
+ - - 0.479986
+ - 1.478389
+ - -0.0
+ - - -0.479987
+ - -1.478402
+ - -0.0
+ - - -2.72363
+ - -0.518911
+ - -0.0
+ - - -2.012693
+ - 1.186688
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.43292108307284
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.834502
+ - -0.111293
+ - 0.0
+ - - 0.609349
+ - 0.402673
+ - 0.0
+ - - -0.609337
+ - -0.402639
+ - 0.0
+ - - -1.834512
+ - 0.111271
+ - 0.0
+ - - 2.713662
+ - 0.518304
+ - 0.0
+ - - 1.992234
+ - -1.183758
+ - 0.0
+ - - 0.475801
+ - 1.480724
+ - 0.0
+ - - -0.475758
+ - -1.480686
+ - 0.0
+ - - -2.713631
+ - -0.518384
+ - 0.0
+ - - -1.992315
+ - 1.183726
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.62951103000963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.834502
+ - -0.111293
+ - 0.0
+ - - 0.609349
+ - 0.402673
+ - 0.0
+ - - -0.609337
+ - -0.402639
+ - 0.0
+ - - -1.834512
+ - 0.111271
+ - 0.0
+ - - 2.713662
+ - 0.518304
+ - 0.0
+ - - 1.992234
+ - -1.183758
+ - 0.0
+ - - 0.475801
+ - 1.480724
+ - 0.0
+ - - -0.475758
+ - -1.480686
+ - 0.0
+ - - -2.713631
+ - -0.518384
+ - 0.0
+ - - -1.992315
+ - 1.183726
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.13901384949783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.834502
+ - -0.111293
+ - 0.0
+ - - 0.609349
+ - 0.402673
+ - 0.0
+ - - -0.609337
+ - -0.402639
+ - 0.0
+ - - -1.834512
+ - 0.111271
+ - 0.0
+ - - 2.713662
+ - 0.518304
+ - 0.0
+ - - 1.992234
+ - -1.183758
+ - 0.0
+ - - 0.475801
+ - 1.480724
+ - 0.0
+ - - -0.475758
+ - -1.480686
+ - 0.0
+ - - -2.713631
+ - -0.518384
+ - 0.0
+ - - -1.992315
+ - 1.183726
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.67570850354476
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.8582598518
- - -0.1093032916
+ - - 1.844104
+ - -0.114015
+ - 0.0
+ - - 0.609259
+ - 0.396843
+ - 0.0
+ - - -0.60926
+ - -0.396855
+ - 0.0
+ - - -1.844105
+ - 0.114002
+ - 0.0
+ - - 2.725512
+ - 0.51697
+ - 0.0
+ - - 2.013763
+ - -1.1869
+ - 0.0
+ - - 0.476114
+ - 1.477829
+ - 0.0
+ - - -0.476116
+ - -1.477842
+ - 0.0
+ - - -2.725513
+ - -0.516983
+ - 0.0
+ - - -2.013764
+ - 1.186887
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.040187072555078
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.833854
+ - -0.111381
- -0.0
- - - 0.6081097017
- - 0.4031238103
+ - - 0.607717
+ - 0.402395
+ - -0.0
+ - - -0.607718
+ - -0.402408
- 0.0
- - - -0.6079028685
- - -0.4027497847
+ - - -1.833855
+ - 0.111368
+ - 0.0
+ - - 2.713771
+ - 0.517317
- -0.0
- - - -1.8583012577
- - 0.1091033646
+ - - 1.991091
+ - -1.183806
+ - -0.0
+ - - 0.47284
+ - 1.480155
+ - -0.0
+ - - -0.472842
+ - -1.480168
- 0.0
- - - 2.7408857003
- - 0.5311044533
+ - - -2.713772
+ - -0.517329
- 0.0
- - - 2.029246412
- - -1.1884872642
+ - - -1.991092
+ - 1.183794
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.97441173511871
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.835671
+ - -0.113563
+ - 0.0
+ - - 0.605521
+ - 0.397968
+ - 0.0
+ - - -0.605523
+ - -0.39798
- -0.0
- - - 0.4717290703
- - 1.4898600419
+ - - -1.835672
+ - 0.11355
+ - -0.0
+ - - 2.714702
+ - 0.519162
- 0.0
- - - -0.4718904175
- - -1.4895494434
+ - - 1.999264
+ - -1.186571
+ - 0.0
+ - - 0.474257
+ - 1.478095
+ - 0.0
+ - - -0.474258
+ - -1.478107
- -0.0
- - - -2.7404400738
- - -0.532047385
+ - - -2.714703
+ - -0.519175
- -0.0
- - - -2.0305232556
- - 1.1880750056
+ - - -1.999266
+ - 1.186559
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.713571051118876
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.847495
+ - -0.115285
+ - 0.0
+ - - 0.607503
+ - 0.398449
+ - 0.0
+ - - -0.607504
+ - -0.398461
+ - -0.0
+ - - -1.847496
+ - 0.115273
+ - -0.0
+ - - 2.72842
+ - 0.519069
- 0.0
+ - - 2.015283
+ - -1.190057
+ - 0.0
+ - - 0.476805
+ - 1.481179
+ - 0.0
+ - - -0.476806
+ - -1.481192
+ - -0.0
+ - - -2.728421
+ - -0.519082
+ - -0.0
+ - - -2.015284
+ - 1.190045
+ - -0.0
isotopes:
- 12
- 12
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.301185467104006
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8345016089
+ - -0.1112928452
+ - 0.0
+ - - 0.6093489748
+ - 0.4026727961
+ - 0.0
+ - - -0.6093370298
+ - -0.4026385343
+ - 0.0
+ - - -1.8345122999
+ - 0.11127115
+ - 0.0
+ - - 2.7136624196
+ - 0.5183037069
+ - 0.0
+ - - 1.9922338488
+ - -1.1837579851
+ - 0.0
+ - - 0.4758006972
+ - 1.4807238559
+ - 0.0
+ - - -0.4757583563
+ - -1.480686469
+ - 0.0
+ - - -2.7136312589
+ - -0.5183842032
+ - 0.0
+ - - -1.9923148742
+ - 1.1837256946
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.76233053765342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.835024
+ - -0.112364
+ - -0.0
+ - - 0.608836
+ - 0.39988
+ - -0.0
+ - - -0.608837
+ - -0.399892
+ - 0.0
+ - - -1.835026
+ - 0.112351
+ - 0.0
+ - - 2.713605
+ - 0.519321
+ - -0.0
+ - - 1.997758
+ - -1.184556
+ - -0.0
+ - - 0.477934
+ - 1.478633
+ - -0.0
+ - - -0.477935
+ - -1.478646
+ - 0.0
+ - - -2.713607
+ - -0.519334
+ - 0.0
+ - - -1.997759
+ - 1.184544
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/13-Butadiyne.yml b/input/reference_sets/main/13-Butadiyne.yml
index 6f3cca7290..5a9e9efee6 100644
--- a/input/reference_sets/main/13-Butadiyne.yml
+++ b/input/reference_sets/main/13-Butadiyne.yml
@@ -95,6 +95,94 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.68730482613927
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.893221
+ - - 0.0
+ - -0.0
+ - 0.682848
+ - - 0.0
+ - -0.0
+ - -0.682848
+ - - 0.0
+ - -0.0
+ - -1.893221
+ - - 0.0
+ - -0.0
+ - 2.955169
+ - - 0.0
+ - -0.0
+ - -2.955169
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 122.96118694362212
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.886601
+ - - 0.0
+ - -0.0
+ - 0.68178
+ - - 0.0
+ - -0.0
+ - -0.68178
+ - - 0.0
+ - -0.0
+ - -1.886601
+ - - 0.0
+ - -0.0
+ - 2.94884
+ - - 0.0
+ - -0.0
+ - -2.94884
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.65896146036783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.895419
+ - - 0.0
+ - -0.0
+ - 0.680335
+ - - 0.0
+ - -0.0
+ - -0.680335
+ - - 0.0
+ - -0.0
+ - -1.895419
+ - - 0.0
+ - -0.0
+ - 2.961667
+ - - 0.0
+ - -0.0
+ - -2.961667
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.95872824487788
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.899431
+ - - 0.0
+ - -0.0
+ - 0.680996
+ - - 0.0
+ - -0.0
+ - -0.680996
+ - - 0.0
+ - -0.0
+ - -1.899431
+ - - 0.0
+ - -0.0
+ - 2.97016
+ - - 0.0
+ - -0.0
+ - -2.97016
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 124.96838695369442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.883086
+ - - 0.0
+ - -0.0
+ - 0.685756
+ - - 0.0
+ - -0.0
+ - -0.685756
+ - - 0.0
+ - -0.0
+ - -1.883086
+ - - 0.0
+ - -0.0
+ - 2.945976
+ - - 0.0
+ - -0.0
+ - -2.945976
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 108.59994754529714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.889133
+ - - 0.0
+ - 0.0
+ - 0.68263
+ - - 0.0
+ - 0.0
+ - -0.68263
+ - - 0.0
+ - 0.0
+ - -1.889133
+ - - 0.0
+ - 0.0
+ - 2.95152
+ - - 0.0
+ - 0.0
+ - -2.95152
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 123.4452509279911
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 9.0e-06
+ - 1.889375
+ - - -0.0
+ - -3.0e-06
+ - 0.689696
+ - - -0.0
+ - -2.2e-05
+ - -0.689696
+ - - 0.0
+ - 5.0e-06
+ - -1.889375
+ - - 0.0
+ - 1.3e-05
+ - 2.95252
+ - - 0.0
+ - 5.5e-05
+ - -2.95252
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 113.56720712102842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 9.0e-06
+ - 1.889375
+ - - -0.0
+ - -3.0e-06
+ - 0.689696
+ - - -0.0
+ - -2.2e-05
+ - -0.689696
+ - - 0.0
+ - 5.0e-06
+ - -1.889375
+ - - 0.0
+ - 1.3e-05
+ - 2.95252
+ - - 0.0
+ - 5.5e-05
+ - -2.95252
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 111.31082821764171
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 9.0e-06
+ - 1.889375
+ - - -0.0
+ - -3.0e-06
+ - 0.689696
+ - - -0.0
+ - -2.2e-05
+ - -0.689696
+ - - 0.0
+ - 5.0e-06
+ - -1.889375
+ - - 0.0
+ - 1.3e-05
+ - 2.95252
+ - - 0.0
+ - 5.5e-05
+ - -2.95252
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 110.80165685799338
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.887641
+ - - 0.0
+ - 0.0
+ - 0.680932
+ - - 0.0
+ - 0.0
+ - -0.680932
+ - - 0.0
+ - 0.0
+ - -1.887641
+ - - 0.0
+ - 0.0
+ - 2.949498
+ - - 0.0
+ - 0.0
+ - -2.949498
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 116.43319128073506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.888197
+ - - 0.0
+ - -0.0
+ - 0.688141
+ - - 0.0
+ - -0.0
+ - -0.688141
+ - - 0.0
+ - -0.0
+ - -1.888197
+ - - 0.0
+ - -0.0
+ - 2.951933
+ - - 0.0
+ - -0.0
+ - -2.951933
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 129.20902159254342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.886757
+ - - 0.0
+ - -0.0
+ - 0.682116
+ - - 0.0
+ - -0.0
+ - -0.682116
+ - - 0.0
+ - -0.0
+ - -1.886757
+ - - 0.0
+ - -0.0
+ - 2.951186
+ - - 0.0
+ - -0.0
+ - -2.951186
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.64795893676632
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.893953
+ - - 0.0
+ - -0.0
+ - 0.680409
+ - - 0.0
+ - -0.0
+ - -0.680409
+ - - 0.0
+ - -0.0
+ - -1.893953
+ - - 0.0
+ - -0.0
+ - 2.959603
+ - - 0.0
+ - -0.0
+ - -2.959603
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 115.11069799539396
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 8.6359e-06
+ - 1.8893746518
+ - - -0.0
+ - -2.5903e-06
+ - 0.6896962954
+ - - -0.0
+ - -2.22564e-05
+ - -0.6896962987
+ - - 0.0
+ - 4.7811e-06
+ - -1.8893746469
+ - - 0.0
+ - 1.31071e-05
+ - 2.9525202274
+ - - 1.0e-10
+ - 5.54709e-05
+ - -2.9525202366
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 125.37036794481268
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.886172
+ - - 0.0
+ - -0.0
+ - 0.686274
+ - - 0.0
+ - -0.0
+ - -0.686274
+ - - 0.0
+ - -0.0
+ - -1.886172
+ - - 0.0
+ - -0.0
+ - 2.949877
+ - - 0.0
+ - -0.0
+ - -2.949877
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/13-Dithiane-2-thione.yml b/input/reference_sets/main/13-Dithiane-2-thione.yml
index 96134fd406..e2bd5b6635 100644
--- a/input/reference_sets/main/13-Dithiane-2-thione.yml
+++ b/input/reference_sets/main/13-Dithiane-2-thione.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.95867942158267
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.314091
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.681573
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.278064
+ - 1.463349
+ - 0.080249
+ - - -1.879553
+ - 0.694884
+ - -0.306135
+ - - -1.879519
+ - -0.694961
+ - 0.306179
+ - - -0.278006
+ - -1.46336
+ - -0.080238
+ - - -2.666485
+ - 1.319821
+ - 0.11544
+ - - -1.996466
+ - 0.64951
+ - -1.388507
+ - - -2.666433
+ - -1.31993
+ - -0.115379
+ - - -1.99641
+ - -0.649592
+ - 1.388554
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.29486510248955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.318966
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.68793
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.271954
+ - 1.464663
+ - 0.067761
+ - - -1.881939
+ - 0.695709
+ - -0.304827
+ - - -1.881904
+ - -0.695786
+ - 0.304872
+ - - -0.271896
+ - -1.464674
+ - -0.06775
+ - - -2.664826
+ - 1.321988
+ - 0.122729
+ - - -2.007465
+ - 0.654289
+ - -1.386691
+ - - -2.664775
+ - -1.322097
+ - -0.122668
+ - - -2.007409
+ - -0.654371
+ - 1.386738
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.164415530817976
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.329124
+ - 4.8e-05
+ - -2.2e-05
+ - - 0.693134
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.271917
+ - 1.467954
+ - 0.070917
+ - - -1.88419
+ - 0.69745
+ - -0.306003
+ - - -1.884155
+ - -0.697527
+ - 0.306047
+ - - -0.271859
+ - -1.467965
+ - -0.070907
+ - - -2.672407
+ - 1.325054
+ - 0.121654
+ - - -2.005352
+ - 0.655583
+ - -1.393001
+ - - -2.672356
+ - -1.325163
+ - -0.121593
+ - - -2.005295
+ - -0.655665
+ - 1.393048
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.599315423528765
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.339016
+ - 4.8e-05
+ - -2.3e-05
+ - - 0.698099
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.269576
+ - 1.470277
+ - 0.068848
+ - - -1.885645
+ - 0.698167
+ - -0.306792
+ - - -1.88561
+ - -0.698244
+ - 0.306837
+ - - -0.269517
+ - -1.470289
+ - -0.068837
+ - - -2.675519
+ - 1.330766
+ - 0.12388
+ - - -2.010555
+ - 0.659137
+ - -1.398725
+ - - -2.675468
+ - -1.330876
+ - -0.123819
+ - - -2.010498
+ - -0.659219
+ - 1.398772
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.1828316860896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.301271
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.679482
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.274556
+ - 1.457766
+ - 0.063913
+ - - -1.874433
+ - 0.694192
+ - -0.303151
+ - - -1.874398
+ - -0.694269
+ - 0.303196
+ - - -0.274497
+ - -1.457777
+ - -0.063903
+ - - -2.656722
+ - 1.318798
+ - 0.125826
+ - - -2.007401
+ - 0.652691
+ - -1.383456
+ - - -2.656671
+ - -1.318906
+ - -0.125765
+ - - -2.007345
+ - -0.652773
+ - 1.383503
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.331878827507147
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.333416
+ - 4.8e-05
+ - -2.2e-05
+ - - 0.697914
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.268275
+ - 1.473216
+ - 0.063132
+ - - -1.887027
+ - 0.697562
+ - -0.306433
+ - - -1.886992
+ - -0.697639
+ - 0.306477
+ - - -0.268216
+ - -1.473227
+ - -0.063122
+ - - -2.667822
+ - 1.326308
+ - 0.125734
+ - - -2.015277
+ - 0.65888
+ - -1.389464
+ - - -2.667771
+ - -1.326417
+ - -0.125673
+ - - -2.015221
+ - -0.658963
+ - 1.389511
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.62161895037314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.296739
+ - 1.1e-05
+ - 1.2e-05
+ - - 0.673179
+ - 2.7e-05
+ - -4.0e-06
+ - - -0.281037
+ - 1.458808
+ - 0.086769
+ - - -1.874178
+ - 0.693684
+ - -0.306229
+ - - -1.874134
+ - -0.693764
+ - 0.306261
+ - - -0.280972
+ - -1.458787
+ - -0.086799
+ - - -2.663159
+ - 1.318081
+ - 0.111561
+ - - -1.98935
+ - 0.646427
+ - -1.388935
+ - - -2.663106
+ - -1.318216
+ - -0.111471
+ - - -1.989253
+ - -0.646489
+ - 1.388971
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.25355793055871
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.296739
+ - 1.1e-05
+ - 1.2e-05
+ - - 0.673179
+ - 2.7e-05
+ - -4.0e-06
+ - - -0.281037
+ - 1.458808
+ - 0.086769
+ - - -1.874178
+ - 0.693684
+ - -0.306229
+ - - -1.874134
+ - -0.693764
+ - 0.306261
+ - - -0.280972
+ - -1.458787
+ - -0.086799
+ - - -2.663159
+ - 1.318081
+ - 0.111561
+ - - -1.98935
+ - 0.646427
+ - -1.388935
+ - - -2.663106
+ - -1.318216
+ - -0.111471
+ - - -1.989253
+ - -0.646489
+ - 1.388971
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.601371480179413
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.296739
+ - 1.1e-05
+ - 1.2e-05
+ - - 0.673179
+ - 2.7e-05
+ - -4.0e-06
+ - - -0.281037
+ - 1.458808
+ - 0.086769
+ - - -1.874178
+ - 0.693684
+ - -0.306229
+ - - -1.874134
+ - -0.693764
+ - 0.306261
+ - - -0.280972
+ - -1.458787
+ - -0.086799
+ - - -2.663159
+ - 1.318081
+ - 0.111561
+ - - -1.98935
+ - 0.646427
+ - -1.388935
+ - - -2.663106
+ - -1.318216
+ - -0.111471
+ - - -1.989253
+ - -0.646489
+ - 1.388971
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.399888986664838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.333761
+ - 4.8e-05
+ - -2.2e-05
+ - - 0.698883
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.266772
+ - 1.470247
+ - 0.057863
+ - - -1.886142
+ - 0.698644
+ - -0.305688
+ - - -1.886107
+ - -0.698721
+ - 0.305733
+ - - -0.266713
+ - -1.470258
+ - -0.057853
+ - - -2.666348
+ - 1.3284
+ - 0.129059
+ - - -2.019797
+ - 0.660645
+ - -1.389525
+ - - -2.666296
+ - -1.328509
+ - -0.128998
+ - - -2.019741
+ - -0.660728
+ - 1.389573
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.65029912332156
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.297056
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.674885
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.280169
+ - 1.459299
+ - 0.081216
+ - - -1.875159
+ - 0.694224
+ - -0.305641
+ - - -1.875124
+ - -0.694301
+ - 0.305685
+ - - -0.280111
+ - -1.459311
+ - -0.081206
+ - - -2.662495
+ - 1.31839
+ - 0.115309
+ - - -1.990884
+ - 0.64795
+ - -1.388079
+ - - -2.662443
+ - -1.318499
+ - -0.115248
+ - - -1.990828
+ - -0.648031
+ - 1.388125
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.01282325343571
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.301314
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.675337
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.27859
+ - 1.454036
+ - 0.071508
+ - - -1.873721
+ - 0.692929
+ - -0.304091
+ - - -1.873686
+ - -0.693006
+ - 0.304135
+ - - -0.278533
+ - -1.454047
+ - -0.071497
+ - - -2.660093
+ - 1.319536
+ - 0.121489
+ - - -1.998658
+ - 0.651568
+ - -1.388113
+ - - -2.660042
+ - -1.319645
+ - -0.121428
+ - - -1.998601
+ - -0.65165
+ - 1.38816
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.504206327162855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.33093
+ - 4.8e-05
+ - -2.2e-05
+ - - 0.692447
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.272401
+ - 1.467029
+ - 0.073792
+ - - -1.8859
+ - 0.697488
+ - -0.308046
+ - - -1.885864
+ - -0.697565
+ - 0.30809
+ - - -0.272342
+ - -1.467041
+ - -0.073782
+ - - -2.671543
+ - 1.327488
+ - 0.119908
+ - - -2.004582
+ - 0.656108
+ - -1.394599
+ - - -2.671491
+ - -1.327598
+ - -0.119847
+ - - -2.004526
+ - -0.65619
+ - 1.394646
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.578496282648477
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2967385234
+ - 1.12639e-05
+ - 1.17261e-05
+ - - 0.67317875
+ - 2.71948e-05
+ - -3.8747e-06
+ - - -0.2810367688
+ - 1.4588080736
+ - 0.0867688236
+ - - -1.8741783181
+ - 0.69368352
+ - -0.3062288745
+ - - -1.8741340135
+ - -0.6937643903
+ - 0.3062608458
+ - - -0.2809724169
+ - -1.4587869372
+ - -0.0867989506
+ - - -2.6631593214
+ - 1.3180811956
+ - 0.1115605517
+ - - -1.9893495424
+ - 0.6464270197
+ - -1.3889351303
+ - - -2.6631055714
+ - -1.3182157441
+ - -0.1114709738
+ - - -1.9892534784
+ - -0.6464888231
+ - 1.3889713872
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.66792797543739
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.303158
+ - 4.7e-05
+ - -2.2e-05
+ - - 0.678611
+ - 1.4e-05
+ - -5.0e-06
+ - - -0.274878
+ - 1.458757
+ - 0.063202
+ - - -1.87456
+ - 0.695182
+ - -0.304123
+ - - -1.874525
+ - -0.695259
+ - 0.304167
+ - - -0.27482
+ - -1.458768
+ - -0.063192
+ - - -2.657436
+ - 1.318913
+ - 0.126937
+ - - -2.006747
+ - 0.653665
+ - -1.385481
+ - - -2.657385
+ - -1.319022
+ - -0.126876
+ - - -2.00669
+ - -0.653747
+ - 1.385528
+ isotopes:
+ - 32
+ - 12
+ - 32
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - S
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/13-Propanedithiol.yml b/input/reference_sets/main/13-Propanedithiol.yml
index 5d7e379282..c5ef9d8c91 100644
--- a/input/reference_sets/main/13-Propanedithiol.yml
+++ b/input/reference_sets/main/13-Propanedithiol.yml
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.22964902292154488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.954783
+ - -0.662425
+ - 0.194274
+ - - -1.006125
+ - 0.521294
+ - -0.819384
+ - - -0.000711
+ - 1.367583
+ - -0.049731
+ - - 1.010184
+ - 0.581658
+ - 0.776715
+ - - 2.038919
+ - -0.581385
+ - -0.181752
+ - - -2.530564
+ - 0.241115
+ - 1.000063
+ - - -0.49206
+ - -0.101679
+ - -1.55118
+ - - -1.700383
+ - 1.157451
+ - -1.365504
+ - - -0.537718
+ - 2.044474
+ - 0.622726
+ - - 0.532194
+ - 1.99232
+ - -0.771867
+ - - 0.518999
+ - 0.025685
+ - 1.571762
+ - - 1.718897
+ - 1.26659
+ - 1.24122
+ - - 1.135641
+ - -1.567977
+ - -0.255035
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9127950893923401
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.960421
+ - -0.665468
+ - 0.191027
+ - - -1.008026
+ - 0.524826
+ - -0.820714
+ - - 2.7e-05
+ - 1.369066
+ - -0.050949
+ - - 1.011572
+ - 0.583425
+ - 0.776171
+ - - 2.044963
+ - -0.584903
+ - -0.180743
+ - - -2.536224
+ - 0.23545
+ - 1.005387
+ - - -0.495128
+ - -0.098759
+ - -1.553364
+ - - -1.702817
+ - 1.161992
+ - -1.365712
+ - - -0.535174
+ - 2.047966
+ - 0.621978
+ - - 0.532213
+ - 1.994444
+ - -0.774063
+ - - 0.519035
+ - 0.025898
+ - 1.569819
+ - - 1.720096
+ - 1.267661
+ - 1.242541
+ - - 1.142371
+ - -1.576895
+ - -0.249069
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 11.93078445727982
+ value: 11.93078445727982
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.9553748333
+ - -0.6732872007
+ - 0.1952837591
+ - - -1.0042845889
+ - 0.5339786311
+ - -0.8354703536
+ - - 0.0006806923
+ - 1.3905221289
+ - -0.050718438
+ - - 1.0144719848
+ - 0.5967319052
+ - 0.7865298831
+ - - 2.0360060508
+ - -0.5965189975
+ - -0.189972438
+ - - -2.4817899908
+ - 0.2478020323
+ - 1.0379982759
+ - - -0.4748617382
+ - -0.0885625064
+ - -1.5705635735
+ - - -1.7095003607
+ - 1.1724762153
+ - -1.3854297692
+ - - -0.5490898744
+ - 2.0681961802
+ - 0.6260070613
+ - - 0.5408349412
+ - 2.0219299094
+ - -0.7748494071
+ - - 0.5076947455
+ - 0.037077466
+ - 1.5830272336
+ - - 1.7328172603
+ - 1.2819008147
+ - 1.2572464384
+ - - 1.0785870062
+ - -1.5513169299
+ - -0.2604639455
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.457269317662442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.964018
+ - -0.670277
+ - 0.188769
+ - - -1.010488
+ - 0.524502
+ - -0.824434
+ - - -0.000562
+ - 1.370837
+ - -0.051827
+ - - 1.013184
+ - 0.58318
+ - 0.778011
+ - - 2.049557
+ - -0.587843
+ - -0.180672
+ - - -2.524315
+ - 0.236409
+ - 1.012604
+ - - -0.493396
+ - -0.101751
+ - -1.558678
+ - - -1.708672
+ - 1.163879
+ - -1.371928
+ - - -0.538983
+ - 2.051309
+ - 0.62436
+ - - 0.533551
+ - 1.998957
+ - -0.777916
+ - - 0.515716
+ - 0.021234
+ - 1.571892
+ - - 1.723856
+ - 1.269374
+ - 1.248736
+ - - 1.137059
+ - -1.575107
+ - -0.246607
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.485378748877499
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.020091
+ - -0.633036
+ - 0.226884
+ - - -1.024245
+ - 0.514689
+ - -0.806457
+ - - -0.001382
+ - 1.360675
+ - -0.046384
+ - - 1.023186
+ - 0.571567
+ - 0.772608
+ - - 2.108457
+ - -0.542346
+ - -0.208255
+ - - -2.624826
+ - 0.316559
+ - 0.981065
+ - - -0.512281
+ - -0.146977
+ - -1.521855
+ - - -1.704905
+ - 1.153963
+ - -1.385007
+ - - -0.531224
+ - 2.048534
+ - 0.637397
+ - - 0.527795
+ - 1.991185
+ - -0.781997
+ - - 0.53014
+ - -0.028263
+ - 1.549139
+ - - 1.715049
+ - 1.262388
+ - 1.275036
+ - - 1.246817
+ - -1.584235
+ - -0.279866
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.8304220068247816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.017679
+ - -0.613562
+ - 0.225204
+ - - -1.019528
+ - 0.507744
+ - -0.798559
+ - - -0.00272
+ - 1.348505
+ - -0.044022
+ - - 1.018607
+ - 0.567916
+ - 0.768736
+ - - 2.095187
+ - -0.532196
+ - -0.198188
+ - - -2.613935
+ - 0.32604
+ - 0.971669
+ - - -0.514253
+ - -0.147039
+ - -1.508355
+ - - -1.685131
+ - 1.147113
+ - -1.375091
+ - - -0.528896
+ - 2.02833
+ - 0.633388
+ - - 0.520945
+ - 1.97339
+ - -0.772312
+ - - 0.534632
+ - -0.019408
+ - 1.545341
+ - - 1.698874
+ - 1.260659
+ - 1.262475
+ - - 1.246387
+ - -1.562789
+ - -0.297976
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.042757546753897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.060067
+ - -0.610094
+ - 0.237998
+ - - -1.03226
+ - 0.510922
+ - -0.800321
+ - - -0.00143
+ - 1.349173
+ - -0.04324
+ - - 1.029072
+ - 0.566942
+ - 0.773485
+ - - 2.139298
+ - -0.528432
+ - -0.207522
+ - - -2.671536
+ - 0.347958
+ - 0.956677
+ - - -0.536469
+ - -0.158197
+ - -1.506751
+ - - -1.696438
+ - 1.153576
+ - -1.37904
+ - - -0.522425
+ - 2.033815
+ - 0.637901
+ - - 0.521557
+ - 1.973665
+ - -0.776592
+ - - 0.550297
+ - -0.037137
+ - 1.543542
+ - - 1.705788
+ - 1.261781
+ - 1.273981
+ - - 1.307101
+ - -1.579268
+ - -0.297811
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.6939537898597092
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.942432
+ - -0.662108
+ - 0.192746
+ - - -1.00345
+ - 0.520357
+ - -0.819052
+ - - -0.002063
+ - 1.368871
+ - -0.048334
+ - - 1.010053
+ - 0.581345
+ - 0.772876
+ - - 2.02542
+ - -0.580397
+ - -0.18873
+ - - -2.523354
+ - 0.240368
+ - 0.996337
+ - - -0.485189
+ - -0.098752
+ - -1.552145
+ - - -1.698563
+ - 1.153893
+ - -1.366837
+ - - -0.541399
+ - 2.041314
+ - 0.626791
+ - - 0.528664
+ - 1.998651
+ - -0.767856
+ - - 0.520906
+ - 0.0269
+ - 1.570792
+ - - 1.720233
+ - 1.264808
+ - 1.237519
+ - - 1.123665
+ - -1.570545
+ - -0.241799
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.315916886346097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.942432
+ - -0.662108
+ - 0.192746
+ - - -1.00345
+ - 0.520357
+ - -0.819052
+ - - -0.002063
+ - 1.368871
+ - -0.048334
+ - - 1.010053
+ - 0.581345
+ - 0.772876
+ - - 2.02542
+ - -0.580397
+ - -0.18873
+ - - -2.523354
+ - 0.240368
+ - 0.996337
+ - - -0.485189
+ - -0.098752
+ - -1.552145
+ - - -1.698563
+ - 1.153893
+ - -1.366837
+ - - -0.541399
+ - 2.041314
+ - 0.626791
+ - - 0.528664
+ - 1.998651
+ - -0.767856
+ - - 0.520906
+ - 0.0269
+ - 1.570793
+ - - 1.720233
+ - 1.264808
+ - 1.237519
+ - - 1.123665
+ - -1.570545
+ - -0.241799
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.321940086250814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.942432
+ - -0.662108
+ - 0.192746
+ - - -1.00345
+ - 0.520357
+ - -0.819052
+ - - -0.002063
+ - 1.368871
+ - -0.048334
+ - - 1.010053
+ - 0.581345
+ - 0.772876
+ - - 2.02542
+ - -0.580397
+ - -0.18873
+ - - -2.523354
+ - 0.240368
+ - 0.996337
+ - - -0.485189
+ - -0.098752
+ - -1.552145
+ - - -1.698563
+ - 1.153893
+ - -1.366837
+ - - -0.541399
+ - 2.041314
+ - 0.626791
+ - - 0.528664
+ - 1.998651
+ - -0.767856
+ - - 0.520906
+ - 0.0269
+ - 1.570793
+ - - 1.720233
+ - 1.264808
+ - 1.237519
+ - - 1.123665
+ - -1.570545
+ - -0.241799
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.91313330357706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.064015
+ - -0.603413
+ - 0.239926
+ - - -1.028952
+ - 0.504264
+ - -0.800368
+ - - -0.003143
+ - 1.348426
+ - -0.04237
+ - - 1.026481
+ - 0.565957
+ - 0.776102
+ - - 2.139626
+ - -0.523527
+ - -0.202682
+ - - -2.655564
+ - 0.361285
+ - 0.970533
+ - - -0.526715
+ - -0.174413
+ - -1.495345
+ - - -1.68758
+ - 1.14326
+ - -1.392202
+ - - -0.529089
+ - 2.031629
+ - 0.638499
+ - - 0.520076
+ - 1.974969
+ - -0.775561
+ - - 0.544132
+ - -0.041254
+ - 1.543614
+ - - 1.702103
+ - 1.261173
+ - 1.280481
+ - - 1.29513
+ - -1.563654
+ - -0.328316
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.888078170015052
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.9553748333
- - -0.6732872007
- - 0.1952837591
- - - -1.0042845889
- - 0.5339786311
- - -0.8354703536
- - - 0.0006806923
- - 1.3905221289
- - -0.050718438
- - - 1.0144719848
- - 0.5967319052
- - 0.7865298831
- - - 2.0360060508
- - -0.5965189975
- - -0.189972438
- - - -2.4817899908
- - 0.2478020323
- - 1.0379982759
- - - -0.4748617382
- - -0.0885625064
- - -1.5705635735
- - - -1.7095003607
- - 1.1724762153
- - -1.3854297692
- - - -0.5490898744
- - 2.0681961802
- - 0.6260070613
- - - 0.5408349412
- - 2.0219299094
- - -0.7748494071
- - - 0.5076947455
- - 0.037077466
- - 1.5830272336
- - - 1.7328172603
- - 1.2819008147
- - 1.2572464384
- - - 1.0785870062
- - -1.5513169299
- - -0.2604639455
+ - - -1.917351
+ - -0.680866
+ - 0.160209
+ - - -0.993183
+ - 0.525816
+ - -0.835981
+ - - 0.000289
+ - 1.373409
+ - -0.053943
+ - - 0.997876
+ - 0.585884
+ - 0.785709
+ - - 1.99293
+ - -0.611216
+ - -0.150741
+ - - -2.443729
+ - 0.198321
+ - 1.022019
+ - - -0.469221
+ - -0.078921
+ - -1.576817
+ - - -1.69678
+ - 1.160247
+ - -1.371762
+ - - -0.547031
+ - 2.050067
+ - 0.610311
+ - - 0.54399
+ - 1.996319
+ - -0.76943
+ - - 0.497797
+ - 0.054429
+ - 1.592735
+ - - 1.720234
+ - 1.265864
+ - 1.235825
+ - - 1.046668
+ - -1.554649
+ - -0.235824
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.479436605478544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.982733
+ - -0.632751
+ - 0.21099
+ - - -1.012746
+ - 0.514893
+ - -0.804908
+ - - -0.002604
+ - 1.356818
+ - -0.046687
+ - - 1.012303
+ - 0.572903
+ - 0.767565
+ - - 2.065639
+ - -0.546599
+ - -0.196997
+ - - -2.572953
+ - 0.291738
+ - 0.986373
+ - - -0.499745
+ - -0.12899
+ - -1.523739
+ - - -1.692741
+ - 1.150614
+ - -1.373499
+ - - -0.532571
+ - 2.037327
+ - 0.631083
+ - - 0.524585
+ - 1.983984
+ - -0.774198
+ - - 0.522664
+ - -0.007468
+ - 1.549939
+ - - 1.705695
+ - 1.260238
+ - 1.255985
+ - - 1.197697
+ - -1.568005
+ - -0.269599
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.008865737145252
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.999626
+ - -0.640658
+ - 0.221892
+ - - -1.017431
+ - 0.517452
+ - -0.812259
+ - - -0.001571
+ - 1.367806
+ - -0.046493
+ - - 1.019552
+ - 0.575709
+ - 0.775068
+ - - 2.085517
+ - -0.554642
+ - -0.207584
+ - - -2.601011
+ - 0.295556
+ - 0.981554
+ - - -0.502685
+ - -0.135282
+ - -1.524586
+ - - -1.703714
+ - 1.150772
+ - -1.380126
+ - - -0.534365
+ - 2.047303
+ - 0.634362
+ - - 0.527872
+ - 1.995003
+ - -0.776259
+ - - 0.527433
+ - -0.015496
+ - 1.550476
+ - - 1.718099
+ - 1.260554
+ - 1.264085
+ - - 1.21442
+ - -1.579375
+ - -0.267821
isotopes:
- 32
- 12
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.71189026525603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.9424323362
+ - -0.6621077238
+ - 0.1927458632
+ - - -1.0034500871
+ - 0.5203567205
+ - -0.8190520312
+ - - -0.0020631494
+ - 1.3688708219
+ - -0.04833433
+ - - 1.0100526727
+ - 0.5813446967
+ - 0.7728762736
+ - - 2.0254198898
+ - -0.5803965817
+ - -0.1887297588
+ - - -2.5233544515
+ - 0.2403675649
+ - 0.9963372223
+ - - -0.4851890708
+ - -0.098752442
+ - -1.552145468
+ - - -1.6985634569
+ - 1.1538927113
+ - -1.3668368983
+ - - -0.5413987271
+ - 2.0413138158
+ - 0.6267911494
+ - - 0.5286641123
+ - 1.9986508808
+ - -0.7678558374
+ - - 0.520906298
+ - 0.0268995177
+ - 1.5707924977
+ - - 1.7202327696
+ - 1.2648083017
+ - 1.237519012
+ - - 1.1236650511
+ - -1.5705448961
+ - -0.2417988216
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.062594618402615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.989256
+ - -0.639763
+ - 0.198507
+ - - -1.014016
+ - 0.513917
+ - -0.812609
+ - - -0.002302
+ - 1.35627
+ - -0.04828
+ - - 1.014217
+ - 0.574953
+ - 0.774091
+ - - 2.065938
+ - -0.561174
+ - -0.178851
+ - - -2.548782
+ - 0.277023
+ - 0.999879
+ - - -0.503058
+ - -0.122878
+ - -1.536608
+ - - -1.692581
+ - 1.155709
+ - -1.372796
+ - - -0.534715
+ - 2.034899
+ - 0.626668
+ - - 0.525546
+ - 1.981829
+ - -0.773992
+ - - 0.524577
+ - 0.006948
+ - 1.563412
+ - - 1.707839
+ - 1.266923
+ - 1.251883
+ - - 1.179083
+ - -1.559953
+ - -0.278995
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/135-Triazine.yml b/input/reference_sets/main/135-Triazine.yml
index 6b4098388e..a6231aa2bd 100644
--- a/input/reference_sets/main/135-Triazine.yml
+++ b/input/reference_sets/main/135-Triazine.yml
@@ -128,44 +128,811 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.78097166017176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.228663
+ - 0.605642
+ - 0.0
+ - - 0.084695
+ - 1.289497
+ - 0.0
+ - - -1.138884
+ - 0.761124
+ - -0.0
+ - - -1.159133
+ - -0.571505
+ - -0.0
+ - - -0.089762
+ - -1.366967
+ - -0.0
+ - - 1.074456
+ - -0.71819
+ - 0.0
+ - - 0.15571
+ - 2.370864
+ - 0.0
+ - - -2.131132
+ - -1.050689
+ - -0.0
+ - - 1.975439
+ - -1.320376
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.10174960459408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.225884
+ - 0.604277
+ - -0.0
+ - - 0.084681
+ - 1.289283
+ - -0.0
+ - - -1.136305
+ - 0.759403
+ - -0.0
+ - - -1.158941
+ - -0.571412
+ - 0.0
+ - - -0.089562
+ - -1.36388
+ - 0.0
+ - - 1.074279
+ - -0.718073
+ - 0.0
+ - - 0.155779
+ - 2.371938
+ - -0.0
+ - - -2.132099
+ - -1.051162
+ - 0.0
+ - - 1.976336
+ - -1.320975
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 71.06931977695608
+ value: 71.06931977695608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.6423168738
+ - -1.2282756443
+ - 0.0
+ - - -1.2988778916
+ - -0.054385036
+ - -0.0
+ - - -0.7427040784
+ - 1.1701020742
+ - -0.0
+ - - 0.602119954
+ - 1.151307484
+ - -0.0
+ - - 1.3851372064
+ - 0.0580986625
+ - 0.0
+ - - 0.6962461839
+ - -1.0971043498
+ - 0.0
+ - - -2.3913597755
+ - -0.098594355
+ - -0.0
+ - - 1.1102386428
+ - 2.1201582003
+ - -0.0
+ - - 1.2833778749
+ - -2.0199480813
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.71076945281932
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.234754
+ - 0.608649
+ - 0.0
+ - - 0.084947
+ - 1.293439
+ - 0.0
+ - - -1.144532
+ - 0.764901
+ - 0.0
+ - - -1.16268
+ - -0.573247
+ - 0.0
+ - - -0.090209
+ - -1.373747
+ - 0.0
+ - - 1.077751
+ - -0.720393
+ - 0.0
+ - - 0.1564
+ - 2.381391
+ - 0.0
+ - - -2.140597
+ - -1.055351
+ - 0.0
+ - - 1.984221
+ - -1.326243
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.8529153647959
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.238248
+ - 0.610363
+ - 0.0
+ - - 0.085083
+ - 1.295412
+ - 0.0
+ - - -1.147769
+ - 0.767059
+ - -0.0
+ - - -1.164451
+ - -0.574126
+ - -0.0
+ - - -0.090462
+ - -1.377625
+ - -0.0
+ - - 1.079385
+ - -0.721484
+ - 0.0
+ - - 0.156852
+ - 2.388249
+ - 0.0
+ - - -2.14676
+ - -1.058392
+ - -0.0
+ - - 1.989925
+ - -1.330057
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.16284116075331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.219235
+ - 0.600996
+ - -0.0
+ - - 0.084327
+ - 1.283919
+ - 0.0
+ - - -1.130146
+ - 0.755289
+ - 0.0
+ - - -1.15412
+ - -0.569034
+ - 0.0
+ - - -0.089072
+ - -1.356485
+ - -0.0
+ - - 1.069808
+ - -0.715086
+ - -0.0
+ - - 0.155415
+ - 2.366352
+ - 0.0
+ - - -2.127077
+ - -1.048689
+ - 0.0
+ - - 1.971681
+ - -1.317863
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.86404194387077
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230595
+ - 0.606599
+ - 0.0
+ - - 0.08474
+ - 1.290203
+ - 0.0
+ - - -1.140674
+ - 0.762323
+ - 0.0
+ - - -1.159768
+ - -0.571818
+ - 0.0
+ - - -0.089906
+ - -1.369121
+ - -0.0
+ - - 1.075048
+ - -0.718587
+ - -0.0
+ - - 0.155926
+ - 2.374191
+ - 0.0
+ - - -2.134125
+ - -1.05216
+ - 0.0
+ - - 1.978216
+ - -1.322231
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.93005505674748
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224077
+ - 0.603524
+ - 0.0
+ - - 0.084374
+ - 1.284629
+ - 0.0
+ - - -1.134757
+ - 0.758301
+ - 0.0
+ - - -1.154877
+ - -0.5693
+ - 0.0
+ - - -0.089337
+ - -1.361691
+ - 0.0
+ - - 1.070512
+ - -0.715368
+ - 0.0
+ - - 0.15554
+ - 2.36696
+ - 0.0
+ - - -2.127342
+ - -1.049173
+ - 0.0
+ - - 1.971862
+ - -1.318482
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.29355857839049
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224077
+ - 0.603524
+ - 0.0
+ - - 0.084374
+ - 1.284629
+ - 0.0
+ - - -1.134757
+ - 0.758301
+ - 0.0
+ - - -1.154877
+ - -0.5693
+ - 0.0
+ - - -0.089337
+ - -1.361691
+ - 0.0
+ - - 1.070512
+ - -0.715368
+ - 0.0
+ - - 0.15554
+ - 2.36696
+ - 0.0
+ - - -2.127342
+ - -1.049173
+ - 0.0
+ - - 1.971862
+ - -1.318482
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.714291780361506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224077
+ - 0.603524
+ - 0.0
+ - - 0.084374
+ - 1.284629
+ - 0.0
+ - - -1.134757
+ - 0.758301
+ - 0.0
+ - - -1.154877
+ - -0.5693
+ - 0.0
+ - - -0.089337
+ - -1.361691
+ - 0.0
+ - - 1.070512
+ - -0.715368
+ - 0.0
+ - - 0.15554
+ - 2.36696
+ - 0.0
+ - - -2.127342
+ - -1.049173
+ - 0.0
+ - - 1.971862
+ - -1.318482
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.47354826727302
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.6423168738
- - -1.2282756443
+ - - 1.230598
+ - 0.606595
- 0.0
- - - -1.2988778916
- - -0.054385036
+ - - 0.08464
+ - 1.288671
+ - 0.0
+ - - -1.140678
+ - 0.762322
+ - 0.0
+ - - -1.15839
+ - -0.571139
+ - 0.0
+ - - -0.089903
+ - -1.369118
+ - 0.0
+ - - 1.073767
+ - -0.71773
+ - 0.0
+ - - 0.15593
+ - 2.374206
+ - 0.0
+ - - -2.134133
+ - -1.05217
+ - 0.0
+ - - 1.978221
+ - -1.322238
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.42263911303756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223168
+ - 0.602939
+ - 0.0
+ - - 0.084391
+ - 1.284961
+ - 0.0
+ - - -1.133793
+ - 0.757731
+ - 0.0
+ - - -1.15505
+ - -0.569484
+ - 0.0
+ - - -0.089358
+ - -1.360856
- -0.0
- - - -0.7427040784
- - 1.1701020742
+ - - 1.070673
+ - -0.715659
- -0.0
- - - 0.602119954
- - 1.151307484
+ - - 0.155512
+ - 2.367663
+ - 0.0
+ - - -2.128249
+ - -1.049296
- -0.0
- - - 1.3851372064
- - 0.0580986625
+ - - 1.972758
+ - -1.318602
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.55116849801524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223347
+ - 0.60302
- 0.0
- - - 0.6962461839
- - -1.0971043498
+ - - 0.084258
+ - 1.282857
- 0.0
- - - -2.3913597755
- - -0.098594355
+ - - -1.133957
+ - 0.757829
+ - 0.0
+ - - -1.153169
+ - -0.568562
+ - 0.0
+ - - -0.089373
+ - -1.361047
+ - 0.0
+ - - 1.068928
+ - -0.714492
+ - 0.0
+ - - 0.1555
+ - 2.367656
+ - 0.0
+ - - -2.128251
+ - -1.049269
+ - 0.0
+ - - 1.972768
+ - -1.318593
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.22906246592082
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.235989
+ - 0.609248
+ - 0.0
+ - - 0.084939
+ - 1.293218
+ - 0.0
+ - - -1.145676
+ - 0.765658
- -0.0
- - - 1.1102386428
- - 2.1201582003
+ - - -1.162486
+ - -0.573152
- -0.0
- - - 1.2833778749
- - -2.0199480813
+ - - -0.090296
+ - -1.375105
+ - -0.0
+ - - 1.077565
+ - -0.720262
+ - 0.0
+ - - 0.156291
+ - 2.379705
+ - 0.0
+ - - -2.139086
+ - -1.054608
+ - -0.0
+ - - 1.982813
+ - -1.325302
- 0.0
isotopes:
- 14
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.93795902839082
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2240773111
+ - 0.6035235551
+ - 0.0
+ - - 0.0843739929
+ - 1.2846291459
+ - 0.0
+ - - -1.134756873
+ - 0.7583008034
+ - 0.0
+ - - -1.1548767359
+ - -0.5693003055
+ - 0.0
+ - - -0.0893371461
+ - -1.3616913879
+ - 0.0
+ - - 1.0705122623
+ - -0.7153682024
+ - 0.0
+ - - 0.1555399291
+ - 2.3669601555
+ - 0.0
+ - - -2.1273419952
+ - -1.0491729327
+ - 0.0
+ - - 1.9718619067
+ - -1.318481845
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.297343303298874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.222622
+ - 0.602664
+ - 0.0
+ - - 0.084337
+ - 1.284062
+ - 0.0
+ - - -1.133283
+ - 0.757382
+ - 0.0
+ - - -1.154294
+ - -0.569083
+ - 0.0
+ - - -0.089317
+ - -1.360181
+ - 0.0
+ - - 1.069976
+ - -0.715155
+ - 0.0
+ - - 0.155469
+ - 2.367186
+ - 0.0
+ - - -2.127842
+ - -1.049102
+ - 0.0
+ - - 1.972385
+ - -1.318374
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/135-Trioxane.yml b/input/reference_sets/main/135-Trioxane.yml
index 43048d86bb..eec443bc47 100644
--- a/input/reference_sets/main/135-Trioxane.yml
+++ b/input/reference_sets/main/135-Trioxane.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.0098888258877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.249327
+ - -1.319543
+ - 0.262508
+ - - -1.006949
+ - -0.865999
+ - -0.182873
+ - - -1.267192
+ - 0.44397
+ - 0.262738
+ - - -0.246426
+ - 1.305048
+ - -0.183209
+ - - 1.018322
+ - 0.875564
+ - 0.262105
+ - - 1.253519
+ - -0.439164
+ - -0.183414
+ - - -1.763098
+ - -1.516279
+ - 0.243935
+ - - -1.037523
+ - -0.892141
+ - -1.283264
+ - - -0.25415
+ - 1.344303
+ - -1.283609
+ - - -0.431361
+ - 2.285149
+ - 0.243395
+ - - 1.291088
+ - -0.452536
+ - -1.283821
+ - - 2.194899
+ - -0.768884
+ - 0.243057
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.98360124149012
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.249453
+ - -1.320233
+ - 0.257247
+ - - -1.00999
+ - -0.868634
+ - -0.183297
+ - - -1.267871
+ - 0.444204
+ - 0.257326
+ - - -0.247143
+ - 1.309024
+ - -0.18364
+ - - 1.018866
+ - 0.876027
+ - 0.256755
+ - - 1.257285
+ - -0.440519
+ - -0.183836
+ - - -1.764731
+ - -1.517701
+ - 0.251153
+ - - -1.048854
+ - -0.902022
+ - -1.284713
+ - - -0.256894
+ - 1.359201
+ - -1.285068
+ - - -0.431782
+ - 2.287268
+ - 0.250665
+ - - 1.305165
+ - -0.457545
+ - -1.285271
+ - - 2.196954
+ - -0.769583
+ - 0.250226
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -86.74189833529108
+ value: -86.74189833529108
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3336427373
+ - -0.26822475
+ - -0.265614831
+ - - 0.8836187216
+ - 1.0024951531
+ - 0.1814114387
+ - - -0.4339617981
+ - 1.2877576228
+ - -0.2658055612
+ - - -1.310608963
+ - 0.2639224922
+ - 0.181201521
+ - - -0.8994179541
+ - -1.0198199057
+ - -0.2651524069
+ - - 0.4267950772
+ - -1.2663556921
+ - 0.1810990729
+ - - 1.5467553856
+ - 1.7565182837
+ - -0.2552631302
+ - - 0.9171604098
+ - 1.0407066313
+ - 1.2930273123
+ - - -1.3608677258
+ - 0.2744775855
+ - 1.2926591863
+ - - -2.2944966738
+ - 0.462312584
+ - -0.2564251605
+ - - 0.443804271
+ - -1.3143642352
+ - 1.2926494802
+ - - 0.7467114378
+ - -2.2177263056
+ - -0.2563374912
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.23594205497427
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.251252
+ - -1.329745
+ - 0.265512
+ - - -1.011675
+ - -0.870076
+ - -0.182732
+ - - -1.276982
+ - 0.447408
+ - 0.265744
+ - - -0.247537
+ - 1.311134
+ - -0.18306
+ - - 1.026172
+ - 0.882318
+ - 0.265296
+ - - 1.259373
+ - -0.441167
+ - -0.183262
+ - - -1.771769
+ - -1.523737
+ - 0.247796
+ - - -1.042455
+ - -0.89638
+ - -1.290259
+ - - -0.255168
+ - 1.350484
+ - -1.290599
+ - - -0.433485
+ - 2.29639
+ - 0.247128
+ - - 1.297031
+ - -0.454469
+ - -1.290804
+ - - 2.205698
+ - -0.772671
+ - 0.246787
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -94.51765619446424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.251823
+ - -1.332731
+ - 0.272266
+ - - -1.011784
+ - -0.870166
+ - -0.181339
+ - - -1.279904
+ - 0.44839
+ - 0.272442
+ - - -0.247558
+ - 1.31127
+ - -0.181662
+ - - 1.028507
+ - 0.884324
+ - 0.272016
+ - - 1.259517
+ - -0.441203
+ - -0.181863
+ - - -1.777618
+ - -1.528763
+ - 0.243921
+ - - -1.036156
+ - -0.89097
+ - -1.294501
+ - - -0.253595
+ - 1.342332
+ - -1.294834
+ - - -0.434916
+ - 2.303959
+ - 0.243256
+ - - 1.289157
+ - -0.45172
+ - -1.295044
+ - - 2.212984
+ - -0.775231
+ - 0.242891
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -103.04578900913424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.24789
+ - -1.311949
+ - 0.255371
+ - - -1.00575
+ - -0.864976
+ - -0.182287
+ - - -1.259906
+ - 0.441418
+ - 0.255523
+ - - -0.246103
+ - 1.303497
+ - -0.182626
+ - - 1.012462
+ - 0.870521
+ - 0.254972
+ - - 1.252007
+ - -0.438642
+ - -0.182824
+ - - -1.760731
+ - -1.514257
+ - 0.250242
+ - - -1.044683
+ - -0.898363
+ - -1.282972
+ - - -0.255839
+ - 1.353638
+ - -1.283324
+ - - -0.430795
+ - 2.282083
+ - 0.249696
+ - - 1.299936
+ - -0.455638
+ - -1.283529
+ - - 2.191971
+ - -0.767844
+ - 0.249307
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -116.26691310596975
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.250108
+ - -1.323697
+ - 0.257616
+ - - -1.010587
+ - -0.869151
+ - -0.183689
+ - - -1.271167
+ - 0.445372
+ - 0.257802
+ - - -0.247274
+ - 1.309734
+ - -0.184023
+ - - 1.021497
+ - 0.878294
+ - 0.257379
+ - - 1.25801
+ - -0.440703
+ - -0.184222
+ - - -1.765223
+ - -1.518097
+ - 0.253387
+ - - -1.052156
+ - -0.904788
+ - -1.286959
+ - - -0.25755
+ - 1.363168
+ - -1.287312
+ - - -0.431886
+ - 2.287902
+ - 0.252728
+ - - 1.309138
+ - -0.45873
+ - -1.287517
+ - - 2.197547
+ - -0.769817
+ - 0.252356
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -103.73951778372984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.248599
+ - -1.315051
+ - 0.266654
+ - - -1.004002
+ - -0.863379
+ - -0.180931
+ - - -1.26353
+ - 0.44273
+ - 0.266301
+ - - -0.245484
+ - 1.300891
+ - -0.18136
+ - - 1.014818
+ - 0.872377
+ - 0.267282
+ - - 1.249552
+ - -0.437487
+ - -0.18155
+ - - -1.762823
+ - -1.516374
+ - 0.237997
+ - - -1.02853
+ - -0.884731
+ - -1.282785
+ - - -0.250695
+ - 1.331977
+ - -1.28329
+ - - -0.431331
+ - 2.285061
+ - 0.236748
+ - - 1.279081
+ - -0.447439
+ - -1.2835
+ - - 2.194801
+ - -0.769087
+ - 0.235982
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.13472305466844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.248599
+ - -1.315051
+ - 0.266654
+ - - -1.004002
+ - -0.863379
+ - -0.180931
+ - - -1.26353
+ - 0.44273
+ - 0.266301
+ - - -0.245484
+ - 1.300891
+ - -0.18136
+ - - 1.014818
+ - 0.872377
+ - 0.267282
+ - - 1.249552
+ - -0.437487
+ - -0.18155
+ - - -1.762823
+ - -1.516374
+ - 0.237997
+ - - -1.02853
+ - -0.884731
+ - -1.282785
+ - - -0.250695
+ - 1.331977
+ - -1.28329
+ - - -0.431331
+ - 2.285061
+ - 0.236748
+ - - 1.279081
+ - -0.447439
+ - -1.2835
+ - - 2.194801
+ - -0.769087
+ - 0.235982
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.64067712674726
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.248599
+ - -1.315051
+ - 0.266654
+ - - -1.004002
+ - -0.863379
+ - -0.180931
+ - - -1.26353
+ - 0.44273
+ - 0.266301
+ - - -0.245484
+ - 1.300891
+ - -0.18136
+ - - 1.014818
+ - 0.872377
+ - 0.267282
+ - - 1.249552
+ - -0.437487
+ - -0.18155
+ - - -1.762823
+ - -1.516374
+ - 0.237997
+ - - -1.02853
+ - -0.884731
+ - -1.282785
+ - - -0.250695
+ - 1.331977
+ - -1.28329
+ - - -0.431331
+ - 2.285061
+ - 0.236748
+ - - 1.279081
+ - -0.447439
+ - -1.2835
+ - - 2.194801
+ - -0.769087
+ - 0.235982
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -111.89023268646548
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.3336427373
- - -0.26822475
- - -0.265614831
- - - 0.8836187216
- - 1.0024951531
- - 0.1814114387
- - - -0.4339617981
- - 1.2877576228
- - -0.2658055612
- - - -1.310608963
- - 0.2639224922
- - 0.181201521
- - - -0.8994179541
- - -1.0198199057
- - -0.2651524069
- - - 0.4267950772
- - -1.2663556921
- - 0.1810990729
- - - 1.5467553856
- - 1.7565182837
- - -0.2552631302
- - - 0.9171604098
- - 1.0407066313
- - 1.2930273123
- - - -1.3608677258
- - 0.2744775855
- - 1.2926591863
- - - -2.2944966738
- - 0.462312584
- - -0.2564251605
- - - 0.443804271
- - -1.3143642352
- - 1.2926494802
- - - 0.7467114378
- - -2.2177263056
- - -0.2563374912
+ - - 0.249475
+ - -1.320328
+ - 0.258673
+ - - -1.007454
+ - -0.866446
+ - -0.182416
+ - - -1.267946
+ - 0.444232
+ - 0.258868
+ - - -0.246526
+ - 1.305698
+ - -0.182756
+ - - 1.018913
+ - 0.876095
+ - 0.258296
+ - - 1.254136
+ - -0.439375
+ - -0.182955
+ - - -1.765805
+ - -1.518608
+ - 0.252126
+ - - -1.050693
+ - -0.903498
+ - -1.288048
+ - - -0.25731
+ - 1.361369
+ - -1.2884
+ - - -0.432023
+ - 2.288649
+ - 0.251569
+ - - 1.307419
+ - -0.458241
+ - -1.288611
+ - - 2.198272
+ - -0.77006
+ - 0.251201
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -116.25990792686179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.247751
+ - -1.311181
+ - 0.259373
+ - - -1.004232
+ - -0.863649
+ - -0.181522
+ - - -1.259151
+ - 0.441139
+ - 0.259655
+ - - -0.245733
+ - 1.301495
+ - -0.181846
+ - - 1.011821
+ - 0.869965
+ - 0.259112
+ - - 1.250133
+ - -0.437957
+ - -0.18207
+ - - -1.761188
+ - -1.514629
+ - 0.24532
+ - - -1.036257
+ - -0.89099
+ - -1.282884
+ - - -0.253758
+ - 1.342484
+ - -1.283224
+ - - -0.430882
+ - 2.282693
+ - 0.244678
+ - - 1.289409
+ - -0.451849
+ - -1.283454
+ - - 2.192544
+ - -0.768034
+ - 0.24441
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.3290876485776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.247838
+ - -1.311715
+ - 0.261494
+ - - -1.000271
+ - -0.860161
+ - -0.180055
+ - - -1.259651
+ - 0.441342
+ - 0.261913
+ - - -0.244762
+ - 1.2963
+ - -0.180387
+ - - 1.012272
+ - 0.870345
+ - 0.261213
+ - - 1.245171
+ - -0.43624
+ - -0.180601
+ - - -1.760344
+ - -1.51396
+ - 0.243213
+ - - -1.032721
+ - -0.887786
+ - -1.284439
+ - - -0.252963
+ - 1.337775
+ - -1.284785
+ - - -0.430719
+ - 2.281605
+ - 0.242595
+ - - 1.285093
+ - -0.450354
+ - -1.285001
+ - - 2.191513
+ - -0.767663
+ - 0.242387
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.78957005902531
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.251428
+ - -1.33064
+ - 0.274709
+ - - -1.01101
+ - -0.869494
+ - -0.183293
+ - - -1.277837
+ - 0.44769
+ - 0.274974
+ - - -0.247357
+ - 1.310244
+ - -0.183616
+ - - 1.026865
+ - 0.882918
+ - 0.274557
+ - - 1.258529
+ - -0.440846
+ - -0.183816
+ - - -1.772569
+ - -1.524413
+ - 0.238292
+ - - -1.027667
+ - -0.883632
+ - -1.289409
+ - - -0.251491
+ - 1.331202
+ - -1.28974
+ - - -0.433677
+ - 2.297414
+ - 0.237573
+ - - 1.278571
+ - -0.447929
+ - -1.289942
+ - - 2.206672
+ - -0.773026
+ - 0.237258
isotopes:
- 16
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -111.06980901544091
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.2485994331
+ - -1.3150512
+ - 0.2666537204
+ - - -1.0040015723
+ - -0.8633786914
+ - -0.1809309337
+ - - -1.2635302147
+ - 0.4427302072
+ - 0.2663014117
+ - - -0.2454835293
+ - 1.3008908516
+ - -0.181359626
+ - - 1.01481755
+ - 0.8723765144
+ - 0.2672815187
+ - - 1.249552225
+ - -0.4374874106
+ - -0.1815502724
+ - - -1.7628226323
+ - -1.5163739585
+ - 0.2379968079
+ - - -1.0285298569
+ - -0.8847312532
+ - -1.2827851699
+ - - -0.2506953898
+ - 1.3319773342
+ - -1.283290356
+ - - -0.4313307438
+ - 2.2850609477
+ - 0.2367481653
+ - - 1.279081178
+ - -0.4474388959
+ - -1.2834999637
+ - - 2.194800557
+ - -0.7690868443
+ - 0.2359823025
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.76946078228205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.247826
+ - -1.311592
+ - 0.255657
+ - - -1.00367
+ - -0.86309
+ - -0.181479
+ - - -1.259512
+ - 0.441286
+ - 0.256142
+ - - -0.245607
+ - 1.300691
+ - -0.181803
+ - - 1.012146
+ - 0.870249
+ - 0.255485
+ - - 1.249416
+ - -0.437693
+ - -0.182015
+ - - -1.759636
+ - -1.513346
+ - 0.250329
+ - - -1.043574
+ - -0.897084
+ - -1.284313
+ - - -0.255571
+ - 1.351742
+ - -1.28466
+ - - -0.430544
+ - 2.280717
+ - 0.249615
+ - - 1.298549
+ - -0.454986
+ - -1.28487
+ - - 2.190634
+ - -0.767405
+ - 0.249461
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/14-Butanedithiol.yml b/input/reference_sets/main/14-Butanedithiol.yml
index d37ca1c25c..4445b25e3b 100644
--- a/input/reference_sets/main/14-Butanedithiol.yml
+++ b/input/reference_sets/main/14-Butanedithiol.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.0030849028117688
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.48707
+ - 0.516622
+ - 0.291329
+ - - -1.212235
+ - 0.141384
+ - -0.960418
+ - - -0.357605
+ - -1.087222
+ - -0.670788
+ - - 0.35731
+ - -1.08234
+ - 0.678348
+ - - 1.211928
+ - 0.148337
+ - 0.959085
+ - - 2.486759
+ - 0.514525
+ - -0.295345
+ - - -3.156546
+ - -0.639817
+ - 0.184654
+ - - -1.692681
+ - 0.046454
+ - -1.932863
+ - - -0.598364
+ - 1.041586
+ - -0.999897
+ - - 0.379828
+ - -1.166074
+ - -1.473138
+ - - -0.984487
+ - -1.980804
+ - -0.72981
+ - - 0.984201
+ - -1.975465
+ - 0.743831
+ - - -0.380122
+ - -1.155394
+ - 1.481247
+ - - 0.598049
+ - 1.048795
+ - 0.992052
+ - - 1.692376
+ - 0.060447
+ - 1.93219
+ - - 3.156244
+ - -0.641107
+ - -0.180312
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0109261527928228
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.497788
+ - 0.519049
+ - 0.288262
+ - - -1.217049
+ - 0.13965
+ - -0.963748
+ - - -0.357542
+ - -1.085623
+ - -0.671459
+ - - 0.357246
+ - -1.080736
+ - 0.679007
+ - - 1.216742
+ - 0.146627
+ - 0.962425
+ - - 2.497478
+ - 0.516971
+ - -0.292296
+ - - -3.167175
+ - -0.64206
+ - 0.189229
+ - - -1.697291
+ - 0.041788
+ - -1.936388
+ - - -0.606546
+ - 1.042396
+ - -1.004148
+ - - 0.382333
+ - -1.160291
+ - -1.47293
+ - - -0.979681
+ - -1.982828
+ - -0.733128
+ - - 0.979393
+ - -1.977465
+ - 0.747163
+ - - -0.382629
+ - -1.149611
+ - 1.480997
+ - - 0.606231
+ - 1.049636
+ - 0.996295
+ - - 1.696984
+ - 0.055807
+ - 1.935748
+ - - 3.166877
+ - -0.643384
+ - -0.184864
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 13.49593497607954
+ value: 13.49593497607954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.4766116783
+ - 0.5282326561
+ - 0.3071590273
+ - - -1.2013486337
+ - 0.1538433217
+ - -0.9805261127
+ - - -0.3501811231
+ - -1.0937565272
+ - -0.6981375849
+ - - 0.3515501296
+ - -1.1113238322
+ - 0.6720627606
+ - - 1.2031782729
+ - 0.1284635525
+ - 0.9857629223
+ - - 2.4753039328
+ - 0.5366207223
+ - -0.2948488291
+ - - -3.1281294536
+ - -0.654936924
+ - 0.2002920932
+ - - -1.6959514182
+ - 0.0661961036
+ - -1.9580381532
+ - - -0.5691864788
+ - 1.0520662566
+ - -1.0173284626
+ - - 0.4076343912
+ - -1.1564737803
+ - -1.4959308334
+ - - -0.9842392819
+ - -1.9915037347
+ - -0.7821728677
+ - - 0.9852146177
+ - -2.0111774527
+ - 0.7330973461
+ - - -0.4064192783
+ - -1.1940258895
+ - 1.4679011582
+ - - 0.5708448381
+ - 1.0252506839
+ - 1.0468700258
+ - - 1.6995544046
+ - 0.0153846215
+ - 1.959762793
+ - - 3.1224097142
+ - -0.6517930282
+ - -0.2263881839
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.7085832467207234
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.512522
+ - 0.513916
+ - 0.288319
+ - - -1.22501
+ - 0.142052
+ - -0.965467
+ - - -0.357724
+ - -1.082466
+ - -0.673377
+ - - 0.357427
+ - -1.077565
+ - 0.680902
+ - - 1.224703
+ - 0.149043
+ - 0.964127
+ - - 2.512212
+ - 0.511837
+ - -0.292316
+ - - -3.165113
+ - -0.660137
+ - 0.18814
+ - - -1.705696
+ - 0.043252
+ - -1.943127
+ - - -0.616437
+ - 1.051531
+ - -1.002479
+ - - 0.387688
+ - -1.150163
+ - -1.476679
+ - - -0.977988
+ - -1.985975
+ - -0.738843
+ - - 0.9777
+ - -1.980571
+ - 0.752901
+ - - -0.387984
+ - -1.139456
+ - 1.484673
+ - - 0.616122
+ - 1.05876
+ - 0.994557
+ - - 1.705389
+ - 0.057322
+ - 1.942476
+ - - 3.164816
+ - -0.661453
+ - -0.183642
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.704473970997907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.678134
+ - 0.344529
+ - 0.306525
+ - - -1.315948
+ - 0.155773
+ - -0.914993
+ - - -0.364735
+ - -1.020476
+ - -0.67104
+ - - 0.364434
+ - -1.015601
+ - 0.678112
+ - - 1.315645
+ - 0.162381
+ - 0.91356
+ - - 2.677831
+ - 0.342309
+ - -0.309289
+ - - -3.286216
+ - -0.836892
+ - 0.041608
+ - - -1.754882
+ - 0.092818
+ - -1.920333
+ - - -0.783848
+ - 1.118079
+ - -0.86588
+ - - 0.381632
+ - -1.019249
+ - -1.484831
+ - - -0.930624
+ - -1.962329
+ - -0.764777
+ - - 0.930325
+ - -1.956752
+ - 0.778651
+ - - -0.381933
+ - -1.008496
+ - 1.491872
+ - - 0.783543
+ - 1.124306
+ - 0.857496
+ - - 1.754579
+ - 0.106692
+ - 1.919328
+ - - 3.285914
+ - -0.837166
+ - -0.035844
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.17619626743566183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.58227
+ - 0.430424
+ - 0.287803
+ - - -1.264654
+ - 0.147222
+ - -0.932597
+ - - -0.364559
+ - -1.050594
+ - -0.665332
+ - - 0.36426
+ - -1.045756
+ - 0.672624
+ - - 1.264349
+ - 0.153966
+ - 0.931222
+ - - 2.581964
+ - 0.428344
+ - -0.291193
+ - - -3.224487
+ - -0.73188
+ - 0.108906
+ - - -1.714899
+ - 0.06356
+ - -1.91998
+ - - -0.691601
+ - 1.074612
+ - -0.932784
+ - - 0.366746
+ - -1.097139
+ - -1.475664
+ - - -0.961033
+ - -1.963938
+ - -0.731883
+ - - 0.960739
+ - -1.958592
+ - 0.745778
+ - - -0.367045
+ - -1.086444
+ - 1.483272
+ - - 0.691292
+ - 1.08133
+ - 0.924705
+ - - 1.714595
+ - 0.077446
+ - 1.919185
+ - - 3.224186
+ - -0.732634
+ - -0.103898
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.700860690145106
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.691815
+ - 0.346713
+ - 0.299523
+ - - -1.318206
+ - 0.155177
+ - -0.91427
+ - - -0.371951
+ - -1.023647
+ - -0.667178
+ - - 0.37165
+ - -1.018799
+ - 0.674273
+ - - 1.317903
+ - 0.161782
+ - 0.91284
+ - - 2.691511
+ - 0.344545
+ - -0.302305
+ - - -3.3102
+ - -0.815059
+ - 0.024159
+ - - -1.751671
+ - 0.090882
+ - -1.913051
+ - - -0.788184
+ - 1.109157
+ - -0.865071
+ - - 0.358131
+ - -1.034175
+ - -1.484181
+ - - -0.939935
+ - -1.956776
+ - -0.746597
+ - - 0.939637
+ - -1.951329
+ - 0.760434
+ - - -0.358431
+ - -1.023425
+ - 1.491332
+ - - 0.787878
+ - 1.11538
+ - 0.856749
+ - - 1.751368
+ - 0.104707
+ - 1.91206
+ - - 3.309899
+ - -0.815206
+ - -0.018553
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.476003768918136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.45913
+ - 0.522639
+ - 0.296399
+ - - -1.19958
+ - 0.142489
+ - -0.959516
+ - - -0.355624
+ - -1.092353
+ - -0.671166
+ - - 0.355895
+ - -1.087424
+ - 0.678769
+ - - 1.199232
+ - 0.149804
+ - 0.958292
+ - - 2.459317
+ - 0.520527
+ - -0.29987
+ - - -3.135379
+ - -0.630399
+ - 0.192896
+ - - -1.683608
+ - 0.053587
+ - -1.930643
+ - - -0.575095
+ - 1.036275
+ - -1.002643
+ - - 0.382416
+ - -1.178414
+ - -1.472684
+ - - -0.989595
+ - -1.981364
+ - -0.729552
+ - - 0.990436
+ - -1.975613
+ - 0.743221
+ - - -0.382151
+ - -1.168439
+ - 1.480773
+ - - 0.574432
+ - 1.043714
+ - 0.994631
+ - - 1.682866
+ - 0.068119
+ - 1.93026
+ - - 3.133152
+ - -0.633222
+ - -0.189003
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.212082743884379
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.45913
+ - 0.522639
+ - 0.296399
+ - - -1.19958
+ - 0.142489
+ - -0.959516
+ - - -0.355624
+ - -1.092353
+ - -0.671166
+ - - 0.355895
+ - -1.087424
+ - 0.678769
+ - - 1.199232
+ - 0.149804
+ - 0.958292
+ - - 2.459317
+ - 0.520527
+ - -0.29987
+ - - -3.135379
+ - -0.630398
+ - 0.192896
+ - - -1.683608
+ - 0.053587
+ - -1.930643
+ - - -0.575095
+ - 1.036275
+ - -1.002643
+ - - 0.382416
+ - -1.178414
+ - -1.472684
+ - - -0.989595
+ - -1.981364
+ - -0.729552
+ - - 0.990436
+ - -1.975613
+ - 0.743221
+ - - -0.382151
+ - -1.168439
+ - 1.480773
+ - - 0.574432
+ - 1.043714
+ - 0.994631
+ - - 1.682866
+ - 0.068119
+ - 1.93026
+ - - 3.133152
+ - -0.633222
+ - -0.189003
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.777193795552323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.45913
+ - 0.522639
+ - 0.296399
+ - - -1.19958
+ - 0.142489
+ - -0.959516
+ - - -0.355624
+ - -1.092353
+ - -0.671166
+ - - 0.355895
+ - -1.087424
+ - 0.678769
+ - - 1.199232
+ - 0.149804
+ - 0.958292
+ - - 2.459317
+ - 0.520527
+ - -0.29987
+ - - -3.135379
+ - -0.630398
+ - 0.192896
+ - - -1.683608
+ - 0.053587
+ - -1.930643
+ - - -0.575095
+ - 1.036275
+ - -1.002643
+ - - 0.382416
+ - -1.178414
+ - -1.472684
+ - - -0.989595
+ - -1.981364
+ - -0.729552
+ - - 0.990436
+ - -1.975613
+ - 0.743221
+ - - -0.382151
+ - -1.168439
+ - 1.480773
+ - - 0.574432
+ - 1.043714
+ - 0.994631
+ - - 1.682866
+ - 0.068119
+ - 1.93026
+ - - 3.133152
+ - -0.633222
+ - -0.189003
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.148140589351534
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.709625
+ - 0.322091
+ - 0.292851
+ - - -1.325525
+ - 0.160794
+ - -0.908725
+ - - -0.37041
+ - -1.012789
+ - -0.668006
+ - - 0.370109
+ - -1.007936
+ - 0.675022
+ - - 1.325222
+ - 0.167357
+ - 0.907255
+ - - 2.709322
+ - 0.31997
+ - -0.295455
+ - - -3.294704
+ - -0.860879
+ - 0.023797
+ - - -1.748215
+ - 0.105821
+ - -1.914359
+ - - -0.805211
+ - 1.12054
+ - -0.840038
+ - - 0.361804
+ - -1.013451
+ - -1.484928
+ - - -0.933636
+ - -1.949799
+ - -0.753296
+ - - 0.933336
+ - -1.944305
+ - 0.767081
+ - - -0.362105
+ - -1.002696
+ - 1.491928
+ - - 0.804906
+ - 1.126581
+ - 0.831636
+ - - 1.747912
+ - 0.119653
+ - 1.91326
+ - - 3.294402
+ - -0.861024
+ - -0.017861
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.200548274600628
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.411282
+ - 0.567855
+ - 0.288239
+ - - -1.173827
+ - 0.138085
+ - -0.972545
+ - - -0.354291
+ - -1.11
+ - -0.672165
+ - - 0.354009
+ - -1.105058
+ - 0.679937
+ - - 1.173513
+ - 0.145206
+ - 0.971203
+ - - 2.410954
+ - 0.565801
+ - -0.292685
+ - - -3.093715
+ - -0.582766
+ - 0.233827
+ - - -1.670346
+ - 0.044124
+ - -1.93674
+ - - -0.528168
+ - 1.01567
+ - -1.033779
+ - - 0.384515
+ - -1.213185
+ - -1.470903
+ - - -1.003396
+ - -1.987923
+ - -0.724888
+ - - 1.003137
+ - -1.982557
+ - 0.739064
+ - - -0.384794
+ - -1.202432
+ - 1.479407
+ - - 0.527831
+ - 1.023197
+ - 1.026036
+ - - 1.670037
+ - 0.058293
+ - 1.936057
+ - - 3.093405
+ - -0.584383
+ - -0.2299
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.25010787457086
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.4766116783
- - 0.5282326561
- - 0.3071590273
- - - -1.2013486337
- - 0.1538433217
- - -0.9805261127
- - - -0.3501811231
- - -1.0937565272
- - -0.6981375849
- - - 0.3515501296
- - -1.1113238322
- - 0.6720627606
- - - 1.2031782729
- - 0.1284635525
- - 0.9857629223
- - - 2.4753039328
- - 0.5366207223
- - -0.2948488291
- - - -3.1281294536
- - -0.654936924
- - 0.2002920932
- - - -1.6959514182
- - 0.0661961036
- - -1.9580381532
- - - -0.5691864788
- - 1.0520662566
- - -1.0173284626
- - - 0.4076343912
- - -1.1564737803
- - -1.4959308334
- - - -0.9842392819
- - -1.9915037347
- - -0.7821728677
- - - 0.9852146177
- - -2.0111774527
- - 0.7330973461
- - - -0.4064192783
- - -1.1940258895
- - 1.4679011582
- - - 0.5708448381
- - 1.0252506839
- - 1.0468700258
- - - 1.6995544046
- - 0.0153846215
- - 1.959762793
- - - 3.1224097142
- - -0.6517930282
- - -0.2263881839
+ - - -2.56516
+ - 0.433088
+ - 0.292101
+ - - -1.258731
+ - 0.145284
+ - -0.934705
+ - - -0.358845
+ - -1.050222
+ - -0.667121
+ - - 0.358548
+ - -1.045369
+ - 0.674413
+ - - 1.258426
+ - 0.152046
+ - 0.933345
+ - - 2.564854
+ - 0.430978
+ - -0.29551
+ - - -3.203751
+ - -0.736373
+ - 0.123333
+ - - -1.715738
+ - 0.06205
+ - -1.921945
+ - - -0.68452
+ - 1.075294
+ - -0.938183
+ - - 0.381738
+ - -1.089618
+ - -1.473379
+ - - -0.952599
+ - -1.967246
+ - -0.74265
+ - - 0.952308
+ - -1.96182
+ - 0.75657
+ - - -0.382036
+ - -1.07894
+ - 1.480935
+ - - 0.68421
+ - 1.082053
+ - 0.930098
+ - - 1.715434
+ - 0.075955
+ - 1.921161
+ - - 3.203444
+ - -0.737234
+ - -0.1183
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.715388085452926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.665168
+ - 0.346457
+ - 0.30622
+ - - -1.307191
+ - 0.157521
+ - -0.919226
+ - - -0.36093
+ - -1.023316
+ - -0.673287
+ - - 0.360629
+ - -1.018428
+ - 0.680377
+ - - 1.306888
+ - 0.164157
+ - 0.917783
+ - - 2.664864
+ - 0.344241
+ - -0.308997
+ - - -3.264653
+ - -0.833149
+ - 0.053511
+ - - -1.749246
+ - 0.092126
+ - -1.916942
+ - - -0.774385
+ - 1.112604
+ - -0.86876
+ - - 0.385414
+ - -1.022165
+ - -1.479298
+ - - -0.928829
+ - -1.957776
+ - -0.765583
+ - - 0.92853
+ - -1.952196
+ - 0.779418
+ - - -0.385715
+ - -1.011458
+ - 1.486359
+ - - 0.774079
+ - 1.118849
+ - 0.86042
+ - - 1.748943
+ - 0.105969
+ - 1.915945
+ - - 3.264353
+ - -0.833507
+ - -0.047774
isotopes:
- 32
- 12
@@ -393,13 +1615,201 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.343767124665506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.4591304123
+ - 0.5226391364
+ - 0.2963988626
+ - - -1.1995796895
+ - 0.142489076
+ - -0.9595164797
+ - - -0.3556237156
+ - -1.092352856
+ - -0.6711656722
+ - - 0.3558948179
+ - -1.0874242444
+ - 0.6787691515
+ - - 1.1992323612
+ - 0.1498042845
+ - 0.9582924474
+ - - 2.4593169116
+ - 0.520526965
+ - -0.2998696253
+ - - -3.1353793412
+ - -0.6303985039
+ - 0.1928960174
+ - - -1.6836083931
+ - 0.0535869872
+ - -1.9306429486
+ - - -0.5750954003
+ - 1.0362752677
+ - -1.0026426389
+ - - 0.3824158813
+ - -1.178413669
+ - -1.4726843977
+ - - -0.9895949243
+ - -1.9813644135
+ - -0.7295520096
+ - - 0.9904360982
+ - -1.9756127401
+ - 0.7432207713
+ - - -0.3821511779
+ - -1.1684391982
+ - 1.4807728217
+ - - 0.5744324071
+ - 1.0437136255
+ - 0.9946309258
+ - - 1.6828659913
+ - 0.0681194936
+ - 1.9302598323
+ - - 3.1331522255
+ - -0.6332220323
+ - -0.1890028535
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.947167286918418
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.518319
+ - 0.497047
+ - 0.279261
+ - - -1.231004
+ - 0.142821
+ - -0.955673
+ - - -0.36062
+ - -1.074492
+ - -0.668458
+ - - 0.360319
+ - -1.069633
+ - 0.675915
+ - - 1.230694
+ - 0.149731
+ - 0.954325
+ - - 2.518015
+ - 0.495023
+ - -0.28313
+ - - -3.168029
+ - -0.66999
+ - 0.172562
+ - - -1.700493
+ - 0.044859
+ - -1.933685
+ - - -0.627704
+ - 1.051727
+ - -0.989349
+ - - 0.374865
+ - -1.143677
+ - -1.47469
+ - - -0.976578
+ - -1.976163
+ - -0.728246
+ - - 0.976283
+ - -1.970843
+ - 0.742218
+ - - -0.375165
+ - -1.132994
+ - 1.482627
+ - - 0.627388
+ - 1.058853
+ - 0.981423
+ - - 1.700177
+ - 0.058849
+ - 1.933023
+ - - 3.167754
+ - -0.671193
+ - -0.167959
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -9.93411401964521
+ value: -9.934114019645204
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/14-Difluorobenzene.yml b/input/reference_sets/main/14-Difluorobenzene.yml
index c251f89e56..5068d2ebde 100644
--- a/input/reference_sets/main/14-Difluorobenzene.yml
+++ b/input/reference_sets/main/14-Difluorobenzene.yml
@@ -161,53 +161,941 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.81324785677533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.712709
+ - 2.0e-06
+ - -0.0
+ - - 1.363928
+ - 1.0e-06
+ - -0.0
+ - - 0.69553
+ - 1.212171
+ - -0.0
+ - - -0.695532
+ - 1.212169
+ - -0.0
+ - - -1.363928
+ - -1.0e-06
+ - -0.0
+ - - -2.712709
+ - -2.0e-06
+ - -0.0
+ - - -0.69553
+ - -1.212171
+ - -0.0
+ - - 0.695532
+ - -1.212169
+ - -0.0
+ - - 1.257225
+ - 2.135129
+ - -0.0
+ - - -1.257228
+ - 2.135127
+ - -0.0
+ - - -1.257225
+ - -2.135129
+ - -0.0
+ - - 1.257228
+ - -2.135127
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.18341624823885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.713897
+ - 2.0e-06
+ - -0.0
+ - - 1.363377
+ - 1.0e-06
+ - -0.0
+ - - 0.694989
+ - 1.211404
+ - -0.0
+ - - -0.694991
+ - 1.211403
+ - -0.0
+ - - -1.363377
+ - -1.0e-06
+ - -0.0
+ - - -2.713897
+ - -2.0e-06
+ - -0.0
+ - - -0.694989
+ - -1.211404
+ - -0.0
+ - - 0.694991
+ - -1.211403
+ - -0.0
+ - - 1.25665
+ - 2.134924
+ - -0.0
+ - - -1.256653
+ - 2.134922
+ - -0.0
+ - - -1.25665
+ - -2.134924
+ - -0.0
+ - - 1.256653
+ - -2.134922
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -12.867874358956783
+ value: -12.867874358956783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.7422007692
+ - -0.0001485227
+ - -0.0
+ - - 1.3789024861
+ - -0.0001090872
+ - -0.0
+ - - 0.7016342707
+ - 1.2233153373
+ - 0.0
+ - - -0.7011294806
+ - 1.2233749138
+ - 0.0
+ - - -1.3789024861
+ - 0.0001090872
+ - 0.0
+ - - -2.7422007692
+ - 0.0001485227
+ - 0.0
+ - - -0.7016342707
+ - -1.2233153373
+ - -0.0
+ - - 0.7011294806
+ - -1.2233749138
+ - -0.0
+ - - 1.2678797119
+ - 2.15330125
+ - 0.0
+ - - -1.267291459
+ - 2.1534220823
+ - 0.0
+ - - -1.2678797119
+ - -2.15330125
+ - -0.0
+ - - 1.267291459
+ - -2.1534220823
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.50293571227855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.726909
+ - 2.0e-06
+ - -0.0
+ - - 1.370132
+ - 1.0e-06
+ - -0.0
+ - - 0.697772
+ - 1.216991
+ - -0.0
+ - - -0.697774
+ - 1.21699
+ - -0.0
+ - - -1.370132
+ - -1.0e-06
+ - -0.0
+ - - -2.726909
+ - -2.0e-06
+ - -0.0
+ - - -0.697772
+ - -1.216991
+ - -0.0
+ - - 0.697774
+ - -1.21699
+ - -0.0
+ - - 1.259849
+ - 2.145406
+ - -0.0
+ - - -1.259852
+ - 2.145404
+ - -0.0
+ - - -1.259849
+ - -2.145406
+ - -0.0
+ - - 1.259852
+ - -2.145404
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.049274567704025
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.73167
+ - 2.0e-06
+ - -0.0
+ - - 1.371685
+ - 1.0e-06
+ - -0.0
+ - - 0.699045
+ - 1.219586
+ - -0.0
+ - - -0.699046
+ - 1.219585
+ - -0.0
+ - - -1.371685
+ - -1.0e-06
+ - -0.0
+ - - -2.73167
+ - -2.0e-06
+ - -0.0
+ - - -0.699045
+ - -1.219586
+ - -0.0
+ - - 0.699046
+ - -1.219585
+ - -0.0
+ - - 1.265087
+ - 2.151439
+ - -0.0
+ - - -1.265091
+ - 2.151437
+ - -0.0
+ - - -1.265087
+ - -2.151439
+ - -0.0
+ - - 1.265091
+ - -2.151437
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.79058456208799
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.702304
+ - 2.0e-06
+ - -0.0
+ - - 1.357788
+ - 1.0e-06
+ - -0.0
+ - - 0.692366
+ - 1.207013
+ - -0.0
+ - - -0.692368
+ - 1.207012
+ - -0.0
+ - - -1.357788
+ - -1.0e-06
+ - -0.0
+ - - -2.702304
+ - -2.0e-06
+ - -0.0
+ - - -0.692366
+ - -1.207013
+ - -0.0
+ - - 0.692368
+ - -1.207012
+ - -0.0
+ - - 1.255587
+ - 2.129374
+ - -0.0
+ - - -1.255591
+ - 2.129372
+ - -0.0
+ - - -1.255587
+ - -2.129374
+ - -0.0
+ - - 1.255591
+ - -2.129372
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.5964374306718
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.720421
+ - 2.0e-06
+ - -0.0
+ - - 1.368396
+ - 1.0e-06
+ - -0.0
+ - - 0.696419
+ - 1.213519
+ - -0.0
+ - - -0.696421
+ - 1.213518
+ - -0.0
+ - - -1.368396
+ - -1.0e-06
+ - -0.0
+ - - -2.720421
+ - -2.0e-06
+ - -0.0
+ - - -0.696419
+ - -1.213519
+ - -0.0
+ - - 0.696421
+ - -1.213518
+ - -0.0
+ - - 1.260075
+ - 2.137694
+ - -0.0
+ - - -1.260078
+ - 2.137692
+ - -0.0
+ - - -1.260075
+ - -2.137694
+ - -0.0
+ - - 1.260078
+ - -2.137692
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.26095328498673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.707384
+ - -0.0
+ - 0.0
+ - - 1.358533
+ - 1.0e-06
+ - -0.0
+ - - 0.693618
+ - 1.209836
+ - 0.0
+ - - -0.693618
+ - 1.209834
+ - 0.0
+ - - -1.358533
+ - -1.0e-06
+ - -0.0
+ - - -2.707384
+ - 0.0
+ - -0.0
+ - - -0.693618
+ - -1.209836
+ - 0.0
+ - - 0.693618
+ - -1.209834
+ - -0.0
+ - - 1.25823
+ - 2.131728
+ - 0.0
+ - - -1.258236
+ - 2.131724
+ - 0.0
+ - - -1.25823
+ - -2.131728
+ - 0.0
+ - - 1.258236
+ - -2.131724
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -71.79622746391608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.707384
+ - -0.0
+ - 0.0
+ - - 1.358533
+ - 1.0e-06
+ - -0.0
+ - - 0.693618
+ - 1.209836
+ - 0.0
+ - - -0.693618
+ - 1.209834
+ - 0.0
+ - - -1.358533
+ - -1.0e-06
+ - -0.0
+ - - -2.707384
+ - 0.0
+ - -0.0
+ - - -0.693618
+ - -1.209836
+ - 0.0
+ - - 0.693618
+ - -1.209834
+ - -0.0
+ - - 1.25823
+ - 2.131728
+ - 0.0
+ - - -1.258236
+ - 2.131724
+ - 0.0
+ - - -1.25823
+ - -2.131728
+ - 0.0
+ - - 1.258236
+ - -2.131724
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.88535305275695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.710339
+ - 2.0e-06
+ - 0.0
+ - - 1.372082
+ - 1.0e-06
+ - 0.0
+ - - 0.696148
+ - 1.212582
+ - 0.0
+ - - -0.69615
+ - 1.212581
+ - 0.0
+ - - -1.372082
+ - -1.0e-06
+ - 0.0
+ - - -2.710339
+ - -2.0e-06
+ - 0.0
+ - - -0.696148
+ - -1.212582
+ - 0.0
+ - - 0.69615
+ - -1.212581
+ - 0.0
+ - - 1.259089
+ - 2.138146
+ - 0.0
+ - - -1.259092
+ - 2.138144
+ - 0.0
+ - - -1.259089
+ - -2.138146
+ - 0.0
+ - - 1.259092
+ - -2.138144
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -73.7490529929467
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.7422007692
- - -0.0001485227
+ - - 2.702217
+ - 2.0e-06
- -0.0
- - - 1.3789024861
- - -0.0001090872
+ - - 1.360633
+ - 1.0e-06
- -0.0
- - - 0.7016342707
- - 1.2233153373
- - 0.0
- - - -0.7011294806
- - 1.2233749138
- - 0.0
- - - -1.3789024861
- - 0.0001090872
- - 0.0
- - - -2.7422007692
- - 0.0001485227
- - 0.0
- - - -0.7016342707
- - -1.2233153373
+ - - 0.693642
+ - 1.209792
- -0.0
- - - 0.7011294806
- - -1.2233749138
+ - - -0.693644
+ - 1.209791
- -0.0
- - - 1.2678797119
- - 2.15330125
- - 0.0
- - - -1.267291459
- - 2.1534220823
- - 0.0
- - - -1.2678797119
- - -2.15330125
+ - - -1.360633
+ - -1.0e-06
- -0.0
- - - 1.267291459
- - -2.1534220823
+ - - -2.702217
+ - -2.0e-06
+ - -0.0
+ - - -0.693642
+ - -1.209792
+ - -0.0
+ - - 0.693644
+ - -1.209791
+ - -0.0
+ - - 1.258857
+ - 2.131352
+ - -0.0
+ - - -1.25886
+ - 2.13135
+ - -0.0
+ - - -1.258857
+ - -2.131352
+ - -0.0
+ - - 1.25886
+ - -2.13135
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.89615549867353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.702246
+ - 2.0e-06
+ - -0.0
+ - - 1.362692
+ - 1.0e-06
+ - -0.0
+ - - 0.693373
+ - 1.208521
+ - -0.0
+ - - -0.693375
+ - 1.20852
+ - -0.0
+ - - -1.362692
+ - -1.0e-06
+ - -0.0
+ - - -2.702246
+ - -2.0e-06
+ - -0.0
+ - - -0.693373
+ - -1.208521
+ - -0.0
+ - - 0.693375
+ - -1.20852
+ - -0.0
+ - - 1.255772
+ - 2.133761
+ - -0.0
+ - - -1.255775
+ - 2.13376
+ - -0.0
+ - - -1.255772
+ - -2.133761
+ - -0.0
+ - - 1.255775
+ - -2.13376
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.5110581284406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.727325
+ - 2.0e-06
+ - -0.0
+ - - 1.366926
+ - 1.0e-06
+ - -0.0
+ - - 0.697835
+ - 1.217842
+ - -0.0
+ - - -0.697836
+ - 1.217841
+ - -0.0
+ - - -1.366926
+ - -1.0e-06
+ - -0.0
+ - - -2.727325
+ - -2.0e-06
+ - -0.0
+ - - -0.697835
+ - -1.217842
+ - -0.0
+ - - 0.697836
+ - -1.217841
+ - -0.0
+ - - 1.260891
+ - 2.145224
+ - -0.0
+ - - -1.260894
+ - 2.145223
+ - -0.0
+ - - -1.260891
+ - -2.145224
+ - -0.0
+ - - 1.260894
+ - -2.145223
- -0.0
isotopes:
- 19
@@ -309,6 +1197,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.88930953591924
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.7073836416
+ - -1.141e-07
+ - 0.0
+ - - 1.3585328573
+ - 7.864e-07
+ - -5.0e-10
+ - - 0.693618004
+ - 1.2098355438
+ - 0.0
+ - - -0.6936184735
+ - 1.2098343177
+ - 0.0
+ - - -1.3585328573
+ - -7.864e-07
+ - -5.0e-10
+ - - -2.7073836416
+ - 1.141e-07
+ - -1.13e-08
+ - - -0.693618004
+ - -1.2098355438
+ - 1.04e-08
+ - - 0.6936184735
+ - -1.2098343177
+ - -1.56e-08
+ - - 1.258230171
+ - 2.1317280116
+ - 0.0
+ - - -1.2582355551
+ - 2.1317237464
+ - 0.0
+ - - -1.258230171
+ - -2.1317280116
+ - 1.093e-07
+ - - 1.2582355551
+ - -2.1317237464
+ - -5.6e-08
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.784158303052756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.702808
+ - 2.0e-06
+ - -0.0
+ - - 1.362046
+ - 1.0e-06
+ - -0.0
+ - - 0.69312
+ - 1.208252
+ - -0.0
+ - - -0.693122
+ - 1.208251
+ - -0.0
+ - - -1.362046
+ - -1.0e-06
+ - -0.0
+ - - -2.702808
+ - -2.0e-06
+ - -0.0
+ - - -0.69312
+ - -1.208252
+ - -0.0
+ - - 0.693122
+ - -1.208251
+ - -0.0
+ - - 1.253764
+ - 2.132913
+ - -0.0
+ - - -1.253767
+ - 2.132911
+ - -0.0
+ - - -1.253764
+ - -2.132913
+ - -0.0
+ - - 1.253767
+ - -2.132911
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - F
+ - C
+ - C
+ - C
+ - C
+ - F
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/14-Dioxane.yml b/input/reference_sets/main/14-Dioxane.yml
index 80042aaf59..f5ee191665 100644
--- a/input/reference_sets/main/14-Dioxane.yml
+++ b/input/reference_sets/main/14-Dioxane.yml
@@ -105,7 +105,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -76.98568740672266
+ value: -76.98568740672259
class: ThermoData
xyz_dict:
coords:
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.501108638883764
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000522
+ - -1.380816
+ - -0.291386
+ - - -1.167081
+ - -0.732477
+ - 0.196405
+ - - -1.167641
+ - 0.731589
+ - -0.196391
+ - - -0.000525
+ - 1.380816
+ - 0.291386
+ - - 1.167078
+ - 0.732477
+ - -0.196405
+ - - 1.167637
+ - -0.731589
+ - 0.196391
+ - - -1.21213
+ - -0.820607
+ - 1.289459
+ - - -2.020465
+ - -1.253355
+ - -0.237173
+ - - -1.212769
+ - 0.819685
+ - -1.289445
+ - - -2.021415
+ - 1.251817
+ - 0.237197
+ - - 1.212127
+ - 0.820607
+ - -1.289459
+ - - 2.020461
+ - 1.253355
+ - 0.237173
+ - - 1.212766
+ - -0.819685
+ - 1.289444
+ - - 2.021412
+ - -1.251817
+ - -0.237197
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.100169301517205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000522
+ - -1.381429
+ - -0.283519
+ - - -1.1705
+ - -0.733483
+ - 0.196756
+ - - -1.17106
+ - 0.732592
+ - -0.196743
+ - - -0.000526
+ - 1.381429
+ - 0.283519
+ - - 1.170496
+ - 0.733483
+ - -0.196756
+ - - 1.171056
+ - -0.732592
+ - 0.196742
+ - - -1.223217
+ - -0.822204
+ - 1.290649
+ - - -2.022108
+ - -1.255535
+ - -0.241178
+ - - -1.223858
+ - 0.821273
+ - -1.290635
+ - - -2.02306
+ - 1.253996
+ - 0.241202
+ - - 1.223214
+ - 0.822204
+ - -1.290649
+ - - 2.022105
+ - 1.255535
+ - 0.241178
+ - - 1.223855
+ - -0.821273
+ - 1.290634
+ - - 2.023057
+ - -1.253996
+ - -0.241202
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -45.87201340526511
+ value: -45.87201340526511
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0007584376
+ - -1.3934379656
+ - -0.2957538636
+ - - -1.1736563696
+ - -0.7402265962
+ - 0.1985115011
+ - - -1.1743888684
+ - 0.7390991505
+ - -0.1984214032
+ - - -0.000601386
+ - 1.3936189677
+ - 0.2956606774
+ - - 1.1736940791
+ - 0.7401202761
+ - -0.1986762659
+ - - 1.1744067678
+ - -0.7390566492
+ - 0.1987626259
+ - - -1.2210608645
+ - -0.8209251198
+ - 1.3024554214
+ - - -2.0341215423
+ - -1.2681522026
+ - -0.237966209
+ - - -1.2217833663
+ - 0.8192936259
+ - -1.3023836554
+ - - -2.0355107825
+ - 1.2662085525
+ - 0.2377139677
+ - - 1.2201663895
+ - 0.8199200262
+ - -1.3026930111
+ - - 2.0343224608
+ - 1.2683733848
+ - 0.2369752953
+ - - 1.2209706802
+ - -0.8193001191
+ - 1.3027306844
+ - - 2.0354269591
+ - -1.2664832521
+ - -0.2371457516
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.62173027015295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000526
+ - -1.391637
+ - -0.288605
+ - - -1.17269
+ - -0.735761
+ - 0.197358
+ - - -1.173252
+ - 0.734869
+ - -0.197344
+ - - -0.000529
+ - 1.391637
+ - 0.288605
+ - - 1.172686
+ - 0.735762
+ - -0.197358
+ - - 1.173248
+ - -0.734869
+ - 0.197344
+ - - -1.223245
+ - -0.824226
+ - 1.296556
+ - - -2.02878
+ - -1.259391
+ - -0.242085
+ - - -1.223888
+ - 0.823295
+ - -1.296542
+ - - -2.029735
+ - 1.257846
+ - 0.242109
+ - - 1.223242
+ - 0.824226
+ - -1.296556
+ - - 2.028777
+ - 1.259391
+ - 0.242085
+ - - 1.223884
+ - -0.823295
+ - 1.296541
+ - - 2.029732
+ - -1.257846
+ - -0.242109
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.33181563915906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000527
+ - -1.394126
+ - -0.292494
+ - - -1.174352
+ - -0.736345
+ - 0.197327
+ - - -1.174915
+ - 0.735451
+ - -0.197313
+ - - -0.00053
+ - 1.394126
+ - 0.292494
+ - - 1.174349
+ - 0.736345
+ - -0.197327
+ - - 1.174911
+ - -0.735451
+ - 0.197313
+ - - -1.223524
+ - -0.826617
+ - 1.301655
+ - - -2.034508
+ - -1.263813
+ - -0.241831
+ - - -1.224168
+ - 0.825686
+ - -1.301641
+ - - -2.035467
+ - 1.262265
+ - 0.241855
+ - - 1.223521
+ - 0.826617
+ - -1.301655
+ - - 2.034505
+ - 1.263813
+ - 0.241831
+ - - 1.224165
+ - -0.825686
+ - 1.30164
+ - - 2.035463
+ - -1.262264
+ - -0.241855
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.49294691894391
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000519
+ - -1.373115
+ - -0.282475
+ - - -1.165419
+ - -0.731184
+ - 0.19567
+ - - -1.165977
+ - 0.730297
+ - -0.195656
+ - - -0.000522
+ - 1.373115
+ - 0.282475
+ - - 1.165416
+ - 0.731184
+ - -0.19567
+ - - 1.165974
+ - -0.730297
+ - 0.195656
+ - - -1.2177
+ - -0.820213
+ - 1.288685
+ - - -2.017716
+ - -1.251892
+ - -0.240579
+ - - -1.218339
+ - 0.819286
+ - -1.288671
+ - - -2.018666
+ - 1.250356
+ - 0.240603
+ - - 1.217697
+ - 0.820213
+ - -1.288685
+ - - 2.017713
+ - 1.251892
+ - 0.240579
+ - - 1.218336
+ - -0.819286
+ - 1.28867
+ - - 2.018662
+ - -1.250356
+ - -0.240603
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.83255496977195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000523
+ - -1.383748
+ - -0.288103
+ - - -1.172569
+ - -0.736195
+ - 0.197053
+ - - -1.173131
+ - 0.735302
+ - -0.197039
+ - - -0.000526
+ - 1.383748
+ - 0.288103
+ - - 1.172565
+ - 0.736195
+ - -0.197053
+ - - 1.173128
+ - -0.735302
+ - 0.197039
+ - - -1.223858
+ - -0.824016
+ - 1.293002
+ - - -2.024355
+ - -1.262137
+ - -0.239582
+ - - -1.2245
+ - 0.823085
+ - -1.292988
+ - - -2.025312
+ - 1.260596
+ - 0.239606
+ - - 1.223855
+ - 0.824016
+ - -1.293003
+ - - 2.024352
+ - 1.262137
+ - 0.239582
+ - - 1.224497
+ - -0.823084
+ - 1.292988
+ - - 2.025309
+ - -1.260596
+ - -0.239606
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.06151697104177
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000544
+ - -1.378344
+ - -0.294476
+ - - -1.162825
+ - -0.732138
+ - 0.195519
+ - - -1.163396
+ - 0.731267
+ - -0.195522
+ - - -0.00054
+ - 1.378344
+ - 0.294476
+ - - 1.162825
+ - 0.732136
+ - -0.195527
+ - - 1.163395
+ - -0.731264
+ - 0.19553
+ - - -1.203893
+ - -0.820631
+ - 1.289463
+ - - -2.020107
+ - -1.250101
+ - -0.234084
+ - - -1.204562
+ - 0.819773
+ - -1.289464
+ - - -2.02107
+ - 1.248559
+ - 0.234111
+ - - 1.203874
+ - 0.820612
+ - -1.289473
+ - - 2.020112
+ - 1.250106
+ - 0.234054
+ - - 1.204545
+ - -0.819754
+ - 1.289475
+ - - 2.021074
+ - -1.248564
+ - -0.234083
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.35498599086425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000544
+ - -1.378344
+ - -0.294476
+ - - -1.162825
+ - -0.732138
+ - 0.195519
+ - - -1.163396
+ - 0.731267
+ - -0.195522
+ - - -0.00054
+ - 1.378344
+ - 0.294476
+ - - 1.162825
+ - 0.732136
+ - -0.195527
+ - - 1.163395
+ - -0.731264
+ - 0.19553
+ - - -1.203893
+ - -0.820631
+ - 1.289463
+ - - -2.020107
+ - -1.250101
+ - -0.234084
+ - - -1.204562
+ - 0.819773
+ - -1.289464
+ - - -2.02107
+ - 1.248559
+ - 0.234111
+ - - 1.203874
+ - 0.820612
+ - -1.289473
+ - - 2.020112
+ - 1.250106
+ - 0.234054
+ - - 1.204545
+ - -0.819754
+ - 1.289475
+ - - 2.021074
+ - -1.248564
+ - -0.234083
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.22637360013955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000544
+ - -1.378344
+ - -0.294476
+ - - -1.162825
+ - -0.732138
+ - 0.195519
+ - - -1.163396
+ - 0.731267
+ - -0.195522
+ - - -0.00054
+ - 1.378344
+ - 0.294476
+ - - 1.162825
+ - 0.732136
+ - -0.195527
+ - - 1.163395
+ - -0.731264
+ - 0.19553
+ - - -1.203893
+ - -0.820631
+ - 1.289463
+ - - -2.020107
+ - -1.250101
+ - -0.234084
+ - - -1.204562
+ - 0.819773
+ - -1.289464
+ - - -2.02107
+ - 1.248559
+ - 0.234111
+ - - 1.203874
+ - 0.820612
+ - -1.289473
+ - - 2.020112
+ - 1.250106
+ - 0.234054
+ - - 1.204545
+ - -0.819754
+ - 1.289475
+ - - 2.021074
+ - -1.248564
+ - -0.234083
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -74.88550218495868
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000522
+ - -1.382041
+ - -0.285653
+ - - -1.168622
+ - -0.737381
+ - 0.196524
+ - - -1.169185
+ - 0.736492
+ - -0.19651
+ - - -0.000526
+ - 1.382041
+ - 0.285653
+ - - 1.168619
+ - 0.737381
+ - -0.196524
+ - - 1.169182
+ - -0.736492
+ - 0.19651
+ - - -1.225539
+ - -0.823666
+ - 1.294353
+ - - -2.023807
+ - -1.261371
+ - -0.241341
+ - - -1.226181
+ - 0.822734
+ - -1.294339
+ - - -2.024763
+ - 1.259831
+ - 0.241365
+ - - 1.225536
+ - 0.823666
+ - -1.294353
+ - - 2.023804
+ - 1.261371
+ - 0.241341
+ - - 1.226177
+ - -0.822733
+ - 1.294338
+ - - 2.02476
+ - -1.259831
+ - -0.241365
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.56516375908116
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.0007584376
- - -1.3934379656
- - -0.2957538636
- - - -1.1736563696
- - -0.7402265962
- - 0.1985115011
- - - -1.1743888684
- - 0.7390991505
- - -0.1984214032
- - - -0.000601386
- - 1.3936189677
- - 0.2956606774
- - - 1.1736940791
- - 0.7401202761
- - -0.1986762659
- - - 1.1744067678
- - -0.7390566492
- - 0.1987626259
- - - -1.2210608645
- - -0.8209251198
- - 1.3024554214
- - - -2.0341215423
- - -1.2681522026
- - -0.237966209
- - - -1.2217833663
- - 0.8192936259
- - -1.3023836554
- - - -2.0355107825
- - 1.2662085525
- - 0.2377139677
- - - 1.2201663895
- - 0.8199200262
- - -1.3026930111
- - - 2.0343224608
- - 1.2683733848
- - 0.2369752953
- - - 1.2209706802
- - -0.8193001191
- - 1.3027306844
- - - 2.0354269591
- - -1.2664832521
- - -0.2371457516
+ - - 0.000519
+ - -1.372614
+ - -0.291869
+ - - -1.162349
+ - -0.732953
+ - 0.195187
+ - - -1.16291
+ - 0.732068
+ - -0.195174
+ - - -0.000523
+ - 1.372614
+ - 0.291869
+ - - 1.162346
+ - 0.732953
+ - -0.195187
+ - - 1.162906
+ - -0.732068
+ - 0.195174
+ - - -1.203279
+ - -0.820091
+ - 1.289086
+ - - -2.018353
+ - -1.252469
+ - -0.235293
+ - - -1.203919
+ - 0.819175
+ - -1.289072
+ - - -2.019303
+ - 1.250932
+ - 0.235317
+ - - 1.203276
+ - 0.820091
+ - -1.289086
+ - - 2.018349
+ - 1.252469
+ - 0.235293
+ - - 1.203915
+ - -0.819175
+ - 1.289072
+ - - 2.0193
+ - -1.250932
+ - -0.235317
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.53564752784595
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.00052
+ - -1.376514
+ - -0.285711
+ - - -1.15901
+ - -0.731234
+ - 0.194553
+ - - -1.159569
+ - 0.730352
+ - -0.19454
+ - - -0.000524
+ - 1.376514
+ - 0.28571
+ - - 1.159007
+ - 0.731234
+ - -0.194554
+ - - 1.159566
+ - -0.730352
+ - 0.194539
+ - - -1.21097
+ - -0.820051
+ - 1.290508
+ - - -2.017052
+ - -1.24952
+ - -0.239451
+ - - -1.211609
+ - 0.819129
+ - -1.290494
+ - - -2.017999
+ - 1.247985
+ - 0.239475
+ - - 1.210967
+ - 0.820051
+ - -1.290509
+ - - 2.017049
+ - 1.24952
+ - 0.23945
+ - - 1.211606
+ - -0.819129
+ - 1.290494
+ - - 2.017996
+ - -1.247985
+ - -0.239475
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.65128915617002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000525
+ - -1.389244
+ - -0.296645
+ - - -1.175765
+ - -0.735232
+ - 0.199068
+ - - -1.176327
+ - 0.734337
+ - -0.199054
+ - - -0.000528
+ - 1.389244
+ - 0.296645
+ - - 1.175762
+ - 0.735232
+ - -0.199068
+ - - 1.176323
+ - -0.734337
+ - 0.199054
+ - - -1.216804
+ - -0.825577
+ - 1.296995
+ - - -2.028025
+ - -1.264854
+ - -0.238366
+ - - -1.217447
+ - 0.824651
+ - -1.296981
+ - - -2.028984
+ - 1.26331
+ - 0.23839
+ - - 1.216801
+ - 0.825577
+ - -1.296996
+ - - 2.028022
+ - 1.264854
+ - 0.238366
+ - - 1.217444
+ - -0.824651
+ - 1.296981
+ - - 2.028981
+ - -1.26331
+ - -0.238391
isotopes:
- 16
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.20806655725977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0005439824
+ - -1.3783441679
+ - -0.2944760275
+ - - -1.162825346
+ - -0.7321381973
+ - 0.1955186276
+ - - -1.1633957143
+ - 0.7312665207
+ - -0.1955219038
+ - - -0.0005398046
+ - 1.3783441037
+ - 0.2944763325
+ - - 1.1628246091
+ - 0.7321355841
+ - -0.1955271671
+ - - 1.1633951802
+ - -0.7312638496
+ - 0.1955302756
+ - - -1.2038925754
+ - -0.82063055
+ - 1.2894626272
+ - - -2.0201071899
+ - -1.2501010872
+ - -0.2340836522
+ - - -1.2045619193
+ - 0.8197731549
+ - -1.2894644532
+ - - -2.021069715
+ - 1.2485590948
+ - 0.2341106137
+ - - 1.2038742263
+ - 0.8206116502
+ - -1.2894731812
+ - - 2.0201120342
+ - 1.2501061314
+ - 0.2340544442
+ - - 1.2045449693
+ - -0.8197543405
+ - 1.2894747829
+ - - 2.0210743732
+ - -1.2485638873
+ - -0.2340826151
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.70759264118081
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000521
+ - -1.377463
+ - -0.280952
+ - - -1.161697
+ - -0.733247
+ - 0.195594
+ - - -1.162257
+ - 0.732363
+ - -0.19558
+ - - -0.000524
+ - 1.377463
+ - 0.280952
+ - - 1.161694
+ - 0.733247
+ - -0.195594
+ - - 1.162254
+ - -0.732363
+ - 0.19558
+ - - -1.21652
+ - -0.820925
+ - 1.29005
+ - - -2.016332
+ - -1.250769
+ - -0.241515
+ - - -1.217159
+ - 0.819999
+ - -1.290036
+ - - -2.017281
+ - 1.249234
+ - 0.241539
+ - - 1.216516
+ - 0.820925
+ - -1.29005
+ - - 2.016329
+ - 1.250769
+ - 0.241514
+ - - 1.217156
+ - -0.819999
+ - 1.290036
+ - - 2.017277
+ - -1.249234
+ - -0.241539
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/15-Hexadiene.yml b/input/reference_sets/main/15-Hexadiene.yml
index 16c4baf791..fc6e6080fa 100644
--- a/input/reference_sets/main/15-Hexadiene.yml
+++ b/input/reference_sets/main/15-Hexadiene.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.669243563559334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.845015
+ - -0.605573
+ - -0.006452
+ - - 1.920184
+ - 0.342584
+ - 0.112108
+ - - 0.56533
+ - 0.301713
+ - -0.521435
+ - - -0.565329
+ - 0.301632
+ - 0.521488
+ - - -1.920183
+ - 0.342612
+ - -0.112048
+ - - -2.845019
+ - -0.605559
+ - 0.006358
+ - - 2.669118
+ - -1.491712
+ - -0.604331
+ - - 3.804925
+ - -0.526044
+ - 0.485231
+ - - 2.135321
+ - 1.214776
+ - 0.72382
+ - - 0.439318
+ - 1.173493
+ - -1.172214
+ - - 0.475307
+ - -0.583522
+ - -1.154475
+ - - -0.475311
+ - -0.583706
+ - 1.154385
+ - - -0.439312
+ - 1.173306
+ - 1.172407
+ - - -2.135314
+ - 1.214905
+ - -0.72362
+ - - -3.804928
+ - -0.525945
+ - -0.485311
+ - - -2.669127
+ - -1.491795
+ - 0.604095
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.869695013630526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.853808
+ - -0.598914
+ - -0.009524
+ - - 1.923105
+ - 0.338398
+ - 0.113738
+ - - 0.568096
+ - 0.296336
+ - -0.520004
+ - - -0.568095
+ - 0.296255
+ - 0.520056
+ - - -1.923103
+ - 0.338427
+ - -0.11368
+ - - -2.853812
+ - -0.5989
+ - 0.009432
+ - - 2.687617
+ - -1.484833
+ - -0.612496
+ - - 3.814409
+ - -0.51564
+ - 0.48244
+ - - 2.130179
+ - 1.209331
+ - 0.731824
+ - - 0.442798
+ - 1.168962
+ - -1.171522
+ - - 0.478523
+ - -0.587927
+ - -1.155345
+ - - -0.478527
+ - -0.58811
+ - 1.155254
+ - - -0.442792
+ - 1.168776
+ - 1.171715
+ - - -2.130173
+ - 1.209461
+ - -0.731625
+ - - -3.814412
+ - -0.515542
+ - -0.482519
+ - - -2.687626
+ - -1.484917
+ - 0.61226
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 64.80450184338261
+ value: 64.80450184338261
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.8721625385
+ - -0.6100378493
+ - -0.0098457265
+ - - 1.9353084632
+ - 0.3438667529
+ - 0.1095226667
+ - - 0.5702184851
+ - 0.3020528624
+ - -0.5283048513
+ - - -0.5703218705
+ - 0.3027471971
+ - 0.5287972284
+ - - -1.9348767084
+ - 0.3435611443
+ - -0.1101015251
+ - - -2.8721368548
+ - -0.6098550207
+ - 0.010018316
+ - - 2.6993170864
+ - -1.5030894723
+ - -0.6159321589
+ - - 3.8411449169
+ - -0.5317939921
+ - 0.4867954395
+ - - 2.1405718458
+ - 1.2227175653
+ - 0.7316311
+ - - 0.4380074527
+ - 1.1833042826
+ - -1.1817096805
+ - - 0.4718860114
+ - -0.5894508307
+ - -1.1670998075
+ - - -0.4729335098
+ - -0.5879515159
+ - 1.1687979761
+ - - -0.43899534
+ - 1.1849549381
+ - 1.181019423
+ - - -2.1398341974
+ - 1.2212237101
+ - -0.7340250601
+ - - -3.8406097748
+ - -0.5318657008
+ - -0.4877221157
+ - - -2.7006788096
+ - -1.502059504
+ - 0.617728235
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.01355131095521
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.858369
+ - -0.606881
+ - -0.007622
+ - - 1.92758
+ - 0.34078
+ - 0.111315
+ - - 0.569724
+ - 0.302615
+ - -0.522875
+ - - -0.569723
+ - 0.302534
+ - 0.522928
+ - - -1.927578
+ - 0.340809
+ - -0.111256
+ - - -2.858373
+ - -0.606866
+ - 0.007529
+ - - 2.687066
+ - -1.497696
+ - -0.610412
+ - - 3.823135
+ - -0.526454
+ - 0.487105
+ - - 2.138406
+ - 1.216296
+ - 0.730036
+ - - 0.442616
+ - 1.18076
+ - -1.174162
+ - - 0.475133
+ - -0.583706
+ - -1.161942
+ - - -0.475137
+ - -0.583891
+ - 1.161852
+ - - -0.44261
+ - 1.180573
+ - 1.174357
+ - - -2.1384
+ - 1.216425
+ - -0.729835
+ - - -3.823139
+ - -0.526354
+ - -0.487185
+ - - -2.687074
+ - -1.49778
+ - 0.610174
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.3172054984564
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.883996
+ - -0.59314
+ - -0.016758
+ - - 1.932716
+ - 0.33596
+ - 0.120932
+ - - 0.574964
+ - 0.289165
+ - -0.518709
+ - - -0.574963
+ - 0.289084
+ - 0.51876
+ - - -1.932714
+ - 0.33599
+ - -0.120873
+ - - -2.883999
+ - -0.593127
+ - 0.016666
+ - - 2.729939
+ - -1.480031
+ - -0.637977
+ - - 3.851392
+ - -0.501801
+ - 0.480581
+ - - 2.131622
+ - 1.207808
+ - 0.757361
+ - - 0.449191
+ - 1.169182
+ - -1.176597
+ - - 0.4904
+ - -0.601429
+ - -1.162157
+ - - -0.490404
+ - -0.601615
+ - 1.162064
+ - - -0.449185
+ - 1.168994
+ - 1.17679
+ - - -2.131616
+ - 1.207942
+ - -0.757161
+ - - -3.851395
+ - -0.501702
+ - -0.480658
+ - - -2.729948
+ - -1.480119
+ - 0.637742
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.370760045937985
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.860582
+ - -0.585087
+ - -0.018313
+ - - 1.91941
+ - 0.331494
+ - 0.123873
+ - - 0.568626
+ - 0.285425
+ - -0.513968
+ - - -0.568625
+ - 0.285345
+ - 0.514019
+ - - -1.919408
+ - 0.331524
+ - -0.123815
+ - - -2.860585
+ - -0.585075
+ - 0.018223
+ - - 2.707578
+ - -1.46067
+ - -0.638617
+ - - 3.819244
+ - -0.495898
+ - 0.475131
+ - - 2.115189
+ - 1.192631
+ - 0.758196
+ - - 0.448281
+ - 1.156186
+ - -1.167215
+ - - 0.487444
+ - -0.598368
+ - -1.149944
+ - - -0.487448
+ - -0.598551
+ - 1.149851
+ - - -0.448275
+ - 1.156
+ - 1.167406
+ - - -2.115183
+ - 1.192765
+ - -0.757999
+ - - -3.819247
+ - -0.495801
+ - -0.475207
+ - - -2.707587
+ - -1.460758
+ - 0.638386
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.400095823028643
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.871061
+ - -0.597391
+ - -0.012266
+ - - 1.933132
+ - 0.336094
+ - 0.117645
+ - - 0.573056
+ - 0.294464
+ - -0.519078
+ - - -0.573055
+ - 0.294384
+ - 0.51913
+ - - -1.933131
+ - 0.336123
+ - -0.117586
+ - - -2.871064
+ - -0.597377
+ - 0.012173
+ - - 2.710595
+ - -1.483301
+ - -0.619795
+ - - 3.83384
+ - -0.510378
+ - 0.478781
+ - - 2.138818
+ - 1.206969
+ - 0.739543
+ - - 0.451393
+ - 1.169153
+ - -1.171963
+ - - 0.485022
+ - -0.589897
+ - -1.157652
+ - - -0.485026
+ - -0.590081
+ - 1.157561
+ - - -0.451388
+ - 1.168966
+ - 1.172156
+ - - -2.138812
+ - 1.2071
+ - -0.739344
+ - - -3.833844
+ - -0.51028
+ - -0.47886
+ - - -2.710604
+ - -1.483387
+ - 0.619559
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.66735606557782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.853701
+ - -0.593952
+ - -0.020964
+ - - 1.918954
+ - 0.331979
+ - 0.129812
+ - - 0.567924
+ - 0.296907
+ - -0.515495
+ - - -0.567919
+ - 0.29678
+ - 0.515538
+ - - -1.918943
+ - 0.331987
+ - -0.129779
+ - - -2.853717
+ - -0.593933
+ - 0.020886
+ - - 2.690667
+ - -1.458357
+ - -0.654985
+ - - 3.810998
+ - -0.520464
+ - 0.478279
+ - - 2.117356
+ - 1.183533
+ - 0.776802
+ - - 0.451438
+ - 1.171583
+ - -1.164738
+ - - 0.484247
+ - -0.585393
+ - -1.154334
+ - - -0.484232
+ - -0.58567
+ - 1.154172
+ - - -0.45145
+ - 1.171302
+ - 1.164992
+ - - -2.117307
+ - 1.183611
+ - -0.776689
+ - - -3.811015
+ - -0.520365
+ - -0.478344
+ - - -2.690708
+ - -1.458384
+ - 0.654852
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.32709408181988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.853701
+ - -0.593952
+ - -0.020964
+ - - 1.918954
+ - 0.331979
+ - 0.129812
+ - - 0.567924
+ - 0.296907
+ - -0.515495
+ - - -0.567919
+ - 0.29678
+ - 0.515538
+ - - -1.918943
+ - 0.331987
+ - -0.129779
+ - - -2.853717
+ - -0.593933
+ - 0.020886
+ - - 2.690667
+ - -1.458357
+ - -0.654985
+ - - 3.810998
+ - -0.520464
+ - 0.478279
+ - - 2.117356
+ - 1.183533
+ - 0.776802
+ - - 0.451438
+ - 1.171583
+ - -1.164738
+ - - 0.484247
+ - -0.585393
+ - -1.154334
+ - - -0.484232
+ - -0.58567
+ - 1.154172
+ - - -0.45145
+ - 1.171302
+ - 1.164992
+ - - -2.117307
+ - 1.183611
+ - -0.77669
+ - - -3.811015
+ - -0.520365
+ - -0.478344
+ - - -2.690708
+ - -1.458384
+ - 0.654852
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.831583634954132
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.853701
+ - -0.593952
+ - -0.020964
+ - - 1.918954
+ - 0.331979
+ - 0.129812
+ - - 0.567924
+ - 0.296907
+ - -0.515495
+ - - -0.567919
+ - 0.29678
+ - 0.515538
+ - - -1.918943
+ - 0.331987
+ - -0.129779
+ - - -2.853717
+ - -0.593933
+ - 0.020886
+ - - 2.690667
+ - -1.458357
+ - -0.654985
+ - - 3.810998
+ - -0.520464
+ - 0.478279
+ - - 2.117356
+ - 1.183533
+ - 0.776802
+ - - 0.451438
+ - 1.171583
+ - -1.164738
+ - - 0.484247
+ - -0.585393
+ - -1.154334
+ - - -0.484232
+ - -0.58567
+ - 1.154172
+ - - -0.45145
+ - 1.171302
+ - 1.164992
+ - - -2.117307
+ - 1.183611
+ - -0.77669
+ - - -3.811015
+ - -0.520365
+ - -0.478344
+ - - -2.690708
+ - -1.458384
+ - 0.654852
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.733445695708934
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.87564
+ - -0.590964
+ - -0.014147
+ - - 1.931018
+ - 0.334748
+ - 0.11856
+ - - 0.572747
+ - 0.289185
+ - -0.519472
+ - - -0.572746
+ - 0.289104
+ - 0.519523
+ - - -1.931016
+ - 0.334777
+ - -0.118502
+ - - -2.875644
+ - -0.59095
+ - 0.014055
+ - - 2.724914
+ - -1.475027
+ - -0.627858
+ - - 3.838202
+ - -0.503072
+ - 0.478625
+ - - 2.125408
+ - 1.204665
+ - 0.746836
+ - - 0.445634
+ - 1.163004
+ - -1.17501
+ - - 0.486012
+ - -0.596826
+ - -1.158262
+ - - -0.486015
+ - -0.59701
+ - 1.15817
+ - - -0.445628
+ - 1.162817
+ - 1.175202
+ - - -2.125402
+ - 1.204798
+ - -0.746637
+ - - -3.838205
+ - -0.502974
+ - -0.478702
+ - - -2.724923
+ - -1.475113
+ - 0.627624
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.47496990842091
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.843009
+ - -0.599941
+ - -0.010826
+ - - 1.917387
+ - 0.338422
+ - 0.11725
+ - - 0.56409
+ - 0.298918
+ - -0.520852
+ - - -0.564089
+ - 0.298837
+ - 0.520904
+ - - -1.917386
+ - 0.338452
+ - -0.117191
+ - - -2.843013
+ - -0.599928
+ - 0.010734
+ - - 2.671167
+ - -1.478753
+ - -0.622344
+ - - 3.801848
+ - -0.52373
+ - 0.485007
+ - - 2.123933
+ - 1.204585
+ - 0.741937
+ - - 0.439828
+ - 1.172283
+ - -1.169794
+ - - 0.475518
+ - -0.586072
+ - -1.154574
+ - - -0.475522
+ - -0.586256
+ - 1.154484
+ - - -0.439822
+ - 1.172097
+ - 1.169987
+ - - -2.123926
+ - 1.204716
+ - -0.741739
+ - - -3.801851
+ - -0.523631
+ - -0.485088
+ - - -2.671175
+ - -1.478839
+ - 0.622109
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.05745524498179
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.8721625385
- - -0.6100378493
- - -0.0098457265
- - - 1.9353084632
- - 0.3438667529
- - 0.1095226667
- - - 0.5702184851
- - 0.3020528624
- - -0.5283048513
- - - -0.5703218705
- - 0.3027471971
- - 0.5287972284
- - - -1.9348767084
- - 0.3435611443
- - -0.1101015251
- - - -2.8721368548
- - -0.6098550207
- - 0.010018316
- - - 2.6993170864
- - -1.5030894723
- - -0.6159321589
- - - 3.8411449169
- - -0.5317939921
- - 0.4867954395
- - - 2.1405718458
- - 1.2227175653
- - 0.7316311
- - - 0.4380074527
- - 1.1833042826
- - -1.1817096805
- - - 0.4718860114
- - -0.5894508307
- - -1.1670998075
- - - -0.4729335098
- - -0.5879515159
- - 1.1687979761
- - - -0.43899534
- - 1.1849549381
- - 1.181019423
- - - -2.1398341974
- - 1.2212237101
- - -0.7340250601
- - - -3.8406097748
- - -0.5318657008
- - -0.4877221157
- - - -2.7006788096
- - -1.502059504
- - 0.617728235
+ - - 2.86097
+ - -0.587193
+ - -0.018932
+ - - 1.916718
+ - 0.332104
+ - 0.12395
+ - - 0.568691
+ - 0.286545
+ - -0.513832
+ - - -0.56869
+ - 0.286465
+ - 0.513883
+ - - -1.916716
+ - 0.332134
+ - -0.123893
+ - - -2.860974
+ - -0.58718
+ - 0.018842
+ - - 2.707706
+ - -1.463183
+ - -0.642172
+ - - 3.820855
+ - -0.49826
+ - 0.476576
+ - - 2.112804
+ - 1.193367
+ - 0.761888
+ - - 0.447027
+ - 1.160121
+ - -1.167362
+ - - 0.486605
+ - -0.597788
+ - -1.152587
+ - - -0.486609
+ - -0.597971
+ - 1.152495
+ - - -0.447021
+ - 1.159935
+ - 1.167553
+ - - -2.112798
+ - 1.193501
+ - -0.761691
+ - - -3.820858
+ - -0.498163
+ - -0.476653
+ - - -2.707715
+ - -1.463272
+ - 0.64194
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.36787102297588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.874051
+ - -0.596429
+ - -0.013162
+ - - 1.931752
+ - 0.338487
+ - 0.117779
+ - - 0.573361
+ - 0.292313
+ - -0.521564
+ - - -0.573359
+ - 0.292231
+ - 0.521614
+ - - -1.93175
+ - 0.338516
+ - -0.117721
+ - - -2.874055
+ - -0.596416
+ - 0.01307
+ - - 2.715219
+ - -1.482687
+ - -0.624679
+ - - 3.837901
+ - -0.509619
+ - 0.480793
+ - - 2.134443
+ - 1.209944
+ - 0.743694
+ - - 0.445963
+ - 1.169441
+ - -1.17352
+ - - 0.487553
+ - -0.595734
+ - -1.158602
+ - - -0.487556
+ - -0.59592
+ - 1.158509
+ - - -0.445957
+ - 1.169252
+ - 1.173714
+ - - -2.134436
+ - 1.210075
+ - -0.743496
+ - - -3.837905
+ - -0.50952
+ - -0.48087
+ - - -2.715228
+ - -1.482772
+ - 0.624445
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.420112539512267
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.8537013448
+ - -0.593952043
+ - -0.0209635226
+ - - 1.9189542042
+ - 0.3319785403
+ - 0.1298123458
+ - - 0.5679244057
+ - 0.296907408
+ - -0.5154945708
+ - - -0.5679186111
+ - 0.296779891
+ - 0.5155375152
+ - - -1.9189432997
+ - 0.3319871488
+ - -0.129778644
+ - - -2.8537172061
+ - -0.5939334098
+ - 0.0208859207
+ - - 2.6906672973
+ - -1.4583566274
+ - -0.6549847704
+ - - 3.8109981094
+ - -0.520464469
+ - 0.4782787245
+ - - 2.1173558672
+ - 1.1835325928
+ - 0.7768020174
+ - - 0.4514384699
+ - 1.1715828297
+ - -1.1647382821
+ - - 0.4842466819
+ - -0.5853928153
+ - -1.1543339927
+ - - -0.4842319996
+ - -0.5856702078
+ - 1.1541719927
+ - - -0.4514495489
+ - 1.1713016404
+ - 1.1649915672
+ - - -2.1173071572
+ - 1.1836111178
+ - -0.7766894958
+ - - -3.8110145003
+ - -0.520365389
+ - -0.478343777
+ - - -2.6907082457
+ - -1.4583838848
+ - 0.6548517508
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.820355383075693
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.851763
+ - -0.595562
+ - -0.012364
+ - - 1.919904
+ - 0.335495
+ - 0.117572
+ - - 0.566137
+ - 0.294011
+ - -0.518356
+ - - -0.566136
+ - 0.29393
+ - 0.518408
+ - - -1.919903
+ - 0.335525
+ - -0.117513
+ - - -2.851766
+ - -0.595548
+ - 0.012272
+ - - 2.687786
+ - -1.477685
+ - -0.622267
+ - - 3.811659
+ - -0.51051
+ - 0.481379
+ - - 2.12429
+ - 1.202833
+ - 0.741829
+ - - 0.445432
+ - 1.167181
+ - -1.169216
+ - - 0.477816
+ - -0.590049
+ - -1.154463
+ - - -0.477819
+ - -0.590233
+ - 1.154372
+ - - -0.445426
+ - 1.166994
+ - 1.169409
+ - - -2.124284
+ - 1.202964
+ - -0.741631
+ - - -3.811662
+ - -0.510411
+ - -0.481458
+ - - -2.687795
+ - -1.477771
+ - 0.622032
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1H-124-Triazole.yml b/input/reference_sets/main/1H-124-Triazole.yml
index 24c06f6cff..69fb8fc955 100644
--- a/input/reference_sets/main/1H-124-Triazole.yml
+++ b/input/reference_sets/main/1H-124-Triazole.yml
@@ -15,7 +15,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 47.25723202740063
+ value: 47.25723202740061
class: ThermoData
xyz_dict:
coords:
@@ -117,41 +117,743 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.058486390747156
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.440491
+ - -1.104624
+ - -0.0
+ - - -1.118777
+ - 0.031656
+ - -0.0
+ - - -0.357208
+ - 1.159813
+ - -0.0
+ - - 0.87227
+ - 0.681594
+ - 0.0
+ - - 0.838204
+ - -0.664503
+ - 0.0
+ - - -2.195185
+ - 0.045589
+ - -0.0
+ - - 1.784823
+ - 1.253432
+ - 0.0
+ - - 1.596838
+ - -1.324711
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.10996729868531
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.441003
+ - -1.101685
+ - -0.0
+ - - -1.119441
+ - 0.030043
+ - -0.0
+ - - -0.355195
+ - 1.156812
+ - -0.0
+ - - 0.872588
+ - 0.681802
+ - 0.0
+ - - 0.838358
+ - -0.664318
+ - 0.0
+ - - -2.196795
+ - 0.045725
+ - -0.0
+ - - 1.785302
+ - 1.255137
+ - 0.0
+ - - 1.59666
+ - -1.325272
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 54.14743756818003
+ value: 54.14743756818003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4352682515
+ - -1.1195959811
+ - -0.0
+ - - -1.119661019
+ - 0.0266464813
+ - -0.0
+ - - -0.3670271038
+ - 1.1704247015
+ - -0.0
+ - - 0.8728014306
+ - 0.6952131776
+ - 0.0
+ - - 0.8436799187
+ - -0.666033811
+ - 0.0
+ - - -2.2062335489
+ - 0.0325451672
+ - -0.0
+ - - 1.7895370206
+ - 1.2758983758
+ - 0.0
+ - - 1.6081621147
+ - -1.3331658625
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.381013079715146
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.44141
+ - -1.110241
+ - -0.0
+ - - -1.123459
+ - 0.031209
+ - -0.0
+ - - -0.358839
+ - 1.163684
+ - -0.0
+ - - 0.876297
+ - 0.686251
+ - 0.0
+ - - 0.839927
+ - -0.667064
+ - 0.0
+ - - -2.205417
+ - 0.045074
+ - -0.0
+ - - 1.793502
+ - 1.260668
+ - 0.0
+ - - 1.599873
+ - -1.331335
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.81135082218815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.443487
+ - -1.113404
+ - -0.0
+ - - -1.124009
+ - 0.032581
+ - -0.0
+ - - -0.36107
+ - 1.167795
+ - -0.0
+ - - 0.876014
+ - 0.686724
+ - 0.0
+ - - 0.84126
+ - -0.668526
+ - 0.0
+ - - -2.210756
+ - 0.045438
+ - -0.0
+ - - 1.796814
+ - 1.264414
+ - 0.0
+ - - 1.605708
+ - -1.336776
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.37733724239977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.437902
+ - -1.093893
+ - -0.0
+ - - -1.11408
+ - 0.029707
+ - -0.0
+ - - -0.352669
+ - 1.151688
+ - -0.0
+ - - 0.867816
+ - 0.677689
+ - 0.0
+ - - 0.834422
+ - -0.661734
+ - 0.0
+ - - -2.19135
+ - 0.044957
+ - -0.0
+ - - 1.780876
+ - 1.250535
+ - 0.0
+ - - 1.593361
+ - -1.320703
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.92974418482575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.442553
+ - -1.105573
+ - -0.0
+ - - -1.118154
+ - 0.030188
+ - -0.0
+ - - -0.35639
+ - 1.161404
+ - -0.0
+ - - 0.871858
+ - 0.684004
+ - 0.0
+ - - 0.839046
+ - -0.666364
+ - 0.0
+ - - -2.196874
+ - 0.045977
+ - -0.0
+ - - 1.785619
+ - 1.258121
+ - 0.0
+ - - 1.597922
+ - -1.329512
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.96476082006954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.439753
+ - -1.097832
+ - 0.0
+ - - -1.114817
+ - 0.029717
+ - 0.0
+ - - -0.353953
+ - 1.157041
+ - 0.0
+ - - 0.868513
+ - 0.678612
+ - 0.0
+ - - 0.835548
+ - -0.662524
+ - 0.0
+ - - -2.192038
+ - 0.04414
+ - 0.0
+ - - 1.782363
+ - 1.249713
+ - 0.0
+ - - 1.594612
+ - -1.32062
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.348251178232694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.439753
+ - -1.097832
+ - 0.0
+ - - -1.114817
+ - 0.029717
+ - 0.0
+ - - -0.353953
+ - 1.157041
+ - 0.0
+ - - 0.868513
+ - 0.678612
+ - 0.0
+ - - 0.835548
+ - -0.662524
+ - 0.0
+ - - -2.192038
+ - 0.04414
+ - 0.0
+ - - 1.782363
+ - 1.249713
+ - 0.0
+ - - 1.594612
+ - -1.32062
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.32922514084875
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.4352682515
- - -1.1195959811
+ - - -0.439753
+ - -1.097832
+ - 0.0
+ - - -1.114817
+ - 0.029717
+ - 0.0
+ - - -0.353953
+ - 1.157041
+ - 0.0
+ - - 0.868513
+ - 0.678612
+ - 0.0
+ - - 0.835548
+ - -0.662524
+ - 0.0
+ - - -2.192038
+ - 0.04414
+ - 0.0
+ - - 1.782363
+ - 1.249713
+ - 0.0
+ - - 1.594612
+ - -1.32062
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.37884621651938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.441215
+ - -1.106424
+ - 0.0
+ - - -1.117708
+ - 0.030409
+ - 0.0
+ - - -0.357693
+ - 1.162057
+ - 0.0
+ - - 0.871062
+ - 0.682816
+ - 0.0
+ - - 0.838951
+ - -0.664677
+ - 0.0
+ - - -2.197116
+ - 0.046045
+ - 0.0
+ - - 1.786724
+ - 1.254617
+ - 0.0
+ - - 1.597469
+ - -1.326597
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.123676391730825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.436688
+ - -1.095918
- -0.0
- - - -1.119661019
- - 0.0266464813
+ - - -1.114114
+ - 0.030279
- -0.0
- - - -0.3670271038
- - 1.1704247015
+ - - -0.354155
+ - 1.155853
- -0.0
- - - 0.8728014306
- - 0.6952131776
+ - - 0.867723
+ - 0.679143
- 0.0
- - - 0.8436799187
- - -0.666033811
+ - - 0.833269
+ - -0.662137
- 0.0
- - - -2.2062335489
- - 0.0325451672
+ - - -2.19145
+ - 0.043198
- -0.0
- - - 1.7895370206
- - 1.2758983758
+ - - 1.782668
+ - 1.248945
- 0.0
- - - 1.6081621147
- - -1.3331658625
+ - - 1.593221
+ - -1.321118
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.96110806001378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.43517
+ - -1.097179
+ - -0.0
+ - - -1.111981
+ - 0.031278
+ - -0.0
+ - - -0.355188
+ - 1.15493
+ - -0.0
+ - - 0.867581
+ - 0.677743
+ - 0.0
+ - - 0.831785
+ - -0.661982
+ - 0.0
+ - - -2.191227
+ - 0.043761
+ - -0.0
+ - - 1.783039
+ - 1.250177
+ - 0.0
+ - - 1.591635
+ - -1.320482
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.543866032785644
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.444144
+ - -1.112047
+ - -0.0
+ - - -1.120857
+ - 0.031891
+ - -0.0
+ - - -0.359931
+ - 1.166044
+ - -0.0
+ - - 0.874149
+ - 0.68533
+ - 0.0
+ - - 0.840881
+ - -0.666539
+ - 0.0
+ - - -2.201949
+ - 0.046266
+ - -0.0
+ - - 1.790234
+ - 1.260015
+ - 0.0
+ - - 1.60209
+ - -1.332715
- 0.0
isotopes:
- 14
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.65938549510037
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4397533133
+ - -1.0978320182
+ - 0.0
+ - - -1.1148169531
+ - 0.0297167712
+ - 0.0
+ - - -0.3539534984
+ - 1.157040823
+ - 0.0
+ - - 0.8685128049
+ - 0.6786121599
+ - 0.0
+ - - 0.8355479464
+ - -0.6625238803
+ - 0.0
+ - - -2.1920380752
+ - 0.0441397364
+ - 0.0
+ - - 1.7823633936
+ - 1.2497126925
+ - 0.0
+ - - 1.5946116273
+ - -1.3206204866
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.171332975749614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.437315
+ - -1.096755
+ - -0.0
+ - - -1.113077
+ - 0.03034
+ - -0.0
+ - - -0.35422
+ - 1.154912
+ - -0.0
+ - - 0.867552
+ - 0.677583
+ - 0.0
+ - - 0.833818
+ - -0.662076
+ - 0.0
+ - - -2.191022
+ - 0.044377
+ - -0.0
+ - - 1.782019
+ - 1.249167
+ - 0.0
+ - - 1.592718
+ - -1.319301
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 14
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - N
+ - C
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/1H-Imidazole.yml b/input/reference_sets/main/1H-Imidazole.yml
index d2058ae2c8..6020cdcabf 100644
--- a/input/reference_sets/main/1H-Imidazole.yml
+++ b/input/reference_sets/main/1H-Imidazole.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.55347233954609
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.999796
+ - 0.516301
+ - 0.0
+ - - -0.104584
+ - 1.226832
+ - 0.0
+ - - -1.129455
+ - 0.309078
+ - 0.0
+ - - -0.632877
+ - -0.966854
+ - 0.0
+ - - 0.735016
+ - -0.819926
+ - 0.0
+ - - 2.003714
+ - 0.906656
+ - 0.0
+ - - -2.160455
+ - 0.618033
+ - 0.0
+ - - -1.106357
+ - -1.9318
+ - 0.0
+ - - 1.412079
+ - -1.562537
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.87481576846406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.000444
+ - 0.517271
+ - 0.0
+ - - -0.103414
+ - 1.223435
+ - 0.0
+ - - -1.129785
+ - 0.308219
+ - 0.0
+ - - -0.633364
+ - -0.966254
+ - 0.0
+ - - 0.735239
+ - -0.819497
+ - 0.0
+ - - 2.004808
+ - 0.908774
+ - 0.0
+ - - -2.161284
+ - 0.618211
+ - 0.0
+ - - -1.107529
+ - -1.931469
+ - 0.0
+ - - 1.411763
+ - -1.562906
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,44 +305,811 @@ calculated_data:
- H
- H
- H
- LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 25.639671434174844
+ value: 36.8730810214906
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.9956169394
- - 0.5142574748
+ - - 1.004942
+ - 0.521075
- 0.0
- - - -0.1016315652
- - 1.2224803196
+ - - -0.105613
+ - 1.231346
- 0.0
- - - -1.126030877
- - 0.3060016527
+ - - -1.134348
+ - 0.311647
- 0.0
- - - -0.6319901867
- - -0.9638363223
+ - - -0.636004
+ - -0.970195
- 0.0
- - - 0.734155148
- - -0.8187965523999999
+ - - 0.737365
+ - -0.821632
- 0.0
- - - 2.000167583
- - 0.9055337284999998
+ - - 2.014161
+ - 0.912051
- 0.0
- - - -2.1574945329
- - 0.6158838094
+ - - -2.170261
+ - 0.623113
- 0.0
- - - -1.109013518
- - -1.9275039595
+ - - -1.107146
+ - -1.94195
- 0.0
- - - 1.4131001341
- - -1.5582367802
+ - - 1.413784
+ - -1.569672
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.70533776004888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.004906
+ - 0.521528
+ - 0.0
+ - - -0.107034
+ - 1.235814
+ - 0.0
+ - - -1.134459
+ - 0.313493
+ - 0.0
+ - - -0.635962
+ - -0.971255
+ - 0.0
+ - - 0.738107
+ - -0.822937
+ - 0.0
+ - - 2.018184
+ - 0.915164
+ - 0.0
+ - - -2.175212
+ - 0.625311
+ - 0.0
+ - - -1.110833
+ - -1.946493
+ - 0.0
+ - - 1.419183
+ - -1.574841
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.26527420934642
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.994694
+ - 0.513542
+ - 0.0
+ - - -0.101828
+ - 1.217335
+ - 0.0
+ - - -1.124231
+ - 0.30582
+ - 0.0
+ - - -0.630345
+ - -0.96195
+ - 0.0
+ - - 0.73278
+ - -0.817035
+ - 0.0
+ - - 1.998871
+ - 0.906
+ - 0.0
+ - - -2.155816
+ - 0.615085
+ - 0.0
+ - - -1.107988
+ - -1.925247
+ - 0.0
+ - - 1.410742
+ - -1.557767
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.77175022171741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.999524
+ - 0.518889
+ - 0.0
+ - - -0.104084
+ - 1.228276
+ - 0.0
+ - - -1.129228
+ - 0.309192
+ - 0.0
+ - - -0.634363
+ - -0.968384
+ - 0.0
+ - - 0.736938
+ - -0.821815
+ - 0.0
+ - - 2.005159
+ - 0.911051
+ - 0.0
+ - - -2.16215
+ - 0.620396
+ - 0.0
+ - - -1.109423
+ - -1.934891
+ - 0.0
+ - - 1.414505
+ - -1.566931
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.75735004378151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.995617
+ - 0.514257
+ - 0.0
+ - - -0.101632
+ - 1.22248
+ - 0.0
+ - - -1.126031
+ - 0.306002
+ - 0.0
+ - - -0.63199
+ - -0.963836
+ - 0.0
+ - - 0.734155
+ - -0.818797
+ - 0.0
+ - - 2.000168
+ - 0.905534
+ - 0.0
+ - - -2.157495
+ - 0.615884
+ - 0.0
+ - - -1.109014
+ - -1.927504
+ - 0.0
+ - - 1.4131
+ - -1.558237
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.9873567472393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.995617
+ - 0.514257
+ - 0.0
+ - - -0.101632
+ - 1.22248
+ - 0.0
+ - - -1.126031
+ - 0.306002
+ - 0.0
+ - - -0.63199
+ - -0.963836
+ - 0.0
+ - - 0.734155
+ - -0.818797
+ - 0.0
+ - - 2.000168
+ - 0.905534
+ - 0.0
+ - - -2.157495
+ - 0.615884
+ - 0.0
+ - - -1.109014
+ - -1.927504
+ - 0.0
+ - - 1.4131
+ - -1.558237
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.93607810394348
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.995617
+ - 0.514257
+ - 0.0
+ - - -0.101632
+ - 1.22248
+ - 0.0
+ - - -1.126031
+ - 0.306002
+ - 0.0
+ - - -0.63199
+ - -0.963836
+ - 0.0
+ - - 0.734155
+ - -0.818797
+ - 0.0
+ - - 2.000168
+ - 0.905534
+ - 0.0
+ - - -2.157495
+ - 0.615884
+ - 0.0
+ - - -1.109014
+ - -1.927504
+ - 0.0
+ - - 1.4131
+ - -1.558237
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.223066011077165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.998315
+ - 0.517591
+ - 0.0
+ - - -0.104667
+ - 1.229091
+ - 0.0
+ - - -1.129351
+ - 0.309753
+ - 0.0
+ - - -0.634467
+ - -0.967081
+ - 0.0
+ - - 0.735403
+ - -0.820461
+ - 0.0
+ - - 2.005782
+ - 0.906146
+ - 0.0
+ - - -2.162777
+ - 0.621036
+ - 0.0
+ - - -1.104258
+ - -1.936308
+ - 0.0
+ - - 1.412899
+ - -1.563983
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.207117345060553
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.994908
+ - 0.514568
+ - 0.0
+ - - -0.102579
+ - 1.221083
+ - 0.0
+ - - -1.125328
+ - 0.307643
+ - 0.0
+ - - -0.630977
+ - -0.963754
+ - 0.0
+ - - 0.732735
+ - -0.817716
+ - 0.0
+ - - 1.999988
+ - 0.904638
+ - 0.0
+ - - -2.157018
+ - 0.616458
+ - 0.0
+ - - -1.106113
+ - -1.928273
+ - 0.0
+ - - 1.411263
+ - -1.558864
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.497938223350797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.994361
+ - 0.512943
+ - 0.0
+ - - -0.10402
+ - 1.220541
+ - 0.0
+ - - -1.123491
+ - 0.308897
+ - 0.0
+ - - -0.629042
+ - -0.963769
+ - 0.0
+ - - 0.731692
+ - -0.816633
+ - 0.0
+ - - 2.000645
+ - 0.904851
+ - 0.0
+ - - -2.157418
+ - 0.617411
+ - 0.0
+ - - -1.104933
+ - -1.930115
+ - 0.0
+ - - 1.409085
+ - -1.558344
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.017552267626044
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.002397
+ - 0.520134
+ - 0.0
+ - - -0.106246
+ - 1.233205
+ - 0.0
+ - - -1.132581
+ - 0.310918
+ - 0.0
+ - - -0.63635
+ - -0.969502
+ - 0.0
+ - - 0.737014
+ - -0.821928
+ - 0.0
+ - - 2.010625
+ - 0.911385
+ - 0.0
+ - - -2.167296
+ - 0.623881
+ - 0.0
+ - - -1.106514
+ - -1.941245
+ - 0.0
+ - - 1.415829
+ - -1.571065
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.639671434174844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.9956169394
+ - 0.5142574748
+ - 0.0
+ - - -0.1016315652
+ - 1.2224803196
+ - 0.0
+ - - -1.126030877
+ - 0.3060016527
+ - 0.0
+ - - -0.6319901867
+ - -0.9638363223
+ - 0.0
+ - - 0.734155148
+ - -0.8187965523999999
+ - 0.0
+ - - 2.000167583
+ - 0.9055337284999998
+ - 0.0
+ - - -2.1574945329
+ - 0.6158838094
+ - 0.0
+ - - -1.109013518
+ - -1.9275039595
+ - 0.0
+ - - 1.4131001341
+ - -1.5582367802
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.54488536653941
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.9956169394
+ - 0.5142574748
+ - 0.0
+ - - -0.1016315652
+ - 1.2224803196
+ - 0.0
+ - - -1.126030877
+ - 0.3060016527
+ - 0.0
+ - - -0.6319901867
+ - -0.9638363223
+ - 0.0
+ - - 0.734155148
+ - -0.8187965524
+ - 0.0
+ - - 2.000167583
+ - 0.9055337285
+ - 0.0
+ - - -2.1574945329
+ - 0.6158838094
+ - 0.0
+ - - -1.109013518
+ - -1.9275039595
+ - 0.0
+ - - 1.4131001341
+ - -1.5582367802
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.58816842490639
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.994446
+ - 0.513152
+ - 0.0
+ - - -0.102594
+ - 1.220581
+ - 0.0
+ - - -1.124137
+ - 0.307009
+ - 0.0
+ - - -0.629957
+ - -0.962918
+ - 0.0
+ - - 0.732822
+ - -0.817481
+ - 0.0
+ - - 1.999642
+ - 0.904565
+ - 0.0
+ - - -2.156663
+ - 0.615552
+ - 0.0
+ - - -1.106581
+ - -1.92736
+ - 0.0
+ - - 1.409901
+ - -1.557317
- 0.0
isotopes:
- 12
diff --git a/input/reference_sets/main/1H-Pyrazole.yml b/input/reference_sets/main/1H-Pyrazole.yml
index 86f089b057..3a48ac250f 100644
--- a/input/reference_sets/main/1H-Pyrazole.yml
+++ b/input/reference_sets/main/1H-Pyrazole.yml
@@ -16,7 +16,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 43.71464841463383
+ value: 43.71464841463381
class: ThermoData
xyz_dict:
coords:
@@ -75,7 +75,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 42.35160036017075
+ value: 42.35160036017071
class: ThermoData
xyz_dict:
coords:
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.0852715171797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.004901
+ - 0.409608
+ - 0.0
+ - - -0.080898
+ - 1.203321
+ - 0.0
+ - - -1.10555
+ - 0.352736
+ - 0.0
+ - - -0.673724
+ - -0.988151
+ - 0.0
+ - - 0.702559
+ - -0.910128
+ - 0.0
+ - - 1.916209
+ - 0.832279
+ - 0.0
+ - - -2.112395
+ - 0.73547
+ - 0.0
+ - - -1.273408
+ - -1.880558
+ - 0.0
+ - - 1.465743
+ - -1.6687
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.337749938209775
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.005042
+ - 0.409901
+ - 0.0
+ - - -0.08204
+ - 1.200616
+ - 0.0
+ - - -1.104873
+ - 0.354539
+ - 0.0
+ - - -0.672182
+ - -0.987807
+ - 0.0
+ - - 0.702409
+ - -0.909636
+ - 0.0
+ - - 1.916328
+ - 0.832929
+ - 0.0
+ - - -2.113235
+ - 0.735679
+ - 0.0
+ - - -1.272637
+ - -1.880405
+ - 0.0
+ - - 1.464626
+ - -1.66994
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,44 +305,811 @@ calculated_data:
- H
- H
- H
- LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 36.58344278855898
+ value: 46.38695659930727
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.0016069693
- - 0.4081972343
+ - - 1.007419
+ - 0.412355
- 0.0
- - - -0.0816422995
- - 1.1958683990999999
+ - - -0.080194
+ - 1.20931
- 0.0
- - - -1.101098832
- - 0.3538269863
+ - - -1.109347
+ - 0.35529
- 0.0
- - - -0.6707622445999999
- - -0.9884605951
+ - - -0.675898
+ - -0.990017
- 0.0
- - - 0.6992158683
- - -0.9074206341
+ - - 0.70604
+ - -0.913659
- 0.0
- - - 1.9120220597
- - 0.8312887837
+ - - 1.921823
+ - 0.835966
- 0.0
- - - -2.1082559096
- - 0.7378142532
+ - - -2.121256
+ - 0.739645
- 0.0
- - - -1.2718651169999997
- - -1.8803798759
+ - - -1.277711
+ - -1.887152
- 0.0
- - - 1.4642175285
- - -1.664857137
+ - - 1.472562
+ - -1.67586
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.17232479459073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.009451
+ - 0.413392
+ - 0.0
+ - - -0.081229
+ - 1.213566
+ - 0.0
+ - - -1.110702
+ - 0.355328
+ - 0.0
+ - - -0.677674
+ - -0.991606
+ - 0.0
+ - - 0.706627
+ - -0.91429
+ - 0.0
+ - - 1.929126
+ - 0.839932
+ - 0.0
+ - - -2.126609
+ - 0.742323
+ - 0.0
+ - - -1.281919
+ - -1.892675
+ - 0.0
+ - - 1.476367
+ - -1.680094
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.117047231901076
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0003
+ - 0.408213
+ - 0.0
+ - - -0.081286
+ - 1.191947
+ - 0.0
+ - - -1.099577
+ - 0.353325
+ - 0.0
+ - - -0.669177
+ - -0.985627
+ - 0.0
+ - - 0.6984
+ - -0.905375
+ - 0.0
+ - - 1.911212
+ - 0.830718
+ - 0.0
+ - - -2.107515
+ - 0.73514
+ - 0.0
+ - - -1.270147
+ - -1.877529
+ - 0.0
+ - - 1.461227
+ - -1.664935
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.63344729518454
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.005896
+ - 0.411442
+ - 0.0
+ - - -0.082824
+ - 1.205036
+ - 0.0
+ - - -1.104814
+ - 0.35516
+ - 0.0
+ - - -0.673363
+ - -0.990363
+ - 0.0
+ - - 0.703323
+ - -0.912208
+ - 0.0
+ - - 1.918555
+ - 0.836054
+ - 0.0
+ - - -2.114597
+ - 0.737201
+ - 0.0
+ - - -1.27601
+ - -1.88344
+ - 0.0
+ - - 1.467272
+ - -1.673004
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.59293778948265
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.001607
+ - 0.408197
+ - 0.0
+ - - -0.081642
+ - 1.195868
+ - 0.0
+ - - -1.101099
+ - 0.353827
+ - 0.0
+ - - -0.670762
+ - -0.988461
+ - 0.0
+ - - 0.699216
+ - -0.907421
+ - 0.0
+ - - 1.912022
+ - 0.831289
+ - 0.0
+ - - -2.108256
+ - 0.737814
+ - 0.0
+ - - -1.271865
+ - -1.88038
+ - 0.0
+ - - 1.464218
+ - -1.664857
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.95179041384661
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.001607
+ - 0.408197
+ - 0.0
+ - - -0.081642
+ - 1.195868
+ - 0.0
+ - - -1.101099
+ - 0.353827
+ - 0.0
+ - - -0.670762
+ - -0.988461
+ - 0.0
+ - - 0.699216
+ - -0.907421
+ - 0.0
+ - - 1.912022
+ - 0.831289
+ - 0.0
+ - - -2.108256
+ - 0.737814
+ - 0.0
+ - - -1.271865
+ - -1.88038
+ - 0.0
+ - - 1.464218
+ - -1.664857
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.90856200809269
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.001607
+ - 0.408197
+ - 0.0
+ - - -0.081642
+ - 1.195868
+ - 0.0
+ - - -1.101099
+ - 0.353827
+ - 0.0
+ - - -0.670762
+ - -0.988461
+ - 0.0
+ - - 0.699216
+ - -0.907421
+ - 0.0
+ - - 1.912022
+ - 0.831289
+ - 0.0
+ - - -2.108256
+ - 0.737814
+ - 0.0
+ - - -1.271865
+ - -1.88038
+ - 0.0
+ - - 1.464218
+ - -1.664857
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.19859092062311
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.005042
+ - 0.409673
+ - 0.0
+ - - -0.081027
+ - 1.205244
+ - 0.0
+ - - -1.104146
+ - 0.35489
+ - 0.0
+ - - -0.674489
+ - -0.989783
+ - 0.0
+ - - 0.702051
+ - -0.911028
+ - 0.0
+ - - 1.917218
+ - 0.833038
+ - 0.0
+ - - -2.11443
+ - 0.736968
+ - 0.0
+ - - -1.275834
+ - -1.883983
+ - 0.0
+ - - 1.469053
+ - -1.66914
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.9338831127816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.999123
+ - 0.408347
+ - 0.0
+ - - -0.079745
+ - 1.193377
+ - 0.0
+ - - -1.100654
+ - 0.353933
+ - 0.0
+ - - -0.671523
+ - -0.988361
+ - 0.0
+ - - 0.699081
+ - -0.906955
+ - 0.0
+ - - 1.911072
+ - 0.830698
+ - 0.0
+ - - -2.107432
+ - 0.738743
+ - 0.0
+ - - -1.271673
+ - -1.880661
+ - 0.0
+ - - 1.465189
+ - -1.663244
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.72207098279007
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.997803
+ - 0.408671
+ - 0.0
+ - - -0.07815
+ - 1.194098
+ - 0.0
+ - - -1.099523
+ - 0.352798
+ - 0.0
+ - - -0.671547
+ - -0.98637
+ - 0.0
+ - - 0.700079
+ - -0.905442
+ - 0.0
+ - - 1.909651
+ - 0.829811
+ - 0.0
+ - - -2.108277
+ - 0.73767
+ - 0.0
+ - - -1.272391
+ - -1.88057
+ - 0.0
+ - - 1.465793
+ - -1.66479
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.58086661854656
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.007792
+ - 0.411056
+ - 0.0
+ - - -0.082409
+ - 1.211436
+ - 0.0
+ - - -1.108375
+ - 0.353529
+ - 0.0
+ - - -0.67622
+ - -0.990332
+ - 0.0
+ - - 0.704493
+ - -0.914008
+ - 0.0
+ - - 1.923696
+ - 0.836778
+ - 0.0
+ - - -2.119202
+ - 0.738961
+ - 0.0
+ - - -1.278329
+ - -1.88685
+ - 0.0
+ - - 1.471993
+ - -1.674692
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.58344278855898
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0016069693
+ - 0.4081972343
+ - 0.0
+ - - -0.0816422995
+ - 1.1958683990999999
+ - 0.0
+ - - -1.101098832
+ - 0.3538269863
+ - 0.0
+ - - -0.6707622445999999
+ - -0.9884605951
+ - 0.0
+ - - 0.6992158683
+ - -0.9074206341
+ - 0.0
+ - - 1.9120220597
+ - 0.8312887837
+ - 0.0
+ - - -2.1082559096
+ - 0.7378142532
+ - 0.0
+ - - -1.2718651169999997
+ - -1.8803798759
+ - 0.0
+ - - 1.4642175285
+ - -1.664857137
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.48881525478709
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0016069693
+ - 0.4081972343
+ - 0.0
+ - - -0.0816422995
+ - 1.1958683991
+ - 0.0
+ - - -1.101098832
+ - 0.3538269863
+ - 0.0
+ - - -0.6707622446
+ - -0.9884605951
+ - 0.0
+ - - 0.6992158683
+ - -0.9074206341
+ - 0.0
+ - - 1.9120220597
+ - 0.8312887837
+ - 0.0
+ - - -2.1082559096
+ - 0.7378142532
+ - 0.0
+ - - -1.271865117
+ - -1.8803798759
+ - 0.0
+ - - 1.4642175285
+ - -1.664857137
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.24851915167199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.999764
+ - 0.408386
+ - 0.0
+ - - -0.079989
+ - 1.194255
+ - 0.0
+ - - -1.099768
+ - 0.353293
+ - 0.0
+ - - -0.670475
+ - -0.986641
+ - 0.0
+ - - 0.699209
+ - -0.905629
+ - 0.0
+ - - 1.910155
+ - 0.829402
+ - 0.0
+ - - -2.107867
+ - 0.736292
+ - 0.0
+ - - -1.271304
+ - -1.879221
+ - 0.0
+ - - 1.463712
+ - -1.664261
- 0.0
isotopes:
- 14
diff --git a/input/reference_sets/main/2-(Methylthio)propane.yml b/input/reference_sets/main/2-(Methylthio)propane.yml
index 9bb296f176..4b09c1e296 100644
--- a/input/reference_sets/main/2-(Methylthio)propane.yml
+++ b/input/reference_sets/main/2-(Methylthio)propane.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.986504611996443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.937391
+ - -1.498279
+ - 0.262093
+ - - -0.716186
+ - -0.129402
+ - -0.367142
+ - - -1.910445
+ - 0.790727
+ - -0.141283
+ - - 0.754721
+ - 0.724145
+ - 0.300696
+ - - 2.075959
+ - -0.366837
+ - -0.27594
+ - - -0.091999
+ - -2.164845
+ - 0.095917
+ - - -1.088363
+ - -1.401448
+ - 1.337933
+ - - -1.822221
+ - -1.972004
+ - -0.169929
+ - - -0.551244
+ - -0.243179
+ - -1.442047
+ - - -2.069256
+ - 0.959804
+ - 0.925199
+ - - -1.764126
+ - 1.757239
+ - -0.622286
+ - - -2.814868
+ - 0.33567
+ - -0.548057
+ - - 3.016036
+ - 0.12797
+ - -0.038968
+ - - 2.055838
+ - -1.333303
+ - 0.223798
+ - - 2.01819
+ - -0.507596
+ - -1.355086
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.833435388942286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.941456
+ - -1.500755
+ - 0.26707
+ - - -0.720168
+ - -0.131159
+ - -0.362717
+ - - -1.913837
+ - 0.792459
+ - -0.142736
+ - - 0.759302
+ - 0.724002
+ - 0.30349
+ - - 2.083807
+ - -0.365193
+ - -0.280777
+ - - -0.094527
+ - -2.166784
+ - 0.102033
+ - - -1.094727
+ - -1.405782
+ - 1.343455
+ - - -1.825535
+ - -1.976387
+ - -0.166693
+ - - -0.55241
+ - -0.246738
+ - -1.437208
+ - - -2.077348
+ - 0.966091
+ - 0.923119
+ - - -1.764349
+ - 1.75784
+ - -0.626725
+ - - -2.818758
+ - 0.33786
+ - -0.551173
+ - - 3.023882
+ - 0.124604
+ - -0.030748
+ - - 2.057722
+ - -1.338574
+ - 0.207218
+ - - 2.03305
+ - -0.492823
+ - -1.362709
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.04537357232932126
+ value: -0.04537357232932126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9555062903
+ - -1.5026767313
+ - 0.2704344267
+ - - -0.7239127153
+ - -0.1261060469
+ - -0.3703707374
+ - - -1.9301477614
+ - 0.8029551628
+ - -0.1593644522
+ - - 0.7710320374
+ - 0.7341476833
+ - 0.3149898667
+ - - 2.0884102664
+ - -0.3824173218
+ - -0.2939086035
+ - - -0.1037900989
+ - -2.1779252596
+ - 0.1081020203
+ - - -1.114453345
+ - -1.3979302835
+ - 1.3533608317
+ - - -1.8485231005
+ - -1.9759475752
+ - -0.1698469989
+ - - -0.5455620764
+ - -0.2500938685
+ - -1.4512320122
+ - - -2.1090017164
+ - 0.9659372238
+ - 0.9141981208
+ - - -1.771949299
+ - 1.7790014305
+ - -0.6388685733
+ - - -2.8324643195
+ - 0.3418120201
+ - -0.5889538876
+ - - 3.0480796149
+ - 0.1088464625
+ - -0.0860644263
+ - - 2.0710269156
+ - -1.3543175263
+ - 0.2180495602
+ - - 1.9970638319
+ - -0.5362759322
+ - -1.3793263034
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.410110656698814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.945423
+ - -1.505424
+ - 0.26874
+ - - -0.72113
+ - -0.13224
+ - -0.361893
+ - - -1.916954
+ - 0.795954
+ - -0.143383
+ - - 0.762216
+ - 0.724454
+ - 0.308749
+ - - 2.08981
+ - -0.363572
+ - -0.281058
+ - - -0.097009
+ - -2.175596
+ - 0.100702
+ - - -1.097387
+ - -1.409726
+ - 1.349419
+ - - -1.835121
+ - -1.979654
+ - -0.166303
+ - - -0.549317
+ - -0.247825
+ - -1.440602
+ - - -2.083346
+ - 0.968287
+ - 0.92646
+ - - -1.763718
+ - 1.765308
+ - -0.62779
+ - - -2.824267
+ - 0.340107
+ - -0.556488
+ - - 3.03274
+ - 0.132991
+ - -0.035615
+ - - 2.07009
+ - -1.340336
+ - 0.211024
+ - - 2.033464
+ - -0.494067
+ - -1.367064
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.087984682496804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.957508
+ - -1.512155
+ - 0.278076
+ - - -0.726205
+ - -0.141322
+ - -0.359607
+ - - -1.915971
+ - 0.798651
+ - -0.144649
+ - - 0.762501
+ - 0.716419
+ - 0.310365
+ - - 2.100851
+ - -0.356384
+ - -0.291206
+ - - -0.103388
+ - -2.187222
+ - 0.125404
+ - - -1.1243
+ - -1.411719
+ - 1.361143
+ - - -1.844223
+ - -1.994947
+ - -0.165819
+ - - -0.553337
+ - -0.261156
+ - -1.442972
+ - - -2.079944
+ - 0.983913
+ - 0.928456
+ - - -1.758021
+ - 1.767202
+ - -0.639727
+ - - -2.833486
+ - 0.34625
+ - -0.551721
+ - - 3.041173
+ - 0.135975
+ - -0.009193
+ - - 2.076196
+ - -1.352105
+ - 0.17268
+ - - 2.070307
+ - -0.45274
+ - -1.386331
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.173418455355558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.947579
+ - -1.500031
+ - 0.271112
+ - - -0.714511
+ - -0.13579
+ - -0.356618
+ - - -1.903825
+ - 0.788485
+ - -0.144025
+ - - 0.754983
+ - 0.708435
+ - 0.308746
+ - - 2.077666
+ - -0.358111
+ - -0.28529
+ - - -0.102856
+ - -2.17038
+ - 0.116809
+ - - -1.111609
+ - -1.403243
+ - 1.345086
+ - - -1.828392
+ - -1.972687
+ - -0.169642
+ - - -0.547227
+ - -0.254434
+ - -1.430029
+ - - -2.069356
+ - 0.967794
+ - 0.91987
+ - - -1.752138
+ - 1.751036
+ - -0.631168
+ - - -2.808698
+ - 0.335194
+ - -0.551385
+ - - 3.014856
+ - 0.131474
+ - -0.027477
+ - - 2.06012
+ - -1.33834
+ - 0.187118
+ - - 2.033213
+ - -0.47074
+ - -1.368209
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.321623528957517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.962117
+ - -1.511901
+ - 0.282827
+ - - -0.724517
+ - -0.141344
+ - -0.352101
+ - - -1.916862
+ - 0.796529
+ - -0.147224
+ - - 0.768419
+ - 0.711209
+ - 0.32428
+ - - 2.1073
+ - -0.356398
+ - -0.296637
+ - - -0.1156
+ - -2.185499
+ - 0.133515
+ - - -1.131961
+ - -1.414271
+ - 1.358237
+ - - -1.84309
+ - -1.986789
+ - -0.162977
+ - - -0.547619
+ - -0.259722
+ - -1.426155
+ - - -2.088691
+ - 0.984461
+ - 0.916751
+ - - -1.759534
+ - 1.757071
+ - -0.64209
+ - - -2.824311
+ - 0.343519
+ - -0.557168
+ - - 3.04277
+ - 0.12985
+ - -0.016896
+ - - 2.082274
+ - -1.348752
+ - 0.155173
+ - - 2.068186
+ - -0.439301
+ - -1.384637
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.420460534756401
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.928771
+ - -1.49424
+ - 0.255802
+ - - -0.710901
+ - -0.12491
+ - -0.370491
+ - - -1.907378
+ - 0.788829
+ - -0.139715
+ - - 0.750968
+ - 0.728
+ - 0.295823
+ - - 2.063218
+ - -0.369413
+ - -0.270044
+ - - -0.08259
+ - -2.160193
+ - 0.087623
+ - - -1.080216
+ - -1.398397
+ - 1.332492
+ - - -1.813496
+ - -1.968145
+ - -0.17635
+ - - -0.54723
+ - -0.236313
+ - -1.446267
+ - - -2.062021
+ - 0.953913
+ - 0.928756
+ - - -1.765855
+ - 1.757744
+ - -0.618406
+ - - -2.811749
+ - 0.331174
+ - -0.543954
+ - - 3.007258
+ - 0.125794
+ - -0.049798
+ - - 2.045902
+ - -1.32748
+ - 0.246138
+ - - 1.997508
+ - -0.527703
+ - -1.34671
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.27914175319881
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.928771
+ - -1.49424
+ - 0.255802
+ - - -0.710901
+ - -0.12491
+ - -0.370491
+ - - -1.907378
+ - 0.788829
+ - -0.139715
+ - - 0.750968
+ - 0.728
+ - 0.295823
+ - - 2.063218
+ - -0.369413
+ - -0.270044
+ - - -0.08259
+ - -2.160193
+ - 0.087623
+ - - -1.080216
+ - -1.398397
+ - 1.332492
+ - - -1.813496
+ - -1.968145
+ - -0.17635
+ - - -0.54723
+ - -0.236313
+ - -1.446267
+ - - -2.062021
+ - 0.953913
+ - 0.928756
+ - - -1.765855
+ - 1.757744
+ - -0.618406
+ - - -2.811749
+ - 0.331174
+ - -0.543954
+ - - 3.007258
+ - 0.125794
+ - -0.049798
+ - - 2.045902
+ - -1.32748
+ - 0.246138
+ - - 1.997508
+ - -0.527703
+ - -1.34671
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.61306949261752
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.928771
+ - -1.49424
+ - 0.255802
+ - - -0.710901
+ - -0.12491
+ - -0.370491
+ - - -1.907378
+ - 0.788829
+ - -0.139715
+ - - 0.750968
+ - 0.728
+ - 0.295823
+ - - 2.063218
+ - -0.369413
+ - -0.270044
+ - - -0.08259
+ - -2.160193
+ - 0.087623
+ - - -1.080216
+ - -1.398397
+ - 1.332492
+ - - -1.813496
+ - -1.968145
+ - -0.17635
+ - - -0.54723
+ - -0.236313
+ - -1.446267
+ - - -2.062021
+ - 0.953913
+ - 0.928756
+ - - -1.765855
+ - 1.757744
+ - -0.618406
+ - - -2.811749
+ - 0.331174
+ - -0.543954
+ - - 3.007258
+ - 0.125794
+ - -0.049798
+ - - 2.045902
+ - -1.32748
+ - 0.246138
+ - - 1.997508
+ - -0.527703
+ - -1.34671
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.07340267232603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.959793
+ - -1.511175
+ - 0.281865
+ - - -0.722092
+ - -0.139666
+ - -0.352325
+ - - -1.915903
+ - 0.796886
+ - -0.146791
+ - - 0.766623
+ - 0.71277
+ - 0.322646
+ - - 2.103524
+ - -0.355847
+ - -0.295368
+ - - -0.110798
+ - -2.184056
+ - 0.133829
+ - - -1.132667
+ - -1.414944
+ - 1.358206
+ - - -1.840289
+ - -1.987306
+ - -0.166582
+ - - -0.545825
+ - -0.260365
+ - -1.427678
+ - - -2.087311
+ - 0.984072
+ - 0.918703
+ - - -1.75913
+ - 1.759239
+ - -0.640988
+ - - -2.824203
+ - 0.342281
+ - -0.55637
+ - - 3.041552
+ - 0.129994
+ - -0.018675
+ - - 2.078078
+ - -1.348852
+ - 0.158758
+ - - 2.062882
+ - -0.44437
+ - -1.384332
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.983363025595906
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.9555062903
- - -1.5026767313
- - 0.2704344267
- - - -0.7239127153
- - -0.1261060469
- - -0.3703707374
- - - -1.9301477614
- - 0.8029551628
- - -0.1593644522
- - - 0.7710320374
- - 0.7341476833
- - 0.3149898667
- - - 2.0884102664
- - -0.3824173218
- - -0.2939086035
- - - -0.1037900989
- - -2.1779252596
- - 0.1081020203
- - - -1.114453345
- - -1.3979302835
- - 1.3533608317
- - - -1.8485231005
- - -1.9759475752
- - -0.1698469989
- - - -0.5455620764
- - -0.2500938685
- - -1.4512320122
- - - -2.1090017164
- - 0.9659372238
- - 0.9141981208
- - - -1.771949299
- - 1.7790014305
- - -0.6388685733
- - - -2.8324643195
- - 0.3418120201
- - -0.5889538876
- - - 3.0480796149
- - 0.1088464625
- - -0.0860644263
- - - 2.0710269156
- - -1.3543175263
- - 0.2180495602
- - - 1.9970638319
- - -0.5362759322
- - -1.3793263034
+ - - -0.912284
+ - -1.487712
+ - 0.23514
+ - - -0.714531
+ - -0.114161
+ - -0.387231
+ - - -1.913776
+ - 0.789426
+ - -0.133312
+ - - 0.749818
+ - 0.746263
+ - 0.266134
+ - - 2.056406
+ - -0.382008
+ - -0.249507
+ - - -0.069356
+ - -2.149478
+ - 0.037313
+ - - -1.031807
+ - -1.39712
+ - 1.316145
+ - - -1.808609
+ - -1.959387
+ - -0.174601
+ - - -0.563993
+ - -0.217877
+ - -1.46513
+ - - -2.059842
+ - 0.933449
+ - 0.939109
+ - - -1.779654
+ - 1.767185
+ - -0.595583
+ - - -2.817841
+ - 0.333778
+ - -0.540322
+ - - 3.001935
+ - 0.128184
+ - -0.076005
+ - - 2.047405
+ - -1.30589
+ - 0.325658
+ - - 1.970774
+ - -0.605991
+ - -1.312909
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.79499532897433
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.943417
+ - -1.499038
+ - 0.268002
+ - - -0.716408
+ - -0.136961
+ - -0.362096
+ - - -1.901654
+ - 0.788428
+ - -0.142572
+ - - 0.750372
+ - 0.710857
+ - 0.298078
+ - - 2.071627
+ - -0.35906
+ - -0.28216
+ - - -0.097269
+ - -2.169939
+ - 0.10915
+ - - -1.101392
+ - -1.400514
+ - 1.344716
+ - - -1.827852
+ - -1.974808
+ - -0.167667
+ - - -0.551216
+ - -0.254337
+ - -1.438995
+ - - -2.061557
+ - 0.966046
+ - 0.924478
+ - - -1.749859
+ - 1.753449
+ - -0.629357
+ - - -2.811128
+ - 0.336561
+ - -0.546796
+ - - 3.008701
+ - 0.133309
+ - -0.019614
+ - - 2.051178
+ - -1.3388
+ - 0.19697
+ - - 2.034522
+ - -0.476531
+ - -1.367239
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.6037831096120784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.957232
+ - -1.512546
+ - 0.281341
+ - - -0.723574
+ - -0.142318
+ - -0.358969
+ - - -1.914816
+ - 0.797509
+ - -0.145794
+ - - 0.761981
+ - 0.713225
+ - 0.316711
+ - - 2.099224
+ - -0.356897
+ - -0.294303
+ - - -0.10486
+ - -2.182486
+ - 0.131994
+ - - -1.126437
+ - -1.408252
+ - 1.358243
+ - - -1.839203
+ - -1.991113
+ - -0.164407
+ - - -0.548465
+ - -0.261802
+ - -1.435742
+ - - -2.077474
+ - 0.981313
+ - 0.922332
+ - - -1.754312
+ - 1.760209
+ - -0.640201
+ - - -2.825707
+ - 0.34378
+ - -0.55335
+ - - 3.034922
+ - 0.130285
+ - -0.008512
+ - - 2.067288
+ - -1.350654
+ - 0.160305
+ - - 2.063313
+ - -0.44159
+ - -1.384749
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.05538752717707
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9287711369
+ - -1.4942395679
+ - 0.2558016816
+ - - -0.7109011719
+ - -0.1249098951
+ - -0.3704911192
+ - - -1.9073776867
+ - 0.7888294161
+ - -0.1397153458
+ - - 0.7509675514
+ - 0.7280001775
+ - 0.2958229552
+ - - 2.0632180987
+ - -0.3694127922
+ - -0.2700437836
+ - - -0.0825897176
+ - -2.1601934476
+ - 0.0876234019
+ - - -1.0802158234
+ - -1.3983968305
+ - 1.3324920885
+ - - -1.8134961377
+ - -1.9681446433
+ - -0.1763495862
+ - - -0.5472302496
+ - -0.2363133661
+ - -1.446266783
+ - - -2.0620214364
+ - 0.9539133995
+ - 0.9287555465
+ - - -1.765854614
+ - 1.7577440759
+ - -0.6184058935
+ - - -2.8117487711
+ - 0.3311735256
+ - -0.5439543917
+ - - 3.00725777
+ - 0.1257944714
+ - -0.0497984163
+ - - 2.0459017279
+ - -1.3274797842
+ - 0.2461377046
+ - - 1.9975078107
+ - -0.5277032066
+ - -1.3467095514
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.944008214626074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.935081
+ - -1.49725
+ - 0.259073
+ - - -0.71403
+ - -0.126961
+ - -0.365326
+ - - -1.90904
+ - 0.790803
+ - -0.139979
+ - - 0.755956
+ - 0.724117
+ - 0.292613
+ - - 2.072555
+ - -0.366444
+ - -0.272167
+ - - -0.093196
+ - -2.167024
+ - 0.081474
+ - - -1.078128
+ - -1.407076
+ - 1.337603
+ - - -1.825434
+ - -1.965265
+ - -0.169048
+ - - -0.553843
+ - -0.240839
+ - -1.441185
+ - - -2.073835
+ - 0.956327
+ - 0.9272
+ - - -1.763221
+ - 1.759865
+ - -0.618087
+ - - -2.811569
+ - 0.335357
+ - -0.552331
+ - - 3.013695
+ - 0.133944
+ - -0.048086
+ - - 2.059016
+ - -1.326426
+ - 0.242769
+ - - 2.010802
+ - -0.524467
+ - -1.349624
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Bromoethanol.yml b/input/reference_sets/main/2-Bromoethanol.yml
index 26cf371f88..94737e0f7a 100644
--- a/input/reference_sets/main/2-Bromoethanol.yml
+++ b/input/reference_sets/main/2-Bromoethanol.yml
@@ -10,6 +10,124 @@ adjacency_list: |
8 H u0 p0 c0 {4,S}
9 H u0 p0 c0 {2,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.60425793378859
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.062319
+ - -0.128358
+ - 0.020918
+ - - -0.515628
+ - 0.999706
+ - -0.287514
+ - - -1.739953
+ - 0.388015
+ - 0.355874
+ - - -2.101173
+ - -0.85259
+ - -0.212791
+ - - -0.620807
+ - 1.067551
+ - -1.365979
+ - - -0.277214
+ - 1.971396
+ - 0.135987
+ - - -2.583146
+ - 1.059232
+ - 0.179552
+ - - -1.590504
+ - 0.307396
+ - 1.437233
+ - - -1.359738
+ - -1.458096
+ - -0.087435
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.41031760152083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.074941
+ - -0.129375
+ - 0.021367
+ - - -0.518605
+ - 1.001427
+ - -0.287764
+ - - -1.741299
+ - 0.387612
+ - 0.356549
+ - - -2.104218
+ - -0.854046
+ - -0.209082
+ - - -0.61876
+ - 1.066552
+ - -1.367209
+ - - -0.277653
+ - 1.972831
+ - 0.135617
+ - - -2.585367
+ - 1.060416
+ - 0.180492
+ - - -1.592926
+ - 0.310252
+ - 1.4397
+ - - -1.361956
+ - -1.461415
+ - -0.093827
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -69,6 +187,537 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.21200804460846
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.085589
+ - -0.130481
+ - 0.024294
+ - - -0.519417
+ - 1.002254
+ - -0.28888
+ - - -1.744179
+ - 0.385477
+ - 0.358611
+ - - -2.114928
+ - -0.860354
+ - -0.208392
+ - - -0.615404
+ - 1.06285
+ - -1.373589
+ - - -0.275832
+ - 1.978092
+ - 0.135438
+ - - -2.59041
+ - 1.063816
+ - 0.182174
+ - - -1.592933
+ - 0.309965
+ - 1.447084
+ - - -1.35833
+ - -1.457366
+ - -0.100897
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.502395280832395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.071404
+ - -0.146723
+ - 0.014318
+ - - -0.51905
+ - 1.001972
+ - -0.287595
+ - - -1.746887
+ - 0.387259
+ - 0.358971
+ - - -2.109927
+ - -0.866024
+ - -0.203682
+ - - -0.617975
+ - 1.071596
+ - -1.376693
+ - - -0.266268
+ - 1.978488
+ - 0.14258
+ - - -2.599346
+ - 1.063413
+ - 0.174373
+ - - -1.601123
+ - 0.319026
+ - 1.453815
+ - - -1.336671
+ - -1.454753
+ - -0.100244
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.25114536125569
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.064834
+ - -0.118362
+ - 0.02089
+ - - -0.513433
+ - 0.996208
+ - -0.285985
+ - - -1.736517
+ - 0.386975
+ - 0.353856
+ - - -2.098505
+ - -0.846834
+ - -0.213459
+ - - -0.621092
+ - 1.065604
+ - -1.363938
+ - - -0.28225
+ - 1.970388
+ - 0.134808
+ - - -2.577925
+ - 1.061506
+ - 0.180103
+ - - -1.590129
+ - 0.30486
+ - 1.435908
+ - - -1.370826
+ - -1.46609
+ - -0.08634
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.659747081795196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0897
+ - -0.126208
+ - 0.018046
+ - - -0.518317
+ - 1.004557
+ - -0.287551
+ - - -1.744117
+ - 0.383623
+ - 0.356307
+ - - -2.106976
+ - -0.85387
+ - -0.219687
+ - - -0.617815
+ - 1.065338
+ - -1.36865
+ - - -0.274384
+ - 1.977381
+ - 0.134951
+ - - -2.587479
+ - 1.060696
+ - 0.18267
+ - - -1.595793
+ - 0.304399
+ - 1.441317
+ - - -1.370663
+ - -1.461661
+ - -0.08156
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.9514215932803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0488
+ - -0.127461
+ - 0.028825
+ - - -0.512544
+ - 0.996955
+ - -0.288359
+ - - -1.737875
+ - 0.388875
+ - 0.355703
+ - - -2.09732
+ - -0.84996
+ - -0.213232
+ - - -0.622309
+ - 1.064899
+ - -1.366835
+ - - -0.280721
+ - 1.971557
+ - 0.131591
+ - - -2.58119
+ - 1.061095
+ - 0.184177
+ - - -1.58536
+ - 0.305454
+ - 1.436892
+ - - -1.357324
+ - -1.45716
+ - -0.09292
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.31461635213856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.079921
+ - -0.129233
+ - 0.007204
+ - - -0.51462
+ - 1.006279
+ - -0.288298
+ - - -1.742886
+ - 0.379277
+ - 0.351586
+ - - -2.100575
+ - -0.854474
+ - -0.222823
+ - - -0.6162
+ - 1.080433
+ - -1.370104
+ - - -0.272425
+ - 1.976922
+ - 0.143921
+ - - -2.587946
+ - 1.05764
+ - 0.175869
+ - - -1.596706
+ - 0.306098
+ - 1.439461
+ - - -1.374407
+ - -1.468687
+ - -0.060973
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.19737007152245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.049148
+ - -0.132914
+ - 0.020892
+ - - -0.515553
+ - 0.998986
+ - -0.286939
+ - - -1.740647
+ - 0.387687
+ - 0.355628
+ - - -2.091458
+ - -0.847372
+ - -0.212458
+ - - -0.624138
+ - 1.06604
+ - -1.365597
+ - - -0.27536
+ - 1.970374
+ - 0.135929
+ - - -2.584178
+ - 1.059138
+ - 0.178926
+ - - -1.590525
+ - 0.307363
+ - 1.437297
+ - - -1.353132
+ - -1.455049
+ - -0.087835
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.88127085010788
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.049286
+ - -0.13229
+ - 0.016199
+ - - -0.517008
+ - 0.993433
+ - -0.285326
+ - - -1.739721
+ - 0.38384
+ - 0.353904
+ - - -2.096509
+ - -0.850913
+ - -0.203701
+ - - -0.621627
+ - 1.066808
+ - -1.366066
+ - - -0.277092
+ - 1.966271
+ - 0.140464
+ - - -2.582405
+ - 1.060029
+ - 0.174731
+ - - -1.593757
+ - 0.314074
+ - 1.440034
+ - - -1.347011
+ - -1.446999
+ - -0.094396
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.291623361812626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.059164
+ - -0.153846
+ - 0.012322
+ - - -0.521696
+ - 1.005942
+ - -0.288769
+ - - -1.748615
+ - 0.391859
+ - 0.361575
+ - - -2.102897
+ - -0.865001
+ - -0.202244
+ - - -0.619292
+ - 1.073124
+ - -1.372051
+ - - -0.260442
+ - 1.973488
+ - 0.141989
+ - - -2.601374
+ - 1.055987
+ - 0.172384
+ - - -1.602
+ - 0.320093
+ - 1.449239
+ - - -1.328691
+ - -1.447393
+ - -0.098601
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -128,6 +777,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.95860362107811
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0487995205
+ - -0.1274613679
+ - 0.0288252406
+ - - -0.5125438942
+ - 0.996955494
+ - -0.2883590581
+ - - -1.7378754482
+ - 0.3888746243
+ - 0.3557030087
+ - - -2.097320431
+ - -0.8499596433
+ - -0.2132315888
+ - - -0.6223093959
+ - 1.0648990581
+ - -1.3668353149
+ - - -0.2807208144
+ - 1.9715567482
+ - 0.1315913591
+ - - -2.581189936
+ - 1.0610952328
+ - 0.1841772763
+ - - -1.5853596939
+ - 0.3054536108
+ - 1.4368924061
+ - - -1.3573238748
+ - -1.4571603364
+ - -0.0929201411
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.14657222461599
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.073639
+ - -0.108167
+ - 0.021496
+ - - -0.509695
+ - 0.994871
+ - -0.2868
+ - - -1.736715
+ - 0.381821
+ - 0.353033
+ - - -2.104812
+ - -0.846917
+ - -0.214398
+ - - -0.617491
+ - 1.064474
+ - -1.366041
+ - - -0.285612
+ - 1.971764
+ - 0.134652
+ - - -2.574367
+ - 1.062739
+ - 0.181092
+ - - -1.588783
+ - 0.300291
+ - 1.436447
+ - - -1.38201
+ - -1.466622
+ - -0.083636
+ isotopes:
+ - 79
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Br
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Butanethiol.yml b/input/reference_sets/main/2-Butanethiol.yml
index e2a494ad96..32eafb5b52 100644
--- a/input/reference_sets/main/2-Butanethiol.yml
+++ b/input/reference_sets/main/2-Butanethiol.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.525352293341614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223803
+ - 1.547904
+ - 0.012839
+ - - 0.238354
+ - 0.435523
+ - 0.34709
+ - - 0.959884
+ - -1.215937
+ - 0.005553
+ - - -1.113021
+ - 0.644631
+ - -0.336393
+ - - -2.20637
+ - -0.312994
+ - 0.117487
+ - - 2.175037
+ - 1.398725
+ - 0.520519
+ - - 1.414765
+ - 1.580087
+ - -1.061654
+ - - 0.817036
+ - 2.517297
+ - 0.309482
+ - - 0.083862
+ - 0.407097
+ - 1.429699
+ - - 1.181027
+ - -1.006663
+ - -1.300959
+ - - -0.97252
+ - 0.570034
+ - -1.418943
+ - - -1.425908
+ - 1.674739
+ - -0.137298
+ - - -2.378421
+ - -0.224764
+ - 1.192119
+ - - -1.934716
+ - -1.34607
+ - -0.094004
+ - - -3.147386
+ - -0.096078
+ - -0.388593
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.402603463854428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.225628
+ - 1.550704
+ - 0.013313
+ - - 0.239394
+ - 0.437364
+ - 0.345136
+ - - 0.963778
+ - -1.22086
+ - 0.005826
+ - - -1.11483
+ - 0.644834
+ - -0.335951
+ - - -2.209242
+ - -0.312969
+ - 0.118019
+ - - 2.177253
+ - 1.400551
+ - 0.521409
+ - - 1.417906
+ - 1.587002
+ - -1.061534
+ - - 0.818811
+ - 2.520377
+ - 0.312589
+ - - 0.086416
+ - 0.405971
+ - 1.428024
+ - - 1.184801
+ - -1.018072
+ - -1.304983
+ - - -0.976673
+ - 0.571988
+ - -1.419464
+ - - -1.427849
+ - 1.675715
+ - -0.136764
+ - - -2.384573
+ - -0.223481
+ - 1.19306
+ - - -1.93533
+ - -1.347199
+ - -0.090391
+ - - -3.150065
+ - -0.098394
+ - -0.391342
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -1.2001330618563022
+ value: -1.2001330618563022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2390424958
+ - 1.562706971
+ - 0.0043319891
+ - - 0.2406056073
+ - 0.4512821328
+ - 0.3593448411
+ - - 0.966542874
+ - -1.2277765031
+ - 0.0051232713
+ - - -1.1253368882
+ - 0.6609198396
+ - -0.3265403328
+ - - -2.2185655243
+ - -0.3220287982
+ - 0.1140468889
+ - - 2.1982579259
+ - 1.4105752845
+ - 0.5157524742
+ - - 1.4239817522
+ - 1.5769238017
+ - -1.0807135824
+ - - 0.8336854707
+ - 2.5461269571
+ - 0.2926992593
+ - - 0.0901546607
+ - 0.4280388881
+ - 1.4509339329
+ - - 1.0866079574
+ - -1.0215968747
+ - -1.329093411
+ - - -0.9807604645
+ - 0.6052257408
+ - -1.4188691617
+ - - -1.4479668993
+ - 1.6939605762
+ - -0.1076595825
+ - - -2.391068391
+ - -0.251128563
+ - 1.1991748122
+ - - -1.9237425527
+ - -1.3550175338
+ - -0.1144525825
+ - - -3.1683095872
+ - -0.1059650994
+ - -0.3968448174
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.851837039659182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230979
+ - 1.553319
+ - 0.013365
+ - - 0.240889
+ - 0.438345
+ - 0.346881
+ - - 0.967243
+ - -1.225004
+ - 0.007604
+ - - -1.117131
+ - 0.644864
+ - -0.336618
+ - - -2.214092
+ - -0.315758
+ - 0.117766
+ - - 2.187183
+ - 1.399635
+ - 0.520873
+ - - 1.420377
+ - 1.589551
+ - -1.066214
+ - - 0.824423
+ - 2.527177
+ - 0.315699
+ - - 0.087171
+ - 0.405902
+ - 1.434281
+ - - 1.179827
+ - -1.015405
+ - -1.306591
+ - - -0.976019
+ - 0.571577
+ - -1.424078
+ - - -1.431021
+ - 1.680256
+ - -0.137213
+ - - -2.391713
+ - -0.224283
+ - 1.196531
+ - - -1.934886
+ - -1.353488
+ - -0.089069
+ - - -3.157806
+ - -0.103157
+ - -0.396274
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.348238207179138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.234089
+ - 1.553544
+ - 0.012483
+ - - 0.241884
+ - 0.437184
+ - 0.343663
+ - - 0.96835
+ - -1.230631
+ - 0.005052
+ - - -1.121454
+ - 0.645172
+ - -0.335124
+ - - -2.220559
+ - -0.315558
+ - 0.120445
+ - - 2.195039
+ - 1.397882
+ - 0.520803
+ - - 1.425909
+ - 1.596201
+ - -1.07142
+ - - 0.829223
+ - 2.532083
+ - 0.319458
+ - - 0.091457
+ - 0.400298
+ - 1.436993
+ - - 1.204107
+ - -1.016561
+ - -1.313063
+ - - -0.984798
+ - 0.574754
+ - -1.428638
+ - - -1.434999
+ - 1.685829
+ - -0.133532
+ - - -2.411449
+ - -0.215894
+ - 1.200867
+ - - -1.936416
+ - -1.35946
+ - -0.07592
+ - - -3.164956
+ - -0.111312
+ - -0.405121
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.148036213170398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218632
+ - 1.546415
+ - 0.015005
+ - - 0.240351
+ - 0.429444
+ - 0.340248
+ - - 0.96572
+ - -1.212234
+ - -0.001788
+ - - -1.110876
+ - 0.638962
+ - -0.337314
+ - - -2.207486
+ - -0.307131
+ - 0.12142
+ - - 2.170704
+ - 1.398252
+ - 0.521401
+ - - 1.411195
+ - 1.589891
+ - -1.058865
+ - - 0.80931
+ - 2.512196
+ - 0.319039
+ - - 0.085938
+ - 0.398106
+ - 1.422248
+ - - 1.199916
+ - -1.00725
+ - -1.306098
+ - - -0.975968
+ - 0.560202
+ - -1.420108
+ - - -1.419038
+ - 1.671156
+ - -0.143666
+ - - -2.384973
+ - -0.208965
+ - 1.194437
+ - - -1.942145
+ - -1.34431
+ - -0.07907
+ - - -3.145857
+ - -0.091203
+ - -0.389945
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.269095722829206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230664
+ - 1.557173
+ - 0.01375
+ - - 0.243777
+ - 0.435479
+ - 0.341332
+ - - 0.981845
+ - -1.231263
+ - 0.001423
+ - - -1.118488
+ - 0.639883
+ - -0.338854
+ - - -2.222557
+ - -0.312814
+ - 0.121754
+ - - 2.184661
+ - 1.405824
+ - 0.520804
+ - - 1.423603
+ - 1.605712
+ - -1.062347
+ - - 0.822296
+ - 2.525279
+ - 0.322906
+ - - 0.093451
+ - 0.399875
+ - 1.425963
+ - - 1.214593
+ - -1.027769
+ - -1.308127
+ - - -0.986746
+ - 0.56451
+ - -1.424781
+ - - -1.429251
+ - 1.673935
+ - -0.141658
+ - - -2.400193
+ - -0.217703
+ - 1.197756
+ - - -1.959234
+ - -1.352265
+ - -0.083096
+ - - -3.162996
+ - -0.092324
+ - -0.38988
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.49038558573065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.222453
+ - 1.545671
+ - 0.013891
+ - - 0.23826
+ - 0.434871
+ - 0.349896
+ - - 0.956098
+ - -1.208912
+ - 0.005157
+ - - -1.110222
+ - 0.644795
+ - -0.335578
+ - - -2.201871
+ - -0.313305
+ - 0.11693
+ - - 2.172865
+ - 1.398872
+ - 0.524525
+ - - 1.415893
+ - 1.570503
+ - -1.061134
+ - - 0.813886
+ - 2.516488
+ - 0.303897
+ - - 0.080826
+ - 0.408217
+ - 1.43263
+ - - 1.162224
+ - -0.998271
+ - -1.304125
+ - - -0.965678
+ - 0.569612
+ - -1.418431
+ - - -1.423372
+ - 1.675469
+ - -0.138369
+ - - -2.374258
+ - -0.225667
+ - 1.192172
+ - - -1.928485
+ - -1.346535
+ - -0.095002
+ - - -3.143195
+ - -0.098276
+ - -0.389515
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.210561734887754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.222453
+ - 1.545671
+ - 0.013891
+ - - 0.23826
+ - 0.434871
+ - 0.349896
+ - - 0.956098
+ - -1.208912
+ - 0.005157
+ - - -1.110222
+ - 0.644795
+ - -0.335578
+ - - -2.201871
+ - -0.313306
+ - 0.11693
+ - - 2.172865
+ - 1.398872
+ - 0.524525
+ - - 1.415893
+ - 1.570503
+ - -1.061134
+ - - 0.813886
+ - 2.516488
+ - 0.303897
+ - - 0.080826
+ - 0.408217
+ - 1.43263
+ - - 1.162224
+ - -0.998271
+ - -1.304125
+ - - -0.965678
+ - 0.569612
+ - -1.418431
+ - - -1.423372
+ - 1.675469
+ - -0.138369
+ - - -2.374258
+ - -0.225667
+ - 1.192172
+ - - -1.928485
+ - -1.346535
+ - -0.095002
+ - - -3.143195
+ - -0.098276
+ - -0.389515
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.614391846712287
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.222453
+ - 1.545671
+ - 0.013891
+ - - 0.23826
+ - 0.434871
+ - 0.349896
+ - - 0.956098
+ - -1.208912
+ - 0.005157
+ - - -1.110222
+ - 0.644795
+ - -0.335578
+ - - -2.201871
+ - -0.313306
+ - 0.11693
+ - - 2.172865
+ - 1.398872
+ - 0.524525
+ - - 1.415893
+ - 1.570503
+ - -1.061134
+ - - 0.813886
+ - 2.516488
+ - 0.303897
+ - - 0.080826
+ - 0.408217
+ - 1.43263
+ - - 1.162224
+ - -0.998271
+ - -1.304125
+ - - -0.965678
+ - 0.569612
+ - -1.418431
+ - - -1.423372
+ - 1.675469
+ - -0.138369
+ - - -2.374258
+ - -0.225667
+ - 1.192172
+ - - -1.928485
+ - -1.346535
+ - -0.095002
+ - - -3.143195
+ - -0.098276
+ - -0.389515
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.78903853865619
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22973
+ - 1.556702
+ - 0.015539
+ - - 0.243594
+ - 0.43373
+ - 0.342457
+ - - 0.981301
+ - -1.228238
+ - 0.000382
+ - - -1.117194
+ - 0.639564
+ - -0.339949
+ - - -2.221155
+ - -0.312129
+ - 0.122303
+ - - 2.184564
+ - 1.408505
+ - 0.524793
+ - - 1.424478
+ - 1.60352
+ - -1.061703
+ - - 0.818014
+ - 2.525908
+ - 0.321123
+ - - 0.092029
+ - 0.395507
+ - 1.428217
+ - - 1.208501
+ - -1.027432
+ - -1.312899
+ - - -0.983692
+ - 0.56252
+ - -1.426929
+ - - -1.426817
+ - 1.675909
+ - -0.145556
+ - - -2.397711
+ - -0.216013
+ - 1.199692
+ - - -1.9571
+ - -1.353067
+ - -0.081562
+ - - -3.163117
+ - -0.091456
+ - -0.388964
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.485050742574668
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.2390424958
- - 1.562706971
- - 0.0043319891
- - - 0.2406056073
- - 0.4512821328
- - 0.3593448411
- - - 0.966542874
- - -1.2277765031
- - 0.0051232713
- - - -1.1253368882
- - 0.6609198396
- - -0.3265403328
- - - -2.2185655243
- - -0.3220287982
- - 0.1140468889
- - - 2.1982579259
- - 1.4105752845
- - 0.5157524742
- - - 1.4239817522
- - 1.5769238017
- - -1.0807135824
- - - 0.8336854707
- - 2.5461269571
- - 0.2926992593
- - - 0.0901546607
- - 0.4280388881
- - 1.4509339329
- - - 1.0866079574
- - -1.0215968747
- - -1.329093411
- - - -0.9807604645
- - 0.6052257408
- - -1.4188691617
- - - -1.4479668993
- - 1.6939605762
- - -0.1076595825
- - - -2.391068391
- - -0.251128563
- - 1.1991748122
- - - -1.9237425527
- - -1.3550175338
- - -0.1144525825
- - - -3.1683095872
- - -0.1059650994
- - -0.3968448174
+ - - 1.222462
+ - 1.545039
+ - 0.011553
+ - - 0.236676
+ - 0.436991
+ - 0.352394
+ - - 0.952521
+ - -1.208647
+ - 0.013696
+ - - -1.111001
+ - 0.646569
+ - -0.334959
+ - - -2.201204
+ - -0.314875
+ - 0.113685
+ - - 2.175027
+ - 1.395831
+ - 0.517193
+ - - 1.408423
+ - 1.567414
+ - -1.064653
+ - - 0.817464
+ - 2.516838
+ - 0.302549
+ - - 0.079744
+ - 0.413193
+ - 1.434637
+ - - 1.164363
+ - -0.998208
+ - -1.292606
+ - - -0.963868
+ - 0.573742
+ - -1.417231
+ - - -1.425996
+ - 1.675794
+ - -0.134961
+ - - -2.364917
+ - -0.237762
+ - 1.190648
+ - - -1.929217
+ - -1.345688
+ - -0.110799
+ - - -3.145052
+ - -0.092701
+ - -0.3842
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.42705180082971
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.220185
+ - 1.542886
+ - 0.012377
+ - - 0.237436
+ - 0.433733
+ - 0.341998
+ - - 0.954203
+ - -1.209821
+ - 0.004182
+ - - -1.113176
+ - 0.643394
+ - -0.333494
+ - - -2.203423
+ - -0.309614
+ - 0.118699
+ - - 2.174404
+ - 1.390145
+ - 0.517673
+ - - 1.410734
+ - 1.582056
+ - -1.064028
+ - - 0.816167
+ - 2.51413
+ - 0.314374
+ - - 0.085055
+ - 0.402154
+ - 1.42731
+ - - 1.189225
+ - -1.001428
+ - -1.302732
+ - - -0.975946
+ - 0.572214
+ - -1.418886
+ - - -1.423797
+ - 1.676531
+ - -0.134046
+ - - -2.388921
+ - -0.212883
+ - 1.192421
+ - - -1.924198
+ - -1.346154
+ - -0.079477
+ - - -3.142523
+ - -0.103812
+ - -0.399428
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.3250709559024332
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.234863
+ - 1.553411
+ - 0.012301
+ - - 0.240047
+ - 0.438889
+ - 0.346088
+ - - 0.964661
+ - -1.226978
+ - 0.001178
+ - - -1.12153
+ - 0.6481
+ - -0.336422
+ - - -2.217769
+ - -0.316928
+ - 0.120353
+ - - 2.188549
+ - 1.397492
+ - 0.523456
+ - - 1.427284
+ - 1.589297
+ - -1.066401
+ - - 0.82847
+ - 2.527391
+ - 0.31409
+ - - 0.091098
+ - 0.401981
+ - 1.433217
+ - - 1.192282
+ - -1.013261
+ - -1.310274
+ - - -0.984637
+ - 0.575377
+ - -1.423979
+ - - -1.435454
+ - 1.682483
+ - -0.132454
+ - - -2.405633
+ - -0.215468
+ - 1.196076
+ - - -1.92937
+ - -1.35421
+ - -0.075944
+ - - -3.157437
+ - -0.114046
+ - -0.404341
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.052525619481173
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2224530623
+ - 1.5456710431
+ - 0.0138907662
+ - - 0.2382603245
+ - 0.4348706333
+ - 0.3498961154
+ - - 0.9560982391
+ - -1.2089123174
+ - 0.0051572616
+ - - -1.1102218232
+ - 0.6447946394
+ - -0.3355777083
+ - - -2.2018713113
+ - -0.3133054968
+ - 0.1169303045
+ - - 2.1728647185
+ - 1.3988718219
+ - 0.5245250989
+ - - 1.4158931698
+ - 1.5705027301
+ - -1.0611338331
+ - - 0.8138864709
+ - 2.516488013
+ - 0.303896688
+ - - 0.0808255493
+ - 0.4082174928
+ - 1.4326303215
+ - - 1.1622238526
+ - -0.9982707705
+ - -1.3041251913
+ - - -0.9656776154
+ - 0.5696123511
+ - -1.4184314836
+ - - -1.4233719111
+ - 1.6754690948
+ - -0.1383694754
+ - - -2.3742580167
+ - -0.2256674187
+ - 1.1921718929
+ - - -1.9284845908
+ - -1.3465354371
+ - -0.095001779
+ - - -3.1431949663
+ - -0.0982757128
+ - -0.3895152908
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.05183984223924
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.221974
+ - 1.548987
+ - 0.013685
+ - - 0.241784
+ - 0.43231
+ - 0.345257
+ - - 0.966104
+ - -1.212105
+ - 0.007803
+ - - -1.110467
+ - 0.640734
+ - -0.33614
+ - - -2.206485
+ - -0.311153
+ - 0.117316
+ - - 2.175692
+ - 1.401678
+ - 0.51912
+ - - 1.410411
+ - 1.587519
+ - -1.062101
+ - - 0.812222
+ - 2.51606
+ - 0.315968
+ - - 0.086699
+ - 0.405219
+ - 1.428038
+ - - 1.176084
+ - -1.014781
+ - -1.301948
+ - - -0.971965
+ - 0.566058
+ - -1.419697
+ - - -1.421481
+ - 1.671992
+ - -0.138327
+ - - -2.379818
+ - -0.221619
+ - 1.192489
+ - - -1.939285
+ - -1.34701
+ - -0.093445
+ - - -3.146042
+ - -0.090358
+ - -0.391075
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Butyne.yml b/input/reference_sets/main/2-Butyne.yml
index 5472320b47..a4ae66fdc5 100644
--- a/input/reference_sets/main/2-Butyne.yml
+++ b/input/reference_sets/main/2-Butyne.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.08454381148816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.06155
+ - -0.000415
+ - -0.000262
+ - - 0.603385
+ - -0.000133
+ - -0.000227
+ - - -0.603293
+ - 0.000111
+ - -0.000201
+ - - -2.061458
+ - 0.00042
+ - -0.00017
+ - - 2.452949
+ - 0.86734
+ - -0.53266
+ - - 2.452611
+ - -0.895467
+ - -0.485639
+ - - 2.452826
+ - 0.026659
+ - 1.017485
+ - - -2.452529
+ - 0.868323
+ - -0.532567
+ - - -2.452678
+ - 0.02767
+ - 1.017594
+ - - -2.452903
+ - -0.894483
+ - -0.485514
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.21936829097295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.056551
+ - -0.000413
+ - -0.000261
+ - - 0.600679
+ - -8.6e-05
+ - -0.000222
+ - - -0.600587
+ - 0.000158
+ - -0.000196
+ - - -2.056459
+ - 0.00042
+ - -0.00017
+ - - 2.450621
+ - 0.867981
+ - -0.533064
+ - - 2.450218
+ - -0.896156
+ - -0.486007
+ - - 2.450472
+ - 0.02666
+ - 1.018253
+ - - -2.450201
+ - 0.868962
+ - -0.532974
+ - - -2.450324
+ - 0.027673
+ - 1.018361
+ - - -2.45051
+ - -0.895174
+ - -0.485879
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.31415642843043
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.062129
+ - -0.000415
+ - -0.000262
+ - - 0.605058
+ - -0.000108
+ - -0.000233
+ - - -0.604966
+ - 0.000137
+ - -0.000206
+ - - -2.062037
+ - 0.00042
+ - -0.000171
+ - - 2.459804
+ - 0.87129
+ - -0.535077
+ - - 2.459428
+ - -0.89955
+ - -0.487857
+ - - 2.459649
+ - 0.026763
+ - 1.022127
+ - - -2.459383
+ - 0.872266
+ - -0.535
+ - - -2.459501
+ - 0.027796
+ - 1.022234
+ - - -2.459722
+ - -0.898572
+ - -0.487716
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.73951759002781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.064804
+ - -0.000414
+ - -0.000262
+ - - 0.607066
+ - -8.1e-05
+ - -0.000225
+ - - -0.606973
+ - 0.000165
+ - -0.000198
+ - - -2.064712
+ - 0.000422
+ - -0.000171
+ - - 2.465019
+ - 0.874363
+ - -0.536989
+ - - 2.464603
+ - -0.902754
+ - -0.489575
+ - - 2.464859
+ - 0.026861
+ - 1.025747
+ - - -2.464597
+ - 0.875356
+ - -0.536888
+ - - -2.46471
+ - 0.027869
+ - 1.025856
+ - - -2.464898
+ - -0.901761
+ - -0.489457
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.56496739742257
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.053933
+ - -0.000413
+ - -0.000261
+ - - 0.597949
+ - -0.000124
+ - -0.000221
+ - - -0.597856
+ - 0.000118
+ - -0.000195
+ - - -2.053841
+ - 0.000418
+ - -0.00017
+ - - 2.445266
+ - 0.867242
+ - -0.532656
+ - - 2.444918
+ - -0.895414
+ - -0.48556
+ - - 2.445144
+ - 0.026701
+ - 1.017397
+ - - -2.444846
+ - 0.86827
+ - -0.532485
+ - - -2.444996
+ - 0.027618
+ - 1.017508
+ - - -2.445209
+ - -0.89439
+ - -0.485516
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.41319281670582
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.060304
+ - -0.000414
+ - -0.000262
+ - - 0.601529
+ - -0.000101
+ - -0.000237
+ - - -0.601437
+ - 0.000143
+ - -0.00021
+ - - -2.060212
+ - 0.00042
+ - -0.000171
+ - - 2.456394
+ - 0.868768
+ - -0.533955
+ - - 2.456012
+ - -0.89732
+ - -0.486232
+ - - 2.456236
+ - 0.02705
+ - 1.019383
+ - - -2.455974
+ - 0.870122
+ - -0.533259
+ - - -2.456088
+ - 0.027357
+ - 1.01951
+ - - -2.456305
+ - -0.895998
+ - -0.486728
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.78067307454605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.06055
+ - -0.000413
+ - -0.000141
+ - - 0.59958
+ - -7.4e-05
+ - 0.000236
+ - - -0.599487
+ - 0.000163
+ - 0.000269
+ - - -2.060457
+ - 0.000415
+ - -4.9e-05
+ - - 2.449282
+ - 0.87243
+ - -0.525021
+ - - 2.448896
+ - -0.891093
+ - -0.494474
+ - - 2.449869
+ - 0.017145
+ - 1.018091
+ - - -2.448831
+ - 0.863459
+ - -0.541138
+ - - -2.449736
+ - 0.03719
+ - 1.017686
+ - - -2.449205
+ - -0.899197
+ - -0.477619
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.563323221272896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.06055
+ - -0.000413
+ - -0.000141
+ - - 0.59958
+ - -7.4e-05
+ - 0.000236
+ - - -0.599487
+ - 0.000163
+ - 0.000269
+ - - -2.060457
+ - 0.000415
+ - -4.9e-05
+ - - 2.449282
+ - 0.87243
+ - -0.525021
+ - - 2.448896
+ - -0.891093
+ - -0.494474
+ - - 2.449869
+ - 0.017145
+ - 1.018091
+ - - -2.448831
+ - 0.863459
+ - -0.541138
+ - - -2.449736
+ - 0.03719
+ - 1.017686
+ - - -2.449205
+ - -0.899197
+ - -0.477619
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.86843541869825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.06055
+ - -0.000413
+ - -0.000141
+ - - 0.59958
+ - -7.4e-05
+ - 0.000236
+ - - -0.599487
+ - 0.000163
+ - 0.000269
+ - - -2.060457
+ - 0.000415
+ - -4.9e-05
+ - - 2.449282
+ - 0.87243
+ - -0.525021
+ - - 2.448896
+ - -0.891093
+ - -0.494474
+ - - 2.449869
+ - 0.017145
+ - 1.018091
+ - - -2.448831
+ - 0.863459
+ - -0.541138
+ - - -2.449736
+ - 0.03719
+ - 1.017686
+ - - -2.449205
+ - -0.899197
+ - -0.477619
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.501522186294885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.057987
+ - 4.0e-06
+ - 3.0e-06
+ - - -0.601793
+ - -1.0e-06
+ - -8.0e-06
+ - - 0.601793
+ - 1.0e-06
+ - -8.0e-06
+ - - 2.057987
+ - 5.0e-06
+ - 3.0e-06
+ - - -2.45787
+ - 0.194448
+ - 1.00158
+ - - -2.457889
+ - -0.964603
+ - -0.332387
+ - - -2.457884
+ - 0.770174
+ - -0.669171
+ - - 2.457871
+ - 0.193659
+ - 1.001733
+ - - 2.457885
+ - 0.770701
+ - -0.668564
+ - - 2.457887
+ - -0.96434
+ - -0.333147
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.44242237175472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.058837
+ - -0.000457
+ - -0.000244
+ - - 0.599631
+ - -0.000163
+ - -0.000212
+ - - -0.599539
+ - 0.000104
+ - -0.000193
+ - - -2.058745
+ - 0.00046
+ - -0.000177
+ - - 2.446026
+ - 0.868296
+ - -0.53318
+ - - 2.445686
+ - -0.896459
+ - -0.48624
+ - - 2.445906
+ - 0.026569
+ - 1.018634
+ - - -2.445564
+ - 0.869363
+ - -0.533139
+ - - -2.445769
+ - 0.027703
+ - 1.018712
+ - - -2.446009
+ - -0.89539
+ - -0.486122
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.043016912090415
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.052552
+ - -0.000412
+ - -0.000262
+ - - 0.601074
+ - -0.000109
+ - -0.00022
+ - - -0.600982
+ - 0.000134
+ - -0.000193
+ - - -2.05246
+ - 0.000418
+ - -0.000171
+ - - 2.446301
+ - 0.868692
+ - -0.53354
+ - - 2.44593
+ - -0.896912
+ - -0.486378
+ - - 2.446169
+ - 0.026732
+ - 1.019098
+ - - -2.445881
+ - 0.869712
+ - -0.533383
+ - - -2.446021
+ - 0.027665
+ - 1.019208
+ - - -2.446222
+ - -0.895895
+ - -0.48632
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.166481290385406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.064292
+ - -0.000414
+ - -0.000262
+ - - 0.604874
+ - -0.000115
+ - -0.000233
+ - - -0.604782
+ - 0.00013
+ - -0.000206
+ - - -2.0642
+ - 0.000421
+ - -0.000171
+ - - 2.458927
+ - 0.871449
+ - -0.535191
+ - - 2.458565
+ - -0.899724
+ - -0.487933
+ - - 2.458786
+ - 0.026784
+ - 1.022316
+ - - -2.458506
+ - 0.872441
+ - -0.535087
+ - - -2.458638
+ - 0.027786
+ - 1.022425
+ - - -2.458859
+ - -0.898732
+ - -0.487819
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.22461440747385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0605499399
+ - -0.000413202
+ - -0.0001412601
+ - - 0.5995798227
+ - -7.35812e-05
+ - 0.000235855
+ - - -0.599487018
+ - 0.0001634616
+ - 0.0002688905
+ - - -2.0604571048
+ - 0.000414766
+ - -4.93572e-05
+ - - 2.4492817073
+ - 0.8724297323
+ - -0.5250208709
+ - - 2.4488962821
+ - -0.891092871
+ - -0.4944741237
+ - - 2.4498687697
+ - 0.0171454873
+ - 1.0180912409
+ - - -2.448831239
+ - 0.8634590315
+ - -0.5411376435
+ - - -2.4497362758
+ - 0.0371897141
+ - 1.0176862516
+ - - -2.4492048582
+ - -0.8991971642
+ - -0.4776193124
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.649013960834864
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.056552
+ - -0.000408
+ - -0.000264
+ - - 0.599296
+ - -6.7e-05
+ - -0.000271
+ - - -0.599204
+ - 0.000175
+ - -0.000243
+ - - -2.05646
+ - 0.000422
+ - -0.000169
+ - - 2.446112
+ - 0.868453
+ - -0.533483
+ - - 2.445669
+ - -0.896765
+ - -0.486193
+ - - 2.445874
+ - 0.026783
+ - 1.018899
+ - - -2.445694
+ - 0.869548
+ - -0.533193
+ - - -2.445724
+ - 0.027564
+ - 1.019018
+ - - -2.445961
+ - -0.89568
+ - -0.486261
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Butynedinitrile.yml b/input/reference_sets/main/2-Butynedinitrile.yml
index 4f81d0ad3d..352bc67e68 100644
--- a/input/reference_sets/main/2-Butynedinitrile.yml
+++ b/input/reference_sets/main/2-Butynedinitrile.yml
@@ -95,6 +95,94 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.17881330247027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.135496
+ - - 0.0
+ - 0.0
+ - 1.971149
+ - - 0.0
+ - 0.0
+ - 0.606875
+ - - 0.0
+ - 0.0
+ - -0.606875
+ - - 0.0
+ - 0.0
+ - -1.971149
+ - - 0.0
+ - 0.0
+ - -3.135496
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 138.24057720870277
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.122519
+ - - 0.0
+ - 0.0
+ - 1.96632
+ - - 0.0
+ - 0.0
+ - 0.60383
+ - - 0.0
+ - 0.0
+ - -0.60383
+ - - 0.0
+ - 0.0
+ - -1.96632
+ - - 0.0
+ - 0.0
+ - -3.122519
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 134.75870408755367
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.137305
+ - - 0.0
+ - 0.0
+ - 1.968771
+ - - 0.0
+ - 0.0
+ - 0.610199
+ - - 0.0
+ - 0.0
+ - -0.610199
+ - - 0.0
+ - 0.0
+ - -1.968771
+ - - 0.0
+ - 0.0
+ - -3.137305
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 134.8649111324841
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.144235
+ - - 0.0
+ - 0.0
+ - 1.971891
+ - - 0.0
+ - 0.0
+ - 0.612052
+ - - 0.0
+ - 0.0
+ - -0.612052
+ - - 0.0
+ - 0.0
+ - -1.971891
+ - - 0.0
+ - 0.0
+ - -3.144235
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 142.77711897403563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.117665
+ - - 0.0
+ - 0.0
+ - 1.969925
+ - - 0.0
+ - 0.0
+ - 0.599014
+ - - 0.0
+ - 0.0
+ - -0.599014
+ - - 0.0
+ - 0.0
+ - -1.969925
+ - - 0.0
+ - 0.0
+ - -3.117665
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 123.89356812189068
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.127135
+ - - 0.0
+ - 0.0
+ - 1.968129
+ - - 0.0
+ - 0.0
+ - 0.60499
+ - - 0.0
+ - 0.0
+ - -0.60499
+ - - 0.0
+ - 0.0
+ - -1.968129
+ - - 0.0
+ - 0.0
+ - -3.127135
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.29656159718488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 7.0e-05
+ - -5.1e-05
+ - 3.128816
+ - - -3.2e-05
+ - 0.000238
+ - 1.97888
+ - - -8.0e-05
+ - 5.7e-05
+ - 0.599578
+ - - -2.7e-05
+ - -0.000299
+ - -0.599578
+ - - 1.4e-05
+ - -0.000262
+ - -1.97888
+ - - 3.7e-05
+ - 0.000279
+ - -3.128816
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 132.24657734904298
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 7.0e-05
+ - -5.1e-05
+ - 3.128816
+ - - -3.2e-05
+ - 0.000238
+ - 1.97888
+ - - -8.0e-05
+ - 5.7e-05
+ - 0.599578
+ - - -2.7e-05
+ - -0.000299
+ - -0.599578
+ - - 1.4e-05
+ - -0.000262
+ - -1.97888
+ - - 3.7e-05
+ - 0.000279
+ - -3.128816
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 129.54764915453424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 7.0e-05
+ - -5.1e-05
+ - 3.128816
+ - - -3.2e-05
+ - 0.000238
+ - 1.97888
+ - - -8.0e-05
+ - 5.7e-05
+ - 0.599578
+ - - -2.7e-05
+ - -0.000299
+ - -0.599578
+ - - 1.4e-05
+ - -0.000262
+ - -1.97888
+ - - 3.7e-05
+ - 0.000279
+ - -3.128816
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.58031083025517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.129447
+ - - 0.0
+ - 0.0
+ - 1.967556
+ - - 0.0
+ - 0.0
+ - 0.605452
+ - - 0.0
+ - 0.0
+ - -0.605452
+ - - 0.0
+ - 0.0
+ - -1.967556
+ - - 0.0
+ - 0.0
+ - -3.129447
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 135.2695925674334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.125962
+ - - 0.0
+ - 0.0
+ - 1.976963
+ - - 0.0
+ - 0.0
+ - 0.600152
+ - - 0.0
+ - 0.0
+ - -0.600152
+ - - 0.0
+ - 0.0
+ - -1.976963
+ - - 0.0
+ - 0.0
+ - -3.125962
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 145.40693000983532
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.122268
+ - - 0.0
+ - 0.0
+ - 1.967134
+ - - 0.0
+ - 0.0
+ - 0.60355
+ - - 0.0
+ - 0.0
+ - -0.60355
+ - - 0.0
+ - 0.0
+ - -1.967134
+ - - 0.0
+ - 0.0
+ - -3.122268
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 151.8434825090121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.13628
+ - - 0.0
+ - 0.0
+ - 1.96774
+ - - 0.0
+ - 0.0
+ - 0.609694
+ - - 0.0
+ - 0.0
+ - -0.609694
+ - - 0.0
+ - 0.0
+ - -1.96774
+ - - 0.0
+ - 0.0
+ - -3.13628
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.77716061895134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 7.02478e-05
+ - -5.07986e-05
+ - 3.1288164598
+ - - -3.18827e-05
+ - 0.0002384358
+ - 1.978880043
+ - - -7.98238e-05
+ - 5.66784e-05
+ - 0.5995775659
+ - - -2.72344e-05
+ - -0.0002993484
+ - -0.5995775593
+ - - 1.43442e-05
+ - -0.0002619228
+ - -1.978880106
+ - - 3.65494e-05
+ - 0.0002789332
+ - -3.1288164114
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.58142088653048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 3.122675
+ - - 0.0
+ - 0.0
+ - 1.972254
+ - - 0.0
+ - 0.0
+ - 0.600232
+ - - 0.0
+ - 0.0
+ - -0.600231
+ - - 0.0
+ - 0.0
+ - -1.972254
+ - - 0.0
+ - 0.0
+ - -3.122675
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Chlorobutane.yml b/input/reference_sets/main/2-Chlorobutane.yml
index 346d979c85..c22e6aecb9 100644
--- a/input/reference_sets/main/2-Chlorobutane.yml
+++ b/input/reference_sets/main/2-Chlorobutane.yml
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.78342176576199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.339623
+ - 1.445176
+ - -0.009508
+ - - 0.268995
+ - 0.438525
+ - 0.36033
+ - - 0.863889
+ - -1.227683
+ - -0.062811
+ - - -1.061627
+ - 0.703356
+ - -0.324415
+ - - -2.191868
+ - -0.216745
+ - 0.116686
+ - - 1.508138
+ - 1.446553
+ - -1.086357
+ - - 2.281333
+ - 1.21818
+ - 0.486578
+ - - 1.020113
+ - 2.444802
+ - 0.292261
+ - - 0.132784
+ - 0.406331
+ - 1.441119
+ - - -0.916348
+ - 0.638796
+ - -1.405404
+ - - -1.326427
+ - 1.742362
+ - -0.103389
+ - - -2.350473
+ - -0.151396
+ - 1.194712
+ - - -3.125583
+ - 0.056284
+ - -0.374919
+ - - -1.970462
+ - -1.25427
+ - -0.127935
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.397523282727768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3418
+ - 1.44713
+ - -0.009168
+ - - 0.270104
+ - 0.440334
+ - 0.358241
+ - - 0.870301
+ - -1.236635
+ - -0.064074
+ - - -1.062823
+ - 0.701932
+ - -0.324854
+ - - -2.195245
+ - -0.216468
+ - 0.117669
+ - - 1.511887
+ - 1.453376
+ - -1.086558
+ - - 2.283878
+ - 1.219321
+ - 0.487425
+ - - 1.022216
+ - 2.447011
+ - 0.295562
+ - - 0.13574
+ - 0.402813
+ - 1.439204
+ - - -0.919966
+ - 0.6379
+ - -1.406826
+ - - -1.327231
+ - 1.742392
+ - -0.105591
+ - - -2.356985
+ - -0.147859
+ - 1.196071
+ - - -3.128518
+ - 0.054954
+ - -0.377696
+ - - -1.973072
+ - -1.255929
+ - -0.122456
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -21.005159688160848
+ value: -21.005159688160848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.346098439
+ - 1.4637968419
+ - -0.0143414651
+ - - 0.2660786094
+ - 0.4541597742
+ - 0.3699355743
+ - - 0.8715666409
+ - -1.2372123738
+ - -0.0700306524
+ - - -1.076860337
+ - 0.7153665384
+ - -0.3211985367
+ - - -2.2064255266
+ - -0.227549179
+ - 0.1145396616
+ - - 1.504279164
+ - 1.4511310364
+ - -1.1013208255
+ - - 2.2979312817
+ - 1.2351338329
+ - 0.4819012047
+ - - 1.0262598837
+ - 2.475315398
+ - 0.2824083158
+ - - 0.1319307613
+ - 0.42009225
+ - 1.460211709
+ - - -0.9247472253
+ - 0.6555060572
+ - -1.4101572191
+ - - -1.3524416548
+ - 1.75995962
+ - -0.0928498899
+ - - -2.3759369026
+ - -0.1615501187
+ - 1.2002632815
+ - - -3.1466138761
+ - 0.0292731243
+ - -0.3943335394
+ - - -1.9506414355
+ - -1.2668946991
+ - -0.1292133509
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.147673304070626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.346492
+ - 1.45031
+ - -0.008948
+ - - 0.272277
+ - 0.440059
+ - 0.35804
+ - - 0.877868
+ - -1.243468
+ - -0.064786
+ - - -1.064525
+ - 0.700162
+ - -0.327097
+ - - -2.201405
+ - -0.217659
+ - 0.118434
+ - - 1.515546
+ - 1.459407
+ - -1.0906
+ - - 2.292402
+ - 1.221309
+ - 0.488926
+ - - 1.023957
+ - 2.452836
+ - 0.299836
+ - - 0.137094
+ - 0.399107
+ - 1.443679
+ - - -0.920646
+ - 0.634979
+ - -1.413135
+ - - -1.327536
+ - 1.745865
+ - -0.108178
+ - - -2.362226
+ - -0.146887
+ - 1.201058
+ - - -3.138028
+ - 0.055817
+ - -0.378949
+ - - -1.979184
+ - -1.261566
+ - -0.121332
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.388286006333512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.350627
+ - 1.450487
+ - -0.010174
+ - - 0.27413
+ - 0.440291
+ - 0.358254
+ - - 0.877055
+ - -1.243316
+ - -0.067263
+ - - -1.066919
+ - 0.701174
+ - -0.324137
+ - - -2.204831
+ - -0.219798
+ - 0.118517
+ - - 1.52139
+ - 1.461179
+ - -1.096503
+ - - 2.301359
+ - 1.219473
+ - 0.488088
+ - - 1.031902
+ - 2.458851
+ - 0.300406
+ - - 0.141546
+ - 0.398182
+ - 1.449709
+ - - -0.923988
+ - 0.640087
+ - -1.41594
+ - - -1.332056
+ - 1.75123
+ - -0.102737
+ - - -2.37878
+ - -0.144806
+ - 1.203457
+ - - -3.142857
+ - 0.046409
+ - -0.389893
+ - - -1.976492
+ - -1.269172
+ - -0.114837
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.523793889742116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.335553
+ - 1.444733
+ - -0.007744
+ - - 0.271279
+ - 0.433586
+ - 0.355245
+ - - 0.869808
+ - -1.223897
+ - -0.068343
+ - - -1.058869
+ - 0.698382
+ - -0.324459
+ - - -2.190782
+ - -0.212866
+ - 0.1186
+ - - 1.505363
+ - 1.455287
+ - -1.08449
+ - - 2.27859
+ - 1.218211
+ - 0.486101
+ - - 1.014439
+ - 2.441703
+ - 0.30044
+ - - 0.135216
+ - 0.399768
+ - 1.435584
+ - - -0.917314
+ - 0.631508
+ - -1.405744
+ - - -1.320515
+ - 1.73879
+ - -0.107965
+ - - -2.355642
+ - -0.139719
+ - 1.195353
+ - - -3.121883
+ - 0.058423
+ - -0.378929
+ - - -1.973157
+ - -1.253636
+ - -0.116701
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.644728912741165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.34843
+ - 1.453982
+ - -0.007228
+ - - 0.27523
+ - 0.439746
+ - 0.355822
+ - - 0.890607
+ - -1.246034
+ - -0.073619
+ - - -1.064495
+ - 0.695994
+ - -0.328451
+ - - -2.20614
+ - -0.216798
+ - 0.121239
+ - - 1.519934
+ - 1.470266
+ - -1.08597
+ - - 2.292633
+ - 1.225316
+ - 0.488678
+ - - 1.027055
+ - 2.45259
+ - 0.3065
+ - - 0.143755
+ - 0.391895
+ - 1.438142
+ - - -0.924629
+ - 0.626157
+ - -1.412129
+ - - -1.327134
+ - 1.740096
+ - -0.11474
+ - - -2.374491
+ - -0.137337
+ - 1.199665
+ - - -3.137112
+ - 0.056251
+ - -0.381582
+ - - -1.991557
+ - -1.261852
+ - -0.10938
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.89611060005348
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.336523
+ - 1.44354
+ - -0.00814
+ - - 0.268222
+ - 0.435428
+ - 0.35999
+ - - 0.859331
+ - -1.220864
+ - -0.070106
+ - - -1.06035
+ - 0.704383
+ - -0.32486
+ - - -2.188673
+ - -0.21464
+ - 0.117959
+ - - 1.506704
+ - 1.441176
+ - -1.085435
+ - - 2.277561
+ - 1.219039
+ - 0.490602
+ - - 1.013644
+ - 2.443242
+ - 0.290148
+ - - 0.12965
+ - 0.40145
+ - 1.440952
+ - - -0.913194
+ - 0.637887
+ - -1.406244
+ - - -1.322826
+ - 1.744559
+ - -0.105548
+ - - -2.346436
+ - -0.147396
+ - 1.196617
+ - - -3.123333
+ - 0.055028
+ - -0.373797
+ - - -1.964737
+ - -1.252561
+ - -0.125192
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.53794587948202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.336523
+ - 1.44354
+ - -0.00814
+ - - 0.268222
+ - 0.435428
+ - 0.35999
+ - - 0.859331
+ - -1.220864
+ - -0.070106
+ - - -1.06035
+ - 0.704383
+ - -0.32486
+ - - -2.188673
+ - -0.21464
+ - 0.117959
+ - - 1.506704
+ - 1.441176
+ - -1.085435
+ - - 2.277561
+ - 1.219039
+ - 0.490602
+ - - 1.013644
+ - 2.443242
+ - 0.290148
+ - - 0.12965
+ - 0.40145
+ - 1.440952
+ - - -0.913194
+ - 0.637887
+ - -1.406244
+ - - -1.322826
+ - 1.744559
+ - -0.105548
+ - - -2.346436
+ - -0.147396
+ - 1.196617
+ - - -3.123333
+ - 0.055028
+ - -0.373797
+ - - -1.964737
+ - -1.252561
+ - -0.125192
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.13823918091255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.336523
+ - 1.44354
+ - -0.00814
+ - - 0.268222
+ - 0.435428
+ - 0.35999
+ - - 0.859331
+ - -1.220864
+ - -0.070106
+ - - -1.06035
+ - 0.704383
+ - -0.32486
+ - - -2.188673
+ - -0.21464
+ - 0.117959
+ - - 1.506704
+ - 1.441176
+ - -1.085435
+ - - 2.277561
+ - 1.219039
+ - 0.490602
+ - - 1.013644
+ - 2.443242
+ - 0.290148
+ - - 0.12965
+ - 0.40145
+ - 1.440952
+ - - -0.913194
+ - 0.637887
+ - -1.406244
+ - - -1.322826
+ - 1.744559
+ - -0.105548
+ - - -2.346436
+ - -0.147396
+ - 1.196617
+ - - -3.123333
+ - 0.055028
+ - -0.373797
+ - - -1.964737
+ - -1.252561
+ - -0.125192
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.3899217387917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.348547
+ - 1.452101
+ - -0.007982
+ - - 0.274583
+ - 0.43776
+ - 0.357031
+ - - 0.884702
+ - -1.241982
+ - -0.069121
+ - - -1.06484
+ - 0.697615
+ - -0.328073
+ - - -2.204748
+ - -0.217841
+ - 0.11993
+ - - 1.519822
+ - 1.466472
+ - -1.088154
+ - - 2.294162
+ - 1.223745
+ - 0.488256
+ - - 1.026725
+ - 2.452601
+ - 0.303449
+ - - 0.141195
+ - 0.395575
+ - 1.44105
+ - - -0.924419
+ - 0.631097
+ - -1.413233
+ - - -1.327294
+ - 1.742604
+ - -0.111758
+ - - -2.371289
+ - -0.142074
+ - 1.20023
+ - - -3.138163
+ - 0.055495
+ - -0.380825
+ - - -1.986896
+ - -1.262898
+ - -0.113854
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.583832181143386
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.346098439
- - 1.4637968419
- - -0.0143414651
- - - 0.2660786094
- - 0.4541597742
- - 0.3699355743
- - - 0.8715666409
- - -1.2372123738
- - -0.0700306524
- - - -1.076860337
- - 0.7153665384
- - -0.3211985367
- - - -2.2064255266
- - -0.227549179
- - 0.1145396616
- - - 1.504279164
- - 1.4511310364
- - -1.1013208255
- - - 2.2979312817
- - 1.2351338329
- - 0.4819012047
- - - 1.0262598837
- - 2.475315398
- - 0.2824083158
- - - 0.1319307613
- - 0.42009225
- - 1.460211709
- - - -0.9247472253
- - 0.6555060572
- - -1.4101572191
- - - -1.3524416548
- - 1.75995962
- - -0.0928498899
- - - -2.3759369026
- - -0.1615501187
- - 1.2002632815
- - - -3.1466138761
- - 0.0292731243
- - -0.3943335394
- - - -1.9506414355
- - -1.2668946991
- - -0.1292133509
+ - - 1.337746
+ - 1.441789
+ - -0.011028
+ - - 0.266049
+ - 0.439715
+ - 0.365153
+ - - 0.850017
+ - -1.218371
+ - -0.052896
+ - - -1.061805
+ - 0.708351
+ - -0.322022
+ - - -2.186882
+ - -0.218218
+ - 0.113541
+ - - 1.50117
+ - 1.432403
+ - -1.089238
+ - - 2.280008
+ - 1.213594
+ - 0.484004
+ - - 1.020412
+ - 2.443994
+ - 0.284063
+ - - 0.127403
+ - 0.414545
+ - 1.446269
+ - - -0.910654
+ - 0.646899
+ - -1.402901
+ - - -1.328477
+ - 1.746007
+ - -0.097564
+ - - -2.338559
+ - -0.163947
+ - 1.193386
+ - - -3.123671
+ - 0.056023
+ - -0.370945
+ - - -1.96067
+ - -1.252513
+ - -0.142874
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.25654873828902
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.335273
+ - 1.441849
+ - -0.009694
+ - - 0.269995
+ - 0.434689
+ - 0.356203
+ - - 0.861424
+ - -1.219167
+ - -0.065019
+ - - -1.059922
+ - 0.700587
+ - -0.321524
+ - - -2.188364
+ - -0.213662
+ - 0.117113
+ - - 1.504391
+ - 1.449452
+ - -1.088538
+ - - 2.280041
+ - 1.21472
+ - 0.48491
+ - - 1.015555
+ - 2.44225
+ - 0.296431
+ - - 0.134696
+ - 0.401867
+ - 1.439844
+ - - -0.916909
+ - 0.639548
+ - -1.405328
+ - - -1.32164
+ - 1.742663
+ - -0.100476
+ - - -2.357791
+ - -0.141968
+ - 1.195157
+ - - -3.120952
+ - 0.052821
+ - -0.384336
+ - - -1.963711
+ - -1.255378
+ - -0.117796
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.9092349087926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.351277
+ - 1.450152
+ - -0.010882
+ - - 0.271107
+ - 0.444383
+ - 0.361137
+ - - 0.871296
+ - -1.240214
+ - -0.068438
+ - - -1.068304
+ - 0.705198
+ - -0.324603
+ - - -2.203103
+ - -0.221138
+ - 0.118447
+ - - 1.519432
+ - 1.455403
+ - -1.092263
+ - - 2.295553
+ - 1.216587
+ - 0.487442
+ - - 1.033635
+ - 2.454606
+ - 0.296447
+ - - 0.141492
+ - 0.399566
+ - 1.446287
+ - - -0.925044
+ - 0.642497
+ - -1.410404
+ - - -1.33532
+ - 1.748612
+ - -0.100391
+ - - -2.374908
+ - -0.144358
+ - 1.198563
+ - - -3.136185
+ - 0.042875
+ - -0.389952
+ - - -1.968843
+ - -1.263899
+ - -0.114442
isotopes:
- 12
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.37073628592065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3365234769
+ - 1.4435402519
+ - -0.0081395669
+ - - 0.2682219308
+ - 0.4354279905
+ - 0.359989703
+ - - 0.8593313867
+ - -1.2208644424
+ - -0.0701061292
+ - - -1.0603504674
+ - 0.7043832928
+ - -0.3248595064
+ - - -2.1886726195
+ - -0.2146396611
+ - 0.1179594815
+ - - 1.5067040233
+ - 1.4411763208
+ - -1.0854348651
+ - - 2.2775612862
+ - 1.2190388587
+ - 0.4906018982
+ - - 1.0136443269
+ - 2.4432419334
+ - 0.2901478274
+ - - 0.1296495746
+ - 0.4014501928
+ - 1.4409521345
+ - - -0.9131940791
+ - 0.6378868556
+ - -1.4062439048
+ - - -1.3228258943
+ - 1.7445591735
+ - -0.1055483018
+ - - -2.3464360902
+ - -0.14739624
+ - 1.196617492
+ - - -3.1233332864
+ - 0.0550277686
+ - -0.3737968318
+ - - -1.9647373605
+ - -1.2525605876
+ - -0.125191919
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.00668943164495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.337889
+ - 1.445402
+ - -0.009305
+ - - 0.272464
+ - 0.432751
+ - 0.35718
+ - - 0.870835
+ - -1.227617
+ - -0.059202
+ - - -1.059459
+ - 0.698219
+ - -0.325151
+ - - -2.192929
+ - -0.21429
+ - 0.11724
+ - - 1.505759
+ - 1.454281
+ - -1.087312
+ - - 2.2818
+ - 1.221683
+ - 0.485944
+ - - 1.01305
+ - 2.442362
+ - 0.297819
+ - - 0.135301
+ - 0.403023
+ - 1.438557
+ - - -0.917609
+ - 0.633602
+ - -1.407359
+ - - -1.320551
+ - 1.738756
+ - -0.105256
+ - - -2.351326
+ - -0.146991
+ - 1.196052
+ - - -3.125198
+ - 0.063836
+ - -0.375621
+ - - -1.977939
+ - -1.254745
+ - -0.126637
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Chloroethanol.yml b/input/reference_sets/main/2-Chloroethanol.yml
index 880f3415e3..4a3420fc15 100644
--- a/input/reference_sets/main/2-Chloroethanol.yml
+++ b/input/reference_sets/main/2-Chloroethanol.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.322032691923056
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.40424
+ - -0.288629
+ - -0.066464
+ - - 0.095635
+ - 0.900954
+ - 0.285659
+ - - -1.206385
+ - 0.449436
+ - -0.33848
+ - - -1.68211
+ - -0.763048
+ - 0.207775
+ - - 0.420807
+ - 1.856694
+ - -0.118284
+ - - 0.014441
+ - 0.958076
+ - 1.367684
+ - - -1.96735
+ - 1.201808
+ - -0.124054
+ - - -1.089358
+ - 0.381732
+ - -1.424908
+ - - -1.002628
+ - -1.432661
+ - 0.06221
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.38810648174656
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.413757
+ - -0.289354
+ - -0.066074
+ - - 0.094444
+ - 0.902171
+ - 0.285753
+ - - -1.207499
+ - 0.44894
+ - -0.338991
+ - - -1.684898
+ - -0.764466
+ - 0.204265
+ - - 0.420804
+ - 1.858095
+ - -0.118328
+ - - 0.016474
+ - 0.958013
+ - 1.368725
+ - - -1.968809
+ - 1.202987
+ - -0.124058
+ - - -1.091532
+ - 0.384632
+ - -1.427218
+ - - -1.005448
+ - -1.436655
+ - 0.067063
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.87107612471758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.422705
+ - -0.288882
+ - -0.068591
+ - - 0.095867
+ - 0.90172
+ - 0.286472
+ - - -1.210135
+ - 0.44691
+ - -0.340851
+ - - -1.696197
+ - -0.769703
+ - 0.204136
+ - - 0.422526
+ - 1.863118
+ - -0.117978
+ - - 0.019509
+ - 0.954487
+ - 1.374456
+ - - -1.972362
+ - 1.206961
+ - -0.124937
+ - - -1.091621
+ - 0.383885
+ - -1.434391
+ - - -1.002999
+ - -1.434133
+ - 0.072822
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.273528065538706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.410642
+ - -0.303888
+ - -0.060406
+ - - 0.095007
+ - 0.901948
+ - 0.285758
+ - - -1.212893
+ - 0.449066
+ - -0.3412
+ - - -1.692741
+ - -0.774936
+ - 0.200053
+ - - 0.432044
+ - 1.862772
+ - -0.124661
+ - - 0.017916
+ - 0.9623
+ - 1.378379
+ - - -1.981359
+ - 1.207868
+ - -0.118606
+ - - -1.098224
+ - 0.392841
+ - -1.440601
+ - - -0.983099
+ - -1.433608
+ - 0.072423
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.758487362292854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.404384
+ - -0.281937
+ - -0.06554
+ - - 0.096561
+ - 0.898038
+ - 0.284137
+ - - -1.203597
+ - 0.44827
+ - -0.336642
+ - - -1.677638
+ - -0.758357
+ - 0.207409
+ - - 0.416929
+ - 1.85596
+ - -0.11796
+ - - 0.013758
+ - 0.957242
+ - 1.365959
+ - - -1.963224
+ - 1.202881
+ - -0.123806
+ - - -1.089358
+ - 0.380522
+ - -1.423813
+ - - -1.010523
+ - -1.438254
+ - 0.061395
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.59255351075053
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.441204
+ - -0.272293
+ - -0.070025
+ - - 0.09652
+ - 0.907664
+ - 0.286898
+ - - -1.207255
+ - 0.442532
+ - -0.337354
+ - - -1.691163
+ - -0.759691
+ - 0.225944
+ - - 0.419706
+ - 1.86828
+ - -0.112302
+ - - 0.020895
+ - 0.951895
+ - 1.371747
+ - - -1.96551
+ - 1.205135
+ - -0.133704
+ - - -1.088889
+ - 0.366665
+ - -1.426409
+ - - -1.038215
+ - -1.445825
+ - 0.046345
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.28079571787011
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.393188
+ - -0.292295
+ - -0.064877
+ - - 0.096113
+ - 0.899893
+ - 0.2855
+ - - -1.206055
+ - 0.45043
+ - -0.337634
+ - - -1.675513
+ - -0.762752
+ - 0.206794
+ - - 0.421804
+ - 1.854971
+ - -0.119848
+ - - 0.012679
+ - 0.960983
+ - 1.367768
+ - - -1.968
+ - 1.20189
+ - -0.122854
+ - - -1.089913
+ - 0.383709
+ - -1.424671
+ - - -0.997012
+ - -1.432466
+ - 0.060959
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.42636031611741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.393188
+ - -0.292295
+ - -0.064877
+ - - 0.096113
+ - 0.899893
+ - 0.2855
+ - - -1.206055
+ - 0.45043
+ - -0.337634
+ - - -1.675513
+ - -0.762752
+ - 0.206794
+ - - 0.421804
+ - 1.854971
+ - -0.119848
+ - - 0.012679
+ - 0.960983
+ - 1.367768
+ - - -1.968
+ - 1.20189
+ - -0.122854
+ - - -1.089913
+ - 0.383709
+ - -1.424671
+ - - -0.997012
+ - -1.432466
+ - 0.060959
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.23857377664578
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.393188
+ - -0.292295
+ - -0.064877
+ - - 0.096113
+ - 0.899893
+ - 0.2855
+ - - -1.206055
+ - 0.45043
+ - -0.337634
+ - - -1.675513
+ - -0.762752
+ - 0.206794
+ - - 0.421804
+ - 1.854971
+ - -0.119848
+ - - 0.012679
+ - 0.960983
+ - 1.367768
+ - - -1.968
+ - 1.20189
+ - -0.122854
+ - - -1.089913
+ - 0.383709
+ - -1.424671
+ - - -0.997012
+ - -1.432466
+ - 0.060959
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.889167816119595
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.423924
+ - -0.288373
+ - -0.058631
+ - - 0.097188
+ - 0.906116
+ - 0.286818
+ - - -1.210338
+ - 0.440748
+ - -0.336027
+ - - -1.684932
+ - -0.76415
+ - 0.216187
+ - - 0.425049
+ - 1.862783
+ - -0.122197
+ - - 0.020103
+ - 0.965021
+ - 1.372699
+ - - -1.971533
+ - 1.201725
+ - -0.123847
+ - - -1.094015
+ - 0.379998
+ - -1.428517
+ - - -1.018153
+ - -1.439505
+ - 0.044654
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.10297738241626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.38763
+ - -0.291886
+ - -0.06649
+ - - 0.095585
+ - 0.89964
+ - 0.285063
+ - - -1.207445
+ - 0.449682
+ - -0.338389
+ - - -1.671523
+ - -0.758985
+ - 0.206629
+ - - 0.42373
+ - 1.854618
+ - -0.118336
+ - - 0.011178
+ - 0.95642
+ - 1.367497
+ - - -1.969148
+ - 1.201772
+ - -0.123625
+ - - -1.08923
+ - 0.382283
+ - -1.425177
+ - - -0.993485
+ - -1.429182
+ - 0.063966
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.954514214551416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.392386
+ - -0.28939
+ - -0.061065
+ - - 0.094758
+ - 0.894357
+ - 0.283258
+ - - -1.20621
+ - 0.444958
+ - -0.336281
+ - - -1.677748
+ - -0.7613
+ - 0.199892
+ - - 0.419843
+ - 1.851981
+ - -0.122975
+ - - 0.013539
+ - 0.958272
+ - 1.367714
+ - - -1.965526
+ - 1.202593
+ - -0.119145
+ - - -1.091689
+ - 0.387529
+ - -1.427108
+ - - -0.992059
+ - -1.424636
+ - 0.066848
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.333527643016126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.401125
+ - -0.308788
+ - -0.0589
+ - - 0.092293
+ - 0.90658
+ - 0.287343
+ - - -1.21401
+ - 0.45376
+ - -0.343553
+ - - -1.686578
+ - -0.774023
+ - 0.199311
+ - - 0.437207
+ - 1.857396
+ - -0.124088
+ - - 0.017111
+ - 0.963441
+ - 1.374056
+ - - -1.983962
+ - 1.20096
+ - -0.11758
+ - - -1.098814
+ - 0.393067
+ - -1.435859
+ - - -0.97708
+ - -1.42803
+ - 0.070409
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.85379991104722
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3931879197
+ - -0.2922947922
+ - -0.0648765614
+ - - 0.0961132939
+ - 0.8998932685
+ - 0.2855004229
+ - - -1.2060553786
+ - 0.4504296364
+ - -0.3376342836
+ - - -1.675512622
+ - -0.7627515963
+ - 0.2067937312
+ - - 0.4218038532
+ - 1.8549708923
+ - -0.1198480221
+ - - 0.0126794001
+ - 0.9609828229
+ - 1.3677684891
+ - - -1.9679995483
+ - 1.201890368
+ - -0.1228543049
+ - - -1.0899128365
+ - 0.3837087032
+ - -1.4246707734
+ - - -0.9970120184
+ - -1.4324659774
+ - 0.0609594694
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.20215374615798
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.415223
+ - -0.274152
+ - -0.066365
+ - - 0.098923
+ - 0.897601
+ - 0.285147
+ - - -1.20447
+ - 0.443185
+ - -0.335975
+ - - -1.683618
+ - -0.757896
+ - 0.208449
+ - - 0.413893
+ - 1.858127
+ - -0.117726
+ - - 0.017456
+ - 0.955528
+ - 1.368262
+ - - -1.960345
+ - 1.203398
+ - -0.125167
+ - - -1.088545
+ - 0.376066
+ - -1.424445
+ - - -1.021224
+ - -1.437494
+ - 0.058957
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - Cl
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Hydroxyethyl.yml b/input/reference_sets/main/2-Hydroxyethyl.yml
index 7176e74d76..84af089153 100644
--- a/input/reference_sets/main/2-Hydroxyethyl.yml
+++ b/input/reference_sets/main/2-Hydroxyethyl.yml
@@ -16,7 +16,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -6.120983255839101
+ value: -6.1209832558390955
class: ThermoData
xyz_dict:
coords:
@@ -118,13 +118,121 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.190583929723994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.229611
+ - -0.274198
+ - 0.013882
+ - - -0.007457
+ - 0.538596
+ - -0.030119
+ - - -1.192927
+ - -0.254838
+ - -0.044537
+ - - 1.277415
+ - -1.197532
+ - -0.545357
+ - - 2.132726
+ - 0.110832
+ - 0.463593
+ - - -0.058459
+ - 1.128459
+ - -0.952735
+ - - -0.024069
+ - 1.254123
+ - 0.800388
+ - - -1.147419
+ - -0.855843
+ - 0.707071
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.8846416388253568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230079
+ - -0.27173
+ - 0.009717
+ - - -0.00682
+ - 0.539307
+ - -0.031113
+ - - -1.195079
+ - -0.252359
+ - -0.038199
+ - - 1.278793
+ - -1.197486
+ - -0.548385
+ - - 2.130858
+ - 0.105835
+ - 0.473553
+ - - -0.062438
+ - 1.128978
+ - -0.956266
+ - - -0.020059
+ - 1.260583
+ - 0.797135
+ - - -1.145913
+ - -0.863529
+ - 0.705744
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 7.593263209718991
+ value: 7.593263209718985
class: ThermoData
xyz_dict:
coords:
@@ -172,6 +280,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.324327517677988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.226921
+ - -0.267922
+ - -0.001115
+ - - -0.006982
+ - 0.548709
+ - -0.042428
+ - - -1.204535
+ - -0.251384
+ - -0.01059
+ - - 1.291769
+ - -1.168466
+ - -0.60555
+ - - 2.101186
+ - 0.052731
+ - 0.556986
+ - - -0.085037
+ - 1.116772
+ - -0.984871
+ - - -0.009293
+ - 1.290862
+ - 0.774025
+ - - -1.104608
+ - -0.871704
+ - 0.725729
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.9789880616676839
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.227857
+ - -0.269936
+ - 0.00375
+ - - -0.00792
+ - 0.546444
+ - -0.03782
+ - - -1.207719
+ - -0.251273
+ - -0.022589
+ - - 1.286858
+ - -1.185363
+ - -0.587484
+ - - 2.119119
+ - 0.071887
+ - 0.530699
+ - - -0.078424
+ - 1.125718
+ - -0.979984
+ - - -0.013323
+ - 1.288068
+ - 0.785582
+ - - -1.117026
+ - -0.875947
+ - 0.720033
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.4636158929725074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.229782
+ - -0.271461
+ - 0.012996
+ - - -0.006896
+ - 0.535156
+ - -0.026875
+ - - -1.185347
+ - -0.253813
+ - -0.050989
+ - - 1.268587
+ - -1.211368
+ - -0.520503
+ - - 2.140478
+ - 0.127466
+ - 0.436554
+ - - -0.052062
+ - 1.135948
+ - -0.943799
+ - - -0.026696
+ - 1.246511
+ - 0.808367
+ - - -1.158425
+ - -0.85884
+ - 0.696435
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.237715828434775
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.233968
+ - -0.27392
+ - 0.013121
+ - - -0.010074
+ - 0.535602
+ - -0.029682
+ - - -1.19432
+ - -0.262821
+ - -0.05032
+ - - 1.281248
+ - -1.197689
+ - -0.551577
+ - - 2.140218
+ - 0.108106
+ - 0.467074
+ - - -0.060796
+ - 1.130703
+ - -0.953316
+ - - -0.027099
+ - 1.256134
+ - 0.802416
+ - - -1.153724
+ - -0.846516
+ - 0.71447
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.5433790922498436
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230798
+ - -0.271034
+ - 0.008218
+ - - -0.006917
+ - 0.537716
+ - -0.030243
+ - - -1.189833
+ - -0.254715
+ - -0.043151
+ - - 1.273913
+ - -1.20135
+ - -0.540694
+ - - 2.131626
+ - 0.112289
+ - 0.46423
+ - - -0.058185
+ - 1.131264
+ - -0.951498
+ - - -0.023651
+ - 1.253921
+ - 0.800044
+ - - -1.148331
+ - -0.858492
+ - 0.70528
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.866780490256859
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230798
+ - -0.271034
+ - 0.008218
+ - - -0.006917
+ - 0.537716
+ - -0.030243
+ - - -1.189833
+ - -0.254715
+ - -0.043151
+ - - 1.273913
+ - -1.20135
+ - -0.540694
+ - - 2.131626
+ - 0.112289
+ - 0.46423
+ - - -0.058185
+ - 1.131264
+ - -0.951498
+ - - -0.023651
+ - 1.253921
+ - 0.800044
+ - - -1.148331
+ - -0.858492
+ - 0.70528
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.053471728422445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230798
+ - -0.271034
+ - 0.008218
+ - - -0.006917
+ - 0.537716
+ - -0.030243
+ - - -1.189833
+ - -0.254715
+ - -0.043151
+ - - 1.273913
+ - -1.20135
+ - -0.540694
+ - - 2.131626
+ - 0.112289
+ - 0.46423
+ - - -0.058185
+ - 1.131264
+ - -0.951498
+ - - -0.023651
+ - 1.253921
+ - 0.800044
+ - - -1.148331
+ - -0.858492
+ - 0.70528
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.2374795470165445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230554
+ - -0.276612
+ - 0.015981
+ - - -0.013094
+ - 0.535531
+ - -0.028845
+ - - -1.19625
+ - -0.254824
+ - -0.047111
+ - - 1.279183
+ - -1.205578
+ - -0.541949
+ - - 2.139337
+ - 0.111491
+ - 0.461069
+ - - -0.062676
+ - 1.135456
+ - -0.95271
+ - - -0.02399
+ - 1.260527
+ - 0.802716
+ - - -1.143643
+ - -0.856393
+ - 0.703034
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.3976094647861625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.224991
+ - -0.278944
+ - 0.024052
+ - - -0.009932
+ - 0.538324
+ - -0.028758
+ - - -1.186158
+ - -0.252469
+ - -0.043224
+ - - 1.272236
+ - -1.196321
+ - -0.54589
+ - - 2.133545
+ - 0.114516
+ - 0.455138
+ - - -0.053044
+ - 1.127438
+ - -0.952882
+ - - -0.027669
+ - 1.255402
+ - 0.800764
+ - - -1.144547
+ - -0.858347
+ - 0.702986
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.906725376592156
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22552
+ - -0.273602
+ - 0.016196
+ - - -0.010757
+ - 0.533417
+ - -0.026502
+ - - -1.188138
+ - -0.250114
+ - -0.04869
+ - - 1.267955
+ - -1.212069
+ - -0.523797
+ - - 2.137967
+ - 0.125629
+ - 0.440795
+ - - -0.052654
+ - 1.135433
+ - -0.946126
+ - - -0.025477
+ - 1.251057
+ - 0.807514
+ - - -1.144995
+ - -0.860152
+ - 0.692795
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.915693462372766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.230074
+ - -0.27039
+ - -1.1e-05
+ - - -0.006186
+ - 0.551404
+ - -0.043619
+ - - -1.203928
+ - -0.25499
+ - -0.013885
+ - - 1.302437
+ - -1.160686
+ - -0.618935
+ - - 2.102761
+ - 0.046074
+ - 0.56365
+ - - -0.088148
+ - 1.111784
+ - -0.987257
+ - - -0.013245
+ - 1.289097
+ - 0.773594
+ - - -1.114345
+ - -0.862693
+ - 0.738648
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -226,6 +928,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.5550261060559025
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2307980489
+ - -0.2710342808
+ - 0.0082180719
+ - - -0.0069165783
+ - 0.5377157683
+ - -0.0302433867
+ - - -1.1898326705
+ - -0.2547151827
+ - -0.0431512893
+ - - 1.2739129312
+ - -1.2013498317
+ - -0.5406935806
+ - - 2.1316257687
+ - 0.1122892573
+ - 0.4642298953
+ - - -0.0581845958
+ - 1.131264479
+ - -0.9514981032
+ - - -0.0236508407
+ - 1.2539208544
+ - 0.8000437194
+ - - -1.1483307231
+ - -0.8584922225
+ - 0.7052802718
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.251349542509945
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.229743
+ - -0.273645
+ - 0.014552
+ - - -0.010324
+ - 0.533242
+ - -0.026041
+ - - -1.18764
+ - -0.252099
+ - -0.05114
+ - - 1.269965
+ - -1.214781
+ - -0.518685
+ - - 2.141387
+ - 0.130839
+ - 0.432926
+ - - -0.051011
+ - 1.136485
+ - -0.942889
+ - - -0.027371
+ - 1.245575
+ - 0.810481
+ - - -1.155327
+ - -0.856018
+ - 0.692982
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methoxypropane.yml b/input/reference_sets/main/2-Methoxypropane.yml
index 62d31b57dd..26a99f6370 100644
--- a/input/reference_sets/main/2-Methoxypropane.yml
+++ b/input/reference_sets/main/2-Methoxypropane.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.27370899761717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.628443
+ - -1.447621
+ - -0.109137
+ - - -0.420736
+ - 0.000559
+ - 0.315763
+ - - 0.691473
+ - 0.596357
+ - -0.347812
+ - - 1.948298
+ - 0.124871
+ - 0.085901
+ - - -1.623164
+ - 0.864241
+ - -0.011392
+ - - -0.783165
+ - -1.499702
+ - -1.187858
+ - - 0.224669
+ - -2.074505
+ - 0.147991
+ - - -1.505775
+ - -1.864295
+ - 0.387378
+ - - -0.233968
+ - 0.033081
+ - 1.399003
+ - - 2.048379
+ - 0.206836
+ - 1.174796
+ - - 2.702808
+ - 0.750527
+ - -0.386107
+ - - 2.126844
+ - -0.915284
+ - -0.202852
+ - - -2.514142
+ - 0.490259
+ - 0.493606
+ - - -1.805563
+ - 0.857743
+ - -1.086719
+ - - -1.448833
+ - 1.892909
+ - 0.300864
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.29494588470703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.633896
+ - -1.452764
+ - -0.113133
+ - - -0.422453
+ - -0.003277
+ - 0.312441
+ - - 0.694382
+ - 0.588773
+ - -0.348576
+ - - 1.953085
+ - 0.129368
+ - 0.088892
+ - - -1.623631
+ - 0.866839
+ - -0.010747
+ - - -0.795795
+ - -1.505767
+ - -1.191668
+ - - 0.222338
+ - -2.079468
+ - 0.138134
+ - - -1.508144
+ - -1.871172
+ - 0.389107
+ - - -0.236385
+ - 0.026423
+ - 1.396869
+ - - 2.057497
+ - 0.228035
+ - 1.177619
+ - - 2.705866
+ - 0.750518
+ - -0.394806
+ - - 2.136595
+ - -0.91605
+ - -0.183928
+ - - -2.516075
+ - 0.493809
+ - 0.494231
+ - - -1.808918
+ - 0.866007
+ - -1.086629
+ - - -1.445786
+ - 1.894701
+ - 0.305619
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -40.15431252425466
+ value: -40.15431252425466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.6468432591
+ - -1.4529573358
+ - -0.1038250604
+ - - -0.4220463335
+ - 0.0066941096
+ - 0.3256633478
+ - - 0.7003391113
+ - 0.60159996
+ - -0.3421094465
+ - - 1.9629108105
+ - 0.1113967367
+ - 0.0799703522
+ - - -1.6274690352
+ - 0.8865738162
+ - -0.0156169507
+ - - -0.7881767364
+ - -1.5004756507
+ - -1.1935900439
+ - - 0.2052726536
+ - -2.0931357448
+ - 0.1643922001
+ - - -1.5434343558
+ - -1.8620722758
+ - 0.3851413518
+ - - -0.248884855
+ - 0.034443391
+ - 1.42166329
+ - - 2.0874835462
+ - 0.1847076751
+ - 1.1787573074
+ - - 2.7232638342
+ - 0.7399582028
+ - -0.4040410474
+ - - 2.1387607207
+ - -0.9395292642
+ - -0.2157887416
+ - - -2.5319793351
+ - 0.5103680754
+ - 0.483145686
+ - - -1.7963933822
+ - 0.8800810478
+ - -1.1023094585
+ - - -1.4479380764
+ - 1.9226109034
+ - 0.3023548945
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.64457471858706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.634249
+ - -1.455628
+ - -0.112963
+ - - -0.422785
+ - -0.000793
+ - 0.311916
+ - - 0.698834
+ - 0.59843
+ - -0.353075
+ - - 1.959532
+ - 0.128594
+ - 0.088362
+ - - -1.629415
+ - 0.869967
+ - -0.011773
+ - - -0.794349
+ - -1.511189
+ - -1.195756
+ - - 0.223593
+ - -2.085014
+ - 0.144111
+ - - -1.514006
+ - -1.872679
+ - 0.390195
+ - - -0.234997
+ - 0.029437
+ - 1.401318
+ - - 2.061408
+ - 0.218686
+ - 1.183411
+ - - 2.717373
+ - 0.755153
+ - -0.391146
+ - - 2.142869
+ - -0.920152
+ - -0.192951
+ - - -2.522182
+ - 0.492278
+ - 0.498166
+ - - -1.819065
+ - 0.866233
+ - -1.091099
+ - - -1.453882
+ - 1.902654
+ - 0.304709
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.41837942083018
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.640422
+ - -1.461461
+ - -0.1218
+ - - -0.423536
+ - -0.00693
+ - 0.307075
+ - - 0.699854
+ - 0.591142
+ - -0.364205
+ - - 1.962059
+ - 0.134244
+ - 0.096657
+ - - -1.627796
+ - 0.872271
+ - -0.009857
+ - - -0.830296
+ - -1.51339
+ - -1.204819
+ - - 0.230999
+ - -2.091387
+ - 0.108328
+ - - -1.50658
+ - -1.891507
+ - 0.403742
+ - - -0.227847
+ - 0.020939
+ - 1.400543
+ - - 2.064245
+ - 0.265197
+ - 1.192259
+ - - 2.724336
+ - 0.744303
+ - -0.406604
+ - - 2.147228
+ - -0.928675
+ - -0.146978
+ - - -2.527715
+ - 0.496314
+ - 0.498567
+ - - -1.818699
+ - 0.878327
+ - -1.093768
+ - - -1.44715
+ - 1.906589
+ - 0.314285
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.463193747003174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.635904
+ - -1.450382
+ - -0.115365
+ - - -0.419969
+ - -0.006791
+ - 0.309818
+ - - 0.691388
+ - 0.57798
+ - -0.34974
+ - - 1.946596
+ - 0.132238
+ - 0.090665
+ - - -1.616424
+ - 0.863092
+ - -0.009247
+ - - -0.803589
+ - -1.500842
+ - -1.192329
+ - - 0.219464
+ - -2.079387
+ - 0.129459
+ - - -1.507571
+ - -1.868067
+ - 0.389936
+ - - -0.231998
+ - 0.022176
+ - 1.392999
+ - - 2.050642
+ - 0.24468
+ - 1.176982
+ - - 2.69771
+ - 0.749409
+ - -0.398859
+ - - 2.135185
+ - -0.914445
+ - -0.169383
+ - - -2.509117
+ - 0.492327
+ - 0.495089
+ - - -1.801619
+ - 0.864577
+ - -1.084268
+ - - -1.436113
+ - 1.889411
+ - 0.307667
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.649509581918984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.653849
+ - -1.471495
+ - -0.131824
+ - - -0.421465
+ - -0.022493
+ - 0.303836
+ - - 0.69537
+ - 0.560572
+ - -0.371975
+ - - 1.960262
+ - 0.148039
+ - 0.102911
+ - - -1.617181
+ - 0.87063
+ - -0.001817
+ - - -0.839785
+ - -1.512819
+ - -1.20863
+ - - 0.207403
+ - -2.105567
+ - 0.091515
+ - - -1.518864
+ - -1.895311
+ - 0.386142
+ - - -0.223762
+ - -0.001201
+ - 1.387843
+ - - 2.067209
+ - 0.33811
+ - 1.181258
+ - - 2.707167
+ - 0.735738
+ - -0.432411
+ - - 2.157698
+ - -0.916008
+ - -0.083619
+ - - -2.51602
+ - 0.506262
+ - 0.502317
+ - - -1.805731
+ - 0.888569
+ - -1.078661
+ - - -1.419771
+ - 1.89295
+ - 0.326541
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.322443464923026
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.619945
+ - -1.439737
+ - -0.101913
+ - - -0.418909
+ - 0.009029
+ - 0.318798
+ - - 0.690424
+ - 0.605367
+ - -0.341111
+ - - 1.941854
+ - 0.117436
+ - 0.080531
+ - - -1.625331
+ - 0.862562
+ - -0.014546
+ - - -0.769915
+ - -1.494662
+ - -1.181951
+ - - 0.232945
+ - -2.064611
+ - 0.162427
+ - - -1.499596
+ - -1.855578
+ - 0.391506
+ - - -0.234857
+ - 0.046154
+ - 1.403207
+ - - 2.038001
+ - 0.161785
+ - 1.172659
+ - - 2.70269
+ - 0.75514
+ - -0.365149
+ - - 2.119203
+ - -0.913053
+ - -0.243535
+ - - -2.513756
+ - 0.485766
+ - 0.493281
+ - - -1.806748
+ - 0.845316
+ - -1.090628
+ - - -1.457379
+ - 1.895061
+ - 0.289849
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.48060992825713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.619945
+ - -1.439737
+ - -0.101913
+ - - -0.418909
+ - 0.009029
+ - 0.318798
+ - - 0.690424
+ - 0.605367
+ - -0.341111
+ - - 1.941854
+ - 0.117436
+ - 0.080531
+ - - -1.625331
+ - 0.862562
+ - -0.014546
+ - - -0.769915
+ - -1.494662
+ - -1.181951
+ - - 0.232945
+ - -2.064611
+ - 0.162427
+ - - -1.499596
+ - -1.855578
+ - 0.391506
+ - - -0.234857
+ - 0.046154
+ - 1.403207
+ - - 2.038001
+ - 0.161785
+ - 1.172659
+ - - 2.70269
+ - 0.75514
+ - -0.365149
+ - - 2.119203
+ - -0.913053
+ - -0.243535
+ - - -2.513756
+ - 0.485766
+ - 0.493281
+ - - -1.806748
+ - 0.845316
+ - -1.090628
+ - - -1.457379
+ - 1.895061
+ - 0.289849
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.83126524160329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.619945
+ - -1.439737
+ - -0.101913
+ - - -0.418909
+ - 0.009029
+ - 0.318798
+ - - 0.690424
+ - 0.605367
+ - -0.341111
+ - - 1.941854
+ - 0.117436
+ - 0.080531
+ - - -1.625331
+ - 0.862562
+ - -0.014546
+ - - -0.769915
+ - -1.494662
+ - -1.181951
+ - - 0.232945
+ - -2.064611
+ - 0.162427
+ - - -1.499596
+ - -1.855578
+ - 0.391506
+ - - -0.234857
+ - 0.046154
+ - 1.403207
+ - - 2.038001
+ - 0.161785
+ - 1.172659
+ - - 2.70269
+ - 0.75514
+ - -0.365149
+ - - 2.119203
+ - -0.913053
+ - -0.243535
+ - - -2.513756
+ - 0.485766
+ - 0.493281
+ - - -1.806748
+ - 0.845316
+ - -1.090628
+ - - -1.457379
+ - 1.895061
+ - 0.289849
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.154538959258026
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.643339
+ - -1.464714
+ - -0.123868
+ - - -0.417787
+ - -0.011997
+ - 0.307752
+ - - 0.694793
+ - 0.576268
+ - -0.356847
+ - - 1.953483
+ - 0.14112
+ - 0.095711
+ - - -1.62037
+ - 0.871031
+ - -0.007243
+ - - -0.818294
+ - -1.514668
+ - -1.203529
+ - - 0.214989
+ - -2.099307
+ - 0.114377
+ - - -1.515624
+ - -1.883877
+ - 0.387819
+ - - -0.231285
+ - 0.009773
+ - 1.395985
+ - - 2.066253
+ - 0.280383
+ - 1.183158
+ - - 2.706433
+ - 0.74828
+ - -0.413906
+ - - 2.150396
+ - -0.916419
+ - -0.134808
+ - - -2.515863
+ - 0.50408
+ - 0.503007
+ - - -1.813541
+ - 0.87634
+ - -1.084801
+ - - -1.43156
+ - 1.899683
+ - 0.310616
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.29779447909026
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.6468432591
- - -1.4529573358
- - -0.1038250604
- - - -0.4220463335
- - 0.0066941096
- - 0.3256633478
- - - 0.7003391113
- - 0.60159996
- - -0.3421094465
- - - 1.9629108105
- - 0.1113967367
- - 0.0799703522
- - - -1.6274690352
- - 0.8865738162
- - -0.0156169507
- - - -0.7881767364
- - -1.5004756507
- - -1.1935900439
- - - 0.2052726536
- - -2.0931357448
- - 0.1643922001
- - - -1.5434343558
- - -1.8620722758
- - 0.3851413518
- - - -0.248884855
- - 0.034443391
- - 1.42166329
- - - 2.0874835462
- - 0.1847076751
- - 1.1787573074
- - - 2.7232638342
- - 0.7399582028
- - -0.4040410474
- - - 2.1387607207
- - -0.9395292642
- - -0.2157887416
- - - -2.5319793351
- - 0.5103680754
- - 0.483145686
- - - -1.7963933822
- - 0.8800810478
- - -1.1023094585
- - - -1.4479380764
- - 1.9226109034
- - 0.3023548945
+ - - -0.59889
+ - -1.428797
+ - -0.078436
+ - - -0.42216
+ - 0.025206
+ - 0.337456
+ - - 0.684684
+ - 0.631187
+ - -0.306766
+ - - 1.932164
+ - 0.10211
+ - 0.058786
+ - - -1.633691
+ - 0.862307
+ - -0.019943
+ - - -0.685174
+ - -1.491724
+ - -1.164972
+ - - 0.237234
+ - -2.050581
+ - 0.241234
+ - - -1.506287
+ - -1.838547
+ - 0.36669
+ - - -0.255948
+ - 0.069027
+ - 1.424253
+ - - 2.035033
+ - 0.047264
+ - 1.149702
+ - - 2.695322
+ - 0.771897
+ - -0.333506
+ - - 2.096421
+ - -0.896517
+ - -0.358052
+ - - -2.522964
+ - 0.488735
+ - 0.488146
+ - - -1.80409
+ - 0.82337
+ - -1.097052
+ - - -1.472974
+ - 1.90104
+ - 0.265885
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.47744284859432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.629842
+ - -1.445937
+ - -0.114389
+ - - -0.415841
+ - -0.001765
+ - 0.308036
+ - - 0.691474
+ - 0.58726
+ - -0.348803
+ - - 1.939047
+ - 0.129113
+ - 0.089764
+ - - -1.615947
+ - 0.862325
+ - -0.010573
+ - - -0.800696
+ - -1.499873
+ - -1.192685
+ - - 0.227767
+ - -2.075441
+ - 0.130662
+ - - -1.501341
+ - -1.864693
+ - 0.394316
+ - - -0.229962
+ - 0.02692
+ - 1.394788
+ - - 2.044338
+ - 0.23103
+ - 1.179603
+ - - 2.698233
+ - 0.745414
+ - -0.393375
+ - - 2.124004
+ - -0.918911
+ - -0.178353
+ - - -2.507409
+ - 0.487397
+ - 0.496555
+ - - -1.804528
+ - 0.861091
+ - -1.087024
+ - - -1.440616
+ - 1.892047
+ - 0.304901
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.25334271191975
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.641274
+ - -1.462901
+ - -0.12432
+ - - -0.423807
+ - -0.00989
+ - 0.308964
+ - - 0.698841
+ - 0.58729
+ - -0.367706
+ - - 1.962836
+ - 0.13431
+ - 0.099724
+ - - -1.625868
+ - 0.871905
+ - -0.008731
+ - - -0.833267
+ - -1.509567
+ - -1.201872
+ - - 0.229088
+ - -2.087671
+ - 0.100703
+ - - -1.502222
+ - -1.890957
+ - 0.401671
+ - - -0.224203
+ - 0.018309
+ - 1.394661
+ - - 2.058854
+ - 0.279837
+ - 1.187778
+ - - 2.717909
+ - 0.736664
+ - -0.411277
+ - - 2.139245
+ - -0.926553
+ - -0.131634
+ - - -2.522293
+ - 0.495915
+ - 0.495939
+ - - -1.81217
+ - 0.879445
+ - -1.088167
+ - - -1.442987
+ - 1.899839
+ - 0.317691
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.8243646973695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.6199450506
+ - -1.4397367308
+ - -0.1019131657
+ - - -0.4189085103
+ - 0.00902891
+ - 0.3187984149
+ - - 0.690424339
+ - 0.6053674279
+ - -0.3411108541
+ - - 1.9418543593
+ - 0.1174362985
+ - 0.0805308607
+ - - -1.6253310986
+ - 0.8625619177
+ - -0.0145458123
+ - - -0.7699152097
+ - -1.4946623752
+ - -1.1819508428
+ - - 0.2329447391
+ - -2.0646107867
+ - 0.1624272388
+ - - -1.4995961507
+ - -1.8555780741
+ - 0.3915059735
+ - - -0.2348565805
+ - 0.0461544535
+ - 1.4032067535
+ - - 2.0380011785
+ - 0.1617847776
+ - 1.1726590288
+ - - 2.7026902173
+ - 0.7551401501
+ - -0.3651491477
+ - - 2.119202679
+ - -0.9130529852
+ - -0.2435350002
+ - - -2.5137563586
+ - 0.4857657051
+ - 0.4932807979
+ - - -1.8067484995
+ - 0.8453163593
+ - -1.090628477
+ - - -1.4573789253
+ - 1.8950609808
+ - 0.2898487223
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.87602096215414
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.622954
+ - -1.444423
+ - -0.102401
+ - - -0.41804
+ - 0.006055
+ - 0.316521
+ - - 0.690845
+ - 0.598641
+ - -0.334093
+ - - 1.941366
+ - 0.12214
+ - 0.078976
+ - - -1.622821
+ - 0.864678
+ - -0.01443
+ - - -0.760099
+ - -1.504563
+ - -1.184094
+ - - 0.224422
+ - -2.07259
+ - 0.174664
+ - - -1.510316
+ - -1.854431
+ - 0.382872
+ - - -0.241983
+ - 0.038862
+ - 1.403035
+ - - 2.046768
+ - 0.167382
+ - 1.171563
+ - - 2.696569
+ - 0.764684
+ - -0.37225
+ - - 2.1263
+ - -0.909091
+ - -0.244278
+ - - -2.512063
+ - 0.49041
+ - 0.494971
+ - - -1.80836
+ - 0.851961
+ - -1.090242
+ - - -1.450954
+ - 1.896262
+ - 0.29261
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-1-butanethiol.yml b/input/reference_sets/main/2-Methyl-1-butanethiol.yml
index 138b0c3a9a..bfdddae4be 100644
--- a/input/reference_sets/main/2-Methyl-1-butanethiol.yml
+++ b/input/reference_sets/main/2-Methyl-1-butanethiol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.393402241428472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.98287
+ - -1.345471
+ - 0.081009
+ - - 1.442365
+ - -0.057606
+ - -0.532452
+ - - 0.559766
+ - 0.770595
+ - 0.403992
+ - - 0.126029
+ - 2.071077
+ - -0.265799
+ - - -0.640245
+ - -0.008807
+ - 0.952624
+ - - -1.828976
+ - -0.632765
+ - -0.287464
+ - - 1.186738
+ - -2.054999
+ - 0.311285
+ - - 2.521969
+ - -1.143028
+ - 1.008816
+ - - 2.672913
+ - -1.842835
+ - -0.601107
+ - - 0.879032
+ - -0.284602
+ - -1.441613
+ - - 2.280769
+ - 0.569445
+ - -0.846363
+ - - 1.16379
+ - 1.025314
+ - 1.284639
+ - - -0.447709
+ - 2.697509
+ - 0.419646
+ - - -0.498049
+ - 1.866502
+ - -1.136329
+ - - 0.993529
+ - 2.64326
+ - -0.597213
+ - - -1.240356
+ - 0.643628
+ - 1.588446
+ - - -0.320651
+ - -0.845519
+ - 1.570627
+ - - -1.071441
+ - -1.629799
+ - -0.762197
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.014982345570155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.990481
+ - -1.345528
+ - 0.082683
+ - - 1.443654
+ - -0.059849
+ - -0.531851
+ - - 0.557565
+ - 0.77015
+ - 0.402972
+ - - 0.127364
+ - 2.074296
+ - -0.265337
+ - - -0.644206
+ - -0.008515
+ - 0.9521
+ - - -1.840542
+ - -0.632384
+ - -0.288112
+ - - 1.196284
+ - -2.056332
+ - 0.320052
+ - - 2.535384
+ - -1.140509
+ - 1.00764
+ - - 2.677537
+ - -1.844363
+ - -0.602764
+ - - 0.879642
+ - -0.291534
+ - -1.440067
+ - - 2.279325
+ - 0.569612
+ - -0.850063
+ - - 1.160374
+ - 1.023479
+ - 1.285532
+ - - -0.444446
+ - 2.701812
+ - 0.421846
+ - - -0.499055
+ - 1.873302
+ - -1.135957
+ - - 0.996603
+ - 2.644877
+ - -0.597214
+ - - -1.243492
+ - 0.643158
+ - 1.589509
+ - - -0.325211
+ - -0.847243
+ - 1.567848
+ - - -1.084916
+ - -1.632531
+ - -0.768271
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.8927255621565471
+ value: 0.8927255621565471
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9666491801
+ - -1.380307765
+ - 0.0831348656
+ - - 1.4511455077
+ - -0.0704441323
+ - -0.5359417483
+ - - 0.5770091669
+ - 0.7826087887
+ - 0.4079521436
+ - - 0.1496658256
+ - 2.0927867689
+ - -0.2756612725
+ - - -0.6406531089
+ - 0.0144255528
+ - 0.9695842257
+ - - -1.8264724236
+ - -0.641310815
+ - -0.2952832826
+ - - 1.1448938547
+ - -2.0788497328
+ - 0.3034631638
+ - - 2.5009105435
+ - -1.1864357125
+ - 1.0264129296
+ - - 2.6601472599
+ - -1.8922429579
+ - -0.6001592195
+ - - 0.8729503569
+ - -0.2870423101
+ - -1.4491535423
+ - - 2.3094712269
+ - 0.5439912312
+ - -0.8530353948
+ - - 1.1921061271
+ - 1.0359650546
+ - 1.2927242815
+ - - -0.4085698921
+ - 2.7390778767
+ - 0.4190996444
+ - - -0.4984832165
+ - 1.8783732382
+ - -1.1379550471
+ - - 1.0283394526
+ - 2.6504437017
+ - -0.6329101242
+ - - -1.2496416722
+ - 0.6852292638
+ - 1.5931871146
+ - - -0.3230250956
+ - -0.8215007876
+ - 1.606704507
+ - - -1.0284395959
+ - -1.640451104
+ - -0.7382550768
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.292760156216977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.99562
+ - -1.349636
+ - 0.08217
+ - - 1.445455
+ - -0.061457
+ - -0.533515
+ - - 0.55708
+ - 0.771367
+ - 0.403294
+ - - 0.127044
+ - 2.07976
+ - -0.265805
+ - - -0.648813
+ - -0.008394
+ - 0.953473
+ - - -1.847739
+ - -0.633693
+ - -0.289915
+ - - 1.199036
+ - -2.064494
+ - 0.318701
+ - - 2.540297
+ - -1.143087
+ - 1.01191
+ - - 2.687302
+ - -1.848636
+ - -0.605421
+ - - 0.876699
+ - -0.294318
+ - -1.4437
+ - - 2.282976
+ - 0.571417
+ - -0.855058
+ - - 1.161431
+ - 1.023276
+ - 1.290989
+ - - -0.445481
+ - 2.710005
+ - 0.42497
+ - - -0.503664
+ - 1.876436
+ - -1.138083
+ - - 0.999855
+ - 2.650896
+ - -0.601191
+ - - -1.251307
+ - 0.646748
+ - 1.592046
+ - - -0.329386
+ - -0.850875
+ - 1.572038
+ - - -1.084062
+ - -1.633416
+ - -0.766359
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.210470611966045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.029799
+ - -1.341258
+ - 0.092615
+ - - 1.444236
+ - -0.07126
+ - -0.533826
+ - - 0.551532
+ - 0.763585
+ - 0.402386
+ - - 0.134366
+ - 2.081533
+ - -0.261926
+ - - -0.665542
+ - -0.012403
+ - 0.942666
+ - - -1.887413
+ - -0.596183
+ - -0.305125
+ - - 1.249259
+ - -2.067149
+ - 0.369121
+ - - 2.603622
+ - -1.109916
+ - 1.004308
+ - - 2.710293
+ - -1.848438
+ - -0.607354
+ - - 0.865451
+ - -0.328318
+ - -1.438274
+ - - 2.26913
+ - 0.574196
+ - -0.879815
+ - - 1.153809
+ - 1.008571
+ - 1.3003
+ - - -0.436921
+ - 2.717796
+ - 0.431938
+ - - -0.498227
+ - 1.890465
+ - -1.14224
+ - - 1.016166
+ - 2.650719
+ - -0.592611
+ - - -1.259081
+ - 0.640414
+ - 1.60076
+ - - -0.357094
+ - -0.875534
+ - 1.547882
+ - - -1.161044
+ - -1.63492
+ - -0.78026
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.127446486038195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.003786
+ - -1.335732
+ - 0.086285
+ - - 1.439
+ - -0.064455
+ - -0.531355
+ - - 0.552655
+ - 0.7616
+ - 0.399349
+ - - 0.133718
+ - 2.067172
+ - -0.263484
+ - - -0.651617
+ - -0.010944
+ - 0.9419
+ - - -1.855623
+ - -0.612111
+ - -0.283596
+ - - 1.222267
+ - -2.055689
+ - 0.334337
+ - - 2.553424
+ - -1.118254
+ - 1.004554
+ - - 2.691717
+ - -1.830106
+ - -0.600085
+ - - 0.875088
+ - -0.307749
+ - -1.435908
+ - - 2.265954
+ - 0.570916
+ - -0.857942
+ - - 1.152656
+ - 1.010504
+ - 1.2838
+ - - -0.442311
+ - 2.69268
+ - 0.420776
+ - - -0.483557
+ - 1.876544
+ - -1.142037
+ - - 1.007264
+ - 2.637309
+ - -0.581999
+ - - -1.237705
+ - 0.641058
+ - 1.590239
+ - - -0.335735
+ - -0.853882
+ - 1.552621
+ - - -1.128638
+ - -1.626962
+ - -0.766908
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.753251832350124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034306
+ - -1.341061
+ - 0.091619
+ - - 1.445803
+ - -0.072673
+ - -0.535223
+ - - 0.548742
+ - 0.760119
+ - 0.398182
+ - - 0.13446
+ - 2.078762
+ - -0.266435
+ - - -0.66494
+ - -0.012507
+ - 0.947807
+ - - -1.906845
+ - -0.599914
+ - -0.284007
+ - - 1.26268
+ - -2.06997
+ - 0.355961
+ - - 2.595052
+ - -1.109714
+ - 1.002926
+ - - 2.720763
+ - -1.834807
+ - -0.601205
+ - - 0.880906
+ - -0.330188
+ - -1.438455
+ - - 2.26678
+ - 0.57034
+ - -0.870945
+ - - 1.147732
+ - 1.007677
+ - 1.287577
+ - - -0.449444
+ - 2.702181
+ - 0.417482
+ - - -0.475174
+ - 1.895429
+ - -1.15487
+ - - 1.014169
+ - 2.651879
+ - -0.571591
+ - - -1.245556
+ - 0.638597
+ - 1.605735
+ - - -0.355093
+ - -0.869209
+ - 1.546519
+ - - -1.191997
+ - -1.623042
+ - -0.780531
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.966646103593565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.969148
+ - -1.345869
+ - 0.079411
+ - - 1.43913
+ - -0.054818
+ - -0.532825
+ - - 0.562628
+ - 0.772881
+ - 0.406588
+ - - 0.124567
+ - 2.069493
+ - -0.264119
+ - - -0.634763
+ - -0.008931
+ - 0.953443
+ - - -1.804393
+ - -0.640379
+ - -0.290869
+ - - 1.166589
+ - -2.050599
+ - 0.306844
+ - - 2.505819
+ - -1.147387
+ - 1.010139
+ - - 2.658321
+ - -1.84811
+ - -0.599949
+ - - 0.871536
+ - -0.275051
+ - -1.442174
+ - - 2.280049
+ - 0.56934
+ - -0.847032
+ - - 1.169916
+ - 1.027925
+ - 1.28511
+ - - -0.446807
+ - 2.698163
+ - 0.421728
+ - - -0.503992
+ - 1.859406
+ - -1.131222
+ - - 0.989727
+ - 2.641053
+ - -0.603801
+ - - -1.240133
+ - 0.643285
+ - 1.584793
+ - - -0.313384
+ - -0.840824
+ - 1.577664
+ - - -1.031615
+ - -1.627677
+ - -0.763183
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.883472274069593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.969148
+ - -1.345869
+ - 0.079411
+ - - 1.43913
+ - -0.054818
+ - -0.532825
+ - - 0.562628
+ - 0.772881
+ - 0.406588
+ - - 0.124567
+ - 2.069493
+ - -0.264119
+ - - -0.634763
+ - -0.008931
+ - 0.953443
+ - - -1.804393
+ - -0.640379
+ - -0.290869
+ - - 1.166589
+ - -2.050599
+ - 0.306844
+ - - 2.505819
+ - -1.147387
+ - 1.010139
+ - - 2.658321
+ - -1.84811
+ - -0.599949
+ - - 0.871536
+ - -0.275051
+ - -1.442174
+ - - 2.280049
+ - 0.56934
+ - -0.847031
+ - - 1.169916
+ - 1.027925
+ - 1.28511
+ - - -0.446807
+ - 2.698163
+ - 0.421728
+ - - -0.503992
+ - 1.859406
+ - -1.131222
+ - - 0.989727
+ - 2.641053
+ - -0.603801
+ - - -1.240133
+ - 0.643285
+ - 1.584793
+ - - -0.313384
+ - -0.840824
+ - 1.577664
+ - - -1.031615
+ - -1.627677
+ - -0.763183
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.796624609890237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.969148
+ - -1.345869
+ - 0.079411
+ - - 1.43913
+ - -0.054818
+ - -0.532825
+ - - 0.562628
+ - 0.772881
+ - 0.406588
+ - - 0.124567
+ - 2.069493
+ - -0.264119
+ - - -0.634763
+ - -0.008931
+ - 0.953443
+ - - -1.804393
+ - -0.640379
+ - -0.290869
+ - - 1.166589
+ - -2.050599
+ - 0.306844
+ - - 2.505819
+ - -1.147387
+ - 1.010139
+ - - 2.658321
+ - -1.84811
+ - -0.599949
+ - - 0.871536
+ - -0.275051
+ - -1.442174
+ - - 2.280049
+ - 0.56934
+ - -0.847031
+ - - 1.169916
+ - 1.027925
+ - 1.28511
+ - - -0.446807
+ - 2.698163
+ - 0.421728
+ - - -0.503992
+ - 1.859406
+ - -1.131222
+ - - 0.989727
+ - 2.641053
+ - -0.603801
+ - - -1.240133
+ - 0.643285
+ - 1.584793
+ - - -0.313384
+ - -0.840824
+ - 1.577664
+ - - -1.031615
+ - -1.627677
+ - -0.763183
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.913254677618372
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.030625
+ - -1.341067
+ - 0.091452
+ - - 1.443241
+ - -0.072865
+ - -0.536419
+ - - 0.549812
+ - 0.760328
+ - 0.399096
+ - - 0.134608
+ - 2.0788
+ - -0.264485
+ - - -0.664586
+ - -0.011538
+ - 0.948496
+ - - -1.898488
+ - -0.607097
+ - -0.283205
+ - - 1.256043
+ - -2.06792
+ - 0.358567
+ - - 2.592935
+ - -1.109677
+ - 1.003313
+ - - 2.71572
+ - -1.838747
+ - -0.601805
+ - - 0.874391
+ - -0.33189
+ - -1.438346
+ - - 2.264798
+ - 0.569423
+ - -0.876541
+ - - 1.150041
+ - 1.006034
+ - 1.28969
+ - - -0.446764
+ - 2.70408
+ - 0.421774
+ - - -0.479856
+ - 1.895053
+ - -1.151115
+ - - 1.014506
+ - 2.651376
+ - -0.5746
+ - - -1.250875
+ - 0.641951
+ - 1.60126
+ - - -0.354189
+ - -0.865869
+ - 1.55296
+ - - -1.169618
+ - -1.618477
+ - -0.789544
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.805117034274605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.948383
+ - -1.352903
+ - 0.073463
+ - - 1.443948
+ - -0.048593
+ - -0.53245
+ - - 0.566351
+ - 0.779575
+ - 0.40629
+ - - 0.117369
+ - 2.069511
+ - -0.269851
+ - - -0.62209
+ - -0.008564
+ - 0.963377
+ - - -1.788433
+ - -0.661312
+ - -0.271727
+ - - 1.133672
+ - -2.053893
+ - 0.266371
+ - - 2.457943
+ - -1.171708
+ - 1.022529
+ - - 2.653097
+ - -1.848915
+ - -0.594002
+ - - 0.884478
+ - -0.252481
+ - -1.450406
+ - - 2.296744
+ - 0.567388
+ - -0.828844
+ - - 1.175754
+ - 1.042019
+ - 1.280509
+ - - -0.4548
+ - 2.698157
+ - 0.414873
+ - - -0.513381
+ - 1.848043
+ - -1.1325
+ - - 0.977927
+ - 2.643275
+ - -0.616684
+ - - -1.234138
+ - 0.642751
+ - 1.589035
+ - - -0.289932
+ - -0.833053
+ - 1.592159
+ - - -0.990551
+ - -1.617398
+ - -0.761596
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.554228337886936
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.9666491801
- - -1.380307765
- - 0.0831348656
- - - 1.4511455077
- - -0.0704441323
- - -0.5359417483
- - - 0.5770091669
- - 0.7826087887
- - 0.4079521436
- - - 0.1496658256
- - 2.0927867689
- - -0.2756612725
- - - -0.6406531089
- - 0.0144255528
- - 0.9695842257
- - - -1.8264724236
- - -0.641310815
- - -0.2952832826
- - - 1.1448938547
- - -2.0788497328
- - 0.3034631638
- - - 2.5009105435
- - -1.1864357125
- - 1.0264129296
- - - 2.6601472599
- - -1.8922429579
- - -0.6001592195
- - - 0.8729503569
- - -0.2870423101
- - -1.4491535423
- - - 2.3094712269
- - 0.5439912312
- - -0.8530353948
- - - 1.1921061271
- - 1.0359650546
- - 1.2927242815
- - - -0.4085698921
- - 2.7390778767
- - 0.4190996444
- - - -0.4984832165
- - 1.8783732382
- - -1.1379550471
- - - 1.0283394526
- - 2.6504437017
- - -0.6329101242
- - - -1.2496416722
- - 0.6852292638
- - 1.5931871146
- - - -0.3230250956
- - -0.8215007876
- - 1.606704507
- - - -1.0284395959
- - -1.640451104
- - -0.7382550768
+ - - 1.999073
+ - -1.334918
+ - 0.086438
+ - - 1.437939
+ - -0.063374
+ - -0.528794
+ - - 0.554579
+ - 0.763005
+ - 0.401827
+ - - 0.132833
+ - 2.06498
+ - -0.261798
+ - - -0.64881
+ - -0.010363
+ - 0.940491
+ - - -1.842008
+ - -0.607947
+ - -0.292604
+ - - 1.213762
+ - -2.052211
+ - 0.340177
+ - - 2.555406
+ - -1.119814
+ - 1.003569
+ - - 2.68206
+ - -1.835709
+ - -0.603336
+ - - 0.868399
+ - -0.303635
+ - -1.43392
+ - - 2.266237
+ - 0.57246
+ - -0.858851
+ - - 1.155098
+ - 1.011479
+ - 1.289497
+ - - -0.435219
+ - 2.697424
+ - 0.425833
+ - - -0.496745
+ - 1.867814
+ - -1.133156
+ - - 1.005066
+ - 2.63205
+ - -0.595752
+ - - -1.242782
+ - 0.641131
+ - 1.586678
+ - - -0.33637
+ - -0.856523
+ - 1.553566
+ - - -1.106177
+ - -1.623949
+ - -0.769317
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.290146018108821
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.023002
+ - -1.343048
+ - 0.091622
+ - - 1.442825
+ - -0.069044
+ - -0.534279
+ - - 0.555265
+ - 0.765325
+ - 0.407008
+ - - 0.132217
+ - 2.079895
+ - -0.261439
+ - - -0.661811
+ - -0.010859
+ - 0.946678
+ - - -1.869729
+ - -0.60104
+ - -0.310955
+ - - 1.239594
+ - -2.058397
+ - 0.367987
+ - - 2.597103
+ - -1.113046
+ - 0.997388
+ - - 2.695071
+ - -1.849993
+ - -0.609132
+ - - 0.86273
+ - -0.323085
+ - -1.43192
+ - - 2.267198
+ - 0.570582
+ - -0.875595
+ - - 1.156028
+ - 1.011665
+ - 1.29816
+ - - -0.434299
+ - 2.713341
+ - 0.431333
+ - - -0.500556
+ - 1.88132
+ - -1.133481
+ - - 1.009556
+ - 2.644466
+ - -0.595892
+ - - -1.259509
+ - 0.640901
+ - 1.592496
+ - - -0.356596
+ - -0.86955
+ - 1.549714
+ - - -1.135746
+ - -1.627533
+ - -0.779146
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.552510132068903
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9691475225
+ - -1.3458686693
+ - 0.0794106004
+ - - 1.439129744
+ - -0.0548183669
+ - -0.5328252535
+ - - 0.5626282959
+ - 0.7728808852
+ - 0.4065877202
+ - - 0.1245670731
+ - 2.0694932947
+ - -0.2641190751
+ - - -0.6347634552
+ - -0.008930556
+ - 0.9534431576
+ - - -1.8043925656
+ - -0.6403788446
+ - -0.2908688
+ - - 1.1665889891
+ - -2.0505989588
+ - 0.3068439166
+ - - 2.5058190316
+ - -1.1473869462
+ - 1.0101388173
+ - - 2.6583209314
+ - -1.8481102659
+ - -0.5999493129
+ - - 0.8715355451
+ - -0.2750512387
+ - -1.4421736745
+ - - 2.2800486722
+ - 0.5693397623
+ - -0.8470315001
+ - - 1.1699162536
+ - 1.0279245145
+ - 1.2851102042
+ - - -0.4468070234
+ - 2.6981626739
+ - 0.4217284911
+ - - -0.5039918403
+ - 1.8594057807
+ - -1.1312224006
+ - - 0.9897269648
+ - 2.6410530315
+ - -0.6038014842
+ - - -1.2401329078
+ - 0.643285245
+ - 1.5847932602
+ - - -0.3133841315
+ - -0.8408243321
+ - 1.5776643924
+ - - -1.0316145163
+ - -1.6276772786
+ - -0.763182806
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.94324459585261
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.980517
+ - -1.345909
+ - 0.078106
+ - - 1.442887
+ - -0.057442
+ - -0.531761
+ - - 0.556372
+ - 0.769898
+ - 0.400897
+ - - 0.126827
+ - 2.070682
+ - -0.268493
+ - - -0.641657
+ - -0.009052
+ - 0.953599
+ - - -1.832853
+ - -0.642044
+ - -0.268834
+ - - 1.183619
+ - -2.061813
+ - 0.291802
+ - - 2.50605
+ - -1.148377
+ - 1.015693
+ - - 2.681861
+ - -1.834631
+ - -0.599519
+ - - 0.884874
+ - -0.282267
+ - -1.446058
+ - - 2.283004
+ - 0.570574
+ - -0.840636
+ - - 1.159473
+ - 1.025754
+ - 1.281864
+ - - -0.449126
+ - 2.697436
+ - 0.41579
+ - - -0.494435
+ - 1.86871
+ - -1.143279
+ - - 0.997016
+ - 2.642384
+ - -0.596053
+ - - -1.238196
+ - 0.644994
+ - 1.591898
+ - - -0.315543
+ - -0.841516
+ - 1.575653
+ - - -1.068346
+ - -1.62548
+ - -0.760122
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-1-propanamine.yml b/input/reference_sets/main/2-Methyl-1-propanamine.yml
index b0617e2bd7..17e4774214 100644
--- a/input/reference_sets/main/2-Methyl-1-propanamine.yml
+++ b/input/reference_sets/main/2-Methyl-1-propanamine.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.672804032596533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.721838
+ - -0.78346
+ - 0.005404
+ - - -0.459746
+ - 0.002378
+ - -0.341755
+ - - -0.585751
+ - 1.455994
+ - 0.104804
+ - - 0.769026
+ - -0.680562
+ - 0.274128
+ - - 2.077203
+ - -0.119574
+ - -0.048892
+ - - -1.651127
+ - -1.819081
+ - -0.331562
+ - - -2.605335
+ - -0.339832
+ - -0.455628
+ - - -1.882745
+ - -0.795029
+ - 1.086298
+ - - -0.332703
+ - -0.013876
+ - -1.431191
+ - - -1.460144
+ - 1.930499
+ - -0.342737
+ - - -0.695134
+ - 1.51486
+ - 1.191123
+ - - 0.286635
+ - 2.046116
+ - -0.178286
+ - - 0.775601
+ - -1.730509
+ - -0.029464
+ - - 0.664879
+ - -0.676578
+ - 1.363633
+ - - 2.159533
+ - 0.828766
+ - 0.294485
+ - - 2.211177
+ - -0.085017
+ - -1.052772
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.29339287286993
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.72471
+ - -0.785987
+ - 0.004672
+ - - -0.461565
+ - 0.003429
+ - -0.337521
+ - - -0.588862
+ - 1.459124
+ - 0.107521
+ - - 0.771959
+ - -0.679374
+ - 0.276021
+ - - 2.079267
+ - -0.120364
+ - -0.054062
+ - - -1.651767
+ - -1.821071
+ - -0.336247
+ - - -2.608482
+ - -0.3417
+ - -0.457177
+ - - -1.889441
+ - -0.802606
+ - 1.085801
+ - - -0.333382
+ - -0.011282
+ - -1.427642
+ - - -1.45793
+ - 1.936406
+ - -0.34928
+ - - -0.708269
+ - 1.520939
+ - 1.193408
+ - - 0.289089
+ - 2.046189
+ - -0.168287
+ - - 0.775748
+ - -1.73111
+ - -0.02443
+ - - 0.672484
+ - -0.673621
+ - 1.366724
+ - - 2.168962
+ - 0.828942
+ - 0.286297
+ - - 2.21643
+ - -0.092819
+ - -1.05821
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -6.373669050384909
+ value: -6.373669050384909
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7438828257
+ - -0.7781924535
+ - 0.0088088489
+ - - -0.4653176194
+ - 0.0024472273
+ - -0.3467183232
+ - - -0.575253366
+ - 1.4674898467
+ - 0.110072445
+ - - 0.7753891903
+ - -0.696798501
+ - 0.2656625886
+ - - 2.0939557977
+ - -0.12716105
+ - -0.0494711951
+ - - -1.6818006679
+ - -1.8227385953
+ - -0.3336180553
+ - - -2.6329420214
+ - -0.3199064402
+ - -0.4499819286
+ - - -1.8957134273
+ - -0.7894137417
+ - 1.1003230787
+ - - -0.3441773896
+ - -0.0099363633
+ - -1.445998185
+ - - -1.4546424062
+ - 1.9563469366
+ - -0.3350890301
+ - - -0.677359445
+ - 1.5201582511
+ - 1.2065647769
+ - - 0.3126010297
+ - 2.050247129
+ - -0.178978729
+ - - 0.7809603441
+ - -1.7513268631
+ - -0.0571805498
+ - - 0.667404248
+ - -0.7064429861
+ - 1.3639396162
+ - - 2.1453000287
+ - 0.8273272618
+ - 0.3160636363
+ - - 2.1770668481
+ - -0.0338639556
+ - -1.06669962
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.18732993548785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.728687
+ - -0.787891
+ - 0.004374
+ - - -0.461366
+ - 0.002881
+ - -0.338435
+ - - -0.587944
+ - 1.462625
+ - 0.106805
+ - - 0.776308
+ - -0.682906
+ - 0.277289
+ - - 2.091138
+ - -0.124939
+ - -0.050705
+ - - -1.655094
+ - -1.827522
+ - -0.336338
+ - - -2.615426
+ - -0.341744
+ - -0.460137
+ - - -1.893813
+ - -0.802673
+ - 1.089684
+ - - -0.331639
+ - -0.012618
+ - -1.43292
+ - - -1.460908
+ - 1.941746
+ - -0.350753
+ - - -0.705773
+ - 1.524585
+ - 1.197048
+ - - 0.293787
+ - 2.050944
+ - -0.171905
+ - - 0.778936
+ - -1.738766
+ - -0.025603
+ - - 0.674903
+ - -0.676783
+ - 1.372292
+ - - 2.165434
+ - 0.830789
+ - 0.287861
+ - - 2.209674
+ - -0.082633
+ - -1.060971
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.5209276740946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.730519
+ - -0.790647
+ - 0.004493
+ - - -0.463536
+ - 0.005699
+ - -0.336405
+ - - -0.593238
+ - 1.467004
+ - 0.110393
+ - - 0.778846
+ - -0.680413
+ - 0.277428
+ - - 2.097594
+ - -0.128552
+ - -0.053954
+ - - -1.655402
+ - -1.833804
+ - -0.340387
+ - - -2.62329
+ - -0.345759
+ - -0.46071
+ - - -1.89942
+ - -0.81061
+ - 1.094024
+ - - -0.333632
+ - -0.008138
+ - -1.436212
+ - - -1.460384
+ - 1.953825
+ - -0.361198
+ - - -0.728627
+ - 1.530851
+ - 1.203379
+ - - 0.29751
+ - 2.057473
+ - -0.154938
+ - - 0.7787
+ - -1.742355
+ - -0.022914
+ - - 0.681062
+ - -0.67436
+ - 1.378105
+ - - 2.17843
+ - 0.835995
+ - 0.275774
+ - - 2.225435
+ - -0.101113
+ - -1.069291
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.00118536206387
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.718843
+ - -0.7836
+ - 0.003826
+ - - -0.460593
+ - 0.004888
+ - -0.336223
+ - - -0.590692
+ - 1.455453
+ - 0.108445
+ - - 0.76841
+ - -0.674813
+ - 0.275402
+ - - 2.069374
+ - -0.119502
+ - -0.058133
+ - - -1.646591
+ - -1.817126
+ - -0.339104
+ - - -2.60265
+ - -0.339389
+ - -0.455948
+ - - -1.883447
+ - -0.803062
+ - 1.084116
+ - - -0.33219
+ - -0.008909
+ - -1.425357
+ - - -1.459524
+ - 1.931157
+ - -0.348531
+ - - -0.712198
+ - 1.516748
+ - 1.193337
+ - - 0.284866
+ - 2.045278
+ - -0.165417
+ - - 0.770512
+ - -1.727
+ - -0.020635
+ - - 0.670626
+ - -0.667085
+ - 1.365535
+ - - 2.174326
+ - 0.8251
+ - 0.285122
+ - - 2.218143
+ - -0.103041
+ - -1.058847
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.485361588870486
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.732128
+ - -0.789868
+ - 0.008021
+ - - -0.46377
+ - 0.001905
+ - -0.335306
+ - - -0.589743
+ - 1.464884
+ - 0.105782
+ - - 0.779054
+ - -0.683268
+ - 0.275307
+ - - 2.090547
+ - -0.122566
+ - -0.055159
+ - - -1.659878
+ - -1.827077
+ - -0.332893
+ - - -2.617242
+ - -0.34645
+ - -0.456738
+ - - -1.900673
+ - -0.806808
+ - 1.090444
+ - - -0.338365
+ - -0.013763
+ - -1.427762
+ - - -1.451281
+ - 1.947854
+ - -0.363702
+ - - -0.720875
+ - 1.534305
+ - 1.191717
+ - - 0.296592
+ - 2.046028
+ - -0.163527
+ - - 0.783423
+ - -1.735667
+ - -0.029932
+ - - 0.683644
+ - -0.684232
+ - 1.368251
+ - - 2.177856
+ - 0.825285
+ - 0.295777
+ - - 2.212369
+ - -0.075466
+ - -1.062692
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.86066187592426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.718208
+ - -0.782632
+ - 0.003056
+ - - -0.458108
+ - 0.003034
+ - -0.343924
+ - - -0.586182
+ - 1.453621
+ - 0.106744
+ - - 0.76625
+ - -0.678166
+ - 0.275551
+ - - 2.071951
+ - -0.119064
+ - -0.052453
+ - - -1.648344
+ - -1.818004
+ - -0.33611
+ - - -2.602707
+ - -0.336693
+ - -0.454365
+ - - -1.875371
+ - -0.79558
+ - 1.085272
+ - - -0.328055
+ - -0.011832
+ - -1.433574
+ - - -1.460478
+ - 1.928528
+ - -0.341353
+ - - -0.699352
+ - 1.506359
+ - 1.193771
+ - - 0.286356
+ - 2.046816
+ - -0.171289
+ - - 0.770537
+ - -1.731122
+ - -0.019615
+ - - 0.659939
+ - -0.666735
+ - 1.365642
+ - - 2.160011
+ - 0.830531
+ - 0.286036
+ - - 2.211291
+ - -0.093965
+ - -1.055801
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.155162037857462
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.718208
+ - -0.782632
+ - 0.003056
+ - - -0.458108
+ - 0.003034
+ - -0.343924
+ - - -0.586182
+ - 1.453621
+ - 0.106744
+ - - 0.76625
+ - -0.678166
+ - 0.275551
+ - - 2.071951
+ - -0.119064
+ - -0.052453
+ - - -1.648344
+ - -1.818004
+ - -0.33611
+ - - -2.602707
+ - -0.336693
+ - -0.454365
+ - - -1.875371
+ - -0.79558
+ - 1.085272
+ - - -0.328055
+ - -0.011832
+ - -1.433574
+ - - -1.460478
+ - 1.928528
+ - -0.341353
+ - - -0.699352
+ - 1.506359
+ - 1.193771
+ - - 0.286356
+ - 2.046816
+ - -0.171289
+ - - 0.770537
+ - -1.731122
+ - -0.019615
+ - - 0.659939
+ - -0.666735
+ - 1.365642
+ - - 2.160011
+ - 0.830531
+ - 0.286036
+ - - 2.211291
+ - -0.093965
+ - -1.055801
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.449654300584683
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.718208
+ - -0.782632
+ - 0.003056
+ - - -0.458108
+ - 0.003034
+ - -0.343924
+ - - -0.586182
+ - 1.453621
+ - 0.106744
+ - - 0.76625
+ - -0.678166
+ - 0.275551
+ - - 2.071951
+ - -0.119064
+ - -0.052453
+ - - -1.648344
+ - -1.818004
+ - -0.33611
+ - - -2.602707
+ - -0.336693
+ - -0.454365
+ - - -1.875371
+ - -0.79558
+ - 1.085272
+ - - -0.328055
+ - -0.011832
+ - -1.433574
+ - - -1.460478
+ - 1.928528
+ - -0.341353
+ - - -0.699352
+ - 1.506359
+ - 1.193771
+ - - 0.286356
+ - 2.046816
+ - -0.171289
+ - - 0.770537
+ - -1.731122
+ - -0.019615
+ - - 0.659939
+ - -0.666735
+ - 1.365642
+ - - 2.160011
+ - 0.830531
+ - 0.286036
+ - - 2.211291
+ - -0.093965
+ - -1.055801
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.740734276771246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.728423
+ - -0.789961
+ - 0.003675
+ - - -0.45986
+ - 0.003468
+ - -0.334708
+ - - -0.589647
+ - 1.465337
+ - 0.109895
+ - - 0.779599
+ - -0.68177
+ - 0.280114
+ - - 2.092429
+ - -0.128229
+ - -0.055427
+ - - -1.655543
+ - -1.827042
+ - -0.341173
+ - - -2.614361
+ - -0.343903
+ - -0.459825
+ - - -1.898614
+ - -0.812098
+ - 1.086984
+ - - -0.330031
+ - -0.009911
+ - -1.427907
+ - - -1.452216
+ - 1.948189
+ - -0.360705
+ - - -0.724454
+ - 1.532501
+ - 1.196693
+ - - 0.297201
+ - 2.050642
+ - -0.154248
+ - - 0.779769
+ - -1.738003
+ - -0.0182
+ - - 0.684569
+ - -0.674574
+ - 1.374761
+ - - 2.165558
+ - 0.82977
+ - 0.272894
+ - - 2.203553
+ - -0.089318
+ - -1.065235
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.220338917773685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.721502
+ - -0.780489
+ - 0.008721
+ - - -0.459965
+ - -0.002562
+ - -0.349661
+ - - -0.577003
+ - 1.450417
+ - 0.095875
+ - - 0.764945
+ - -0.685659
+ - 0.267476
+ - - 2.06682
+ - -0.110592
+ - -0.041219
+ - - -1.654209
+ - -1.820031
+ - -0.317041
+ - - -2.605588
+ - -0.337743
+ - -0.452102
+ - - -1.874199
+ - -0.778406
+ - 1.091354
+ - - -0.335852
+ - -0.022587
+ - -1.439195
+ - - -1.46141
+ - 1.923096
+ - -0.333874
+ - - -0.664334
+ - 1.507122
+ - 1.184884
+ - - 0.289903
+ - 2.039829
+ - -0.20587
+ - - 0.779352
+ - -1.733415
+ - -0.044563
+ - - 0.651256
+ - -0.690991
+ - 1.356612
+ - - 2.147622
+ - 0.827573
+ - 0.329776
+ - - 2.203696
+ - -0.050465
+ - -1.043585
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.251650688814383
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.7438828257
- - -0.7781924535
- - 0.0088088489
- - - -0.4653176194
- - 0.0024472273
- - -0.3467183232
- - - -0.575253366
- - 1.4674898467
- - 0.110072445
- - - 0.7753891903
- - -0.696798501
- - 0.2656625886
- - - 2.0939557977
- - -0.12716105
- - -0.0494711951
- - - -1.6818006679
- - -1.8227385953
- - -0.3336180553
- - - -2.6329420214
- - -0.3199064402
- - -0.4499819286
- - - -1.8957134273
- - -0.7894137417
- - 1.1003230787
- - - -0.3441773896
- - -0.0099363633
- - -1.445998185
- - - -1.4546424062
- - 1.9563469366
- - -0.3350890301
- - - -0.677359445
- - 1.5201582511
- - 1.2065647769
- - - 0.3126010297
- - 2.050247129
- - -0.178978729
- - - 0.7809603441
- - -1.7513268631
- - -0.0571805498
- - - 0.667404248
- - -0.7064429861
- - 1.3639396162
- - - 2.1453000287
- - 0.8273272618
- - 0.3160636363
- - - 2.1770668481
- - -0.0338639556
- - -1.06669962
+ - - -1.715927
+ - -0.782461
+ - 0.005145
+ - - -0.459358
+ - 0.004681
+ - -0.33707
+ - - -0.587227
+ - 1.453979
+ - 0.10665
+ - - 0.769783
+ - -0.675365
+ - 0.273115
+ - - 2.070927
+ - -0.121851
+ - -0.052503
+ - - -1.643581
+ - -1.818986
+ - -0.335272
+ - - -2.602699
+ - -0.339579
+ - -0.45496
+ - - -1.879775
+ - -0.799503
+ - 1.087615
+ - - -0.331907
+ - -0.00988
+ - -1.428961
+ - - -1.455506
+ - 1.933289
+ - -0.352335
+ - - -0.710805
+ - 1.51605
+ - 1.193269
+ - - 0.291712
+ - 2.043678
+ - -0.165995
+ - - 0.770485
+ - -1.729353
+ - -0.026136
+ - - 0.667149
+ - -0.673034
+ - 1.3654
+ - - 2.158255
+ - 0.827859
+ - 0.285469
+ - - 2.208003
+ - -0.094431
+ - -1.055845
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.737553936224408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.731173
+ - -0.789819
+ - 0.004535
+ - - -0.462414
+ - 0.004819
+ - -0.337673
+ - - -0.592124
+ - 1.466059
+ - 0.111595
+ - - 0.776455
+ - -0.682639
+ - 0.279883
+ - - 2.096407
+ - -0.127366
+ - -0.053512
+ - - -1.65468
+ - -1.828137
+ - -0.339053
+ - - -2.61757
+ - -0.34427
+ - -0.460927
+ - - -1.897584
+ - -0.807176
+ - 1.089271
+ - - -0.333432
+ - -0.008661
+ - -1.431576
+ - - -1.455847
+ - 1.948564
+ - -0.359441
+ - - -0.727147
+ - 1.526266
+ - 1.199578
+ - - 0.296214
+ - 2.051679
+ - -0.152385
+ - - 0.780836
+ - -1.737852
+ - -0.022357
+ - - 0.682435
+ - -0.671828
+ - 1.374597
+ - - 2.169903
+ - 0.836024
+ - 0.271216
+ - - 2.219251
+ - -0.100567
+ - -1.066163
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.522716138903373
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7182076514
+ - -0.7826320562
+ - 0.0030555215
+ - - -0.4581076369
+ - 0.003034241
+ - -0.3439242103
+ - - -0.586181966
+ - 1.4536212892
+ - 0.1067436123
+ - - 0.7662501857
+ - -0.6781659944
+ - 0.2755507891
+ - - 2.0719508222
+ - -0.1190638382
+ - -0.0524527376
+ - - -1.6483443624
+ - -1.8180042039
+ - -0.3361100814
+ - - -2.6027070946
+ - -0.3366930289
+ - -0.4543650774
+ - - -1.8753709199
+ - -0.7955803521
+ - 1.0852724233
+ - - -0.3280547242
+ - -0.0118319638
+ - -1.4335736397
+ - - -1.4604783116
+ - 1.9285278414
+ - -0.3413531754
+ - - -0.6993523555
+ - 1.5063587479
+ - 1.1937712875
+ - - 0.2863559611
+ - 2.0468160367
+ - -0.1712885525
+ - - 0.7705367943
+ - -1.731121969
+ - -0.019614884
+ - - 0.6599394759
+ - -0.6667347447
+ - 1.365642183
+ - - 2.1600110913
+ - 0.8305309968
+ - 0.2860356676
+ - - 2.2112911019
+ - -0.0939653713
+ - -1.0558012632
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.35460986509449
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.721081
+ - -0.783273
+ - 0.00653
+ - - -0.46028
+ - 0.001863
+ - -0.340456
+ - - -0.585019
+ - 1.455689
+ - 0.101731
+ - - 0.769951
+ - -0.680709
+ - 0.272335
+ - - 2.071482
+ - -0.118568
+ - -0.049989
+ - - -1.650093
+ - -1.819684
+ - -0.330457
+ - - -2.604798
+ - -0.339117
+ - -0.455286
+ - - -1.882363
+ - -0.794646
+ - 1.088367
+ - - -0.334921
+ - -0.015042
+ - -1.430384
+ - - -1.462611
+ - 1.92826
+ - -0.343349
+ - - -0.688231
+ - 1.518958
+ - 1.189331
+ - - 0.286426
+ - 2.045243
+ - -0.189419
+ - - 0.775159
+ - -1.731193
+ - -0.032977
+ - - 0.665545
+ - -0.681406
+ - 1.362842
+ - - 2.164878
+ - 0.820853
+ - 0.310506
+ - - 2.205488
+ - -0.072133
+ - -1.051738
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-1-propanethiol.yml b/input/reference_sets/main/2-Methyl-1-propanethiol.yml
index 6ee1c64346..91f83cfde9 100644
--- a/input/reference_sets/main/2-Methyl-1-propanethiol.yml
+++ b/input/reference_sets/main/2-Methyl-1-propanethiol.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.131153308037337
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.997043
+ - -1.458665
+ - -0.096392
+ - - -0.878317
+ - -0.000975
+ - 0.335705
+ - - -2.162612
+ - 0.765271
+ - 0.018161
+ - - 0.304776
+ - 0.701693
+ - -0.33012
+ - - 1.958444
+ - 0.076431
+ - 0.117627
+ - - -1.868292
+ - -1.928296
+ - 0.361654
+ - - -1.11227
+ - -1.53063
+ - -1.181365
+ - - -0.119687
+ - -2.035983
+ - 0.193238
+ - - -0.712384
+ - 0.027248
+ - 1.416652
+ - - -3.021008
+ - 0.308066
+ - 0.511903
+ - - -2.099482
+ - 1.803837
+ - 0.346943
+ - - -2.358919
+ - 0.764889
+ - -1.056728
+ - - 0.33075
+ - 1.750227
+ - -0.029671
+ - - 0.201092
+ - 0.682337
+ - -1.416417
+ - - 1.909669
+ - -1.065013
+ - -0.579957
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.957595054935753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.999273
+ - -1.46109
+ - -0.099355
+ - - -0.879543
+ - -0.00135
+ - 0.331256
+ - - -2.165732
+ - 0.767941
+ - 0.019894
+ - - 0.305933
+ - 0.702015
+ - -0.333307
+ - - 1.964968
+ - 0.082458
+ - 0.121863
+ - - -1.865994
+ - -1.932881
+ - 0.366704
+ - - -1.122723
+ - -1.536118
+ - -1.183941
+ - - -0.117264
+ - -2.035831
+ - 0.184271
+ - - -0.712199
+ - 0.025285
+ - 1.4126
+ - - -3.023414
+ - 0.308815
+ - 0.514808
+ - - -2.10091
+ - 1.805756
+ - 0.353368
+ - - -2.36667
+ - 0.773106
+ - -1.054945
+ - - 0.329869
+ - 1.751659
+ - -0.035933
+ - - 0.207631
+ - 0.67982
+ - -1.420255
+ - - 1.920037
+ - -1.069146
+ - -0.565795
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.4359026761519853
+ value: -0.4359026761519853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0008619459
+ - -1.4692464328
+ - -0.096799405
+ - - -0.8887037637
+ - 0.0002718882
+ - 0.3433712306
+ - - -2.1869149548
+ - 0.7665845428
+ - 0.0166872543
+ - - 0.3004900707
+ - 0.7151337517
+ - -0.3283670358
+ - - 1.976921161
+ - 0.072206888
+ - 0.1153474759
+ - - -1.881410343
+ - -1.9453736991
+ - 0.3593236783
+ - - -1.1097350811
+ - -1.5358648015
+ - -1.1919252619
+ - - -0.1134804712
+ - -2.0461972724
+ - 0.2000623544
+ - - -0.7242206465
+ - 0.0279502053
+ - 1.4329290168
+ - - -3.0512688179
+ - 0.2965094473
+ - 0.5090150741
+ - - -2.1302259041
+ - 1.8138873231
+ - 0.3507046303
+ - - -2.3750906634
+ - 0.7648588191
+ - -1.0689945231
+ - - 0.325516711
+ - 1.771767214
+ - -0.0233109333
+ - - 0.1893782123
+ - 0.6944267285
+ - -1.4236526524
+ - - 1.89574199
+ - -1.0737366729
+ - -0.5990632619
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.326400358324483
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.999546
+ - -1.465503
+ - -0.098637
+ - - -0.880069
+ - -0.002118
+ - 0.333275
+ - - -2.168992
+ - 0.770498
+ - 0.019778
+ - - 0.308791
+ - 0.703587
+ - -0.333048
+ - - 1.972677
+ - 0.083306
+ - 0.12116
+ - - -1.870807
+ - -1.938885
+ - 0.367206
+ - - -1.120587
+ - -1.539857
+ - -1.187709
+ - - -0.114064
+ - -2.041364
+ - 0.18851
+ - - -0.711724
+ - 0.024962
+ - 1.418933
+ - - -3.030433
+ - 0.309173
+ - 0.515463
+ - - -2.103402
+ - 1.812287
+ - 0.354657
+ - - -2.36862
+ - 0.775282
+ - -1.059525
+ - - 0.333076
+ - 1.757509
+ - -0.034242
+ - - 0.209333
+ - 0.680918
+ - -1.424506
+ - - 1.919086
+ - -1.069357
+ - -0.570081
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.826584753621399
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.005019
+ - -1.469506
+ - -0.098687
+ - - -0.882683
+ - -0.003651
+ - 0.33165
+ - - -2.171585
+ - 0.773753
+ - 0.018586
+ - - 0.311752
+ - 0.701309
+ - -0.332314
+ - - 1.979197
+ - 0.088171
+ - 0.133136
+ - - -1.870194
+ - -1.949372
+ - 0.382823
+ - - -1.14421
+ - -1.54882
+ - -1.190168
+ - - -0.109928
+ - -2.04634
+ - 0.176653
+ - - -0.714343
+ - 0.023326
+ - 1.422836
+ - - -3.038819
+ - 0.313186
+ - 0.515337
+ - - -2.105654
+ - 1.819441
+ - 0.356752
+ - - -2.375097
+ - 0.782457
+ - -1.06488
+ - - 0.335266
+ - 1.76103
+ - -0.034564
+ - - 0.219813
+ - 0.67935
+ - -1.429707
+ - - 1.946221
+ - -1.063896
+ - -0.576221
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.928715161625316
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.003287
+ - -1.45816
+ - -0.099253
+ - - -0.878558
+ - -0.003177
+ - 0.329799
+ - - -2.159097
+ - 0.765811
+ - 0.020046
+ - - 0.306072
+ - 0.695623
+ - -0.331797
+ - - 1.954964
+ - 0.088932
+ - 0.127109
+ - - -1.868187
+ - -1.927779
+ - 0.370582
+ - - -1.13326
+ - -1.533528
+ - -1.18232
+ - - -0.123032
+ - -2.036671
+ - 0.17942
+ - - -0.711893
+ - 0.022578
+ - 1.410502
+ - - -3.017708
+ - 0.308105
+ - 0.512758
+ - - -2.094275
+ - 1.802307
+ - 0.354899
+ - - -2.359804
+ - 0.773441
+ - -1.054076
+ - - 0.32262
+ - 1.746559
+ - -0.040784
+ - - 0.208307
+ - 0.671016
+ - -1.418083
+ - - 1.931856
+ - -1.054619
+ - -0.567568
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.917645686445734
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.011041
+ - -1.4698
+ - -0.105885
+ - - -0.879762
+ - -0.0052
+ - 0.326386
+ - - -2.170245
+ - 0.773281
+ - 0.02481
+ - - 0.309995
+ - 0.700869
+ - -0.342042
+ - - 1.985185
+ - 0.105557
+ - 0.134326
+ - - -1.873759
+ - -1.939534
+ - 0.373996
+ - - -1.151467
+ - -1.546955
+ - -1.190082
+ - - -0.127632
+ - -2.051973
+ - 0.166017
+ - - -0.708037
+ - 0.018415
+ - 1.408792
+ - - -3.027798
+ - 0.312674
+ - 0.522747
+ - - -2.102367
+ - 1.810092
+ - 0.366884
+ - - -2.380041
+ - 0.787948
+ - -1.050122
+ - - 0.325476
+ - 1.755344
+ - -0.055462
+ - - 0.224062
+ - 0.666592
+ - -1.431262
+ - - 1.96215
+ - -1.056872
+ - -0.53787
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.27987307015636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.992914
+ - -1.454824
+ - -0.095869
+ - - -0.876166
+ - 0.000995
+ - 0.338548
+ - - -2.159971
+ - 0.762934
+ - 0.018104
+ - - 0.304748
+ - 0.70239
+ - -0.328496
+ - - 1.949786
+ - 0.072139
+ - 0.115155
+ - - -1.865199
+ - -1.925424
+ - 0.359967
+ - - -1.107428
+ - -1.522829
+ - -1.182043
+ - - -0.115974
+ - -2.034205
+ - 0.193365
+ - - -0.709519
+ - 0.029035
+ - 1.420003
+ - - -3.018832
+ - 0.303796
+ - 0.509655
+ - - -2.100125
+ - 1.802829
+ - 0.34471
+ - - -2.352199
+ - 0.759065
+ - -1.058307
+ - - 0.330559
+ - 1.751916
+ - -0.02933
+ - - 0.195844
+ - 0.68363
+ - -1.414827
+ - - 1.892108
+ - -1.071009
+ - -0.579404
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.96316614831147
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.992914
+ - -1.454824
+ - -0.095869
+ - - -0.876166
+ - 0.000995
+ - 0.338548
+ - - -2.159971
+ - 0.762934
+ - 0.018104
+ - - 0.304748
+ - 0.70239
+ - -0.328496
+ - - 1.949786
+ - 0.072139
+ - 0.115155
+ - - -1.865199
+ - -1.925424
+ - 0.359967
+ - - -1.107428
+ - -1.522829
+ - -1.182043
+ - - -0.115974
+ - -2.034205
+ - 0.193365
+ - - -0.709519
+ - 0.029035
+ - 1.420003
+ - - -3.018832
+ - 0.303796
+ - 0.509655
+ - - -2.100125
+ - 1.802829
+ - 0.34471
+ - - -2.352199
+ - 0.759065
+ - -1.058307
+ - - 0.330559
+ - 1.751916
+ - -0.02933
+ - - 0.195844
+ - 0.68363
+ - -1.414827
+ - - 1.892108
+ - -1.071009
+ - -0.579404
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.365164989025512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.992914
+ - -1.454824
+ - -0.095869
+ - - -0.876166
+ - 0.000995
+ - 0.338548
+ - - -2.159971
+ - 0.762934
+ - 0.018104
+ - - 0.304748
+ - 0.70239
+ - -0.328496
+ - - 1.949786
+ - 0.072139
+ - 0.115155
+ - - -1.865199
+ - -1.925424
+ - 0.359967
+ - - -1.107428
+ - -1.522829
+ - -1.182043
+ - - -0.115974
+ - -2.034205
+ - 0.193365
+ - - -0.709519
+ - 0.029035
+ - 1.420003
+ - - -3.018832
+ - 0.303796
+ - 0.509655
+ - - -2.100125
+ - 1.802829
+ - 0.34471
+ - - -2.352199
+ - 0.759065
+ - -1.058307
+ - - 0.330559
+ - 1.751916
+ - -0.02933
+ - - 0.195844
+ - 0.68363
+ - -1.414827
+ - - 1.892108
+ - -1.071009
+ - -0.579404
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.453234065594877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.007276
+ - -1.468829
+ - -0.105522
+ - - -0.878621
+ - -0.004435
+ - 0.328018
+ - - -2.169338
+ - 0.772369
+ - 0.023872
+ - - 0.309775
+ - 0.703335
+ - -0.341068
+ - - 1.983049
+ - 0.104561
+ - 0.125652
+ - - -1.869028
+ - -1.941854
+ - 0.375785
+ - - -1.150617
+ - -1.545946
+ - -1.190562
+ - - -0.120074
+ - -2.04916
+ - 0.163032
+ - - -0.707484
+ - 0.019722
+ - 1.411737
+ - - -3.028878
+ - 0.310116
+ - 0.519593
+ - - -2.103407
+ - 1.810781
+ - 0.365336
+ - - -2.37694
+ - 0.786954
+ - -1.052769
+ - - 0.328306
+ - 1.758177
+ - -0.050627
+ - - 0.219063
+ - 0.674345
+ - -1.431516
+ - - 1.94619
+ - -1.069699
+ - -0.529728
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.256228050864788
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.0008619459
- - -1.4692464328
- - -0.096799405
- - - -0.8887037637
- - 0.0002718882
- - 0.3433712306
- - - -2.1869149548
- - 0.7665845428
- - 0.0166872543
- - - 0.3004900707
- - 0.7151337517
- - -0.3283670358
- - - 1.976921161
- - 0.072206888
- - 0.1153474759
- - - -1.881410343
- - -1.9453736991
- - 0.3593236783
- - - -1.1097350811
- - -1.5358648015
- - -1.1919252619
- - - -0.1134804712
- - -2.0461972724
- - 0.2000623544
- - - -0.7242206465
- - 0.0279502053
- - 1.4329290168
- - - -3.0512688179
- - 0.2965094473
- - 0.5090150741
- - - -2.1302259041
- - 1.8138873231
- - 0.3507046303
- - - -2.3750906634
- - 0.7648588191
- - -1.0689945231
- - - 0.325516711
- - 1.771767214
- - -0.0233109333
- - - 0.1893782123
- - 0.6944267285
- - -1.4236526524
- - - 1.89574199
- - -1.0737366729
- - -0.5990632619
+ - - -0.988786
+ - -1.454538
+ - -0.090473
+ - - -0.877308
+ - 0.001879
+ - 0.342731
+ - - -2.160901
+ - 0.761502
+ - 0.015391
+ - - 0.303859
+ - 0.704251
+ - -0.32325
+ - - 1.947545
+ - 0.060353
+ - 0.102817
+ - - -1.871192
+ - -1.92217
+ - 0.348099
+ - - -1.080592
+ - -1.522775
+ - -1.178551
+ - - -0.117708
+ - -2.032439
+ - 0.218331
+ - - -0.7142
+ - 0.032269
+ - 1.42406
+ - - -3.020063
+ - 0.305239
+ - 0.508748
+ - - -2.100913
+ - 1.803409
+ - 0.334302
+ - - -2.349382
+ - 0.748946
+ - -1.061285
+ - - 0.338149
+ - 1.749927
+ - -0.013568
+ - - 0.189264
+ - 0.695009
+ - -1.409061
+ - - 1.876947
+ - -1.070423
+ - -0.607059
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.051968728258267
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.999546
+ - -1.456728
+ - -0.096755
+ - - -0.87937
+ - -0.002952
+ - 0.330947
+ - - -2.157835
+ - 0.764876
+ - 0.01706
+ - - 0.304778
+ - 0.696067
+ - -0.328379
+ - - 1.949249
+ - 0.082283
+ - 0.124674
+ - - -1.863767
+ - -1.930694
+ - 0.374521
+ - - -1.130032
+ - -1.533873
+ - -1.181612
+ - - -0.114562
+ - -2.031926
+ - 0.182918
+ - - -0.713068
+ - 0.024279
+ - 1.41432
+ - - -3.019451
+ - 0.30749
+ - 0.509276
+ - - -2.094091
+ - 1.804212
+ - 0.349904
+ - - -2.356675
+ - 0.770068
+ - -1.059409
+ - - 0.327054
+ - 1.747753
+ - -0.030365
+ - - 0.206526
+ - 0.679319
+ - -1.417478
+ - - 1.915507
+ - -1.059734
+ - -0.57839
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8087497044347667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.002698
+ - -1.468632
+ - -0.099165
+ - - -0.881761
+ - -0.002682
+ - 0.333217
+ - - -2.172255
+ - 0.772403
+ - 0.017202
+ - - 0.309645
+ - 0.704508
+ - -0.333515
+ - - 1.975238
+ - 0.082674
+ - 0.127984
+ - - -1.864383
+ - -1.944532
+ - 0.38153
+ - - -1.141133
+ - -1.544676
+ - -1.185752
+ - - -0.109899
+ - -2.039941
+ - 0.175291
+ - - -0.715145
+ - 0.024738
+ - 1.418492
+ - - -3.033458
+ - 0.311422
+ - 0.513382
+ - - -2.10525
+ - 1.813548
+ - 0.3533
+ - - -2.371754
+ - 0.777885
+ - -1.061782
+ - - 0.337083
+ - 1.756916
+ - -0.031265
+ - - 0.218613
+ - 0.682201
+ - -1.425006
+ - - 1.931875
+ - -1.065393
+ - -0.572678
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.819954352428912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9929138493
+ - -1.4548237663
+ - -0.0958685222
+ - - -0.8761661316
+ - 0.000994836
+ - 0.3385484375
+ - - -2.1599707657
+ - 0.7629338179
+ - 0.018104124
+ - - 0.3047480847
+ - 0.7023902156
+ - -0.3284955691
+ - - 1.949786357
+ - 0.0721390689
+ - 0.1151550106
+ - - -1.8651989854
+ - -1.9254242123
+ - 0.3599669536
+ - - -1.1074282338
+ - -1.5228293597
+ - -1.182042697
+ - - -0.1159744416
+ - -2.0342045267
+ - 0.1933650777
+ - - -0.7095194122
+ - 0.0290352487
+ - 1.4200027689
+ - - -3.0188322608
+ - 0.3037957803
+ - 0.5096551259
+ - - -2.1001248079
+ - 1.802829006
+ - 0.3447103538
+ - - -2.3521992999
+ - 0.7590645238
+ - -1.0583071429
+ - - 0.3305590856
+ - 1.7519162496
+ - -0.0293298736
+ - - 0.1958444558
+ - 0.6836302259
+ - -1.4148273082
+ - - 1.8921081596
+ - -1.0710086568
+ - -0.579404249
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.03684692807475
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.99902
+ - -1.45931
+ - -0.096105
+ - - -0.877957
+ - -0.002134
+ - 0.333863
+ - - -2.160569
+ - 0.765232
+ - 0.018334
+ - - 0.307085
+ - 0.699908
+ - -0.32923
+ - - 1.95651
+ - 0.082324
+ - 0.115045
+ - - -1.87224
+ - -1.926438
+ - 0.362355
+ - - -1.112977
+ - -1.533741
+ - -1.181963
+ - - -0.122745
+ - -2.038968
+ - 0.196811
+ - - -0.714168
+ - 0.024978
+ - 1.415525
+ - - -3.019432
+ - 0.306707
+ - 0.511474
+ - - -2.096982
+ - 1.803642
+ - 0.350012
+ - - -2.35734
+ - 0.767541
+ - -1.057471
+ - - 0.328648
+ - 1.749622
+ - -0.030554
+ - - 0.203075
+ - 0.681484
+ - -1.41628
+ - - 1.91283
+ - -1.060409
+ - -0.580584
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-1-propanol.yml b/input/reference_sets/main/2-Methyl-1-propanol.yml
index 5f17c53e8c..3397aeae21 100644
--- a/input/reference_sets/main/2-Methyl-1-propanol.yml
+++ b/input/reference_sets/main/2-Methyl-1-propanol.yml
@@ -22,7 +22,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -67.9772083840457
+ value: -67.97720838404568
class: ThermoData
xyz_dict:
coords:
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.33560356626851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.696626
+ - 0.798754
+ - 0.008378
+ - - -0.447078
+ - -0.006056
+ - -0.339744
+ - - -0.568213
+ - -1.452425
+ - 0.130917
+ - - 0.780822
+ - 0.663859
+ - 0.252698
+ - - 1.942639
+ - -0.037874
+ - -0.182925
+ - - -1.629519
+ - 1.825436
+ - -0.355589
+ - - -2.584558
+ - 0.344949
+ - -0.432693
+ - - -1.847443
+ - 0.834388
+ - 1.090096
+ - - -0.318559
+ - -0.002494
+ - -1.426763
+ - - 0.327196
+ - -2.020379
+ - -0.114507
+ - - -0.708538
+ - -1.4908
+ - 1.2145
+ - - -1.425823
+ - -1.941471
+ - -0.333444
+ - - 0.709259
+ - 0.650965
+ - 1.348204
+ - - 0.821691
+ - 1.710348
+ - -0.070623
+ - - 2.715067
+ - 0.373711
+ - 0.215569
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.87596672596353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.698901
+ - 0.80078
+ - 0.007767
+ - - -0.447793
+ - -0.006751
+ - -0.336058
+ - - -0.570518
+ - -1.455656
+ - 0.132643
+ - - 0.784077
+ - 0.66442
+ - 0.253203
+ - - 1.947961
+ - -0.028365
+ - -0.192786
+ - - -1.63058
+ - 1.826764
+ - -0.36049
+ - - -2.586992
+ - 0.345344
+ - -0.433366
+ - - -1.852681
+ - 0.841587
+ - 1.089795
+ - - -0.319304
+ - -0.004507
+ - -1.423965
+ - - 0.328562
+ - -2.021747
+ - -0.107286
+ - - -0.719359
+ - -1.497576
+ - 1.215827
+ - - -1.423968
+ - -1.946162
+ - -0.339712
+ - - 0.719144
+ - 0.646223
+ - 1.350184
+ - - 0.817907
+ - 1.714256
+ - -0.064257
+ - - 2.722763
+ - 0.372305
+ - 0.212577
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -41.245822869708434
+ value: -41.245822869708434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7148505027
+ - 0.794958246
+ - 0.0107759267
+ - - -0.4506545361
+ - -0.006912361
+ - -0.3460878518
+ - - -0.558975032
+ - -1.4652378827
+ - 0.1325178982
+ - - 0.7867201842
+ - 0.6778267907
+ - 0.2472223543
+ - - 1.9506550294
+ - -0.0375897449
+ - -0.1778826388
+ - - -1.654221771
+ - 1.8315426872
+ - -0.3555491603
+ - - -2.6084551468
+ - 0.329327397
+ - -0.4302416693
+ - - -1.8580302799
+ - 0.8269115981
+ - 1.1029976503
+ - - -0.3263698146
+ - -0.0047232784
+ - -1.4421133794
+ - - 0.3554483017
+ - -2.0209182419
+ - -0.1121117751
+ - - -0.7003506519
+ - -1.4980839997
+ - 1.2253996858
+ - - -1.4180925051
+ - -1.9687685279
+ - -0.3359339554
+ - - 0.6921213063
+ - 0.6838314766
+ - 1.3531550205
+ - - 0.8165211853
+ - 1.7337848638
+ - -0.0897415863
+ - - 2.72274846
+ - 0.3840052266
+ - 0.2406303158
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.34735082594694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.699796
+ - 0.803088
+ - 0.006287
+ - - -0.446831
+ - -0.00977
+ - -0.338068
+ - - -0.575078
+ - -1.461741
+ - 0.133421
+ - - 0.788668
+ - 0.664363
+ - 0.252952
+ - - 1.962077
+ - -0.020157
+ - -0.204356
+ - - -1.630478
+ - 1.831706
+ - -0.366927
+ - - -2.592288
+ - 0.344374
+ - -0.433035
+ - - -1.851087
+ - 0.84735
+ - 1.092742
+ - - -0.318779
+ - -0.00816
+ - -1.430453
+ - - 0.324585
+ - -2.034612
+ - -0.10698
+ - - -0.724102
+ - -1.500682
+ - 1.220872
+ - - -1.434661
+ - -1.950533
+ - -0.339446
+ - - 0.725374
+ - 0.637146
+ - 1.355232
+ - - 0.814218
+ - 1.722446
+ - -0.056997
+ - - 2.728494
+ - 0.386095
+ - 0.218831
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.774137329582594
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.703763
+ - 0.805617
+ - 0.007812
+ - - -0.449012
+ - -0.00818
+ - -0.336138
+ - - -0.57273
+ - -1.463138
+ - 0.133791
+ - - 0.790113
+ - 0.666316
+ - 0.252274
+ - - 1.960222
+ - -0.027661
+ - -0.207303
+ - - -1.634967
+ - 1.839387
+ - -0.365199
+ - - -2.600596
+ - 0.347952
+ - -0.435468
+ - - -1.86043
+ - 0.84997
+ - 1.098355
+ - - -0.319788
+ - -0.005981
+ - -1.433798
+ - - 0.336899
+ - -2.032269
+ - -0.100931
+ - - -0.73113
+ - -1.50746
+ - 1.224573
+ - - -1.427365
+ - -1.961818
+ - -0.348344
+ - - 0.729097
+ - 0.644166
+ - 1.359887
+ - - 0.818536
+ - 1.72787
+ - -0.063314
+ - - 2.735231
+ - 0.376142
+ - 0.217877
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.74843881655389
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.694498
+ - 0.798368
+ - 0.008025
+ - - -0.447459
+ - -0.006238
+ - -0.334427
+ - - -0.569077
+ - -1.450412
+ - 0.132353
+ - - 0.780884
+ - 0.661748
+ - 0.25304
+ - - 1.937993
+ - -0.029037
+ - -0.189369
+ - - -1.627148
+ - 1.823609
+ - -0.359957
+ - - -2.582372
+ - 0.343879
+ - -0.432444
+ - - -1.848794
+ - 0.839503
+ - 1.089164
+ - - -0.317493
+ - -0.003771
+ - -1.421199
+ - - 0.330571
+ - -2.015081
+ - -0.105618
+ - - -0.720118
+ - -1.493435
+ - 1.214389
+ - - -1.419842
+ - -1.942458
+ - -0.3413
+ - - 0.715589
+ - 0.644591
+ - 1.349137
+ - - 0.815841
+ - 1.710315
+ - -0.065159
+ - - 2.716238
+ - 0.369333
+ - 0.207441
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -68.59343759820285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.706716
+ - 0.805691
+ - 0.010865
+ - - -0.450274
+ - -0.003847
+ - -0.331799
+ - - -0.56743
+ - -1.459867
+ - 0.133684
+ - - 0.790888
+ - 0.667595
+ - 0.251951
+ - - 1.945839
+ - -0.036195
+ - -0.20281
+ - - -1.639226
+ - 1.832908
+ - -0.360108
+ - - -2.596142
+ - 0.349907
+ - -0.432001
+ - - -1.864211
+ - 0.849949
+ - 1.094145
+ - - -0.32115
+ - -0.000297
+ - -1.421338
+ - - 0.346328
+ - -2.011131
+ - -0.092347
+ - - -0.735313
+ - -1.50905
+ - 1.21576
+ - - -1.406174
+ - -1.96234
+ - -0.356466
+ - - 0.730129
+ - 0.655174
+ - 1.351749
+ - - 0.82485
+ - 1.718357
+ - -0.070981
+ - - 2.718919
+ - 0.35406
+ - 0.21377
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.68754065580988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.694134
+ - 0.797575
+ - 0.008075
+ - - -0.447026
+ - -0.006305
+ - -0.34303
+ - - -0.568056
+ - -1.450251
+ - 0.12995
+ - - 0.778685
+ - 0.662549
+ - 0.252288
+ - - 1.940333
+ - -0.038393
+ - -0.177213
+ - - -1.627133
+ - 1.825273
+ - -0.354253
+ - - -2.583696
+ - 0.343931
+ - -0.430562
+ - - -1.840589
+ - 0.830513
+ - 1.091267
+ - - -0.317276
+ - -0.003054
+ - -1.430441
+ - - 0.326999
+ - -2.019869
+ - -0.114663
+ - - -0.707397
+ - -1.484446
+ - 1.214603
+ - - -1.426909
+ - -1.939813
+ - -0.332201
+ - - 0.701403
+ - 0.648315
+ - 1.348152
+ - - 0.820566
+ - 1.709489
+ - -0.070885
+ - - 2.714545
+ - 0.375399
+ - 0.212986
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.38159983638909
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.694134
+ - 0.797575
+ - 0.008075
+ - - -0.447026
+ - -0.006305
+ - -0.34303
+ - - -0.568056
+ - -1.450251
+ - 0.12995
+ - - 0.778685
+ - 0.662549
+ - 0.252288
+ - - 1.940333
+ - -0.038393
+ - -0.177213
+ - - -1.627133
+ - 1.825273
+ - -0.354253
+ - - -2.583696
+ - 0.343931
+ - -0.430562
+ - - -1.840589
+ - 0.830513
+ - 1.091267
+ - - -0.317276
+ - -0.003054
+ - -1.430441
+ - - 0.326999
+ - -2.019869
+ - -0.114663
+ - - -0.707397
+ - -1.484446
+ - 1.214603
+ - - -1.426909
+ - -1.939813
+ - -0.332201
+ - - 0.701403
+ - 0.648315
+ - 1.348152
+ - - 0.820566
+ - 1.709489
+ - -0.070885
+ - - 2.714545
+ - 0.375399
+ - 0.212986
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.6529523255991
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.694134
+ - 0.797575
+ - 0.008075
+ - - -0.447026
+ - -0.006305
+ - -0.34303
+ - - -0.568056
+ - -1.450251
+ - 0.12995
+ - - 0.778685
+ - 0.662549
+ - 0.252288
+ - - 1.940333
+ - -0.038393
+ - -0.177213
+ - - -1.627133
+ - 1.825273
+ - -0.354253
+ - - -2.583696
+ - 0.343931
+ - -0.430562
+ - - -1.840589
+ - 0.830513
+ - 1.091267
+ - - -0.317276
+ - -0.003054
+ - -1.430441
+ - - 0.326999
+ - -2.019869
+ - -0.114663
+ - - -0.707397
+ - -1.484446
+ - 1.214603
+ - - -1.426909
+ - -1.939813
+ - -0.332201
+ - - 0.701403
+ - 0.648315
+ - 1.348152
+ - - 0.820566
+ - 1.709489
+ - -0.070885
+ - - 2.714545
+ - 0.375399
+ - 0.212986
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.65566391208084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.705971
+ - 0.805105
+ - 0.00974
+ - - -0.450059
+ - -0.003763
+ - -0.334665
+ - - -0.56661
+ - -1.459609
+ - 0.132592
+ - - 0.792757
+ - 0.667062
+ - 0.250265
+ - - 1.94228
+ - -0.035987
+ - -0.200441
+ - - -1.638761
+ - 1.834232
+ - -0.359431
+ - - -2.597415
+ - 0.349076
+ - -0.432041
+ - - -1.862262
+ - 0.848449
+ - 1.094482
+ - - -0.321794
+ - -0.002128
+ - -1.425698
+ - - 0.346177
+ - -2.013671
+ - -0.096984
+ - - -0.729037
+ - -1.508023
+ - 1.216698
+ - - -1.410017
+ - -1.96236
+ - -0.351787
+ - - 0.728309
+ - 0.658937
+ - 1.35192
+ - - 0.826557
+ - 1.721783
+ - -0.067914
+ - - 2.716162
+ - 0.351811
+ - 0.217336
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.30226099019474
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.7148505027
- - 0.794958246
- - 0.0107759267
- - - -0.4506545361
- - -0.006912361
- - -0.3460878518
- - - -0.558975032
- - -1.4652378827
- - 0.1325178982
- - - 0.7867201842
- - 0.6778267907
- - 0.2472223543
- - - 1.9506550294
- - -0.0375897449
- - -0.1778826388
- - - -1.654221771
- - 1.8315426872
- - -0.3555491603
- - - -2.6084551468
- - 0.329327397
- - -0.4302416693
- - - -1.8580302799
- - 0.8269115981
- - 1.1029976503
- - - -0.3263698146
- - -0.0047232784
- - -1.4421133794
- - - 0.3554483017
- - -2.0209182419
- - -0.1121117751
- - - -0.7003506519
- - -1.4980839997
- - 1.2253996858
- - - -1.4180925051
- - -1.9687685279
- - -0.3359339554
- - - 0.6921213063
- - 0.6838314766
- - 1.3531550205
- - - 0.8165211853
- - 1.7337848638
- - -0.0897415863
- - - 2.72274846
- - 0.3840052266
- - 0.2406303158
+ - - -1.696055
+ - 0.797316
+ - 0.009055
+ - - -0.448488
+ - -0.003731
+ - -0.345347
+ - - -0.563924
+ - -1.447596
+ - 0.128689
+ - - 0.778626
+ - 0.663572
+ - 0.249633
+ - - 1.931442
+ - -0.04249
+ - -0.174548
+ - - -1.631688
+ - 1.82526
+ - -0.352168
+ - - -2.585675
+ - 0.341784
+ - -0.427152
+ - - -1.837549
+ - 0.828022
+ - 1.092682
+ - - -0.318896
+ - 0.000152
+ - -1.432192
+ - - 0.335145
+ - -2.011148
+ - -0.115772
+ - - -0.702442
+ - -1.478799
+ - 1.213208
+ - - -1.420999
+ - -1.940846
+ - -0.332327
+ - - 0.697182
+ - 0.653246
+ - 1.345277
+ - - 0.824384
+ - 1.709435
+ - -0.076704
+ - - 2.709253
+ - 0.356737
+ - 0.22174
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.05048564683669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.690254
+ - 0.798222
+ - 0.008958
+ - - -0.446911
+ - -0.007829
+ - -0.335908
+ - - -0.569195
+ - -1.450241
+ - 0.131434
+ - - 0.782722
+ - 0.659277
+ - 0.249379
+ - - 1.937146
+ - -0.027748
+ - -0.19215
+ - - -1.622347
+ - 1.825416
+ - -0.3594
+ - - -2.58215
+ - 0.344622
+ - -0.429205
+ - - -1.841896
+ - 0.839824
+ - 1.092463
+ - - -0.318801
+ - -0.005679
+ - -1.425555
+ - - 0.332697
+ - -2.016485
+ - -0.104139
+ - - -0.722535
+ - -1.492143
+ - 1.215144
+ - - -1.420448
+ - -1.94454
+ - -0.343457
+ - - 0.71289
+ - 0.643658
+ - 1.348321
+ - - 0.811908
+ - 1.711783
+ - -0.067252
+ - - 2.70749
+ - 0.372778
+ - 0.215441
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.310543507137574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.705941
+ - 0.804476
+ - 0.00806
+ - - -0.44901
+ - -0.006934
+ - -0.337521
+ - - -0.571298
+ - -1.461923
+ - 0.134683
+ - - 0.786136
+ - 0.669526
+ - 0.254923
+ - - 1.95549
+ - -0.030993
+ - -0.204043
+ - - -1.63492
+ - 1.834387
+ - -0.36092
+ - - -2.596019
+ - 0.347551
+ - -0.437631
+ - - -1.861302
+ - 0.84392
+ - 1.093777
+ - - -0.320522
+ - -0.004558
+ - -1.429192
+ - - 0.334917
+ - -2.026183
+ - -0.101439
+ - - -0.727083
+ - -1.503011
+ - 1.220793
+ - - -1.423765
+ - -1.956114
+ - -0.345012
+ - - 0.729926
+ - 0.646244
+ - 1.356029
+ - - 0.822878
+ - 1.723146
+ - -0.06401
+ - - 2.73083
+ - 0.371382
+ - 0.215576
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.86708797013983
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.6941336447
+ - 0.797575427
+ - 0.0080754067
+ - - -0.4470257918
+ - -0.0063050396
+ - -0.343029896
+ - - -0.5680555888
+ - -1.4502511882
+ - 0.1299500579
+ - - 0.7786853063
+ - 0.6625488751
+ - 0.2522875547
+ - - 1.940333159
+ - -0.03839344
+ - -0.1772128893
+ - - -1.6271327469
+ - 1.825272966
+ - -0.3542528783
+ - - -2.5836955973
+ - 0.3439314314
+ - -0.4305622099
+ - - -1.8405888868
+ - 0.8305132459
+ - 1.0912673595
+ - - -0.3172757001
+ - -0.0030541688
+ - -1.430440985
+ - - 0.3269986208
+ - -2.0198688478
+ - -0.1146630634
+ - - -0.7073973026
+ - -1.4844461611
+ - 1.2146030293
+ - - -1.4269090462
+ - -1.939812786
+ - -0.332200616
+ - - 0.7014029919
+ - 0.6483150456
+ - 1.3481523935
+ - - 0.8205659371
+ - 1.7094894206
+ - -0.0708849841
+ - - 2.7145447718
+ - 0.3753989283
+ - 0.2129863293
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.42937544552385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.693631
+ - 0.798835
+ - 0.008159
+ - - -0.446314
+ - -0.007599
+ - -0.338333
+ - - -0.569892
+ - -1.452933
+ - 0.131229
+ - - 0.784623
+ - 0.661844
+ - 0.250106
+ - - 1.941904
+ - -0.023367
+ - -0.189434
+ - - -1.626494
+ - 1.824265
+ - -0.361654
+ - - -2.58321
+ - 0.342518
+ - -0.428893
+ - - -1.842132
+ - 0.840203
+ - 1.091061
+ - - -0.319918
+ - -0.005684
+ - -1.425958
+ - - 0.326837
+ - -2.021838
+ - -0.111992
+ - - -0.714337
+ - -1.49224
+ - 1.215209
+ - - -1.426469
+ - -1.941577
+ - -0.337233
+ - - 0.71375
+ - 0.644408
+ - 1.347583
+ - - 0.814562
+ - 1.712716
+ - -0.066519
+ - - 2.71104
+ - 0.371363
+ - 0.220743
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-12-propanediamine.yml b/input/reference_sets/main/2-Methyl-12-propanediamine.yml
index 50e06c85da..3cb27f9947 100644
--- a/input/reference_sets/main/2-Methyl-12-propanediamine.yml
+++ b/input/reference_sets/main/2-Methyl-12-propanediamine.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.305348594663558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.45929
+ - -1.520754
+ - -0.191091
+ - - -0.430585
+ - -0.00785
+ - 0.026916
+ - - -0.493188
+ - 0.234426
+ - 1.472656
+ - - -1.650318
+ - 0.635909
+ - -0.621813
+ - - 0.844029
+ - 0.588993
+ - -0.600262
+ - - 2.050711
+ - 0.048246
+ - 0.029137
+ - - -1.390119
+ - -1.933543
+ - 0.195577
+ - - 0.361247
+ - -2.004893
+ - 0.340408
+ - - -0.379271
+ - -1.767312
+ - -1.252089
+ - - 0.413623
+ - 0.002039
+ - 1.868451
+ - - -0.631971
+ - 1.225359
+ - 1.645114
+ - - -1.64058
+ - 1.719562
+ - -0.479898
+ - - -2.563303
+ - 0.243461
+ - -0.174528
+ - - -1.675919
+ - 0.43812
+ - -1.694273
+ - - 0.817743
+ - 0.436588
+ - -1.687845
+ - - 0.832844
+ - 1.667538
+ - -0.42605
+ - - 2.281679
+ - -0.859798
+ - -0.353519
+ - - 2.845203
+ - 0.649872
+ - -0.142497
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.746983279121213
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.463432
+ - -1.524356
+ - -0.193014
+ - - -0.431321
+ - -0.009028
+ - 0.026845
+ - - -0.489843
+ - 0.233889
+ - 1.474047
+ - - -1.652244
+ - 0.638108
+ - -0.621685
+ - - 0.846835
+ - 0.587444
+ - -0.603078
+ - - 2.055795
+ - 0.055281
+ - 0.029021
+ - - -1.391663
+ - -1.937314
+ - 0.201206
+ - - 0.36124
+ - -2.010886
+ - 0.331109
+ - - -0.392413
+ - -1.770377
+ - -1.255277
+ - - 0.417465
+ - 0.003465
+ - 1.869954
+ - - -0.63571
+ - 1.223013
+ - 1.650698
+ - - -1.642888
+ - 1.721948
+ - -0.476216
+ - - -2.566779
+ - 0.244253
+ - -0.177347
+ - - -1.676826
+ - 0.444335
+ - -1.69549
+ - - 0.821437
+ - 0.429481
+ - -1.690906
+ - - 0.832297
+ - 1.66751
+ - -0.436078
+ - - 2.290016
+ - -0.858187
+ - -0.339134
+ - - 2.850571
+ - 0.657384
+ - -0.14026
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -2.8842309712761773
+ value: -2.8842309712761773
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4868129958
+ - -1.5167202929
+ - -0.2671940015
+ - - -0.4323763728
+ - -0.0043177167
+ - 0.0307456377
+ - - -0.4857751492
+ - 0.1612782055
+ - 1.4990996969
+ - - -1.660069851
+ - 0.6887952094
+ - -0.5850409118
+ - - 0.856647055
+ - 0.6159928477
+ - -0.5838027305
+ - - 2.0664117448
+ - 0.0404858581
+ - 0.0335008799
+ - - -1.4260491262
+ - -1.9375003303
+ - 0.1166006611
+ - - 0.3417875721
+ - -2.0443016734
+ - 0.2290264508
+ - - -0.4268442656
+ - -1.7069213324
+ - -1.3500719247
+ - - 0.4352137681
+ - -0.1258756061
+ - 1.8516957096
+ - - -0.5366118381
+ - 1.1668011488
+ - 1.6996096424
+ - - -1.6351925951
+ - 1.7736371141
+ - -0.3911958846
+ - - -2.5811047753
+ - 0.2816436826
+ - -0.145042724
+ - - -1.6911542932
+ - 0.5380825237
+ - -1.6742493876
+ - - 0.8220224471
+ - 0.5165855145
+ - -1.6895984542
+ - - 0.8483837005
+ - 1.6949151072
+ - -0.3575056111
+ - - 2.2421330865
+ - -0.8819840581
+ - -0.3714261061
+ - - 2.8786331382
+ - 0.6100691797
+ - -0.2142943726
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.542996118739064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.466159
+ - -1.530126
+ - -0.193452
+ - - -0.433692
+ - -0.010736
+ - 0.029553
+ - - -0.495977
+ - 0.229607
+ - 1.483502
+ - - -1.656308
+ - 0.639459
+ - -0.622825
+ - - 0.84947
+ - 0.589636
+ - -0.600559
+ - - 2.062109
+ - 0.060377
+ - 0.039944
+ - - -1.400522
+ - -1.944194
+ - 0.196634
+ - - 0.358455
+ - -2.020343
+ - 0.33591
+ - - -0.389579
+ - -1.773761
+ - -1.260095
+ - - 0.42222
+ - 0.003019
+ - 1.867791
+ - - -0.625005
+ - 1.227228
+ - 1.649499
+ - - -1.644189
+ - 1.727805
+ - -0.479551
+ - - -2.575051
+ - 0.246634
+ - -0.176028
+ - - -1.679701
+ - 0.441778
+ - -1.700134
+ - - 0.825933
+ - 0.430296
+ - -1.693701
+ - - 0.831236
+ - 1.674181
+ - -0.433158
+ - - 2.291923
+ - -0.855754
+ - -0.334777
+ - - 2.857372
+ - 0.660854
+ - -0.15416
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.113136002254352
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.473169
+ - -1.534845
+ - -0.196253
+ - - -0.435617
+ - -0.012846
+ - 0.025738
+ - - -0.49095
+ - 0.226354
+ - 1.482989
+ - - -1.659804
+ - 0.643676
+ - -0.62181
+ - - 0.852691
+ - 0.583242
+ - -0.60695
+ - - 2.063149
+ - 0.059532
+ - 0.048048
+ - - -1.404116
+ - -1.950798
+ - 0.213607
+ - - 0.363418
+ - -2.028128
+ - 0.322375
+ - - -0.415677
+ - -1.784929
+ - -1.267693
+ - - 0.440703
+ - 0.011379
+ - 1.860386
+ - - -0.634446
+ - 1.227643
+ - 1.653457
+ - - -1.647476
+ - 1.736191
+ - -0.471995
+ - - -2.583599
+ - 0.249193
+ - -0.174404
+ - - -1.688695
+ - 0.453065
+ - -1.70531
+ - - 0.835812
+ - 0.414713
+ - -1.703997
+ - - 0.832864
+ - 1.674567
+ - -0.449563
+ - - 2.319485
+ - -0.851069
+ - -0.338785
+ - - 2.857963
+ - 0.679023
+ - -0.115445
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.39443322395802
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.463326
+ - -1.519578
+ - -0.191531
+ - - -0.429305
+ - -0.009215
+ - 0.025603
+ - - -0.486138
+ - 0.23604
+ - 1.465572
+ - - -1.646459
+ - 0.636338
+ - -0.620597
+ - - 0.844557
+ - 0.583504
+ - -0.602571
+ - - 2.050848
+ - 0.051224
+ - 0.020074
+ - - -1.390345
+ - -1.930706
+ - 0.205623
+ - - 0.361214
+ - -2.005822
+ - 0.331651
+ - - -0.395538
+ - -1.76879
+ - -1.252644
+ - - 0.414453
+ - 0.001124
+ - 1.86976
+ - - -0.641729
+ - 1.220783
+ - 1.64814
+ - - -1.637236
+ - 1.719487
+ - -0.475686
+ - - -2.560208
+ - 0.243582
+ - -0.175424
+ - - -1.673285
+ - 0.442606
+ - -1.693679
+ - - 0.816961
+ - 0.428075
+ - -1.689495
+ - - 0.83111
+ - 1.662781
+ - -0.434333
+ - - 2.294364
+ - -0.856441
+ - -0.351928
+ - - 2.842598
+ - 0.660971
+ - -0.124141
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.827067770984165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.473672
+ - -1.533009
+ - -0.196712
+ - - -0.43407
+ - -0.011553
+ - 0.022676
+ - - -0.487468
+ - 0.227707
+ - 1.475201
+ - - -1.660029
+ - 0.642451
+ - -0.623346
+ - - 0.85332
+ - 0.58361
+ - -0.607173
+ - - 2.059063
+ - 0.059416
+ - 0.050109
+ - - -1.394517
+ - -1.944074
+ - 0.221139
+ - - 0.362655
+ - -2.020978
+ - 0.311777
+ - - -0.426639
+ - -1.784971
+ - -1.261147
+ - - 0.431796
+ - 0.002463
+ - 1.852401
+ - - -0.620761
+ - 1.222117
+ - 1.646424
+ - - -1.646235
+ - 1.728599
+ - -0.479749
+ - - -2.574994
+ - 0.254397
+ - -0.170156
+ - - -1.695094
+ - 0.447465
+ - -1.698812
+ - - 0.841995
+ - 0.417698
+ - -1.696619
+ - - 0.832973
+ - 1.666989
+ - -0.448898
+ - - 2.317551
+ - -0.841015
+ - -0.339178
+ - - 2.846664
+ - 0.678649
+ - -0.103543
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.028821295751941
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.45626
+ - -1.517433
+ - -0.189789
+ - - -0.42998
+ - -0.006443
+ - 0.028202
+ - - -0.494438
+ - 0.237591
+ - 1.471203
+ - - -1.647689
+ - 0.634641
+ - -0.623868
+ - - 0.842065
+ - 0.590217
+ - -0.598264
+ - - 2.048902
+ - 0.045597
+ - 0.02283
+ - - -1.385813
+ - -1.931196
+ - 0.200398
+ - - 0.367042
+ - -2.000155
+ - 0.340083
+ - - -0.379514
+ - -1.76314
+ - -1.251882
+ - - 0.403958
+ - -0.006508
+ - 1.877941
+ - - -0.630259
+ - 1.228054
+ - 1.647381
+ - - -1.638117
+ - 1.71926
+ - -0.484461
+ - - -2.560992
+ - 0.241611
+ - -0.176743
+ - - -1.669395
+ - 0.432883
+ - -1.696317
+ - - 0.810159
+ - 0.439876
+ - -1.686329
+ - - 0.83059
+ - 1.669062
+ - -0.421169
+ - - 2.277075
+ - -0.863132
+ - -0.359843
+ - - 2.8452
+ - 0.645175
+ - -0.144978
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.711144640930574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.45626
+ - -1.517433
+ - -0.189789
+ - - -0.42998
+ - -0.006443
+ - 0.028202
+ - - -0.494438
+ - 0.237591
+ - 1.471203
+ - - -1.647689
+ - 0.634641
+ - -0.623868
+ - - 0.842065
+ - 0.590217
+ - -0.598264
+ - - 2.048902
+ - 0.045597
+ - 0.02283
+ - - -1.385813
+ - -1.931196
+ - 0.200398
+ - - 0.367042
+ - -2.000155
+ - 0.340083
+ - - -0.379514
+ - -1.76314
+ - -1.251882
+ - - 0.403958
+ - -0.006508
+ - 1.877941
+ - - -0.630259
+ - 1.228054
+ - 1.647381
+ - - -1.638117
+ - 1.71926
+ - -0.484461
+ - - -2.560992
+ - 0.241611
+ - -0.176743
+ - - -1.669395
+ - 0.432883
+ - -1.696317
+ - - 0.810159
+ - 0.439876
+ - -1.686329
+ - - 0.83059
+ - 1.669062
+ - -0.421169
+ - - 2.277075
+ - -0.863132
+ - -0.359843
+ - - 2.8452
+ - 0.645175
+ - -0.144978
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.98750307384167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.45626
+ - -1.517433
+ - -0.189789
+ - - -0.42998
+ - -0.006443
+ - 0.028202
+ - - -0.494438
+ - 0.237591
+ - 1.471203
+ - - -1.647689
+ - 0.634641
+ - -0.623868
+ - - 0.842065
+ - 0.590217
+ - -0.598264
+ - - 2.048902
+ - 0.045597
+ - 0.02283
+ - - -1.385813
+ - -1.931196
+ - 0.200398
+ - - 0.367042
+ - -2.000155
+ - 0.340083
+ - - -0.379514
+ - -1.76314
+ - -1.251882
+ - - 0.403958
+ - -0.006508
+ - 1.877941
+ - - -0.630259
+ - 1.228054
+ - 1.647381
+ - - -1.638117
+ - 1.71926
+ - -0.484461
+ - - -2.560992
+ - 0.241611
+ - -0.176743
+ - - -1.669395
+ - 0.432883
+ - -1.696317
+ - - 0.810159
+ - 0.439876
+ - -1.686329
+ - - 0.83059
+ - 1.669062
+ - -0.421169
+ - - 2.277075
+ - -0.863132
+ - -0.359843
+ - - 2.8452
+ - 0.645175
+ - -0.144978
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.883975765059205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.467689
+ - -1.531684
+ - -0.196473
+ - - -0.432442
+ - -0.010318
+ - 0.026724
+ - - -0.493437
+ - 0.225647
+ - 1.479183
+ - - -1.658268
+ - 0.640457
+ - -0.623173
+ - - 0.852739
+ - 0.58951
+ - -0.599559
+ - - 2.058336
+ - 0.063013
+ - 0.052588
+ - - -1.392114
+ - -1.948911
+ - 0.210889
+ - - 0.366028
+ - -2.022618
+ - 0.316176
+ - - -0.410785
+ - -1.77962
+ - -1.262384
+ - - 0.427974
+ - 0.007685
+ - 1.856324
+ - - -0.624436
+ - 1.22131
+ - 1.647113
+ - - -1.644014
+ - 1.728956
+ - -0.488806
+ - - -2.576038
+ - 0.256886
+ - -0.168638
+ - - -1.692804
+ - 0.438146
+ - -1.698448
+ - - 0.839057
+ - 0.432058
+ - -1.691866
+ - - 0.83504
+ - 1.673979
+ - -0.435781
+ - - 2.292366
+ - -0.849758
+ - -0.324154
+ - - 2.853022
+ - 0.661224
+ - -0.145322
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.28726270947822
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.448708
+ - -1.515209
+ - -0.188917
+ - - -0.430148
+ - -0.003786
+ - 0.027444
+ - - -0.496414
+ - 0.239047
+ - 1.469173
+ - - -1.650324
+ - 0.632566
+ - -0.624333
+ - - 0.841361
+ - 0.596627
+ - -0.596822
+ - - 2.043404
+ - 0.039909
+ - 0.019004
+ - - -1.382887
+ - -1.930396
+ - 0.188364
+ - - 0.368622
+ - -1.991357
+ - 0.356077
+ - - -0.354266
+ - -1.761822
+ - -1.24915
+ - - 0.403301
+ - -0.006252
+ - 1.873708
+ - - -0.630344
+ - 1.230166
+ - 1.644197
+ - - -1.640253
+ - 1.717505
+ - -0.489496
+ - - -2.560644
+ - 0.240569
+ - -0.170301
+ - - -1.675648
+ - 0.425082
+ - -1.695375
+ - - 0.808549
+ - 0.458146
+ - -1.686215
+ - - 0.834282
+ - 1.673055
+ - -0.406206
+ - - 2.254623
+ - -0.87453
+ - -0.36076
+ - - 2.84803
+ - 0.626641
+ - -0.155998
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.67038506835619
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.4868129958
- - -1.5167202929
- - -0.2671940015
- - - -0.4323763728
- - -0.0043177167
- - 0.0307456377
- - - -0.4857751492
- - 0.1612782055
- - 1.4990996969
- - - -1.660069851
- - 0.6887952094
- - -0.5850409118
- - - 0.856647055
- - 0.6159928477
- - -0.5838027305
- - - 2.0664117448
- - 0.0404858581
- - 0.0335008799
- - - -1.4260491262
- - -1.9375003303
- - 0.1166006611
- - - 0.3417875721
- - -2.0443016734
- - 0.2290264508
- - - -0.4268442656
- - -1.7069213324
- - -1.3500719247
- - - 0.4352137681
- - -0.1258756061
- - 1.8516957096
- - - -0.5366118381
- - 1.1668011488
- - 1.6996096424
- - - -1.6351925951
- - 1.7736371141
- - -0.3911958846
- - - -2.5811047753
- - 0.2816436826
- - -0.145042724
- - - -1.6911542932
- - 0.5380825237
- - -1.6742493876
- - - 0.8220224471
- - 0.5165855145
- - -1.6895984542
- - - 0.8483837005
- - 1.6949151072
- - -0.3575056111
- - - 2.2421330865
- - -0.8819840581
- - -0.3714261061
- - - 2.8786331382
- - 0.6100691797
- - -0.2142943726
+ - - -0.46345
+ - -1.519091
+ - -0.193431
+ - - -0.429721
+ - -0.01004
+ - 0.027691
+ - - -0.486938
+ - 0.229968
+ - 1.466838
+ - - -1.644489
+ - 0.635854
+ - -0.619341
+ - - 0.844569
+ - 0.58295
+ - -0.599026
+ - - 2.044824
+ - 0.056524
+ - 0.034259
+ - - -1.390734
+ - -1.932521
+ - 0.206494
+ - - 0.363784
+ - -2.007865
+ - 0.327931
+ - - -0.398276
+ - -1.766423
+ - -1.257043
+ - - 0.424969
+ - 0.00474
+ - 1.855433
+ - - -0.63216
+ - 1.219177
+ - 1.64088
+ - - -1.634627
+ - 1.721116
+ - -0.474316
+ - - -2.561058
+ - 0.243191
+ - -0.17466
+ - - -1.67011
+ - 0.4421
+ - -1.694415
+ - - 0.81952
+ - 0.425723
+ - -1.688926
+ - - 0.825569
+ - 1.665343
+ - -0.434123
+ - - 2.282686
+ - -0.854428
+ - -0.336078
+ - - 2.838179
+ - 0.659645
+ - -0.133773
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6641198736716519
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.470169
+ - -1.533471
+ - -0.196898
+ - - -0.434787
+ - -0.011855
+ - 0.021488
+ - - -0.488651
+ - 0.227071
+ - 1.480072
+ - - -1.661884
+ - 0.642438
+ - -0.62178
+ - - 0.849457
+ - 0.587715
+ - -0.609164
+ - - 2.057426
+ - 0.059087
+ - 0.052306
+ - - -1.397596
+ - -1.945854
+ - 0.210989
+ - - 0.364358
+ - -2.019781
+ - 0.321212
+ - - -0.411163
+ - -1.781807
+ - -1.263775
+ - - 0.44005
+ - 0.011005
+ - 1.854
+ - - -0.628465
+ - 1.225738
+ - 1.648727
+ - - -1.649735
+ - 1.729533
+ - -0.468823
+ - - -2.578648
+ - 0.244893
+ - -0.175008
+ - - -1.689035
+ - 0.453958
+ - -1.700862
+ - - 0.839929
+ - 0.418752
+ - -1.700101
+ - - 0.833994
+ - 1.672533
+ - -0.447039
+ - - 2.304053
+ - -0.853026
+ - -0.328593
+ - - 2.853401
+ - 0.669034
+ - -0.122357
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.319588157235373
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4562602619
+ - -1.5174325929
+ - -0.1897890643
+ - - -0.4299800972
+ - -0.0064432303
+ - 0.0282023161
+ - - -0.4944381473
+ - 0.2375906685
+ - 1.4712030964
+ - - -1.6476887476
+ - 0.6346411254
+ - -0.6238678891
+ - - 0.8420651001
+ - 0.5902169723
+ - -0.598263686
+ - - 2.0489022166
+ - 0.045597127
+ - 0.0228297616
+ - - -1.3858134846
+ - -1.9311960965
+ - 0.2003975255
+ - - 0.3670418276
+ - -2.0001550538
+ - 0.3400827729
+ - - -0.3795138127
+ - -1.7631395587
+ - -1.2518820127
+ - - 0.4039577994
+ - -0.006508038
+ - 1.8779405751
+ - - -0.6302586008
+ - 1.2280543898
+ - 1.6473808623
+ - - -1.6381166211
+ - 1.7192601188
+ - -0.4844612681
+ - - -2.5609915599
+ - 0.2416110439
+ - -0.1767430547
+ - - -1.6693947211
+ - 0.4328828808
+ - -1.6963172439
+ - - 0.810159399
+ - 0.4398758392
+ - -1.6863286331
+ - - 0.8305898712
+ - 1.6690624134
+ - -0.4211690971
+ - - 2.2770754355
+ - -0.8631315525
+ - -0.3598429562
+ - - 2.8452000217
+ - 0.6451753982
+ - -0.1449775361
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.754739789731687
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.460604
+ - -1.520632
+ - -0.190205
+ - - -0.429625
+ - -0.008256
+ - 0.03002
+ - - -0.491802
+ - 0.234788
+ - 1.470766
+ - - -1.647853
+ - 0.635469
+ - -0.622054
+ - - 0.845646
+ - 0.589118
+ - -0.598096
+ - - 2.052196
+ - 0.055011
+ - 0.022312
+ - - -1.393475
+ - -1.93307
+ - 0.194402
+ - - 0.358238
+ - -2.008553
+ - 0.342769
+ - - -0.379018
+ - -1.766046
+ - -1.252167
+ - - 0.408321
+ - -0.00655
+ - 1.872537
+ - - -0.628312
+ - 1.223502
+ - 1.646877
+ - - -1.63731
+ - 1.720506
+ - -0.484368
+ - - -2.562661
+ - 0.245319
+ - -0.174453
+ - - -1.672329
+ - 0.433668
+ - -1.694669
+ - - 0.815452
+ - 0.437822
+ - -1.686921
+ - - 0.830081
+ - 1.668803
+ - -0.424858
+ - - 2.279112
+ - -0.858054
+ - -0.346599
+ - - 2.846478
+ - 0.653119
+ - -0.150899
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-2-(methylthio)propane.yml b/input/reference_sets/main/2-Methyl-2-(methylthio)propane.yml
index 766afc98b8..3e16d58401 100644
--- a/input/reference_sets/main/2-Methyl-2-(methylthio)propane.yml
+++ b/input/reference_sets/main/2-Methyl-2-(methylthio)propane.yml
@@ -129,7 +129,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -30.518147416956452
+ value: -30.518147416956406
class: ThermoData
xyz_dict:
coords:
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.727491156304836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.797523
+ - 0.92413
+ - 1.26204
+ - - 0.667068
+ - 0.083481
+ - -0.005796
+ - - -0.918087
+ - -0.857531
+ - -0.013134
+ - - -2.171733
+ - 0.444552
+ - 0.012558
+ - - 1.746242
+ - -0.999568
+ - -0.027333
+ - - 0.786205
+ - 0.962771
+ - -1.248281
+ - - 1.772559
+ - 1.417862
+ - 1.280379
+ - - 0.036083
+ - 1.702737
+ - 1.308922
+ - - 0.708213
+ - 0.301993
+ - 2.152096
+ - - -3.132305
+ - -0.068046
+ - 0.009002
+ - - -2.117144
+ - 1.079692
+ - -0.869531
+ - - -2.109104
+ - 1.052257
+ - 0.913245
+ - - 2.733479
+ - -0.533127
+ - -0.024604
+ - - 1.671258
+ - -1.646114
+ - 0.847571
+ - - 1.663285
+ - -1.618889
+ - -0.921012
+ - - 0.024482
+ - 1.742349
+ - -1.264309
+ - - 1.761105
+ - 1.456968
+ - -1.260206
+ - - 0.688785
+ - 0.368313
+ - -2.156223
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.808570330393101
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.799134
+ - 0.924644
+ - 1.263661
+ - - 0.671532
+ - 0.083687
+ - -0.005811
+ - - -0.922665
+ - -0.859457
+ - -0.013144
+ - - -2.178241
+ - 0.445596
+ - 0.012593
+ - - 1.750151
+ - -1.001716
+ - -0.027375
+ - - 0.78781
+ - 0.96333
+ - -1.249899
+ - - 1.773475
+ - 1.42103
+ - 1.284329
+ - - 0.035869
+ - 1.702075
+ - 1.310221
+ - - 0.709936
+ - 0.302297
+ - 2.154058
+ - - -3.139707
+ - -0.066511
+ - 0.009046
+ - - -2.122624
+ - 1.081455
+ - -0.869938
+ - - -2.114587
+ - 1.054011
+ - 0.913732
+ - - 2.738835
+ - -0.537067
+ - -0.024676
+ - - 1.675097
+ - -1.648703
+ - 0.847773
+ - - 1.667129
+ - -1.621474
+ - -0.921309
+ - - 0.024268
+ - 1.741722
+ - -1.265633
+ - - 1.761997
+ - 1.460248
+ - -1.26406
+ - - 0.690505
+ - 0.368668
+ - -2.158187
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.3266570227490637
+ value: -0.3266570227490637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.792796884
+ - 0.962774588
+ - 1.2574423707
+ - - 0.6789154808
+ - 0.082941826
+ - -2.75598e-05
+ - - -0.9338957387
+ - -0.8729388589
+ - 0.000437704
+ - - -2.1912766794
+ - 0.4587351315
+ - -0.0001897495
+ - - 1.7742360547
+ - -1.0033479933
+ - 0.0174040126
+ - - 0.8056227372
+ - 0.9350658136
+ - -1.2752394103
+ - - 1.7782784258
+ - 1.4563867124
+ - 1.2756564685
+ - - 0.026005463
+ - 1.7500463725
+ - 1.2678473495
+ - - 0.6859704893
+ - 0.3572868023
+ - 2.1680908358
+ - - -3.1681166153
+ - -0.0442808157
+ - 0.000160237
+ - - -2.1230006864
+ - 1.0862849049
+ - -0.8994341771
+ - - -2.1227512209
+ - 1.0865343316
+ - 0.8987048408
+ - - 2.7634655868
+ - -0.5197410278
+ - 0.0153149636
+ - - 1.6981057067
+ - -1.6303140626
+ - 0.9176924324
+ - - 1.7052236346
+ - -1.651405426
+ - -0.8684554699
+ - - 0.034395274
+ - 1.717102542
+ - -1.3142048758
+ - - 1.788506172
+ - 1.4338960676
+ - -1.2917284223
+ - - 0.7144827256
+ - 0.3082091447
+ - -2.1729854286
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.156694204197612
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.801379
+ - 0.927447
+ - 1.267367
+ - - 0.673747
+ - 0.084924
+ - -0.005799
+ - - -0.925642
+ - -0.862071
+ - -0.013181
+ - - -2.185138
+ - 0.443411
+ - 0.012572
+ - - 1.753547
+ - -1.005465
+ - -0.027448
+ - - 0.790033
+ - 0.966263
+ - -1.253518
+ - - 1.781923
+ - 1.421093
+ - 1.290197
+ - - 0.038663
+ - 1.711371
+ - 1.310256
+ - - 0.705982
+ - 0.302664
+ - 2.16046
+ - - -3.149152
+ - -0.07348
+ - 0.00897
+ - - -2.130785
+ - 1.082039
+ - -0.873806
+ - - -2.122708
+ - 1.054491
+ - 0.917641
+ - - 2.745854
+ - -0.538704
+ - -0.024724
+ - - 1.677108
+ - -1.654159
+ - 0.851498
+ - - 1.669115
+ - -1.626797
+ - -0.92523
+ - - 0.027078
+ - 1.751038
+ - -1.26538
+ - - 1.770405
+ - 1.460505
+ - -1.269967
+ - - 0.686505
+ - 0.369262
+ - -2.164529
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.942150359015121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.808602
+ - 0.931122
+ - 1.270755
+ - - 0.678826
+ - 0.089836
+ - -0.005741
+ - - -0.926173
+ - -0.858373
+ - -0.013168
+ - - -2.195775
+ - 0.441927
+ - 0.012546
+ - - 1.751445
+ - -1.010772
+ - -0.027498
+ - - 0.797291
+ - 0.970065
+ - -1.256823
+ - - 1.789647
+ - 1.435186
+ - 1.292039
+ - - 0.037849
+ - 1.714226
+ - 1.323226
+ - - 0.722833
+ - 0.302029
+ - 2.168056
+ - - -3.158475
+ - -0.087266
+ - 0.0087
+ - - -2.150466
+ - 1.083569
+ - -0.878273
+ - - -2.14241
+ - 1.055829
+ - 0.922267
+ - - 2.753512
+ - -0.552905
+ - -0.024927
+ - - 1.670696
+ - -1.663005
+ - 0.85475
+ - - 1.662716
+ - -1.635527
+ - -0.928662
+ - - 0.026209
+ - 1.754309
+ - -1.278246
+ - - 1.778176
+ - 1.47468
+ - -1.271345
+ - - 0.703411
+ - 0.368903
+ - -2.172275
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.087821986425315
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8012
+ - 0.924451
+ - 1.259449
+ - - 0.666013
+ - 0.085283
+ - -0.00576
+ - - -0.91702
+ - -0.84833
+ - -0.013019
+ - - -2.173396
+ - 0.44044
+ - 0.012473
+ - - 1.741298
+ - -0.997791
+ - -0.027279
+ - - 0.789931
+ - 0.963037
+ - -1.245689
+ - - 1.776474
+ - 1.416957
+ - 1.276729
+ - - 0.041732
+ - 1.704616
+ - 1.310015
+ - - 0.713917
+ - 0.303753
+ - 2.150589
+ - - -3.131037
+ - -0.077232
+ - 0.008812
+ - - -2.126744
+ - 1.076945
+ - -0.869029
+ - - -2.118728
+ - 1.049516
+ - 0.912695
+ - - 2.730009
+ - -0.535244
+ - -0.0246
+ - - 1.666218
+ - -1.645059
+ - 0.846901
+ - - 1.658271
+ - -1.617837
+ - -0.920271
+ - - 0.03015
+ - 1.744287
+ - -1.265368
+ - - 1.765079
+ - 1.455974
+ - -1.256566
+ - - 0.694547
+ - 0.370067
+ - -2.154701
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.434120395009167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.809381
+ - 0.929219
+ - 1.269823
+ - - 0.677961
+ - 0.087466
+ - -0.005765
+ - - -0.932538
+ - -0.858824
+ - -0.013143
+ - - -2.203914
+ - 0.445438
+ - 0.01261
+ - - 1.75514
+ - -1.007944
+ - -0.027465
+ - - 0.798081
+ - 0.968142
+ - -1.255936
+ - - 1.785815
+ - 1.426196
+ - 1.29
+ - - 0.046342
+ - 1.709515
+ - 1.322406
+ - - 0.723125
+ - 0.305605
+ - 2.161974
+ - - -3.160858
+ - -0.078671
+ - 0.00881
+ - - -2.155041
+ - 1.080908
+ - -0.872427
+ - - -2.147061
+ - 1.053367
+ - 0.91632
+ - - 2.748467
+ - -0.548333
+ - -0.024821
+ - - 1.679048
+ - -1.65654
+ - 0.848779
+ - - 1.671129
+ - -1.629238
+ - -0.922567
+ - - 0.034719
+ - 1.749592
+ - -1.277614
+ - - 1.77437
+ - 1.465628
+ - -1.26953
+ - - 0.703749
+ - 0.372305
+ - -2.166071
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.14528935229098
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.798381
+ - 0.919968
+ - 1.266594
+ - - 0.661329
+ - 0.081218
+ - 5.5e-05
+ - - -0.913594
+ - -0.858111
+ - 0.000832
+ - - -2.158182
+ - 0.444882
+ - 0.000273
+ - - 1.74381
+ - -0.996444
+ - -0.028536
+ - - 0.77386
+ - 0.961943
+ - -1.239959
+ - - 1.771886
+ - 1.417637
+ - 1.276821
+ - - 0.033644
+ - 1.695792
+ - 1.319807
+ - - 0.718997
+ - 0.294763
+ - 2.156125
+ - - -3.122459
+ - -0.061008
+ - 0.014656
+ - - -2.106413
+ - 1.057474
+ - -0.898021
+ - - -2.089691
+ - 1.074456
+ - 0.885744
+ - - 2.729246
+ - -0.525307
+ - -0.024078
+ - - 1.671856
+ - -1.648029
+ - 0.843702
+ - - 1.661493
+ - -1.611339
+ - -0.926004
+ - - 0.016658
+ - 1.746867
+ - -1.245826
+ - - 1.752096
+ - 1.449913
+ - -1.258329
+ - - 0.664996
+ - 0.369157
+ - -2.148476
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.043833624765906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.798381
+ - 0.919968
+ - 1.266594
+ - - 0.661329
+ - 0.081218
+ - 5.5e-05
+ - - -0.913594
+ - -0.858111
+ - 0.000832
+ - - -2.158182
+ - 0.444882
+ - 0.000273
+ - - 1.74381
+ - -0.996444
+ - -0.028536
+ - - 0.77386
+ - 0.961943
+ - -1.239959
+ - - 1.771886
+ - 1.417637
+ - 1.276821
+ - - 0.033644
+ - 1.695792
+ - 1.319807
+ - - 0.718997
+ - 0.294763
+ - 2.156125
+ - - -3.122459
+ - -0.061008
+ - 0.014656
+ - - -2.106413
+ - 1.057474
+ - -0.898021
+ - - -2.089691
+ - 1.074456
+ - 0.885744
+ - - 2.729246
+ - -0.525307
+ - -0.024078
+ - - 1.671856
+ - -1.648029
+ - 0.843702
+ - - 1.661493
+ - -1.611339
+ - -0.926004
+ - - 0.016658
+ - 1.746867
+ - -1.245826
+ - - 1.752096
+ - 1.449913
+ - -1.258329
+ - - 0.664996
+ - 0.369157
+ - -2.148476
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.87261667611355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.798381
+ - 0.919968
+ - 1.266594
+ - - 0.661329
+ - 0.081218
+ - 5.5e-05
+ - - -0.913594
+ - -0.858111
+ - 0.000832
+ - - -2.158182
+ - 0.444882
+ - 0.000273
+ - - 1.74381
+ - -0.996444
+ - -0.028536
+ - - 0.77386
+ - 0.961943
+ - -1.239959
+ - - 1.771886
+ - 1.417637
+ - 1.276821
+ - - 0.033644
+ - 1.695792
+ - 1.319807
+ - - 0.718997
+ - 0.294763
+ - 2.156125
+ - - -3.122459
+ - -0.061008
+ - 0.014656
+ - - -2.106413
+ - 1.057474
+ - -0.898021
+ - - -2.089691
+ - 1.074456
+ - 0.885744
+ - - 2.729246
+ - -0.525307
+ - -0.024078
+ - - 1.671856
+ - -1.648029
+ - 0.843702
+ - - 1.661493
+ - -1.611339
+ - -0.926004
+ - - 0.016658
+ - 1.746867
+ - -1.245826
+ - - 1.752096
+ - 1.449913
+ - -1.258329
+ - - 0.664996
+ - 0.369157
+ - -2.148476
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.859264504544164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.80785
+ - 0.928871
+ - 1.269261
+ - - 0.675038
+ - 0.085852
+ - -0.005782
+ - - -0.929227
+ - -0.858149
+ - -0.013147
+ - - -2.200177
+ - 0.444274
+ - 0.012596
+ - - 1.753507
+ - -1.00875
+ - -0.027478
+ - - 0.796547
+ - 0.967774
+ - -1.255384
+ - - 1.784659
+ - 1.42799
+ - 1.287957
+ - - 0.043543
+ - 1.709748
+ - 1.322105
+ - - 0.723469
+ - 0.306317
+ - 2.163885
+ - - -3.158903
+ - -0.079155
+ - 0.008812
+ - - -2.150834
+ - 1.082057
+ - -0.872592
+ - - -2.142845
+ - 1.054492
+ - 0.916535
+ - - 2.747791
+ - -0.548257
+ - -0.02483
+ - - 1.678117
+ - -1.658398
+ - 0.84959
+ - - 1.670182
+ - -1.631073
+ - -0.923438
+ - - 0.031909
+ - 1.749807
+ - -1.277296
+ - - 1.77322
+ - 1.467362
+ - -1.26744
+ - - 0.704067
+ - 0.373069
+ - -2.167974
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.603662996546404
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.82211
+ - 0.909149
+ - 1.293937
+ - - 0.661204
+ - 0.079834
+ - 0.023725
+ - - -0.915397
+ - -0.858965
+ - 0.052746
+ - - -2.154088
+ - 0.444362
+ - -0.054291
+ - - 1.74398
+ - -0.995755
+ - -0.03448
+ - - 0.74534
+ - 0.971999
+ - -1.209777
+ - - 1.786117
+ - 1.425015
+ - 1.278787
+ - - 0.044123
+ - 1.668962
+ - 1.378195
+ - - 0.781551
+ - 0.273647
+ - 2.178533
+ - - -3.11888
+ - -0.047359
+ - 0.057844
+ - - -2.130754
+ - 0.946247
+ - -1.019821
+ - - -2.045164
+ - 1.172128
+ - 0.748353
+ - - 2.728851
+ - -0.523644
+ - -0.022897
+ - - 1.675639
+ - -1.666014
+ - 0.82393
+ - - 1.655634
+ - -1.589858
+ - -0.944919
+ - - 0.004975
+ - 1.77231
+ - -1.176002
+ - - 1.732549
+ - 1.439118
+ - -1.258014
+ - - 0.590124
+ - 0.392658
+ - -2.120468
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.923468287594215
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.792796884
- - 0.962774588
- - 1.2574423707
- - - 0.6789154808
- - 0.082941826
- - -2.75598e-05
- - - -0.9338957387
- - -0.8729388589
- - 0.000437704
- - - -2.1912766794
- - 0.4587351315
- - -0.0001897495
- - - 1.7742360547
- - -1.0033479933
- - 0.0174040126
- - - 0.8056227372
- - 0.9350658136
- - -1.2752394103
- - - 1.7782784258
- - 1.4563867124
- - 1.2756564685
- - - 0.026005463
- - 1.7500463725
- - 1.2678473495
- - - 0.6859704893
- - 0.3572868023
- - 2.1680908358
- - - -3.1681166153
- - -0.0442808157
- - 0.000160237
- - - -2.1230006864
- - 1.0862849049
- - -0.8994341771
- - - -2.1227512209
- - 1.0865343316
- - 0.8987048408
- - - 2.7634655868
- - -0.5197410278
- - 0.0153149636
- - - 1.6981057067
- - -1.6303140626
- - 0.9176924324
- - - 1.7052236346
- - -1.651405426
- - -0.8684554699
- - - 0.034395274
- - 1.717102542
- - -1.3142048758
- - - 1.788506172
- - 1.4338960676
- - -1.2917284223
- - - 0.7144827256
- - 0.3082091447
- - -2.1729854286
+ - - 0.800039
+ - 0.924988
+ - 1.259331
+ - - 0.667558
+ - 0.088515
+ - -0.005723
+ - - -0.911815
+ - -0.846228
+ - -0.013014
+ - - -2.166159
+ - 0.439294
+ - 0.012443
+ - - 1.737397
+ - -0.997806
+ - -0.027266
+ - - 0.788769
+ - 0.963564
+ - -1.24556
+ - - 1.776332
+ - 1.420559
+ - 1.278261
+ - - 0.037835
+ - 1.705575
+ - 1.30979
+ - - 0.712471
+ - 0.301332
+ - 2.150862
+ - - -3.124353
+ - -0.08225
+ - 0.00871
+ - - -2.121146
+ - 1.076646
+ - -0.871711
+ - - -2.113112
+ - 1.049096
+ - 0.915383
+ - - 2.72976
+ - -0.537939
+ - -0.024651
+ - - 1.65902
+ - -1.645636
+ - 0.848831
+ - - 1.651049
+ - -1.618366
+ - -0.922152
+ - - 0.026246
+ - 1.745224
+ - -1.265105
+ - - 1.764918
+ - 1.459624
+ - -1.257999
+ - - 0.693106
+ - 0.367642
+ - -2.155049
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.18825981033749392
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.806386
+ - 0.930747
+ - 1.270996
+ - - 0.676813
+ - 0.089502
+ - -0.00574
+ - - -0.924279
+ - -0.858058
+ - -0.013156
+ - - -2.192565
+ - 0.444793
+ - 0.0126
+ - - 1.751449
+ - -1.009424
+ - -0.027487
+ - - 0.795049
+ - 0.969689
+ - -1.257071
+ - - 1.783614
+ - 1.431541
+ - 1.28906
+ - - 0.037191
+ - 1.708524
+ - 1.321096
+ - - 0.721341
+ - 0.301861
+ - 2.162291
+ - - -3.150476
+ - -0.082097
+ - 0.008779
+ - - -2.140933
+ - 1.081396
+ - -0.874692
+ - - -2.132891
+ - 1.053773
+ - 0.918578
+ - - 2.747181
+ - -0.549419
+ - -0.024867
+ - - 1.669194
+ - -1.657188
+ - 0.851565
+ - - 1.661226
+ - -1.629818
+ - -0.9253
+ - - 0.025543
+ - 1.748534
+ - -1.276293
+ - - 1.772144
+ - 1.470936
+ - -1.268464
+ - - 0.701928
+ - 0.368541
+ - -2.166515
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.303235893868102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.7983809694
+ - 0.9199675661
+ - 1.2665944247
+ - - 0.6613293385
+ - 0.0812181921
+ - 5.51396e-05
+ - - -0.913594012
+ - -0.8581107708
+ - 0.0008322714
+ - - -2.1581816728
+ - 0.4448817902
+ - 0.0002726609
+ - - 1.7438102737
+ - -0.9964442498
+ - -0.0285363247
+ - - 0.7738602922
+ - 0.9619425947
+ - -1.2399589295
+ - - 1.7718859018
+ - 1.4176371549
+ - 1.2768207029
+ - - 0.0336440247
+ - 1.6957924475
+ - 1.3198071587
+ - - 0.7189973897
+ - 0.2947633601
+ - 2.1561251231
+ - - -3.122459305
+ - -0.0610077712
+ - 0.0146563861
+ - - -2.1064126166
+ - 1.0574738367
+ - -0.8980209376
+ - - -2.089690903
+ - 1.0744561384
+ - 0.8857443781
+ - - 2.7292456912
+ - -0.5253068778
+ - -0.0240777754
+ - - 1.6718559931
+ - -1.6480293081
+ - 0.8437021821
+ - - 1.6614933712
+ - -1.6113393389
+ - -0.9260042062
+ - - 0.0166577754
+ - 1.7468669503
+ - -1.2458257257
+ - - 1.7520955062
+ - 1.4499134949
+ - -1.2583290914
+ - - 0.6649961574
+ - 0.3691568859
+ - -2.1484763628
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.525047248100268
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.796951
+ - 0.924545
+ - 1.26079
+ - - 0.663707
+ - 0.082715
+ - -0.005798
+ - - -0.918097
+ - -0.853904
+ - -0.013086
+ - - -2.168887
+ - 0.440288
+ - 0.012494
+ - - 1.743793
+ - -0.99912
+ - -0.027329
+ - - 0.78564
+ - 0.963163
+ - -1.247016
+ - - 1.775383
+ - 1.412733
+ - 1.279786
+ - - 0.04008
+ - 1.70927
+ - 1.304455
+ - - 0.702782
+ - 0.305202
+ - 2.153363
+ - - -3.130289
+ - -0.072146
+ - 0.00894
+ - - -2.116166
+ - 1.076553
+ - -0.870333
+ - - -2.108112
+ - 1.049069
+ - 0.913988
+ - - 2.731009
+ - -0.531051
+ - -0.024575
+ - - 1.671163
+ - -1.646459
+ - 0.848314
+ - - 1.663178
+ - -1.619203
+ - -0.921796
+ - - 0.028513
+ - 1.748753
+ - -1.259673
+ - - 1.763927
+ - 1.451842
+ - -1.259794
+ - - 0.683341
+ - 0.371581
+ - -2.157349
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-2-butanethiol.yml b/input/reference_sets/main/2-Methyl-2-butanethiol.yml
index 63ea6e30a7..cbf5c9517e 100644
--- a/input/reference_sets/main/2-Methyl-2-butanethiol.yml
+++ b/input/reference_sets/main/2-Methyl-2-butanethiol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.965336879823784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.123057
+ - -0.847074
+ - -1.453223
+ - - -0.241118
+ - -0.390775
+ - 0.001386
+ - - -0.938764
+ - 1.318615
+ - -0.076101
+ - - -1.20997
+ - -1.301512
+ - 0.752417
+ - - 1.121874
+ - -0.400811
+ - 0.712078
+ - - 2.238425
+ - 0.392174
+ - 0.044768
+ - - 0.480963
+ - -0.162726
+ - -2.047347
+ - - 0.345296
+ - -1.833009
+ - -1.488647
+ - - -1.107571
+ - -0.91992
+ - -1.915376
+ - - -1.074556
+ - 1.488479
+ - 1.247029
+ - - -0.837952
+ - -2.3295
+ - 0.743322
+ - - -2.196982
+ - -1.285502
+ - 0.292125
+ - - -1.313397
+ - -0.991646
+ - 1.79337
+ - - 1.427521
+ - -1.449034
+ - 0.804138
+ - - 0.97461
+ - -0.036041
+ - 1.732268
+ - - 1.943439
+ - 1.429862
+ - -0.106939
+ - - 2.509638
+ - -0.029111
+ - -0.92321
+ - - 3.133174
+ - 0.380907
+ - 0.667813
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.997848014996123
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.125675
+ - -0.853442
+ - -1.456383
+ - - -0.240895
+ - -0.39545
+ - -0.000776
+ - - -0.940044
+ - 1.322998
+ - -0.080725
+ - - -1.211877
+ - -1.302359
+ - 0.754606
+ - - 1.12442
+ - -0.403239
+ - 0.709215
+ - - 2.239932
+ - 0.398671
+ - 0.049298
+ - - 0.485961
+ - -0.175071
+ - -2.050248
+ - - 0.333757
+ - -1.844083
+ - -1.491697
+ - - -1.110175
+ - -0.917854
+ - -1.920747
+ - - -1.067498
+ - 1.500187
+ - 1.245142
+ - - -0.841316
+ - -2.331648
+ - 0.750502
+ - - -2.19922
+ - -1.288069
+ - 0.294044
+ - - -1.315836
+ - -0.988431
+ - 1.794674
+ - - 1.434245
+ - -1.451249
+ - 0.795161
+ - - 0.975882
+ - -0.046945
+ - 1.732486
+ - - 1.943221
+ - 1.438472
+ - -0.090183
+ - - 2.5101
+ - -0.010051
+ - -0.925391
+ - - 3.136592
+ - 0.380941
+ - 0.670891
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -1.0222989831928577
+ value: -1.0222989831928577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.1487829751
+ - -0.8833450324
+ - -1.4576785538
+ - - -0.2441086208
+ - -0.402919831
+ - 0.0032627481
+ - - -0.9345369748
+ - 1.3427051357
+ - -0.0797509967
+ - - -1.2260602092
+ - -1.2946775802
+ - 0.7847669091
+ - - 1.1387126393
+ - -0.4173603148
+ - 0.705577444
+ - - 2.2570085886
+ - 0.3917044363
+ - 0.0325854939
+ - - 0.4782311545
+ - -0.218072248
+ - -2.0657431918
+ - - 0.2940747749
+ - -1.8910920904
+ - -1.4772746484
+ - - -1.1465399784
+ - -0.933500322
+ - -1.9156909037
+ - - -1.0091087595
+ - 1.5151886995
+ - 1.261659554
+ - - -0.8644363167
+ - -2.3363700523
+ - 0.7859020798
+ - - -2.2240790965
+ - -1.2687027794
+ - 0.3280323424
+ - - -1.3130280481
+ - -0.9639227166
+ - 1.8304216112
+ - - 1.4474446775
+ - -1.4754224387
+ - 0.7818151733
+ - - 0.9983584583
+ - -0.0617076887
+ - 1.7398022559
+ - - 1.9504784202
+ - 1.4384673349
+ - -0.0980358159
+ - - 2.5129391189
+ - -0.0175873735
+ - -0.9550531612
+ - - 3.1676406556
+ - 0.3690294363
+ - 0.6490964037
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.19576335467424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.127654
+ - -0.854796
+ - -1.461536
+ - - -0.241846
+ - -0.39646
+ - -0.001745
+ - - -0.942799
+ - 1.328368
+ - -0.080685
+ - - -1.216697
+ - -1.303822
+ - 0.756463
+ - - 1.127393
+ - -0.403088
+ - 0.710254
+ - - 2.245663
+ - 0.40134
+ - 0.049891
+ - - 0.485821
+ - -0.17302
+ - -2.057105
+ - - 0.33443
+ - -1.848765
+ - -1.495684
+ - - -1.116466
+ - -0.92006
+ - -1.926305
+ - - -1.064285
+ - 1.496951
+ - 1.249892
+ - - -0.847148
+ - -2.338116
+ - 0.749671
+ - - -2.208432
+ - -1.285154
+ - 0.295647
+ - - -1.317093
+ - -0.989226
+ - 1.801069
+ - - 1.437691
+ - -1.455613
+ - 0.796562
+ - - 0.975918
+ - -0.045773
+ - 1.737385
+ - - 1.941513
+ - 1.44251
+ - -0.097322
+ - - 2.522685
+ - -0.013567
+ - -0.924941
+ - - 3.142878
+ - 0.391671
+ - 0.67836
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.779102013017443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.131585
+ - -0.858092
+ - -1.464789
+ - - -0.241159
+ - -0.398958
+ - -0.002156
+ - - -0.942597
+ - 1.330116
+ - -0.089626
+ - - -1.21825
+ - -1.303872
+ - 0.760389
+ - - 1.132599
+ - -0.405027
+ - 0.708439
+ - - 2.251593
+ - 0.406546
+ - 0.052954
+ - - 0.493652
+ - -0.181494
+ - -2.063965
+ - - 0.319016
+ - -1.862845
+ - -1.503246
+ - - -1.124557
+ - -0.910735
+ - -1.934257
+ - - -1.082079
+ - 1.503635
+ - 1.247176
+ - - -0.850046
+ - -2.344135
+ - 0.759045
+ - - -2.215214
+ - -1.287234
+ - 0.298625
+ - - -1.320787
+ - -0.986031
+ - 1.809151
+ - - 1.44665
+ - -1.46253
+ - 0.7913
+ - - 0.981102
+ - -0.053502
+ - 1.743373
+ - - 1.947383
+ - 1.45451
+ - -0.084687
+ - - 2.532229
+ - 0.000832
+ - -0.93025
+ - - 3.153621
+ - 0.392195
+ - 0.682394
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.706658022482536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.126112
+ - -0.847636
+ - -1.451263
+ - - -0.241918
+ - -0.388446
+ - -0.000251
+ - - -0.941357
+ - 1.313677
+ - -0.077994
+ - - -1.205134
+ - -1.299775
+ - 0.752041
+ - - 1.120441
+ - -0.39858
+ - 0.707143
+ - - 2.239053
+ - 0.391683
+ - 0.047667
+ - - 0.48036
+ - -0.167837
+ - -2.047954
+ - - 0.337272
+ - -1.835584
+ - -1.487326
+ - - -1.110233
+ - -0.917228
+ - -1.914409
+ - - -1.083159
+ - 1.490968
+ - 1.242645
+ - - -0.832025
+ - -2.326989
+ - 0.744424
+ - - -2.193098
+ - -1.288082
+ - 0.294001
+ - - -1.309363
+ - -0.99048
+ - 1.79291
+ - - 1.42579
+ - -1.446368
+ - 0.799037
+ - - 0.974142
+ - -0.037199
+ - 1.72834
+ - - 1.952415
+ - 1.432679
+ - -0.097986
+ - - 2.511618
+ - -0.023114
+ - -0.922926
+ - - 3.13288
+ - 0.37169
+ - 0.671771
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.20259765399814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.132745
+ - -0.858436
+ - -1.463737
+ - - -0.242713
+ - -0.396303
+ - -0.002731
+ - - -0.953255
+ - 1.334542
+ - -0.084351
+ - - -1.216038
+ - -1.30564
+ - 0.759294
+ - - 1.130185
+ - -0.400309
+ - 0.707815
+ - - 2.255465
+ - 0.40382
+ - 0.053202
+ - - 0.48057
+ - -0.183611
+ - -2.063731
+ - - 0.323423
+ - -1.852833
+ - -1.500279
+ - - -1.119897
+ - -0.921101
+ - -1.92729
+ - - -1.0959
+ - 1.508573
+ - 1.241374
+ - - -0.846716
+ - -2.33751
+ - 0.754288
+ - - -2.206798
+ - -1.291473
+ - 0.301618
+ - - -1.318493
+ - -0.993707
+ - 1.802201
+ - - 1.441662
+ - -1.450175
+ - 0.79237
+ - - 0.983184
+ - -0.047368
+ - 1.734571
+ - - 1.970543
+ - 1.450073
+ - -0.074973
+ - - 2.526621
+ - 0.003705
+ - -0.926995
+ - - 3.152474
+ - 0.37113
+ - 0.677223
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.998040018652176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.119143
+ - -0.842294
+ - -1.449926
+ - - -0.241955
+ - -0.388682
+ - 0.003407
+ - - -0.936197
+ - 1.312452
+ - -0.071496
+ - - -1.208955
+ - -1.301337
+ - 0.750667
+ - - 1.118604
+ - -0.399269
+ - 0.714306
+ - - 2.233727
+ - 0.387549
+ - 0.040059
+ - - 0.484825
+ - -0.153631
+ - -2.040368
+ - - 0.352486
+ - -1.827261
+ - -1.485974
+ - - -1.103116
+ - -0.916163
+ - -1.914477
+ - - -1.070589
+ - 1.479917
+ - 1.252503
+ - - -0.834611
+ - -2.32884
+ - 0.739283
+ - - -2.1957
+ - -1.284315
+ - 0.288474
+ - - -1.313068
+ - -0.992107
+ - 1.792462
+ - - 1.421909
+ - -1.448204
+ - 0.811859
+ - - 0.970786
+ - -0.028736
+ - 1.733077
+ - - 1.93794
+ - 1.424014
+ - -0.123914
+ - - 2.506159
+ - -0.045037
+ - -0.923352
+ - - 3.128472
+ - 0.385322
+ - 0.66328
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.734069804847902
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.119143
+ - -0.842294
+ - -1.449926
+ - - -0.241955
+ - -0.388682
+ - 0.003407
+ - - -0.936197
+ - 1.312452
+ - -0.071496
+ - - -1.208955
+ - -1.301337
+ - 0.750667
+ - - 1.118604
+ - -0.399269
+ - 0.714306
+ - - 2.233727
+ - 0.387549
+ - 0.040059
+ - - 0.484825
+ - -0.153631
+ - -2.040368
+ - - 0.352486
+ - -1.827261
+ - -1.485974
+ - - -1.103116
+ - -0.916163
+ - -1.914477
+ - - -1.070589
+ - 1.479917
+ - 1.252503
+ - - -0.834611
+ - -2.32884
+ - 0.739283
+ - - -2.1957
+ - -1.284315
+ - 0.288474
+ - - -1.313068
+ - -0.992107
+ - 1.792462
+ - - 1.421909
+ - -1.448204
+ - 0.811859
+ - - 0.970786
+ - -0.028736
+ - 1.733077
+ - - 1.93794
+ - 1.424014
+ - -0.123914
+ - - 2.506159
+ - -0.045037
+ - -0.923352
+ - - 3.128472
+ - 0.385322
+ - 0.66328
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.67134259291074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.119143
+ - -0.842294
+ - -1.449926
+ - - -0.241955
+ - -0.388682
+ - 0.003407
+ - - -0.936197
+ - 1.312452
+ - -0.071496
+ - - -1.208955
+ - -1.301337
+ - 0.750667
+ - - 1.118604
+ - -0.399269
+ - 0.714306
+ - - 2.233727
+ - 0.387549
+ - 0.040059
+ - - 0.484825
+ - -0.153631
+ - -2.040368
+ - - 0.352486
+ - -1.827261
+ - -1.485974
+ - - -1.103116
+ - -0.916163
+ - -1.914477
+ - - -1.070589
+ - 1.479917
+ - 1.252503
+ - - -0.834611
+ - -2.32884
+ - 0.739283
+ - - -2.1957
+ - -1.284315
+ - 0.288474
+ - - -1.313068
+ - -0.992107
+ - 1.792462
+ - - 1.421909
+ - -1.448204
+ - 0.811859
+ - - 0.970786
+ - -0.028736
+ - 1.733077
+ - - 1.93794
+ - 1.424014
+ - -0.123914
+ - - 2.506159
+ - -0.045037
+ - -0.923352
+ - - 3.128472
+ - 0.385322
+ - 0.66328
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.46035332988453
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.131975
+ - -0.85575
+ - -1.464348
+ - - -0.243767
+ - -0.394861
+ - -0.002807
+ - - -0.954631
+ - 1.328584
+ - -0.084198
+ - - -1.215329
+ - -1.30709
+ - 0.758372
+ - - 1.127351
+ - -0.398831
+ - 0.709642
+ - - 2.253209
+ - 0.402376
+ - 0.05257
+ - - 0.481473
+ - -0.178289
+ - -2.063469
+ - - 0.326452
+ - -1.850392
+ - -1.50215
+ - - -1.119491
+ - -0.920123
+ - -1.929933
+ - - -1.082765
+ - 1.513416
+ - 1.243835
+ - - -0.842682
+ - -2.339128
+ - 0.755252
+ - - -2.207317
+ - -1.297447
+ - 0.300083
+ - - -1.319589
+ - -0.99477
+ - 1.802389
+ - - 1.438279
+ - -1.449826
+ - 0.79887
+ - - 0.979289
+ - -0.042423
+ - 1.736591
+ - - 1.968572
+ - 1.449698
+ - -0.079208
+ - - 2.522663
+ - -0.0016
+ - -0.927988
+ - - 3.151831
+ - 0.369834
+ - 0.676366
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.94571062637858
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.114009
+ - -0.831876
+ - -1.447398
+ - - -0.243226
+ - -0.385164
+ - 0.007517
+ - - -0.94283
+ - 1.313837
+ - -0.061586
+ - - -1.209591
+ - -1.304537
+ - 0.747714
+ - - 1.116428
+ - -0.394801
+ - 0.720658
+ - - 2.233617
+ - 0.376345
+ - 0.032236
+ - - 0.479877
+ - -0.131409
+ - -2.034516
+ - - 0.372971
+ - -1.809376
+ - -1.484954
+ - - -1.097095
+ - -0.918752
+ - -1.911255
+ - - -1.075678
+ - 1.474837
+ - 1.261241
+ - - -0.835045
+ - -2.33166
+ - 0.725607
+ - - -2.196886
+ - -1.283026
+ - 0.287082
+ - - -1.310994
+ - -1.004755
+ - 1.792432
+ - - 1.414137
+ - -1.443778
+ - 0.830342
+ - - 0.971258
+ - -0.009583
+ - 1.733942
+ - - 1.933569
+ - 1.40661
+ - -0.161153
+ - - 2.510014
+ - -0.082963
+ - -0.917373
+ - - 3.125055
+ - 0.393432
+ - 0.659333
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.20790999972304
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.1487829751
- - -0.8833450324
- - -1.4576785538
- - - -0.2441086208
- - -0.402919831
- - 0.0032627481
- - - -0.9345369748
- - 1.3427051357
- - -0.0797509967
- - - -1.2260602092
- - -1.2946775802
- - 0.7847669091
- - - 1.1387126393
- - -0.4173603148
- - 0.705577444
- - - 2.2570085886
- - 0.3917044363
- - 0.0325854939
- - - 0.4782311545
- - -0.218072248
- - -2.0657431918
- - - 0.2940747749
- - -1.8910920904
- - -1.4772746484
- - - -1.1465399784
- - -0.933500322
- - -1.9156909037
- - - -1.0091087595
- - 1.5151886995
- - 1.261659554
- - - -0.8644363167
- - -2.3363700523
- - 0.7859020798
- - - -2.2240790965
- - -1.2687027794
- - 0.3280323424
- - - -1.3130280481
- - -0.9639227166
- - 1.8304216112
- - - 1.4474446775
- - -1.4754224387
- - 0.7818151733
- - - 0.9983584583
- - -0.0617076887
- - 1.7398022559
- - - 1.9504784202
- - 1.4384673349
- - -0.0980358159
- - - 2.5129391189
- - -0.0175873735
- - -0.9550531612
- - - 3.1676406556
- - 0.3690294363
- - 0.6490964037
+ - - -0.125368
+ - -0.849514
+ - -1.450509
+ - - -0.238664
+ - -0.392714
+ - -0.000149
+ - - -0.931142
+ - 1.309109
+ - -0.082826
+ - - -1.205387
+ - -1.29666
+ - 0.752559
+ - - 1.122516
+ - -0.402574
+ - 0.705928
+ - - 2.233872
+ - 0.395287
+ - 0.048897
+ - - 0.489993
+ - -0.172508
+ - -2.045352
+ - - 0.329702
+ - -1.843644
+ - -1.487106
+ - - -1.111348
+ - -0.908917
+ - -1.915973
+ - - -1.072669
+ - 1.484871
+ - 1.241454
+ - - -0.836027
+ - -2.327802
+ - 0.747518
+ - - -2.194898
+ - -1.280798
+ - 0.292993
+ - - -1.308416
+ - -0.983927
+ - 1.794725
+ - - 1.430356
+ - -1.452851
+ - 0.793386
+ - - 0.973599
+ - -0.046733
+ - 1.731325
+ - - 1.934715
+ - 1.435333
+ - -0.097003
+ - - 2.511111
+ - -0.017109
+ - -0.923747
+ - - 3.129629
+ - 0.384527
+ - 0.673749
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.1438930352193176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.129103
+ - -0.857982
+ - -1.464282
+ - - -0.238951
+ - -0.399687
+ - -0.001425
+ - - -0.937131
+ - 1.327278
+ - -0.085186
+ - - -1.218596
+ - -1.30321
+ - 0.759855
+ - - 1.132792
+ - -0.407542
+ - 0.711219
+ - - 2.248538
+ - 0.406436
+ - 0.050799
+ - - 0.494253
+ - -0.182167
+ - -2.057118
+ - - 0.319084
+ - -1.858475
+ - -1.500466
+ - - -1.118909
+ - -0.907913
+ - -1.928974
+ - - -1.079928
+ - 1.495683
+ - 1.244189
+ - - -0.84893
+ - -2.337634
+ - 0.760568
+ - - -2.208454
+ - -1.286215
+ - 0.294743
+ - - -1.321925
+ - -0.981674
+ - 1.802178
+ - - 1.446382
+ - -1.459711
+ - 0.791061
+ - - 0.981819
+ - -0.053758
+ - 1.739666
+ - - 1.940879
+ - 1.448177
+ - -0.084952
+ - - 2.522319
+ - -0.000261
+ - -0.92845
+ - - 3.147432
+ - 0.392031
+ - 0.676446
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.03949471641804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.1191432027
+ - -0.8422938759
+ - -1.4499261637
+ - - -0.2419547842
+ - -0.3886815167
+ - 0.0034073363
+ - - -0.9361973358
+ - 1.3124523532
+ - -0.0714955813
+ - - -1.2089554199
+ - -1.3013370384
+ - 0.7506665169
+ - - 1.1186042806
+ - -0.3992688518
+ - 0.714306424
+ - - 2.2337266164
+ - 0.3875486341
+ - 0.0400586524
+ - - 0.4848251055
+ - -0.1536306476
+ - -2.0403684206
+ - - 0.3524863736
+ - -1.8272612837
+ - -1.485973996
+ - - -1.1031160201
+ - -0.916163266
+ - -1.9144765362
+ - - -1.0705889698
+ - 1.4799166319
+ - 1.2525034647
+ - - -0.8346110974
+ - -2.3288400076
+ - 0.739282655
+ - - -2.1956998472
+ - -1.2843153672
+ - 0.2884743337
+ - - -1.3130683388
+ - -0.9921069152
+ - 1.7924621856
+ - - 1.4219092665
+ - -1.4482036813
+ - 0.8118592321
+ - - 0.9707856165
+ - -0.0287355553
+ - 1.7330766627
+ - - 1.9379396481
+ - 1.4240137348
+ - -0.1239143053
+ - - 2.5061587224
+ - -0.045037399
+ - -0.9233522
+ - - 3.1284719723
+ - 0.3853219967
+ - 0.6632796296
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.24407345125891
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.123182
+ - -0.842628
+ - -1.452631
+ - - -0.244403
+ - -0.386816
+ - 0.001404
+ - - -0.946101
+ - 1.316027
+ - -0.071772
+ - - -1.208771
+ - -1.303215
+ - 0.751164
+ - - 1.118915
+ - -0.395893
+ - 0.711954
+ - - 2.238947
+ - 0.387394
+ - 0.043412
+ - - 0.478904
+ - -0.155242
+ - -2.047301
+ - - 0.351359
+ - -1.826428
+ - -1.486978
+ - - -1.106857
+ - -0.922321
+ - -1.917466
+ - - -1.071971
+ - 1.490825
+ - 1.250991
+ - - -0.834505
+ - -2.33095
+ - 0.736044
+ - - -2.198282
+ - -1.28848
+ - 0.294116
+ - - -1.309794
+ - -0.999016
+ - 1.794956
+ - - 1.421854
+ - -1.444683
+ - 0.80998
+ - - 0.97307
+ - -0.026297
+ - 1.731268
+ - - 1.947577
+ - 1.425693
+ - -0.120295
+ - - 2.513784
+ - -0.044474
+ - -0.920171
+ - - 3.131029
+ - 0.379882
+ - 0.671196
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-2-propanamine.yml b/input/reference_sets/main/2-Methyl-2-propanamine.yml
index f7f314d87f..46b0779f46 100644
--- a/input/reference_sets/main/2-Methyl-2-propanamine.yml
+++ b/input/reference_sets/main/2-Methyl-2-propanamine.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.478932976355406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.253883
+ - -0.802891
+ - 0.334726
+ - - 4.0e-05
+ - -0.005153
+ - -0.0158
+ - - 0.001225
+ - 0.19272
+ - -1.474342
+ - - 0.003815
+ - 1.32195
+ - 0.753391
+ - - 1.248757
+ - -0.810584
+ - 0.335715
+ - - -1.263015
+ - -1.749439
+ - -0.204931
+ - - -2.15412
+ - -0.2471
+ - 0.062335
+ - - -1.298698
+ - -1.007217
+ - 1.405198
+ - - -0.810523
+ - 0.735476
+ - -1.75091
+ - - 0.816513
+ - 0.730474
+ - -1.750267
+ - - -0.877935
+ - 1.914611
+ - 0.500762
+ - - 0.889393
+ - 1.909179
+ - 0.50146
+ - - 0.002892
+ - 1.160215
+ - 1.833383
+ - - 1.252498
+ - -1.757171
+ - -0.203936
+ - - 2.152609
+ - -0.260338
+ - 0.064038
+ - - 1.291469
+ - -1.015179
+ - 1.406223
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.452694433468388
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.255937
+ - -0.804262
+ - 0.335246
+ - - 4.1e-05
+ - -0.005023
+ - -0.016092
+ - - 0.001233
+ - 0.195324
+ - -1.475841
+ - - 0.003823
+ - 1.324443
+ - 0.754728
+ - - 1.250803
+ - -0.811967
+ - 0.336236
+ - - -1.266323
+ - -1.750853
+ - -0.205588
+ - - -2.157146
+ - -0.247905
+ - 0.064576
+ - - -1.300091
+ - -1.010292
+ - 1.406023
+ - - -0.811427
+ - 0.734858
+ - -1.756054
+ - - 0.817417
+ - 0.72985
+ - -1.755411
+ - - -0.878347
+ - 1.917637
+ - 0.502107
+ - - 0.889822
+ - 1.912202
+ - 0.502807
+ - - 0.002901
+ - 1.163571
+ - 1.835572
+ - - 1.255798
+ - -1.758605
+ - -0.204593
+ - - 2.155629
+ - -0.261161
+ - 0.066282
+ - - 1.292843
+ - -1.018264
+ - 1.407048
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -9.720629548460467
+ value: -9.720629548460467
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.2517581315
+ - -0.8260231417
+ - 0.3448787588
+ - - 0.0002589593
+ - -0.0052528754
+ - -0.0190697868
+ - - -0.0012006919
+ - 0.1782126648
+ - -1.4914153477
+ - - -0.015826433
+ - 1.3403777944
+ - 0.7467430144
+ - - 1.2701697452
+ - -0.7975708361
+ - 0.3460475521
+ - - -1.2495292167
+ - -1.7811044683
+ - -0.198555678
+ - - -2.1683195396
+ - -0.2769327811
+ - 0.0750532367
+ - - -1.2828489001
+ - -1.028400132
+ - 1.4253733089
+ - - -0.8227736129
+ - 0.7385021685
+ - -1.7442062464
+ - - 0.8065615516
+ - 0.7585907368
+ - -1.743324693
+ - - -0.9148339617
+ - 1.9206057712
+ - 0.4838513982
+ - - 0.8698449753
+ - 1.9414720432
+ - 0.4856128405
+ - - -0.0153339471
+ - 1.1905551449
+ - 1.8381596347
+ - - 1.289538841
+ - -1.752656909
+ - -0.1970832651
+ - - 2.1744719495
+ - -0.2283043593
+ - 0.0768336415
+ - - 1.3045618647
+ - -0.9990015155
+ - 1.4265960258
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.069672437721763
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.259708
+ - -0.807751
+ - 0.336134
+ - - 3.5e-05
+ - -0.006995
+ - -0.017894
+ - - 0.00122
+ - 0.189569
+ - -1.485172
+ - - 0.003834
+ - 1.328004
+ - 0.752688
+ - - 1.254552
+ - -0.815479
+ - 0.337128
+ - - -1.272212
+ - -1.757121
+ - -0.208199
+ - - -2.164208
+ - -0.247249
+ - 0.068073
+ - - -1.300139
+ - -1.015457
+ - 1.410916
+ - - -0.811111
+ - 0.743715
+ - -1.752693
+ - - 0.817153
+ - 0.73871
+ - -1.752049
+ - - -0.882052
+ - 1.922305
+ - 0.49724
+ - - 0.893558
+ - 1.916847
+ - 0.497942
+ - - 0.002917
+ - 1.169341
+ - 1.838402
+ - - 1.261651
+ - -1.764909
+ - -0.207197
+ - - 2.162693
+ - -0.260549
+ - 0.069784
+ - - 1.292856
+ - -1.023427
+ - 1.411941
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.08491216540978
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.261948
+ - -0.808782
+ - 0.336179
+ - - 3.7e-05
+ - -0.006136
+ - -0.016127
+ - - 0.001213
+ - 0.187119
+ - -1.486495
+ - - 0.003843
+ - 1.331216
+ - 0.755335
+ - - 1.256785
+ - -0.816524
+ - 0.337175
+ - - -1.274378
+ - -1.762045
+ - -0.211374
+ - - -2.171324
+ - -0.247744
+ - 0.065602
+ - - -1.30778
+ - -1.019835
+ - 1.415034
+ - - -0.815835
+ - 0.743025
+ - -1.759453
+ - - 0.821878
+ - 0.737991
+ - -1.758805
+ - - -0.885218
+ - 1.929875
+ - 0.49987
+ - - 0.89677
+ - 1.924398
+ - 0.500575
+ - - 0.002934
+ - 1.175781
+ - 1.846513
+ - - 1.263787
+ - -1.769847
+ - -0.21037
+ - - 2.169807
+ - -0.261088
+ - 0.067318
+ - - 1.300466
+ - -1.027852
+ - 1.416066
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.17913839166018
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.251597
+ - -0.801017
+ - 0.334391
+ - - 4.3e-05
+ - -0.003968
+ - -0.014847
+ - - 0.001241
+ - 0.198811
+ - -1.467138
+ - - 0.00381
+ - 1.320242
+ - 0.754144
+ - - 1.246483
+ - -0.808696
+ - 0.335379
+ - - -1.260813
+ - -1.747185
+ - -0.205792
+ - - -2.152415
+ - -0.246351
+ - 0.062007
+ - - -1.298217
+ - -1.007024
+ - 1.404396
+ - - -0.812538
+ - 0.729201
+ - -1.755116
+ - - 0.818493
+ - 0.724187
+ - -1.754471
+ - - -0.877512
+ - 1.913767
+ - 0.502577
+ - - 0.888963
+ - 1.908337
+ - 0.503276
+ - - 0.002887
+ - 1.158717
+ - 1.833908
+ - - 1.25031
+ - -1.754904
+ - -0.204799
+ - - 2.15091
+ - -0.25958
+ - 0.063709
+ - - 1.29099
+ - -1.014984
+ - 1.40542
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.144368069588154
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.260809
+ - -0.808087
+ - 0.336864
+ - - 3.9e-05
+ - -0.005442
+ - -0.015714
+ - - 0.001215
+ - 0.18856
+ - -1.48065
+ - - 0.003845
+ - 1.331838
+ - 0.754087
+ - - 1.25565
+ - -0.815822
+ - 0.337859
+ - - -1.27396
+ - -1.751727
+ - -0.212652
+ - - -2.164339
+ - -0.249111
+ - 0.071046
+ - - -1.304931
+ - -1.022926
+ - 1.408005
+ - - -0.810369
+ - 0.73718
+ - -1.754478
+ - - 0.816372
+ - 0.732179
+ - -1.753835
+ - - -0.879233
+ - 1.926366
+ - 0.498707
+ - - 0.890764
+ - 1.920926
+ - 0.499407
+ - - 0.002946
+ - 1.178481
+ - 1.838258
+ - - 1.263434
+ - -1.759527
+ - -0.211648
+ - - 2.162809
+ - -0.262412
+ - 0.072756
+ - - 1.297605
+ - -1.030924
+ - 1.409034
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.35704717929625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.252005
+ - -0.802096
+ - 0.335448
+ - - -7.3e-05
+ - -0.00504
+ - -0.016345
+ - - 0.001015
+ - 0.195416
+ - -1.47228
+ - - 0.003828
+ - 1.320312
+ - 0.752059
+ - - 1.246825
+ - -0.809586
+ - 0.336165
+ - - -1.260152
+ - -1.748939
+ - -0.204747
+ - - -2.152701
+ - -0.245927
+ - 0.063435
+ - - -1.294194
+ - -1.005825
+ - 1.40675
+ - - -0.811174
+ - 0.735343
+ - -1.75197
+ - - 0.817248
+ - 0.729388
+ - -1.751584
+ - - -0.878301
+ - 1.913256
+ - 0.499431
+ - - 0.8905
+ - 1.906963
+ - 0.500715
+ - - 0.002512
+ - 1.155005
+ - 1.831913
+ - - 1.250169
+ - -1.755827
+ - -0.205107
+ - - 2.150945
+ - -0.25817
+ - 0.065873
+ - - 1.286596
+ - -1.014722
+ - 1.407287
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.294282516610075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.252005
+ - -0.802096
+ - 0.335448
+ - - -7.3e-05
+ - -0.00504
+ - -0.016345
+ - - 0.001015
+ - 0.195416
+ - -1.47228
+ - - 0.003828
+ - 1.320312
+ - 0.752059
+ - - 1.246825
+ - -0.809586
+ - 0.336165
+ - - -1.260152
+ - -1.748939
+ - -0.204747
+ - - -2.152701
+ - -0.245927
+ - 0.063435
+ - - -1.294194
+ - -1.005825
+ - 1.40675
+ - - -0.811174
+ - 0.735343
+ - -1.75197
+ - - 0.817248
+ - 0.729388
+ - -1.751584
+ - - -0.878301
+ - 1.913256
+ - 0.499431
+ - - 0.8905
+ - 1.906963
+ - 0.500715
+ - - 0.002512
+ - 1.155005
+ - 1.831913
+ - - 1.250169
+ - -1.755827
+ - -0.205107
+ - - 2.150945
+ - -0.25817
+ - 0.065873
+ - - 1.286596
+ - -1.014722
+ - 1.407287
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.579084019167222
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.252005
+ - -0.802096
+ - 0.335448
+ - - -7.3e-05
+ - -0.00504
+ - -0.016345
+ - - 0.001015
+ - 0.195416
+ - -1.47228
+ - - 0.003828
+ - 1.320312
+ - 0.752059
+ - - 1.246825
+ - -0.809586
+ - 0.336165
+ - - -1.260152
+ - -1.748939
+ - -0.204747
+ - - -2.152701
+ - -0.245927
+ - 0.063435
+ - - -1.294194
+ - -1.005825
+ - 1.40675
+ - - -0.811174
+ - 0.735343
+ - -1.75197
+ - - 0.817248
+ - 0.729388
+ - -1.751584
+ - - -0.878301
+ - 1.913256
+ - 0.499431
+ - - 0.8905
+ - 1.906963
+ - 0.500715
+ - - 0.002512
+ - 1.155005
+ - 1.831913
+ - - 1.250169
+ - -1.755827
+ - -0.205107
+ - - 2.150945
+ - -0.25817
+ - 0.065873
+ - - 1.286596
+ - -1.014722
+ - 1.407287
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.509448703235993
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.260522
+ - -0.808367
+ - 0.336383
+ - - 3.8e-05
+ - -0.00613
+ - -0.018127
+ - - 0.001205
+ - 0.185097
+ - -1.482708
+ - - 0.003844
+ - 1.331071
+ - 0.750022
+ - - 1.255363
+ - -0.8161
+ - 0.337378
+ - - -1.278625
+ - -1.753373
+ - -0.213307
+ - - -2.166432
+ - -0.248452
+ - 0.07577
+ - - -1.301024
+ - -1.024419
+ - 1.408588
+ - - -0.807773
+ - 0.741569
+ - -1.750336
+ - - 0.813799
+ - 0.736585
+ - -1.749695
+ - - -0.88017
+ - 1.927157
+ - 0.496059
+ - - 0.891707
+ - 1.921712
+ - 0.49676
+ - - 0.002947
+ - 1.178563
+ - 1.835464
+ - - 1.26809
+ - -1.761201
+ - -0.2123
+ - - 2.164903
+ - -0.261765
+ - 0.077481
+ - - 1.293689
+ - -1.032394
+ - 1.409613
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.906828600715485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.252197
+ - -0.801952
+ - 0.335264
+ - - 4.1e-05
+ - -0.004972
+ - -0.015539
+ - - 0.001228
+ - 0.193889
+ - -1.470311
+ - - 0.003811
+ - 1.320393
+ - 0.752226
+ - - 1.247078
+ - -0.809635
+ - 0.336253
+ - - -1.259635
+ - -1.747459
+ - -0.207197
+ - - -2.151479
+ - -0.243777
+ - 0.06306
+ - - -1.29425
+ - -1.006763
+ - 1.406149
+ - - -0.811857
+ - 0.733741
+ - -1.749013
+ - - 0.817835
+ - 0.728732
+ - -1.748369
+ - - -0.878972
+ - 1.911616
+ - 0.498028
+ - - 0.890413
+ - 1.906176
+ - 0.498729
+ - - 0.002879
+ - 1.156433
+ - 1.832038
+ - - 1.24913
+ - -1.75517
+ - -0.206205
+ - - 2.149989
+ - -0.257
+ - 0.064762
+ - - 1.287023
+ - -1.014698
+ - 1.40717
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.115131516161664
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.2517581315
- - -0.8260231417
- - 0.3448787588
- - - 0.0002589593
- - -0.0052528754
- - -0.0190697868
- - - -0.0012006919
- - 0.1782126648
- - -1.4914153477
- - - -0.015826433
- - 1.3403777944
- - 0.7467430144
- - - 1.2701697452
- - -0.7975708361
- - 0.3460475521
- - - -1.2495292167
- - -1.7811044683
- - -0.198555678
- - - -2.1683195396
- - -0.2769327811
- - 0.0750532367
- - - -1.2828489001
- - -1.028400132
- - 1.4253733089
- - - -0.8227736129
- - 0.7385021685
- - -1.7442062464
- - - 0.8065615516
- - 0.7585907368
- - -1.743324693
- - - -0.9148339617
- - 1.9206057712
- - 0.4838513982
- - - 0.8698449753
- - 1.9414720432
- - 0.4856128405
- - - -0.0153339471
- - 1.1905551449
- - 1.8381596347
- - - 1.289538841
- - -1.752656909
- - -0.1970832651
- - - 2.1744719495
- - -0.2283043593
- - 0.0768336415
- - - 1.3045618647
- - -0.9990015155
- - 1.4265960258
+ - - -1.250367
+ - -0.800884
+ - 0.33411
+ - - 4.3e-05
+ - -0.004544
+ - -0.017811
+ - - 0.00122
+ - 0.191653
+ - -1.469202
+ - - 0.003808
+ - 1.319267
+ - 0.750207
+ - - 1.245255
+ - -0.808555
+ - 0.335097
+ - - -1.261856
+ - -1.747989
+ - -0.208609
+ - - -2.153632
+ - -0.244447
+ - 0.06523
+ - - -1.293993
+ - -1.008723
+ - 1.405778
+ - - -0.810243
+ - 0.73327
+ - -1.746908
+ - - 0.816217
+ - 0.72827
+ - -1.746265
+ - - -0.87915
+ - 1.914031
+ - 0.498072
+ - - 0.890605
+ - 1.908591
+ - 0.498772
+ - - 0.00289
+ - 1.159665
+ - 1.832454
+ - - 1.251351
+ - -1.755714
+ - -0.207615
+ - - 2.152136
+ - -0.257682
+ - 0.066934
+ - - 1.286754
+ - -1.016656
+ - 1.406799
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.124972398488794
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.261802
+ - -0.808614
+ - 0.33605
+ - - 3.6e-05
+ - -0.006193
+ - -0.013447
+ - - 0.001211
+ - 0.186924
+ - -1.485177
+ - - 0.003843
+ - 1.331194
+ - 0.756117
+ - - 1.256641
+ - -0.816356
+ - 0.337045
+ - - -1.270649
+ - -1.757646
+ - -0.20879
+ - - -2.16529
+ - -0.24862
+ - 0.063527
+ - - -1.307138
+ - -1.016484
+ - 1.410713
+ - - -0.812955
+ - 0.741827
+ - -1.755928
+ - - 0.818987
+ - 0.736811
+ - -1.755283
+ - - -0.88204
+ - 1.925262
+ - 0.500159
+ - - 0.893563
+ - 1.919804
+ - 0.50086
+ - - 0.002929
+ - 1.173494
+ - 1.842008
+ - - 1.260083
+ - -1.765426
+ - -0.20779
+ - - 2.16377
+ - -0.261927
+ - 0.065238
+ - - 1.299848
+ - -1.024498
+ - 1.411743
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.54684673814516
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.2520048351
+ - -0.8020963904
+ - 0.3354482096
+ - - -7.30425e-05
+ - -0.0050402104
+ - -0.016344613
+ - - 0.0010145481
+ - 0.1954161128
+ - -1.4722800647
+ - - 0.0038283343
+ - 1.3203124476
+ - 0.7520588071
+ - - 1.246824533
+ - -0.8095856312
+ - 0.3361647818
+ - - -1.2601521894
+ - -1.7489389709
+ - -0.2047465655
+ - - -2.1527013687
+ - -0.2459268801
+ - 0.0634354439
+ - - -1.2941939211
+ - -1.0058248133
+ - 1.4067499148
+ - - -0.8111738434
+ - 0.7353434196
+ - -1.7519698606
+ - - 0.817248107
+ - 0.7293878138
+ - -1.7515843116
+ - - -0.878300506
+ - 1.9132562416
+ - 0.4994309222
+ - - 0.8904998625
+ - 1.9069631484
+ - 0.5007153366
+ - - 0.0025122532
+ - 1.1550050349
+ - 1.831913445
+ - - 1.2501691073
+ - -1.7558269973
+ - -0.2051072028
+ - - 2.1509445279
+ - -0.2581704638
+ - 0.0658727632
+ - - 1.2865961963
+ - -1.0147216173
+ - 1.407287454
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.39370257839698
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.253038
+ - -0.802473
+ - 0.334829
+ - - 4.3e-05
+ - -0.004688
+ - -0.018191
+ - - 0.001234
+ - 0.195827
+ - -1.471382
+ - - 0.003816
+ - 1.321983
+ - 0.751823
+ - - 1.247916
+ - -0.81016
+ - 0.335818
+ - - -1.264723
+ - -1.748581
+ - -0.207463
+ - - -2.154971
+ - -0.245302
+ - 0.067446
+ - - -1.293715
+ - -1.009783
+ - 1.405777
+ - - -0.810603
+ - 0.733104
+ - -1.751663
+ - - 0.81658
+ - 0.728102
+ - -1.75102
+ - - -0.878731
+ - 1.915143
+ - 0.499285
+ - - 0.890191
+ - 1.909706
+ - 0.499984
+ - - 0.002889
+ - 1.159254
+ - 1.83232
+ - - 1.254213
+ - -1.756323
+ - -0.206467
+ - - 2.153468
+ - -0.258545
+ - 0.06915
+ - - 1.28647
+ - -1.017714
+ - 1.406798
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-2-propanethiol.yml b/input/reference_sets/main/2-Methyl-2-propanethiol.yml
index e5214b66da..945d3bdbb7 100644
--- a/input/reference_sets/main/2-Methyl-2-propanethiol.yml
+++ b/input/reference_sets/main/2-Methyl-2-propanethiol.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.92971527185526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.837772
+ - 0.723332
+ - 1.253983
+ - - 0.344501
+ - 0.005767
+ - 0.00011
+ - - -1.49995
+ - -0.076351
+ - 0.000203
+ - - 0.837837
+ - 0.719064
+ - -1.256171
+ - - 0.812333
+ - -1.449473
+ - 0.002596
+ - - 0.490134
+ - 1.756884
+ - 1.277725
+ - - 0.482763
+ - 0.224247
+ - 2.154703
+ - - 1.93086
+ - 0.735238
+ - 1.270698
+ - - -1.714936
+ - 1.246982
+ - -0.002043
+ - - 0.482875
+ - 0.216918
+ - -2.155207
+ - - 0.490199
+ - 1.752529
+ - -1.283446
+ - - 1.930925
+ - 0.730915
+ - -1.27287
+ - - 0.456341
+ - -1.976656
+ - 0.888172
+ - - 1.903491
+ - -1.48098
+ - 0.002677
+ - - 0.456384
+ - -1.979665
+ - -0.881199
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.222730130954874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.838477
+ - 0.724144
+ - 1.255773
+ - - 0.347278
+ - 0.005384
+ - 0.000111
+ - - -1.506424
+ - -0.076323
+ - 0.000204
+ - - 0.83854
+ - 0.71987
+ - -1.257963
+ - - 0.81373
+ - -1.451787
+ - 0.0026
+ - - 0.491741
+ - 1.758485
+ - 1.278557
+ - - 0.481751
+ - 0.226016
+ - 2.156889
+ - - 1.932256
+ - 0.735772
+ - 1.275405
+ - - -1.722516
+ - 1.249823
+ - -0.002051
+ - - 0.48186
+ - 0.21868
+ - -2.157398
+ - - 0.491803
+ - 1.754127
+ - -1.284282
+ - - 1.932319
+ - 0.731432
+ - -1.277579
+ - - 0.457617
+ - -1.979363
+ - 0.888485
+ - - 1.905438
+ - -1.485138
+ - 0.002684
+ - - 0.457661
+ - -1.982371
+ - -0.881504
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -2.770826023730071
+ value: -2.770826023730071
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8423093491
+ - 0.735095277
+ - 1.2642224443
+ - - 0.356007587
+ - 0.0049015678
+ - 0.0001555488
+ - - -1.5196421688
+ - -0.0850847193
+ - 0.0006987195
+ - - 0.8413157089
+ - 0.7288850403
+ - -1.2678040579
+ - - 0.8418279848
+ - -1.4572644959
+ - 0.0030442476
+ - - 0.4861053351
+ - 1.7757812483
+ - 1.2791054925
+ - - 0.4801409509
+ - 0.2305926504
+ - 2.1697485824
+ - - 1.9446841055
+ - 0.7515385142
+ - 1.284529884
+ - - -1.7135867016
+ - 1.25539656
+ - -0.0055913856
+ - - 0.4786291193
+ - 0.2196318442
+ - -2.170462296
+ - - 0.4848415038
+ - 1.7693608792
+ - -1.2879868594
+ - - 1.9436513643
+ - 0.7454311456
+ - -1.2891658271
+ - - 0.489980162
+ - -1.9900388546
+ - 0.8981337482
+ - - 1.942497699
+ - -1.4722990647
+ - 0.0021084162
+ - - 0.4885673832
+ - -1.993743749
+ - -0.8893083643
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.53983862052275
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.838043
+ - 0.725963
+ - 1.259602
+ - - 0.347701
+ - 0.004691
+ - 0.000113
+ - - -1.512882
+ - -0.077016
+ - 0.000205
+ - - 0.838106
+ - 0.721677
+ - -1.261797
+ - - 0.81508
+ - -1.456617
+ - 0.002609
+ - - 0.490197
+ - 1.764374
+ - 1.279906
+ - - 0.477625
+ - 0.226221
+ - 2.163359
+ - - 1.936189
+ - 0.736669
+ - 1.28045
+ - - -1.719381
+ - 1.253701
+ - -0.002062
+ - - 0.477734
+ - 0.218864
+ - -2.163868
+ - - 0.490262
+ - 1.760012
+ - -1.285649
+ - - 1.936253
+ - 0.732312
+ - -1.282626
+ - - 0.45778
+ - -1.985515
+ - 0.892299
+ - - 1.910999
+ - -1.488046
+ - 0.00269
+ - - 0.457825
+ - -1.988537
+ - -0.885296
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.395170302967758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.839306
+ - 0.727811
+ - 1.262542
+ - - 0.349825
+ - 0.006278
+ - 0.00011
+ - - -1.514432
+ - -0.083253
+ - 0.000216
+ - - 0.839368
+ - 0.723514
+ - -1.264743
+ - - 0.814146
+ - -1.458621
+ - 0.002612
+ - - 0.491667
+ - 1.771499
+ - 1.285699
+ - - 0.476572
+ - 0.226929
+ - 2.170845
+ - - 1.942433
+ - 0.739572
+ - 1.287738
+ - - -1.732177
+ - 1.254169
+ - -0.002063
+ - - 0.47668
+ - 0.219547
+ - -2.171357
+ - - 0.49173
+ - 1.767117
+ - -1.291467
+ - - 1.942497
+ - 0.73519
+ - -1.289924
+ - - 0.454468
+ - -1.990741
+ - 0.895608
+ - - 1.914934
+ - -1.496485
+ - 0.002704
+ - - 0.454513
+ - -1.993774
+ - -0.888587
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.618580146079244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.837272
+ - 0.721785
+ - 1.251258
+ - - 0.342862
+ - 0.00598
+ - 0.00011
+ - - -1.495333
+ - -0.075436
+ - 0.000203
+ - - 0.837335
+ - 0.717527
+ - -1.25344
+ - - 0.81166
+ - -1.446041
+ - 0.002591
+ - - 0.491373
+ - 1.755751
+ - 1.276919
+ - - 0.483454
+ - 0.223985
+ - 2.153068
+ - - 1.93003
+ - 0.733474
+ - 1.268588
+ - - -1.718294
+ - 1.245776
+ - -0.002044
+ - - 0.483563
+ - 0.216662
+ - -2.15357
+ - - 0.491437
+ - 1.751399
+ - -1.282635
+ - - 1.930094
+ - 0.729158
+ - -1.270755
+ - - 0.456741
+ - -1.974801
+ - 0.887533
+ - - 1.90255
+ - -1.478659
+ - 0.002673
+ - - 0.456785
+ - -1.977807
+ - -0.880566
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.419710873524636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.839967
+ - 0.726938
+ - 1.261611
+ - - 0.348948
+ - 0.006025
+ - 0.000112
+ - - -1.520078
+ - -0.0762
+ - 0.000208
+ - - 0.840026
+ - 0.722645
+ - -1.263808
+ - - 0.815689
+ - -1.457131
+ - 0.00261
+ - - 0.497001
+ - 1.764586
+ - 1.285736
+ - - 0.480099
+ - 0.230016
+ - 2.164406
+ - - 1.935716
+ - 0.736166
+ - 1.284883
+ - - -1.738065
+ - 1.250606
+ - -0.002068
+ - - 0.480199
+ - 0.222658
+ - -2.164925
+ - - 0.497063
+ - 1.760206
+ - -1.291475
+ - - 1.935777
+ - 0.731792
+ - -1.287061
+ - - 0.459881
+ - -1.98692
+ - 0.889656
+ - - 1.909381
+ - -1.492702
+ - 0.002699
+ - - 0.459926
+ - -1.989932
+ - -0.882648
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.506321404892603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836264
+ - 0.722363
+ - 1.252541
+ - - 0.343287
+ - 0.005698
+ - 1.4e-05
+ - - -1.49233
+ - -0.076135
+ - -7.5e-05
+ - - 0.836626
+ - 0.718011
+ - -1.254861
+ - - 0.812507
+ - -1.447417
+ - 0.002544
+ - - 0.487817
+ - 1.756348
+ - 1.274735
+ - - 0.478914
+ - 0.222543
+ - 2.152586
+ - - 1.92973
+ - 0.733408
+ - 1.269361
+ - - -1.705956
+ - 1.24782
+ - -0.000929
+ - - 0.479608
+ - 0.214986
+ - -2.153249
+ - - 0.488102
+ - 1.751872
+ - -1.280856
+ - - 1.930099
+ - 0.729038
+ - -1.27136
+ - - 0.456414
+ - -1.974434
+ - 0.888833
+ - - 1.904267
+ - -1.477785
+ - 0.002434
+ - - 0.456181
+ - -1.977564
+ - -0.881786
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.96419961903681
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836264
+ - 0.722363
+ - 1.252541
+ - - 0.343287
+ - 0.005698
+ - 1.4e-05
+ - - -1.49233
+ - -0.076135
+ - -7.5e-05
+ - - 0.836626
+ - 0.718011
+ - -1.254861
+ - - 0.812507
+ - -1.447417
+ - 0.002544
+ - - 0.487817
+ - 1.756348
+ - 1.274735
+ - - 0.478914
+ - 0.222543
+ - 2.152586
+ - - 1.92973
+ - 0.733408
+ - 1.269361
+ - - -1.705956
+ - 1.24782
+ - -0.000929
+ - - 0.479608
+ - 0.214986
+ - -2.153249
+ - - 0.488102
+ - 1.751872
+ - -1.280856
+ - - 1.930099
+ - 0.729038
+ - -1.27136
+ - - 0.456414
+ - -1.974434
+ - 0.888833
+ - - 1.904267
+ - -1.477785
+ - 0.002434
+ - - 0.456181
+ - -1.977564
+ - -0.881786
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.36965812622363
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836264
+ - 0.722363
+ - 1.252541
+ - - 0.343287
+ - 0.005698
+ - 1.4e-05
+ - - -1.49233
+ - -0.076135
+ - -7.5e-05
+ - - 0.836626
+ - 0.718011
+ - -1.254861
+ - - 0.812507
+ - -1.447417
+ - 0.002544
+ - - 0.487817
+ - 1.756348
+ - 1.274735
+ - - 0.478914
+ - 0.222543
+ - 2.152586
+ - - 1.92973
+ - 0.733408
+ - 1.269361
+ - - -1.705956
+ - 1.24782
+ - -0.000929
+ - - 0.479608
+ - 0.214986
+ - -2.153249
+ - - 0.488102
+ - 1.751872
+ - -1.280856
+ - - 1.930099
+ - 0.729038
+ - -1.27136
+ - - 0.456414
+ - -1.974434
+ - 0.888833
+ - - 1.904267
+ - -1.477785
+ - 0.002434
+ - - 0.456181
+ - -1.977564
+ - -0.881786
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.127861100566253
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.839689
+ - 0.726863
+ - 1.261028
+ - - 0.34729
+ - 0.005609
+ - 0.000112
+ - - -1.51504
+ - -0.076583
+ - 0.000207
+ - - 0.839749
+ - 0.722572
+ - -1.263226
+ - - 0.813871
+ - -1.457807
+ - 0.002611
+ - - 0.494199
+ - 1.765043
+ - 1.286168
+ - - 0.483689
+ - 0.228702
+ - 2.166261
+ - - 1.936713
+ - 0.739564
+ - 1.2819
+ - - -1.737501
+ - 1.251755
+ - -0.002063
+ - - 0.483792
+ - 0.221336
+ - -2.166777
+ - - 0.494262
+ - 1.76066
+ - -1.291912
+ - - 1.936775
+ - 0.735201
+ - -1.284089
+ - - 0.457611
+ - -1.988403
+ - 0.890513
+ - - 1.908775
+ - -1.494343
+ - 0.002701
+ - - 0.457656
+ - -1.991419
+ - -0.8835
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.784466668682523
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.8423093491
- - 0.735095277
- - 1.2642224443
- - - 0.356007587
- - 0.0049015678
- - 0.0001555488
- - - -1.5196421688
- - -0.0850847193
- - 0.0006987195
- - - 0.8413157089
- - 0.7288850403
- - -1.2678040579
- - - 0.8418279848
- - -1.4572644959
- - 0.0030442476
- - - 0.4861053351
- - 1.7757812483
- - 1.2791054925
- - - 0.4801409509
- - 0.2305926504
- - 2.1697485824
- - - 1.9446841055
- - 0.7515385142
- - 1.284529884
- - - -1.7135867016
- - 1.25539656
- - -0.0055913856
- - - 0.4786291193
- - 0.2196318442
- - -2.170462296
- - - 0.4848415038
- - 1.7693608792
- - -1.2879868594
- - - 1.9436513643
- - 0.7454311456
- - -1.2891658271
- - - 0.489980162
- - -1.9900388546
- - 0.8981337482
- - - 1.942497699
- - -1.4722990647
- - 0.0021084162
- - - 0.4885673832
- - -1.993743749
- - -0.8893083643
+ - - 0.836517
+ - 0.722214
+ - 1.251997
+ - - 0.3421
+ - 0.00564
+ - 0.00011
+ - - -1.492975
+ - -0.075968
+ - 0.000202
+ - - 0.836581
+ - 0.717954
+ - -1.25418
+ - - 0.811894
+ - -1.447243
+ - 0.002592
+ - - 0.487569
+ - 1.755904
+ - 1.274374
+ - - 0.481534
+ - 0.221361
+ - 2.152421
+ - - 1.929916
+ - 0.733102
+ - 1.265567
+ - - -1.705259
+ - 1.246175
+ - -0.002044
+ - - 0.481645
+ - 0.214042
+ - -2.152914
+ - - 0.487634
+ - 1.751561
+ - -1.28009
+ - - 1.929981
+ - 0.728796
+ - -1.26773
+ - - 0.455388
+ - -1.973362
+ - 0.889203
+ - - 1.903573
+ - -1.475051
+ - 0.002666
+ - - 0.455432
+ - -1.976374
+ - -0.882242
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.77236318493658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836152
+ - 0.72175
+ - 1.251213
+ - - 0.345926
+ - 0.006544
+ - 0.000109
+ - - -1.489703
+ - -0.079695
+ - 0.00021
+ - - 0.836215
+ - 0.717492
+ - -1.253395
+ - - 0.811305
+ - -1.445181
+ - 0.002589
+ - - 0.490158
+ - 1.757862
+ - 1.275099
+ - - 0.478049
+ - 0.223382
+ - 2.153472
+ - - 1.93119
+ - 0.733047
+ - 1.272019
+ - - -1.711117
+ - 1.245132
+ - -0.002045
+ - - 0.478158
+ - 0.216058
+ - -2.153972
+ - - 0.490221
+ - 1.753516
+ - -1.280822
+ - - 1.931254
+ - 0.728719
+ - -1.274184
+ - - 0.454694
+ - -1.973857
+ - 0.88941
+ - - 1.90429
+ - -1.479148
+ - 0.002674
+ - - 0.454738
+ - -1.976869
+ - -0.882447
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.2458727479155116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.83956
+ - 0.727807
+ - 1.262791
+ - - 0.350448
+ - 0.006186
+ - 0.00011
+ - - -1.510722
+ - -0.079373
+ - 0.000209
+ - - 0.839623
+ - 0.72351
+ - -1.264993
+ - - 0.814517
+ - -1.458728
+ - 0.002612
+ - - 0.490081
+ - 1.765684
+ - 1.283874
+ - - 0.478523
+ - 0.225889
+ - 2.165066
+ - - 1.937764
+ - 0.739785
+ - 1.28443
+ - - -1.724604
+ - 1.250956
+ - -0.002056
+ - - 0.478633
+ - 0.218526
+ - -2.165574
+ - - 0.490145
+ - 1.761308
+ - -1.289622
+ - - 1.937829
+ - 0.735414
+ - -1.286616
+ - - 0.454602
+ - -1.985711
+ - 0.892338
+ - - 1.910484
+ - -1.493769
+ - 0.002699
+ - - 0.454646
+ - -1.988733
+ - -0.885335
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.584614045839942
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8362638333
+ - 0.7223625518
+ - 1.2525413765
+ - - 0.343287334
+ - 0.0056979685
+ - 1.44078e-05
+ - - -1.4923300309
+ - -0.076134733
+ - -7.4841e-05
+ - - 0.8366260183
+ - 0.7180108302
+ - -1.2548613451
+ - - 0.8125069609
+ - -1.4474174006
+ - 0.002543515
+ - - 0.4878165128
+ - 1.7563475639
+ - 1.2747351014
+ - - 0.4789141289
+ - 0.2225434032
+ - 2.1525864754
+ - - 1.9297301263
+ - 0.7334079458
+ - 1.2693610035
+ - - -1.705956077
+ - 1.2478201056
+ - -0.0009285692
+ - - 0.4796078259
+ - 0.2149858937
+ - -2.1532488869
+ - - 0.4881022189
+ - 1.751871847
+ - -1.2808560654
+ - - 1.9300985425
+ - 0.7290378056
+ - -1.2713604882
+ - - 0.4564137637
+ - -1.9744340035
+ - 0.8888328505
+ - - 1.9042671768
+ - -1.4777846745
+ - 0.0024342876
+ - - 0.4561813965
+ - -1.9775638583
+ - -0.8817859773
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.621346358688267
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836574
+ - 0.722667
+ - 1.253044
+ - - 0.341434
+ - 0.005156
+ - 0.000111
+ - - -1.498308
+ - -0.074501
+ - 0.000201
+ - - 0.836637
+ - 0.718402
+ - -1.255229
+ - - 0.812003
+ - -1.448873
+ - 0.002595
+ - - 0.491052
+ - 1.757903
+ - 1.276479
+ - - 0.482344
+ - 0.224667
+ - 2.155834
+ - - 1.930321
+ - 0.732811
+ - 1.268671
+ - - -1.715183
+ - 1.247932
+ - -0.002048
+ - - 0.482454
+ - 0.217334
+ - -2.156338
+ - - 0.491115
+ - 1.753552
+ - -1.282202
+ - - 1.930385
+ - 0.728495
+ - -1.270835
+ - - 0.45832
+ - -1.978087
+ - 0.889006
+ - - 1.904016
+ - -1.47761
+ - 0.002671
+ - - 0.458364
+ - -1.981098
+ - -0.882029
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methyl-2H-tetrazole.yml b/input/reference_sets/main/2-Methyl-2H-tetrazole.yml
index 881b6e50b6..f15fc51265 100644
--- a/input/reference_sets/main/2-Methyl-2H-tetrazole.yml
+++ b/input/reference_sets/main/2-Methyl-2H-tetrazole.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.96766759347273
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.002859
+ - 0.037634
+ - 0.000137
+ - - 0.55452
+ - 0.016578
+ - -5.4e-05
+ - - -0.18982
+ - 1.11291
+ - 0.001082
+ - - -1.413643
+ - 0.594666
+ - 0.000363
+ - - -1.409999
+ - -0.753022
+ - -0.00114
+ - - -0.145467
+ - -1.110481
+ - -0.001392
+ - - 2.357501
+ - 0.551726
+ - 0.889894
+ - - 2.357707
+ - 0.553709
+ - -0.888388
+ - - 2.338988
+ - -0.99399
+ - -0.000975
+ - - -2.306987
+ - 1.193036
+ - 0.000927
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.2424930532432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.001459
+ - 0.037058
+ - 0.000137
+ - - 0.553644
+ - 0.015569
+ - -5.6e-05
+ - - -0.192273
+ - 1.109362
+ - 0.001077
+ - - -1.41358
+ - 0.595965
+ - 0.000363
+ - - -1.405814
+ - -0.752592
+ - -0.001139
+ - - -0.147323
+ - -1.107161
+ - -0.001388
+ - - 2.358734
+ - 0.551823
+ - 0.890145
+ - - 2.358941
+ - 0.55382
+ - -0.888631
+ - - 2.340331
+ - -0.994513
+ - -0.000982
+ - - -2.308462
+ - 1.193435
+ - 0.000926
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.35291261871555
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.007045
+ - 0.037569
+ - 0.000137
+ - - 0.554636
+ - 0.015621
+ - -5.5e-05
+ - - -0.190745
+ - 1.115882
+ - 0.001083
+ - - -1.41935
+ - 0.597155
+ - 0.000364
+ - - -1.41452
+ - -0.758043
+ - -0.001142
+ - - -0.150595
+ - -1.118238
+ - -0.001398
+ - - 2.364736
+ - 0.554925
+ - 0.893779
+ - - 2.364942
+ - 0.556919
+ - -0.892266
+ - - 2.346204
+ - -0.998306
+ - -0.00098
+ - - -2.316695
+ - 1.199282
+ - 0.000931
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.074774762055156
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.009394
+ - 0.038126
+ - 0.000139
+ - - 0.556062
+ - 0.017783
+ - -5.3e-05
+ - - -0.193687
+ - 1.121172
+ - 0.001089
+ - - -1.423127
+ - 0.596618
+ - 0.000363
+ - - -1.419943
+ - -0.760584
+ - -0.001149
+ - - -0.150909
+ - -1.121535
+ - -0.001404
+ - - 2.372287
+ - 0.555802
+ - 0.897256
+ - - 2.372495
+ - 0.557805
+ - -0.895736
+ - - 2.347995
+ - -1.003103
+ - -0.000984
+ - - -2.324909
+ - 1.200681
+ - 0.000931
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.20404560867422
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.995088
+ - 0.03686
+ - 0.000136
+ - - 0.551075
+ - 0.016171
+ - -5.7e-05
+ - - -0.191001
+ - 1.102395
+ - 0.00106
+ - - -1.406354
+ - 0.593489
+ - 0.000359
+ - - -1.395936
+ - -0.748655
+ - -0.001125
+ - - -0.143952
+ - -1.096333
+ - -0.001367
+ - - 2.352321
+ - 0.550612
+ - 0.889503
+ - - 2.352527
+ - 0.552646
+ - -0.887968
+ - - 2.333749
+ - -0.994113
+ - -0.001003
+ - - -2.301858
+ - 1.189695
+ - 0.000916
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.37612649792726
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.00541
+ - 0.037776
+ - 0.000137
+ - - 0.552327
+ - 0.017113
+ - -5.4e-05
+ - - -0.194158
+ - 1.114805
+ - 0.00107
+ - - -1.415284
+ - 0.595919
+ - 0.000359
+ - - -1.409987
+ - -0.75517
+ - -0.001129
+ - - -0.150541
+ - -1.110837
+ - -0.001377
+ - - 2.36371
+ - 0.552095
+ - 0.891862
+ - - 2.363916
+ - 0.55412
+ - -0.890334
+ - - 2.342045
+ - -0.996196
+ - -0.000997
+ - - -2.311779
+ - 1.193142
+ - 0.000916
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.17105878649825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.997819
+ - 0.036959
+ - 9.3e-05
+ - - 0.550285
+ - 0.016728
+ - -0.000158
+ - - -0.190886
+ - 1.107214
+ - -6.2e-05
+ - - -1.408102
+ - 0.594018
+ - 6.8e-05
+ - - -1.398973
+ - -0.751582
+ - 7.0e-05
+ - - -0.142799
+ - -1.098635
+ - -5.9e-05
+ - - 2.353725
+ - 0.549055
+ - 0.890563
+ - - 2.353785
+ - 0.553747
+ - -0.887613
+ - - 2.334154
+ - -0.994856
+ - -0.002569
+ - - -2.303348
+ - 1.190118
+ - 0.000121
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 77.0030349944326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.997819
+ - 0.036959
+ - 9.3e-05
+ - - 0.550285
+ - 0.016728
+ - -0.000158
+ - - -0.190886
+ - 1.107214
+ - -6.2e-05
+ - - -1.408102
+ - 0.594018
+ - 6.8e-05
+ - - -1.398973
+ - -0.751582
+ - 7.0e-05
+ - - -0.142799
+ - -1.098635
+ - -5.9e-05
+ - - 2.353725
+ - 0.549055
+ - 0.890563
+ - - 2.353785
+ - 0.553747
+ - -0.887613
+ - - 2.334154
+ - -0.994856
+ - -0.002569
+ - - -2.303348
+ - 1.190118
+ - 0.000121
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.73992303056446
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.997819
+ - 0.036959
+ - 9.3e-05
+ - - 0.550285
+ - 0.016728
+ - -0.000158
+ - - -0.190886
+ - 1.107214
+ - -6.2e-05
+ - - -1.408102
+ - 0.594018
+ - 6.8e-05
+ - - -1.398973
+ - -0.751582
+ - 7.0e-05
+ - - -0.142799
+ - -1.098635
+ - -5.9e-05
+ - - 2.353725
+ - 0.549055
+ - 0.890563
+ - - 2.353785
+ - 0.553747
+ - -0.887613
+ - - 2.334154
+ - -0.994856
+ - -0.002569
+ - - -2.303348
+ - 1.190118
+ - 0.000121
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.91430900317124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.002114
+ - 0.037499
+ - 0.000138
+ - - 0.552634
+ - 0.017393
+ - -5.3e-05
+ - - -0.192954
+ - 1.114842
+ - 0.001088
+ - - -1.414896
+ - 0.595458
+ - 0.000364
+ - - -1.40986
+ - -0.755779
+ - -0.001149
+ - - -0.148369
+ - -1.110371
+ - -0.001398
+ - - 2.363936
+ - 0.552994
+ - 0.892008
+ - - 2.364144
+ - 0.554979
+ - -0.890498
+ - - 2.340484
+ - -0.997685
+ - -0.000976
+ - - -2.311572
+ - 1.193436
+ - 0.000928
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.22338598194045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.997143
+ - 0.036543
+ - 0.000136
+ - - 0.550014
+ - 0.015332
+ - -5.9e-05
+ - - -0.187467
+ - 1.103563
+ - 0.001062
+ - - -1.405918
+ - 0.593656
+ - 0.000359
+ - - -1.395861
+ - -0.750988
+ - -0.001127
+ - - -0.142866
+ - -1.096829
+ - -0.001367
+ - - 2.349117
+ - 0.552046
+ - 0.890546
+ - - 2.349324
+ - 0.554084
+ - -0.889009
+ - - 2.332756
+ - -0.995645
+ - -0.001006
+ - - -2.300584
+ - 1.191004
+ - 0.000918
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.70407293980995
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.990998
+ - 0.03726
+ - 0.000137
+ - - 0.550962
+ - 0.017986
+ - -5.4e-05
+ - - -0.187178
+ - 1.105329
+ - 0.001073
+ - - -1.404178
+ - 0.591795
+ - 0.000359
+ - - -1.394636
+ - -0.750964
+ - -0.001138
+ - - -0.141512
+ - -1.09756
+ - -0.001379
+ - - 2.351344
+ - 0.551508
+ - 0.890631
+ - - 2.351552
+ - 0.553522
+ - -0.889107
+ - - 2.329054
+ - -0.995939
+ - -0.000992
+ - - -2.300747
+ - 1.189829
+ - 0.000922
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.92537932209177
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.011792
+ - 0.037766
+ - 0.000139
+ - - 0.554534
+ - 0.018121
+ - -5.2e-05
+ - - -0.194483
+ - 1.121471
+ - 0.001089
+ - - -1.420171
+ - 0.595874
+ - 0.000362
+ - - -1.417957
+ - -0.758226
+ - -0.001145
+ - - -0.150079
+ - -1.118297
+ - -0.001399
+ - - 2.367904
+ - 0.553937
+ - 0.894178
+ - - 2.368111
+ - 0.555928
+ - -0.892666
+ - - 2.343863
+ - -0.999844
+ - -0.000979
+ - - -2.317855
+ - 1.196034
+ - 0.000926
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.89692425622331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9978189461
+ - 0.0369591817
+ - 9.25639e-05
+ - - 0.5502847351
+ - 0.0167283144
+ - -0.0001580661
+ - - -0.1908855697
+ - 1.1072143724
+ - -6.22259e-05
+ - - -1.4081022837
+ - 0.5940177201
+ - 6.76167e-05
+ - - -1.3989733686
+ - -0.7515824887
+ - 7.02322e-05
+ - - -0.14279949
+ - -1.0986353732
+ - -5.88988e-05
+ - - 2.3537250106
+ - 0.5490554337
+ - 0.8905634866
+ - - 2.3537848247
+ - 0.5537465425
+ - -0.8876130057
+ - - 2.3341544152
+ - -0.9948555685
+ - -0.0025694357
+ - - -2.3033483729
+ - 1.1901184071
+ - 0.0001205804
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.2560388911653
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.994768
+ - 0.036973
+ - 0.000135
+ - - 0.550647
+ - 0.01631
+ - -5.9e-05
+ - - -0.189039
+ - 1.104915
+ - 0.001046
+ - - -1.405654
+ - 0.593059
+ - 0.000355
+ - - -1.397013
+ - -0.750263
+ - -0.001109
+ - - -0.143363
+ - -1.097984
+ - -0.001349
+ - - 2.351096
+ - 0.551048
+ - 0.890611
+ - - 2.351301
+ - 0.553121
+ - -0.889058
+ - - 2.334032
+ - -0.994774
+ - -0.001026
+ - - -2.301116
+ - 1.190361
+ - 0.000906
+ isotopes:
+ - 12
+ - 14
+ - 14
+ - 12
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - N
+ - C
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methylpropanamide.yml b/input/reference_sets/main/2-Methylpropanamide.yml
index 75bea6eef6..c5c3c14cf9 100644
--- a/input/reference_sets/main/2-Methylpropanamide.yml
+++ b/input/reference_sets/main/2-Methylpropanamide.yml
@@ -22,7 +22,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -66.95813908544989
+ value: -66.95813908544986
class: ThermoData
xyz_dict:
coords:
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.60714780892219
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.370061
+ - -1.1654
+ - 0.359212
+ - - 0.609158
+ - 0.158359
+ - 0.441024
+ - - 1.328326
+ - 1.261084
+ - -0.336663
+ - - -0.787105
+ - -0.031472
+ - -0.13717
+ - - -1.81924
+ - 0.196925
+ - 0.721138
+ - - -0.96947
+ - -0.366796
+ - -1.295497
+ - - 0.874155
+ - -1.94795
+ - 0.934857
+ - - 1.429915
+ - -1.493239
+ - -0.677967
+ - - 2.382299
+ - -1.04563
+ - 0.746882
+ - - 0.527715
+ - 0.457797
+ - 1.490037
+ - - 0.802579
+ - 2.213539
+ - -0.258588
+ - - 1.387182
+ - 0.991299
+ - -1.390491
+ - - 2.340285
+ - 1.397145
+ - 0.046336
+ - - -1.668922
+ - 0.472515
+ - 1.673104
+ - - -2.759505
+ - 0.083636
+ - 0.382501
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.97182918335472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.371791
+ - -1.168064
+ - 0.360025
+ - - 0.609716
+ - 0.157359
+ - 0.437474
+ - - 1.329903
+ - 1.263901
+ - -0.337379
+ - - -0.790596
+ - -0.032349
+ - -0.139953
+ - - -1.8211
+ - 0.196535
+ - 0.720197
+ - - -0.97538
+ - -0.366783
+ - -1.295145
+ - - 0.875852
+ - -1.948824
+ - 0.939551
+ - - 1.432211
+ - -1.501507
+ - -0.676068
+ - - 2.384771
+ - -1.04653
+ - 0.747466
+ - - 0.52763
+ - 0.456951
+ - 1.487133
+ - - 0.804105
+ - 2.216868
+ - -0.255022
+ - - 1.389129
+ - 0.999499
+ - -1.39327
+ - - 2.342661
+ - 1.398399
+ - 0.04634
+ - - -1.670036
+ - 0.472313
+ - 1.672846
+ - - -2.763224
+ - 0.084043
+ - 0.38452
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -43.716549763939476
+ value: -43.716549763939476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.444789822
+ - -1.1025681339
+ - 0.4731571241
+ - - 0.618013947
+ - 0.1957921078
+ - 0.4410260506
+ - - 1.2710175545
+ - 1.2443794952
+ - -0.4852130204
+ - - -0.7912879399
+ - -0.1147084117
+ - -0.0964514189
+ - - -1.8326420313
+ - 0.3701958478
+ - 0.6567287102
+ - - -0.9696323809
+ - -0.7389219021
+ - -1.1415701015
+ - - 1.0087636667
+ - -1.8370076169
+ - 1.166282095
+ - - 1.4582285823
+ - -1.5469111456
+ - -0.5311248141
+ - - 2.4780634755
+ - -0.8950280503
+ - 0.7877443549
+ - - 0.5545589661
+ - 0.6118471062
+ - 1.4613922265
+ - - 0.6989071024
+ - 2.1842138263
+ - -0.4930059936
+ - - 1.3057943092
+ - 0.8534629775
+ - -1.5117026027
+ - - 2.2971193386
+ - 1.4633162533
+ - -0.1548967065
+ - - -1.692112235
+ - 0.9127822159
+ - 1.5001436737
+ - - -2.7789702415
+ - 0.2359583716
+ - 0.3155151946
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.78421580441143
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.375684
+ - -1.171546
+ - 0.361202
+ - - 0.610709
+ - 0.157282
+ - 0.437021
+ - - 1.333522
+ - 1.267601
+ - -0.338512
+ - - -0.795336
+ - -0.033959
+ - -0.144907
+ - - -1.827723
+ - 0.196944
+ - 0.722191
+ - - -0.984419
+ - -0.370207
+ - -1.305635
+ - - 0.87646
+ - -1.954471
+ - 0.942918
+ - - 1.437368
+ - -1.506345
+ - -0.678711
+ - - 2.392234
+ - -1.048356
+ - 0.750927
+ - - 0.528902
+ - 0.458255
+ - 1.491118
+ - - 0.804243
+ - 2.223412
+ - -0.255586
+ - - 1.394008
+ - 1.002166
+ - -1.398324
+ - - 2.349874
+ - 1.40221
+ - 0.047937
+ - - -1.67402
+ - 0.473677
+ - 1.67758
+ - - -2.774071
+ - 0.085149
+ - 0.389496
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.71780564341078
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.377716
+ - -1.172508
+ - 0.362701
+ - - 0.611209
+ - 0.158057
+ - 0.439819
+ - - 1.335667
+ - 1.269228
+ - -0.337576
+ - - -0.796631
+ - -0.033699
+ - -0.144267
+ - - -1.834464
+ - 0.196484
+ - 0.720652
+ - - -0.983868
+ - -0.371336
+ - -1.310297
+ - - 0.88632
+ - -1.958982
+ - 0.954852
+ - - 1.42974
+ - -1.514025
+ - -0.680946
+ - - 2.402902
+ - -1.047674
+ - 0.742308
+ - - 0.527046
+ - 0.460365
+ - 1.498966
+ - - 0.814115
+ - 2.233878
+ - -0.247637
+ - - 1.386321
+ - 1.00734
+ - -1.404059
+ - - 2.3608
+ - 1.397184
+ - 0.041137
+ - - -1.685123
+ - 0.474931
+ - 1.682581
+ - - -2.784318
+ - 0.082567
+ - 0.38048
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.28526110249903
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.368681
+ - -1.163381
+ - 0.358841
+ - - 0.609413
+ - 0.157472
+ - 0.438031
+ - - 1.327039
+ - 1.259183
+ - -0.3357
+ - - -0.786912
+ - -0.03084
+ - -0.135093
+ - - -1.817095
+ - 0.196287
+ - 0.718778
+ - - -0.969531
+ - -0.364012
+ - -1.286172
+ - - 0.87607
+ - -1.945375
+ - 0.938081
+ - - 1.427312
+ - -1.496128
+ - -0.676857
+ - - 2.381842
+ - -1.042657
+ - 0.743647
+ - - 0.527669
+ - 0.456767
+ - 1.486873
+ - - 0.804587
+ - 2.213172
+ - -0.254162
+ - - 1.384501
+ - 0.994471
+ - -1.390904
+ - - 2.339977
+ - 1.392868
+ - 0.04539
+ - - -1.670228
+ - 0.471871
+ - 1.671155
+ - - -2.755891
+ - 0.082113
+ - 0.376806
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.11460466838368
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.375624
+ - -1.172065
+ - 0.362591
+ - - 0.610824
+ - 0.158143
+ - 0.440363
+ - - 1.333723
+ - 1.268795
+ - -0.336998
+ - - -0.794062
+ - -0.033053
+ - -0.142578
+ - - -1.82903
+ - 0.196005
+ - 0.718548
+ - - -0.973547
+ - -0.36773
+ - -1.299483
+ - - 0.885932
+ - -1.950603
+ - 0.954091
+ - - 1.421585
+ - -1.51349
+ - -0.673509
+ - - 2.39553
+ - -1.051225
+ - 0.737314
+ - - 0.530157
+ - 0.458205
+ - 1.492109
+ - - 0.814225
+ - 2.226449
+ - -0.24312
+ - - 1.378253
+ - 1.010979
+ - -1.397061
+ - - 2.353499
+ - 1.397156
+ - 0.035574
+ - - -1.684691
+ - 0.472296
+ - 1.673873
+ - - -2.770588
+ - 0.081949
+ - 0.377
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.23864148084209
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394862
+ - -1.175198
+ - 0.337777
+ - - 0.611367
+ - 0.129347
+ - 0.454616
+ - - 1.300867
+ - 1.257734
+ - -0.31186
+ - - -0.784097
+ - -0.070202
+ - -0.119145
+ - - -1.819275
+ - 0.23729
+ - 0.708979
+ - - -0.963825
+ - -0.473423
+ - -1.251362
+ - - 0.921544
+ - -1.979246
+ - 0.902936
+ - - 1.445139
+ - -1.479879
+ - -0.707399
+ - - 2.41016
+ - -1.04254
+ - 0.71398
+ - - 0.530111
+ - 0.40954
+ - 1.509406
+ - - 0.752066
+ - 2.196866
+ - -0.225563
+ - - 1.366196
+ - 0.99698
+ - -1.368389
+ - - 2.309938
+ - 1.414675
+ - 0.071551
+ - - -1.67132
+ - 0.604473
+ - 1.629943
+ - - -2.7563
+ - 0.155393
+ - 0.353243
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.693251313022095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394862
+ - -1.175198
+ - 0.337777
+ - - 0.611367
+ - 0.129347
+ - 0.454616
+ - - 1.300867
+ - 1.257734
+ - -0.31186
+ - - -0.784097
+ - -0.070202
+ - -0.119145
+ - - -1.819275
+ - 0.23729
+ - 0.708979
+ - - -0.963825
+ - -0.473423
+ - -1.251362
+ - - 0.921544
+ - -1.979246
+ - 0.902936
+ - - 1.445139
+ - -1.479879
+ - -0.707399
+ - - 2.41016
+ - -1.04254
+ - 0.71398
+ - - 0.530111
+ - 0.40954
+ - 1.509406
+ - - 0.752066
+ - 2.196866
+ - -0.225563
+ - - 1.366196
+ - 0.99698
+ - -1.368389
+ - - 2.309938
+ - 1.414675
+ - 0.071551
+ - - -1.67132
+ - 0.604473
+ - 1.629943
+ - - -2.7563
+ - 0.155393
+ - 0.353243
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.91502017229024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394862
+ - -1.175198
+ - 0.337777
+ - - 0.611367
+ - 0.129347
+ - 0.454616
+ - - 1.300867
+ - 1.257734
+ - -0.31186
+ - - -0.784097
+ - -0.070202
+ - -0.119145
+ - - -1.819275
+ - 0.23729
+ - 0.708979
+ - - -0.963825
+ - -0.473423
+ - -1.251362
+ - - 0.921544
+ - -1.979246
+ - 0.902936
+ - - 1.445139
+ - -1.479879
+ - -0.707399
+ - - 2.41016
+ - -1.04254
+ - 0.71398
+ - - 0.530111
+ - 0.40954
+ - 1.509406
+ - - 0.752066
+ - 2.196866
+ - -0.225563
+ - - 1.366196
+ - 0.99698
+ - -1.368389
+ - - 2.309938
+ - 1.414675
+ - 0.071551
+ - - -1.67132
+ - 0.604473
+ - 1.629943
+ - - -2.7563
+ - 0.155393
+ - 0.353243
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.31093896519782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.374961
+ - -1.170786
+ - 0.364002
+ - - 0.610416
+ - 0.159619
+ - 0.445666
+ - - 1.333278
+ - 1.268435
+ - -0.334829
+ - - -0.791227
+ - -0.032996
+ - -0.143031
+ - - -1.828487
+ - 0.194832
+ - 0.714262
+ - - -0.966438
+ - -0.367373
+ - -1.299847
+ - - 0.892091
+ - -1.949299
+ - 0.963329
+ - - 1.408039
+ - -1.514641
+ - -0.673267
+ - - 2.400223
+ - -1.048802
+ - 0.726753
+ - - 0.528509
+ - 0.45981
+ - 1.498349
+ - - 0.82067
+ - 2.230484
+ - -0.234161
+ - - 1.364853
+ - 1.011883
+ - -1.397111
+ - - 2.358561
+ - 1.389421
+ - 0.028198
+ - - -1.689722
+ - 0.470847
+ - 1.669526
+ - - -2.768293
+ - 0.080378
+ - 0.370876
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.69742208908511
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.444789822
- - -1.1025681339
- - 0.4731571241
- - - 0.618013947
- - 0.1957921078
- - 0.4410260506
- - - 1.2710175545
- - 1.2443794952
- - -0.4852130204
- - - -0.7912879399
- - -0.1147084117
- - -0.0964514189
- - - -1.8326420313
- - 0.3701958478
- - 0.6567287102
- - - -0.9696323809
- - -0.7389219021
- - -1.1415701015
- - - 1.0087636667
- - -1.8370076169
- - 1.166282095
- - - 1.4582285823
- - -1.5469111456
- - -0.5311248141
- - - 2.4780634755
- - -0.8950280503
- - 0.7877443549
- - - 0.5545589661
- - 0.6118471062
- - 1.4613922265
- - - 0.6989071024
- - 2.1842138263
- - -0.4930059936
- - - 1.3057943092
- - 0.8534629775
- - -1.5117026027
- - - 2.2971193386
- - 1.4633162533
- - -0.1548967065
- - - -1.692112235
- - 0.9127822159
- - 1.5001436737
- - - -2.7789702415
- - 0.2359583716
- - 0.3155151946
+ - - 1.416919
+ - -1.184378
+ - 0.322136
+ - - 0.612302
+ - 0.102843
+ - 0.465183
+ - - 1.27533
+ - 1.25571
+ - -0.29051
+ - - -0.782606
+ - -0.101403
+ - -0.108057
+ - - -1.812503
+ - 0.307732
+ - 0.680169
+ - - -0.962815
+ - -0.572494
+ - -1.209779
+ - - 0.963553
+ - -2.003353
+ - 0.881517
+ - - 1.457631
+ - -1.472985
+ - -0.727934
+ - - 2.433848
+ - -1.037444
+ - 0.687585
+ - - 0.53161
+ - 0.367612
+ - 1.523171
+ - - 0.707581
+ - 2.181612
+ - -0.188223
+ - - 1.338581
+ - 1.007885
+ - -1.3505
+ - - 2.283485
+ - 1.426256
+ - 0.088585
+ - - -1.664517
+ - 0.685532
+ - 1.597257
+ - - -2.750964
+ - 0.218685
+ - 0.328114
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.72063734835381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.367173
+ - -1.161582
+ - 0.360206
+ - - 0.608816
+ - 0.158159
+ - 0.440503
+ - - 1.32556
+ - 1.258349
+ - -0.333534
+ - - -0.785774
+ - -0.031669
+ - -0.138028
+ - - -1.814757
+ - 0.195489
+ - 0.715831
+ - - -0.965616
+ - -0.365305
+ - -1.290875
+ - - 0.877121
+ - -1.944674
+ - 0.943661
+ - - 1.419849
+ - -1.4957
+ - -0.677613
+ - - 2.384537
+ - -1.040224
+ - 0.739386
+ - - 0.52581
+ - 0.458097
+ - 1.491735
+ - - 0.80558
+ - 2.215573
+ - -0.24899
+ - - 1.377048
+ - 0.993524
+ - -1.391217
+ - - 2.342769
+ - 1.38865
+ - 0.043085
+ - - -1.666142
+ - 0.471061
+ - 1.668054
+ - - -2.754541
+ - 0.082066
+ - 0.376511
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.13558545841121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.377723
+ - -1.171697
+ - 0.361856
+ - - 0.609652
+ - 0.158822
+ - 0.442659
+ - - 1.335848
+ - 1.268017
+ - -0.337769
+ - - -0.794024
+ - -0.033171
+ - -0.142839
+ - - -1.83257
+ - 0.196019
+ - 0.718545
+ - - -0.97877
+ - -0.370318
+ - -1.30747
+ - - 0.889218
+ - -1.953174
+ - 0.95392
+ - - 1.42481
+ - -1.508869
+ - -0.677889
+ - - 2.398837
+ - -1.043386
+ - 0.737223
+ - - 0.525754
+ - 0.459556
+ - 1.496392
+ - - 0.817444
+ - 2.228527
+ - -0.245246
+ - - 1.381673
+ - 1.004409
+ - -1.39861
+ - - 2.357062
+ - 1.390522
+ - 0.039263
+ - - -1.685738
+ - 0.473497
+ - 1.677374
+ - - -2.779485
+ - 0.083057
+ - 0.381306
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -68.60246984585491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3948618967
+ - -1.1751977462
+ - 0.3377767692
+ - - 0.6113668285
+ - 0.1293470746
+ - 0.4546159602
+ - - 1.3008670682
+ - 1.2577343089
+ - -0.3118595761
+ - - -0.7840974412
+ - -0.0702016362
+ - -0.119144689
+ - - -1.8192751912
+ - 0.2372895606
+ - 0.7089791666
+ - - -0.9638248771
+ - -0.4734225865
+ - -1.2513616665
+ - - 0.9215438613
+ - -1.9792459135
+ - 0.902936199
+ - - 1.4451394282
+ - -1.4798793416
+ - -0.7073991953
+ - - 2.4101598883
+ - -1.0425396557
+ - 0.7139796427
+ - - 0.5301112362
+ - 0.4095397049
+ - 1.5094061
+ - - 0.7520663539
+ - 2.196866384
+ - -0.2255627096
+ - - 1.3661963741
+ - 0.9969795044
+ - -1.3683885032
+ - - 2.3099382171
+ - 1.414674927
+ - 0.0715507707
+ - - -1.6713196675
+ - 0.6044728776
+ - 1.6299433106
+ - - -2.7563004496
+ - 0.1553932738
+ - 0.3532427654
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.26900243961433
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.369758
+ - -1.16548
+ - 0.358837
+ - - 0.609775
+ - 0.157297
+ - 0.437326
+ - - 1.32791
+ - 1.261057
+ - -0.336931
+ - - -0.789627
+ - -0.031637
+ - -0.13744
+ - - -1.818535
+ - 0.196526
+ - 0.720007
+ - - -0.974417
+ - -0.364916
+ - -1.288545
+ - - 0.872583
+ - -1.947517
+ - 0.935467
+ - - 1.433375
+ - -1.496227
+ - -0.678312
+ - - 2.381722
+ - -1.044155
+ - 0.748911
+ - - 0.530781
+ - 0.456897
+ - 1.486949
+ - - 0.800817
+ - 2.213503
+ - -0.257641
+ - - 1.390436
+ - 0.993972
+ - -1.392334
+ - - 2.339617
+ - 1.397121
+ - 0.048923
+ - - -1.668953
+ - 0.471847
+ - 1.671131
+ - - -2.757811
+ - 0.083524
+ - 0.382367
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Methylthiophene.yml b/input/reference_sets/main/2-Methylthiophene.yml
index ca5abad344..176293a7a2 100644
--- a/input/reference_sets/main/2-Methylthiophene.yml
+++ b/input/reference_sets/main/2-Methylthiophene.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.66899195812377
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.26931
+ - 0.104541
+ - -4.3e-05
+ - - 0.778316
+ - 0.216637
+ - -3.6e-05
+ - - -0.232364
+ - -1.184243
+ - -0.000199
+ - - -1.669238
+ - -0.242312
+ - -9.7e-05
+ - - -1.384589
+ - 1.093957
+ - 5.6e-05
+ - - 0.013032
+ - 1.35272
+ - 9.0e-05
+ - - 2.710456
+ - 1.100568
+ - 6.5e-05
+ - - 2.635097
+ - -0.425472
+ - -0.880804
+ - - 2.635091
+ - -0.42566
+ - 0.880606
+ - - -2.634156
+ - -0.721135
+ - -0.000155
+ - - -2.142735
+ - 1.863086
+ - 0.00014
+ - - 0.443753
+ - 2.344172
+ - 0.000204
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.22668655975272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.268959
+ - 0.106253
+ - -4.3e-05
+ - - 0.778862
+ - 0.218024
+ - -3.5e-05
+ - - -0.232955
+ - -1.187725
+ - -0.000194
+ - - -1.671121
+ - -0.240753
+ - -9.5e-05
+ - - -1.385375
+ - 1.091352
+ - 5.4e-05
+ - - 0.014426
+ - 1.35034
+ - 8.8e-05
+ - - 2.712294
+ - 1.102128
+ - 7.6e-05
+ - - 2.63622
+ - -0.425014
+ - -0.88095
+ - - 2.636214
+ - -0.425221
+ - 0.880742
+ - - -2.63692
+ - -0.718128
+ - -0.000151
+ - - -2.142036
+ - 1.862651
+ - 0.000136
+ - - 0.443404
+ - 2.342954
+ - 0.000199
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 71.21931183003757
+ value: 71.21931183003757
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2866894355
+ - 0.1103671705
+ - -0.0002055199
+ - - 0.7871524614
+ - 0.2281562611
+ - -3.61854e-05
+ - - -0.2303094425
+ - -1.1994435305
+ - 0.0002116079
+ - - -1.6832783756
+ - -0.2431190725
+ - -0.0004243714
+ - - -1.39735976
+ - 1.1038193773
+ - 6.42885e-05
+ - - 0.0104184706
+ - 1.3700743598
+ - 0.000219614
+ - - 2.7334625445
+ - 1.113852944
+ - 0.0001240599
+ - - 2.6548383418
+ - -0.4263514995
+ - -0.8886739744
+ - - 2.6549608165
+ - -0.4270301921
+ - 0.8877904742
+ - - -2.6543233429
+ - -0.7307680139
+ - -0.0007495269
+ - - -2.1662164463
+ - 1.8748039274
+ - 0.0001018375
+ - - 0.4404957748
+ - 2.3708007452
+ - 0.0003144482
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.131490963583545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.273907
+ - 0.103469
+ - -4.3e-05
+ - - 0.781284
+ - 0.218164
+ - -3.5e-05
+ - - -0.233393
+ - -1.190409
+ - -0.000197
+ - - -1.675389
+ - -0.244109
+ - -9.6e-05
+ - - -1.38986
+ - 1.0967
+ - 5.5e-05
+ - - 0.011435
+ - 1.357204
+ - 8.9e-05
+ - - 2.719602
+ - 1.102956
+ - 7.1e-05
+ - - 2.642776
+ - -0.43062
+ - -0.884177
+ - - 2.64277
+ - -0.43082
+ - 0.883973
+ - - -2.642849
+ - -0.728053
+ - -0.000154
+ - - -2.151912
+ - 1.869056
+ - 0.000139
+ - - 0.4436
+ - 2.353324
+ - 0.000202
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.265092141933856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.277866
+ - 0.102064
+ - -4.3e-05
+ - - 0.783114
+ - 0.216475
+ - -3.6e-05
+ - - -0.237064
+ - -1.192332
+ - -0.000197
+ - - -1.680814
+ - -0.24523
+ - -9.6e-05
+ - - -1.392686
+ - 1.097709
+ - 5.5e-05
+ - - 0.009624
+ - 1.356928
+ - 8.9e-05
+ - - 2.725379
+ - 1.105812
+ - 7.2e-05
+ - - 2.65163
+ - -0.432482
+ - -0.887464
+ - - 2.651624
+ - -0.432682
+ - 0.887258
+ - - -2.652356
+ - -0.731835
+ - -0.000154
+ - - -2.157142
+ - 1.874389
+ - 0.000139
+ - - 0.442797
+ - 2.358046
+ - 0.000203
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.4484952552941
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.263135
+ - 0.107104
+ - -4.2e-05
+ - - 0.774518
+ - 0.217012
+ - -3.2e-05
+ - - -0.232378
+ - -1.178044
+ - -0.000182
+ - - -1.662888
+ - -0.238653
+ - -9.0e-05
+ - - -1.380971
+ - 1.087002
+ - 4.9e-05
+ - - 0.016505
+ - 1.34506
+ - 8.2e-05
+ - - 2.705678
+ - 1.102252
+ - 0.000102
+ - - 2.629855
+ - -0.422806
+ - -0.880367
+ - - 2.629848
+ - -0.423057
+ - 0.880136
+ - - -2.629546
+ - -0.713988
+ - -0.000143
+ - - -2.137525
+ - 1.85781
+ - 0.000127
+ - - 0.44574
+ - 2.337167
+ - 0.000188
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.8078889583336
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.275804
+ - 0.105505
+ - -4.2e-05
+ - - 0.780553
+ - 0.217974
+ - -3.3e-05
+ - - -0.237645
+ - -1.195256
+ - -0.000188
+ - - -1.680403
+ - -0.239539
+ - -9.2e-05
+ - - -1.390249
+ - 1.09301
+ - 5.1e-05
+ - - 0.01289
+ - 1.350427
+ - 8.5e-05
+ - - 2.720139
+ - 1.102956
+ - 8.9e-05
+ - - 2.645868
+ - -0.424886
+ - -0.882573
+ - - 2.645862
+ - -0.425116
+ - 0.882353
+ - - -2.646082
+ - -0.720703
+ - -0.000147
+ - - -2.146263
+ - 1.867372
+ - 0.000131
+ - - 0.441498
+ - 2.345116
+ - 0.000193
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.086741536691086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.265975
+ - 0.105896
+ - -3.5e-05
+ - - 0.774122
+ - 0.217727
+ - 1.2e-05
+ - - -0.231153
+ - -1.179215
+ - 2.9e-05
+ - - -1.663854
+ - -0.23947
+ - -5.6e-05
+ - - -1.384005
+ - 1.089234
+ - -1.0e-05
+ - - 0.016825
+ - 1.348886
+ - 3.7e-05
+ - - 2.707538
+ - 1.101728
+ - 0.000384
+ - - 2.630023
+ - -0.424062
+ - -0.881268
+ - - 2.630051
+ - -0.424827
+ - 0.880726
+ - - -2.629817
+ - -0.717099
+ - -7.7e-05
+ - - -2.142937
+ - 1.857945
+ - -3.0e-06
+ - - 0.449203
+ - 2.340119
+ - 8.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.450606960203913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.265975
+ - 0.105896
+ - -3.5e-05
+ - - 0.774122
+ - 0.217727
+ - 1.2e-05
+ - - -0.231153
+ - -1.179215
+ - 2.9e-05
+ - - -1.663854
+ - -0.23947
+ - -5.6e-05
+ - - -1.384005
+ - 1.089234
+ - -1.0e-05
+ - - 0.016825
+ - 1.348886
+ - 3.7e-05
+ - - 2.707538
+ - 1.101728
+ - 0.000384
+ - - 2.630023
+ - -0.424062
+ - -0.881268
+ - - 2.630051
+ - -0.424827
+ - 0.880726
+ - - -2.629817
+ - -0.717099
+ - -7.7e-05
+ - - -2.142937
+ - 1.857945
+ - -3.0e-06
+ - - 0.449203
+ - 2.340119
+ - 8.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.407437019740016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.265975
+ - 0.105896
+ - -3.5e-05
+ - - 0.774122
+ - 0.217727
+ - 1.2e-05
+ - - -0.231153
+ - -1.179215
+ - 2.9e-05
+ - - -1.663854
+ - -0.23947
+ - -5.6e-05
+ - - -1.384005
+ - 1.089234
+ - -1.0e-05
+ - - 0.016825
+ - 1.348886
+ - 3.7e-05
+ - - 2.707538
+ - 1.101728
+ - 0.000384
+ - - 2.630023
+ - -0.424062
+ - -0.881268
+ - - 2.630051
+ - -0.424827
+ - 0.880726
+ - - -2.629817
+ - -0.717099
+ - -7.7e-05
+ - - -2.142937
+ - 1.857945
+ - -3.0e-06
+ - - 0.449203
+ - 2.340119
+ - 8.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.651241831628425
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2866894355
- - 0.1103671705
- - -0.0002055199
- - - 0.7871524614
- - 0.2281562611
- - -3.61854e-05
- - - -0.2303094425
- - -1.1994435305
- - 0.0002116079
- - - -1.6832783756
- - -0.2431190725
- - -0.0004243714
- - - -1.39735976
- - 1.1038193773
- - 6.42885e-05
- - - 0.0104184706
- - 1.3700743598
- - 0.000219614
- - - 2.7334625445
- - 1.113852944
- - 0.0001240599
- - - 2.6548383418
- - -0.4263514995
- - -0.8886739744
- - - 2.6549608165
- - -0.4270301921
- - 0.8877904742
- - - -2.6543233429
- - -0.7307680139
- - -0.0007495269
- - - -2.1662164463
- - 1.8748039274
- - 0.0001018375
- - - 0.4404957748
- - 2.3708007452
- - 0.0003144482
+ - - 2.274315
+ - 0.105781
+ - -4.3e-05
+ - - 0.780381
+ - 0.219282
+ - -3.4e-05
+ - - -0.237069
+ - -1.193065
+ - -0.000193
+ - - -1.680325
+ - -0.239965
+ - -9.4e-05
+ - - -1.390766
+ - 1.092195
+ - 5.3e-05
+ - - 0.012267
+ - 1.350381
+ - 8.7e-05
+ - - 2.720297
+ - 1.104193
+ - 8.0e-05
+ - - 2.646526
+ - -0.426715
+ - -0.882293
+ - - 2.646521
+ - -0.426928
+ - 0.882081
+ - - -2.645941
+ - -0.721979
+ - -0.00015
+ - - -2.145826
+ - 1.86829
+ - 0.000135
+ - - 0.441592
+ - 2.345392
+ - 0.000198
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.446468561400554
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.265838
+ - 0.105558
+ - -4.1e-05
+ - - 0.774995
+ - 0.218871
+ - -3.1e-05
+ - - -0.229833
+ - -1.17712
+ - -0.00018
+ - - -1.662381
+ - -0.239711
+ - -9.0e-05
+ - - -1.383305
+ - 1.089817
+ - 4.9e-05
+ - - 0.01644
+ - 1.349971
+ - 8.2e-05
+ - - 2.706751
+ - 1.101517
+ - 0.000104
+ - - 2.627398
+ - -0.425872
+ - -0.881414
+ - - 2.627392
+ - -0.426129
+ - 0.881179
+ - - -2.627183
+ - -0.719539
+ - -0.000143
+ - - -2.142514
+ - 1.858219
+ - 0.000126
+ - - 0.448375
+ - 2.341279
+ - 0.000186
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.232759775866093
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.262349
+ - 0.104751
+ - -4.3e-05
+ - - 0.776722
+ - 0.217025
+ - -3.6e-05
+ - - -0.23177
+ - -1.174271
+ - -0.000196
+ - - -1.662457
+ - -0.240746
+ - -9.6e-05
+ - - -1.380606
+ - 1.090764
+ - 5.5e-05
+ - - 0.013838
+ - 1.349131
+ - 8.9e-05
+ - - 2.706227
+ - 1.10143
+ - 7.1e-05
+ - - 2.630745
+ - -0.426399
+ - -0.881655
+ - - 2.630738
+ - -0.426597
+ - 0.881452
+ - - -2.628308
+ - -0.722268
+ - -0.000154
+ - - -2.140413
+ - 1.861277
+ - 0.000139
+ - - 0.444908
+ - 2.342765
+ - 0.000202
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.66796398466531
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.277261
+ - 0.103351
+ - -4.3e-05
+ - - 0.780885
+ - 0.215819
+ - -3.6e-05
+ - - -0.23749
+ - -1.18916
+ - -0.000198
+ - - -1.67771
+ - -0.243031
+ - -9.6e-05
+ - - -1.390029
+ - 1.096099
+ - 5.5e-05
+ - - 0.010766
+ - 1.353952
+ - 8.9e-05
+ - - 2.718595
+ - 1.104406
+ - 6.9e-05
+ - - 2.646398
+ - -0.429104
+ - -0.884367
+ - - 2.646392
+ - -0.4293
+ - 0.884164
+ - - -2.64495
+ - -0.726659
+ - -0.000154
+ - - -2.150051
+ - 1.870068
+ - 0.00014
+ - - 0.441906
+ - 2.350421
+ - 0.000203
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.873482964540127
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2659752742
+ - 0.1058956058
+ - -3.49934e-05
+ - - 0.7741224913
+ - 0.2177272134
+ - 1.18059e-05
+ - - -0.2311525092
+ - -1.1792151366
+ - 2.87572e-05
+ - - -1.6638539062
+ - -0.2394700596
+ - -5.56475e-05
+ - - -1.3840053912
+ - 1.0892343578
+ - -9.7714e-06
+ - - 0.0168245923
+ - 1.3488859845
+ - 3.69736e-05
+ - - 2.7075381449
+ - 1.101727832
+ - 0.0003842442
+ - - 2.630023326
+ - -0.4240622933
+ - -0.881268297
+ - - 2.6300510593
+ - -0.4248266707
+ - 0.8807262663
+ - - -2.6298166941
+ - -0.7170987379
+ - -7.6939e-05
+ - - -2.1429371341
+ - 1.8579446912
+ - -2.8535e-06
+ - - 0.449203082
+ - 2.3401187529
+ - 8.72605e-05
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.242587220891636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.265334
+ - 0.10615
+ - -4.3e-05
+ - - 0.774849
+ - 0.21631
+ - -3.6e-05
+ - - -0.232976
+ - -1.177591
+ - -0.000193
+ - - -1.66368
+ - -0.239786
+ - -9.5e-05
+ - - -1.381661
+ - 1.08847
+ - 5.3e-05
+ - - 0.015829
+ - 1.346675
+ - 8.7e-05
+ - - 2.706377
+ - 1.102857
+ - 7.8e-05
+ - - 2.630794
+ - -0.423773
+ - -0.88175
+ - - 2.630787
+ - -0.423984
+ - 0.881541
+ - - -2.630596
+ - -0.716209
+ - -0.000151
+ - - -2.139471
+ - 1.858834
+ - 0.000136
+ - - 0.446385
+ - 2.338909
+ - 0.000198
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Propanethiol.yml b/input/reference_sets/main/2-Propanethiol.yml
index 9748d9f671..ceb7fc50f4 100644
--- a/input/reference_sets/main/2-Propanethiol.yml
+++ b/input/reference_sets/main/2-Propanethiol.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.759673163369392
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086204
+ - 1.264014
+ - -0.111619
+ - - 0.401626
+ - -1.9e-05
+ - 0.39201
+ - - 1.086151
+ - -1.264104
+ - -0.111561
+ - - -1.391802
+ - 1.0e-05
+ - 0.014601
+ - - 0.601485
+ - 2.157934
+ - 0.276633
+ - - 1.054415
+ - 1.307456
+ - -1.201996
+ - - 2.135112
+ - 1.274751
+ - 0.193585
+ - - 0.410745
+ - 6.0e-06
+ - 1.484721
+ - - 0.601394
+ - -2.157986
+ - 0.276732
+ - - 1.05436
+ - -1.307595
+ - -1.201937
+ - - 2.135058
+ - -1.274872
+ - 0.193644
+ - - -1.260723
+ - -2.4e-05
+ - -1.320296
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.90448385303155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.087795
+ - 1.266275
+ - -0.111626
+ - - 0.403872
+ - -1.9e-05
+ - 0.389907
+ - - 1.087742
+ - -1.266365
+ - -0.111568
+ - - -1.397479
+ - 1.0e-05
+ - 0.016371
+ - - 0.601187
+ - 2.159802
+ - 0.277226
+ - - 1.058939
+ - 1.312256
+ - -1.202736
+ - - 2.137075
+ - 1.278425
+ - 0.195855
+ - - 0.411261
+ - 5.0e-06
+ - 1.48303
+ - - 0.601096
+ - -2.159854
+ - 0.277325
+ - - 1.058884
+ - -1.312395
+ - -1.202676
+ - - 2.137021
+ - -1.278546
+ - 0.195914
+ - - -1.273369
+ - -2.4e-05
+ - -1.322506
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -2.267247001607169
+ value: -2.267247001607169
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0990607213
+ - 1.2739421914
+ - -0.114570828
+ - - 0.4163782403
+ - 0.0001205085
+ - 0.404295821
+ - - 1.0969051216
+ - -1.2750432904
+ - -0.114024197
+ - - -1.4065203659
+ - 0.0008605681
+ - 0.0168998378
+ - - 0.6087370829
+ - 2.1742579021
+ - 0.2775615329
+ - - 1.0567787287
+ - 1.3082928772
+ - -1.2140472178
+ - - 2.159652986
+ - 1.2860593957
+ - 0.1848012766
+ - - 0.4317925934
+ - 0.0002492875
+ - 1.5056738414
+ - - 0.6050149802
+ - -2.1742857863
+ - 0.2786304756
+ - - 1.0543938583
+ - -1.3100381075
+ - -1.2135060407
+ - - 2.1574940586
+ - -1.2890925049
+ - 0.1851239782
+ - - -1.2436029324
+ - -0.0033286102
+ - -1.3288400272
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.507879257703552
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.088005
+ - 1.270161
+ - -0.112161
+ - - 0.403943
+ - -1.9e-05
+ - 0.391734
+ - - 1.087951
+ - -1.270252
+ - -0.112103
+ - - -1.40319
+ - 1.0e-05
+ - 0.017926
+ - - 0.597662
+ - 2.166665
+ - 0.276964
+ - - 1.058736
+ - 1.313572
+ - -1.207517
+ - - 2.141484
+ - 1.283374
+ - 0.196733
+ - - 0.410894
+ - 6.0e-06
+ - 1.489516
+ - - 0.597571
+ - -2.166717
+ - 0.277063
+ - - 1.058681
+ - -1.313711
+ - -1.207457
+ - - 2.14143
+ - -1.283495
+ - 0.196792
+ - - -1.269143
+ - -2.3e-05
+ - -1.322971
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.936345061789373
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.089017
+ - 1.273286
+ - -0.112245
+ - - 0.404958
+ - -1.9e-05
+ - 0.389239
+ - - 1.088964
+ - -1.273376
+ - -0.112187
+ - - -1.407249
+ - 1.0e-05
+ - 0.022709
+ - - 0.595497
+ - 2.173253
+ - 0.278296
+ - - 1.063922
+ - 1.321513
+ - -1.212351
+ - - 2.146444
+ - 1.290318
+ - 0.199977
+ - - 0.409491
+ - 6.0e-06
+ - 1.492334
+ - - 0.595406
+ - -2.173305
+ - 0.278395
+ - - 1.063866
+ - -1.321653
+ - -1.212291
+ - - 2.14639
+ - -1.290439
+ - 0.200035
+ - - -1.282681
+ - -2.3e-05
+ - -1.327394
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.997280740994961
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.085914
+ - 1.261645
+ - -0.111362
+ - - 0.400383
+ - -1.9e-05
+ - 0.386907
+ - - 1.08586
+ - -1.261735
+ - -0.111305
+ - - -1.386858
+ - 1.0e-05
+ - 0.016345
+ - - 0.601845
+ - 2.155671
+ - 0.277623
+ - - 1.058032
+ - 1.309932
+ - -1.201712
+ - - 2.133998
+ - 1.272111
+ - 0.196055
+ - - 0.411692
+ - 5.0e-06
+ - 1.47921
+ - - 0.601754
+ - -2.155723
+ - 0.277721
+ - - 1.057977
+ - -1.310071
+ - -1.201652
+ - - 2.133945
+ - -1.272231
+ - 0.196113
+ - - -1.270516
+ - -2.4e-05
+ - -1.319426
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.873099607681947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.090647
+ - 1.272538
+ - -0.112776
+ - - 0.405814
+ - -2.0e-05
+ - 0.387416
+ - - 1.090594
+ - -1.272628
+ - -0.112718
+ - - -1.409537
+ - 1.0e-05
+ - 0.018729
+ - - 0.600949
+ - 2.16631
+ - 0.276571
+ - - 1.068748
+ - 1.323351
+ - -1.205619
+ - - 2.140102
+ - 1.287104
+ - 0.200786
+ - - 0.411753
+ - 5.0e-06
+ - 1.481997
+ - - 0.600858
+ - -2.166362
+ - 0.27667
+ - - 1.068693
+ - -1.323491
+ - -1.205559
+ - - 2.140049
+ - -1.287224
+ - 0.200845
+ - - -1.294646
+ - -2.2e-05
+ - -1.321826
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.34104194896974
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084349
+ - 1.262048
+ - -0.111682
+ - - 0.401411
+ - 9.0e-06
+ - 0.394698
+ - - 1.084254
+ - -1.262099
+ - -0.111646
+ - - -1.384273
+ - 4.3e-05
+ - 0.017242
+ - - 0.595876
+ - 2.156509
+ - 0.271526
+ - - 1.052738
+ - 1.299422
+ - -1.203042
+ - - 2.133056
+ - 1.275911
+ - 0.19457
+ - - 0.414622
+ - 2.5e-05
+ - 1.487612
+ - - 0.595693
+ - -2.156517
+ - 0.271544
+ - - 1.052676
+ - -1.299473
+ - -1.203007
+ - - 2.132948
+ - -1.276069
+ - 0.194639
+ - - -1.249325
+ - -0.000239
+ - -1.317936
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.744165980485356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084349
+ - 1.262048
+ - -0.111682
+ - - 0.401411
+ - 9.0e-06
+ - 0.394698
+ - - 1.084254
+ - -1.262099
+ - -0.111646
+ - - -1.384273
+ - 4.3e-05
+ - 0.017242
+ - - 0.595876
+ - 2.156509
+ - 0.271526
+ - - 1.052738
+ - 1.299422
+ - -1.203042
+ - - 2.133056
+ - 1.275911
+ - 0.19457
+ - - 0.414622
+ - 2.5e-05
+ - 1.487612
+ - - 0.595693
+ - -2.156517
+ - 0.271544
+ - - 1.052676
+ - -1.299473
+ - -1.203007
+ - - 2.132948
+ - -1.276069
+ - 0.194639
+ - - -1.249325
+ - -0.000239
+ - -1.317936
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.619446082826304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084349
+ - 1.262048
+ - -0.111682
+ - - 0.401411
+ - 9.0e-06
+ - 0.394698
+ - - 1.084254
+ - -1.262099
+ - -0.111646
+ - - -1.384273
+ - 4.3e-05
+ - 0.017242
+ - - 0.595876
+ - 2.156509
+ - 0.271526
+ - - 1.052738
+ - 1.299422
+ - -1.203042
+ - - 2.133056
+ - 1.275911
+ - 0.19457
+ - - 0.414622
+ - 2.5e-05
+ - 1.487612
+ - - 0.595693
+ - -2.156517
+ - 0.271544
+ - - 1.052676
+ - -1.299473
+ - -1.203007
+ - - 2.132948
+ - -1.276069
+ - 0.194639
+ - - -1.249325
+ - -0.000239
+ - -1.317936
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.902987755723732
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.0990607213
- - 1.2739421914
- - -0.114570828
- - - 0.4163782403
- - 0.0001205085
- - 0.404295821
- - - 1.0969051216
- - -1.2750432904
- - -0.114024197
- - - -1.4065203659
- - 0.0008605681
- - 0.0168998378
- - - 0.6087370829
- - 2.1742579021
- - 0.2775615329
- - - 1.0567787287
- - 1.3082928772
- - -1.2140472178
- - - 2.159652986
- - 1.2860593957
- - 0.1848012766
- - - 0.4317925934
- - 0.0002492875
- - 1.5056738414
- - - 0.6050149802
- - -2.1742857863
- - 0.2786304756
- - - 1.0543938583
- - -1.3100381075
- - -1.2135060407
- - - 2.1574940586
- - -1.2890925049
- - 0.1851239782
- - - -1.2436029324
- - -0.0033286102
- - -1.3288400272
+ - - 1.090036
+ - 1.2719
+ - -0.111961
+ - - 0.403789
+ - -1.9e-05
+ - 0.389033
+ - - 1.089983
+ - -1.27199
+ - -0.111902
+ - - -1.406891
+ - 1.0e-05
+ - 0.017301
+ - - 0.603228
+ - 2.168016
+ - 0.279277
+ - - 1.065182
+ - 1.322805
+ - -1.206057
+ - - 2.141887
+ - 1.283218
+ - 0.197921
+ - - 0.408149
+ - 5.0e-06
+ - 1.485017
+ - - 0.603137
+ - -2.168068
+ - 0.279376
+ - - 1.065126
+ - -1.322945
+ - -1.205996
+ - - 2.141834
+ - -1.283339
+ - 0.19798
+ - - -1.291437
+ - -2.3e-05
+ - -1.325472
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.672987410917518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.089857
+ - 1.263927
+ - -0.108481
+ - - 0.39985
+ - 0.00501
+ - 0.396091
+ - - 1.078152
+ - -1.258068
+ - -0.113675
+ - - -1.384272
+ - 0.012847
+ - 0.013517
+ - - 0.610076
+ - 2.160562
+ - 0.280381
+ - - 1.052105
+ - 1.303616
+ - -1.199335
+ - - 2.140053
+ - 1.2679
+ - 0.192467
+ - - 0.410079
+ - 0.002448
+ - 1.488437
+ - - 0.58858
+ - -2.15228
+ - 0.268512
+ - - 1.043571
+ - -1.290489
+ - -1.205012
+ - - 2.127544
+ - -1.274109
+ - 0.189315
+ - - -1.24157
+ - -0.041795
+ - -1.3177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.01255248840642
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084408
+ - 1.261539
+ - -0.111594
+ - - 0.402706
+ - -1.9e-05
+ - 0.3871
+ - - 1.084355
+ - -1.261629
+ - -0.111536
+ - - -1.382998
+ - 1.0e-05
+ - 0.019747
+ - - 0.596369
+ - 2.156346
+ - 0.276144
+ - - 1.056905
+ - 1.307976
+ - -1.203982
+ - - 2.13464
+ - 1.275503
+ - 0.196317
+ - - 0.411737
+ - 5.0e-06
+ - 1.48237
+ - - 0.596278
+ - -2.156398
+ - 0.276242
+ - - 1.056849
+ - -1.308115
+ - -1.203922
+ - - 2.134586
+ - -1.275623
+ - 0.196376
+ - - -1.261809
+ - -2.3e-05
+ - -1.318744
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.4323187288227213
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.089231
+ - 1.273564
+ - -0.112928
+ - - 0.405862
+ - -2.0e-05
+ - 0.391221
+ - - 1.089178
+ - -1.273655
+ - -0.11287
+ - - -1.403665
+ - 9.0e-06
+ - 0.017829
+ - - 0.597347
+ - 2.167689
+ - 0.278995
+ - - 1.060443
+ - 1.319502
+ - -1.207797
+ - - 2.142178
+ - 1.287062
+ - 0.197275
+ - - 0.409475
+ - 5.0e-06
+ - 1.488101
+ - - 0.597258
+ - -2.167742
+ - 0.279096
+ - - 1.060389
+ - -1.319643
+ - -1.207736
+ - - 2.142124
+ - -1.287183
+ - 0.197335
+ - - -1.275795
+ - -1.8e-05
+ - -1.324004
isotopes:
- 12
- 12
@@ -309,13 +1271,161 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.965555719424366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0843491717
+ - 1.2620484493
+ - -0.1116821227
+ - - 0.4014112844
+ - 8.7893e-06
+ - 0.3946977078
+ - - 1.0842537545
+ - -1.2620989177
+ - -0.1116456629
+ - - -1.3842730594
+ - 4.25238e-05
+ - 0.0172421929
+ - - 0.5958761571
+ - 2.1565089902
+ - 0.2715261607
+ - - 1.0527377339
+ - 1.2994221191
+ - -1.2030419471
+ - - 2.1330555112
+ - 1.2759108617
+ - 0.1945698713
+ - - 0.4146222042
+ - 2.54441e-05
+ - 1.4876123389
+ - - 0.5956930136
+ - -2.1565171626
+ - 0.2715441308
+ - - 1.0526763041
+ - -1.2994731053
+ - -1.2030073378
+ - - 2.1329475329
+ - -1.2760686152
+ - 0.194638514
+ - - -1.2493247708
+ - -0.0002388383
+ - -1.3179363509
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.860612304175383
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.085736
+ - 1.263165
+ - -0.111862
+ - - 0.399442
+ - -1.9e-05
+ - 0.389017
+ - - 1.085683
+ - -1.263255
+ - -0.111805
+ - - -1.388817
+ - 1.0e-05
+ - 0.01661
+ - - 0.601601
+ - 2.158364
+ - 0.276857
+ - - 1.057276
+ - 1.308141
+ - -1.203326
+ - - 2.134505
+ - 1.271967
+ - 0.196038
+ - - 0.411464
+ - 5.0e-06
+ - 1.481946
+ - - 0.60151
+ - -2.158415
+ - 0.276955
+ - - 1.057221
+ - -1.30828
+ - -1.203266
+ - - 2.134451
+ - -1.272088
+ - 0.196096
+ - - -1.266046
+ - -2.5e-05
+ - -1.31874
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -16.46641430415091
+ value: -16.466414304150902
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/2-Propanol.yml b/input/reference_sets/main/2-Propanol.yml
index 12851f38a5..bc7558a754 100644
--- a/input/reference_sets/main/2-Propanol.yml
+++ b/input/reference_sets/main/2-Propanol.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.23783731505854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.180414
+ - -0.792797
+ - 0.101671
+ - - 0.003077
+ - 0.039704
+ - -0.366082
+ - - -0.062215
+ - 1.367592
+ - 0.163227
+ - - 1.329281
+ - -0.534103
+ - 0.088994
+ - - -1.190434
+ - -0.852268
+ - 1.1908
+ - - -2.124126
+ - -0.351831
+ - -0.226776
+ - - -1.128874
+ - -1.804793
+ - -0.302977
+ - - -0.006033
+ - 0.088444
+ - -1.462521
+ - - -0.912547
+ - 1.748011
+ - -0.080839
+ - - 1.473029
+ - -1.536418
+ - -0.315096
+ - - 1.358878
+ - -0.588671
+ - 1.177983
+ - - 2.150955
+ - 0.097805
+ - -0.24541
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.13705680251594
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.182757
+ - -0.793768
+ - 0.102096
+ - - 0.003073
+ - 0.040062
+ - -0.364212
+ - - -0.063768
+ - 1.370413
+ - 0.161752
+ - - 1.331948
+ - -0.534197
+ - 0.089287
+ - - -1.195807
+ - -0.855227
+ - 1.192136
+ - - -2.126863
+ - -0.352405
+ - -0.228197
+ - - -1.13095
+ - -1.806481
+ - -0.303366
+ - - -0.005603
+ - 0.087034
+ - -1.462158
+ - - -0.913111
+ - 1.754259
+ - -0.081041
+ - - 1.475425
+ - -1.537187
+ - -0.315737
+ - - 1.365055
+ - -0.589984
+ - 1.17919
+ - - 2.153935
+ - 0.098157
+ - -0.246775
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -45.17913646222723
+ value: -45.17913646222723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.2022698253
+ - -0.7816482559
+ - 0.1046064939
+ - - 0.0022509165
+ - 0.0442950342
+ - -0.3716946257
+ - - -0.0385688824
+ - 1.3790416989
+ - 0.1601745429
+ - - 1.3291004597
+ - -0.5584677229
+ - 0.0924178174
+ - - -1.2191277505
+ - -0.8156196842
+ - 1.2038906785
+ - - -2.1481235693
+ - -0.3348694888
+ - -0.2429823215
+ - - -1.1553437436
+ - -1.8115129349
+ - -0.2804335503
+ - - -0.0055845394
+ - 0.0734764936
+ - -1.4806664305
+ - - -0.9117630538
+ - 1.7497002413
+ - -0.0667223136
+ - - 1.4575840415
+ - -1.5692438579
+ - -0.3204080883
+ - - 1.3478793647
+ - -0.6185704091
+ - 1.1904725999
+ - - 2.1685410045
+ - 0.0692317162
+ - -0.2365250313
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.85028300741999
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.185725
+ - -0.792881
+ - 0.102708
+ - - 0.004508
+ - 0.042992
+ - -0.365237
+ - - -0.061131
+ - 1.38227
+ - 0.16043
+ - - 1.336624
+ - -0.534955
+ - 0.089834
+ - - -1.200523
+ - -0.852309
+ - 1.196997
+ - - -2.133335
+ - -0.351846
+ - -0.232369
+ - - -1.131561
+ - -1.810481
+ - -0.302153
+ - - -0.004367
+ - 0.087276
+ - -1.468925
+ - - -0.923805
+ - 1.748561
+ - -0.075925
+ - - 1.476541
+ - -1.541519
+ - -0.318813
+ - - 1.369518
+ - -0.593731
+ - 1.183729
+ - - 2.163833
+ - 0.097298
+ - -0.247302
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.24125775097789
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.188557
+ - -0.793762
+ - 0.102702
+ - - 0.004287
+ - 0.040624
+ - -0.3655
+ - - -0.058537
+ - 1.381579
+ - 0.163775
+ - - 1.339025
+ - -0.534806
+ - 0.08957
+ - - -1.204433
+ - -0.855006
+ - 1.201673
+ - - -2.139726
+ - -0.348681
+ - -0.231978
+ - - -1.140817
+ - -1.815874
+ - -0.304181
+ - - -0.004309
+ - 0.086596
+ - -1.474071
+ - - -0.924322
+ - 1.754468
+ - -0.078952
+ - - 1.486867
+ - -1.544534
+ - -0.320476
+ - - 1.373665
+ - -0.593693
+ - 1.188152
+ - - 2.167435
+ - 0.103764
+ - -0.247739
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.19065786487939
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.178979
+ - -0.792439
+ - 0.101554
+ - - 0.002644
+ - 0.038744
+ - -0.362884
+ - - -0.065251
+ - 1.360623
+ - 0.162313
+ - - 1.327258
+ - -0.533412
+ - 0.088791
+ - - -1.190454
+ - -0.85488
+ - 1.190695
+ - - -2.122454
+ - -0.350208
+ - -0.226124
+ - - -1.128946
+ - -1.803745
+ - -0.304771
+ - - -0.005651
+ - 0.08706
+ - -1.45964
+ - - -0.908136
+ - 1.752361
+ - -0.083324
+ - - 1.472873
+ - -1.535661
+ - -0.314923
+ - - 1.360011
+ - -0.587559
+ - 1.177911
+ - - 2.147662
+ - 0.099793
+ - -0.246623
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.78728420156733
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.18941
+ - -0.797442
+ - 0.102816
+ - - 0.00144
+ - 0.040362
+ - -0.362147
+ - - -0.063579
+ - 1.36667
+ - 0.175653
+ - - 1.336918
+ - -0.534333
+ - 0.087753
+ - - -1.206789
+ - -0.853553
+ - 1.194703
+ - - -2.13374
+ - -0.353663
+ - -0.23005
+ - - -1.141797
+ - -1.813674
+ - -0.299566
+ - - -0.008157
+ - 0.091356
+ - -1.461931
+ - - -0.900588
+ - 1.755657
+ - -0.095937
+ - - 1.489125
+ - -1.536563
+ - -0.320857
+ - - 1.372568
+ - -0.591537
+ - 1.17917
+ - - 2.154586
+ - 0.107395
+ - -0.246634
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.94549859622895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.178443
+ - -0.794017
+ - 0.102834
+ - - 0.001668
+ - 0.040557
+ - -0.365692
+ - - -0.065493
+ - 1.365435
+ - 0.163409
+ - - 1.32635
+ - -0.534284
+ - 0.08949
+ - - -1.181882
+ - -0.857537
+ - 1.192425
+ - - -2.124192
+ - -0.352475
+ - -0.219647
+ - - -1.125244
+ - -1.804193
+ - -0.306613
+ - - -0.006605
+ - 0.090525
+ - -1.462485
+ - - -0.907065
+ - 1.755748
+ - -0.091386
+ - - 1.470153
+ - -1.536067
+ - -0.316861
+ - - 1.352274
+ - -0.591428
+ - 1.179148
+ - - 2.149055
+ - 0.09841
+ - -0.241648
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.349120141953115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.178443
+ - -0.794017
+ - 0.102834
+ - - 0.001668
+ - 0.040557
+ - -0.365692
+ - - -0.065493
+ - 1.365435
+ - 0.163409
+ - - 1.32635
+ - -0.534284
+ - 0.08949
+ - - -1.181882
+ - -0.857537
+ - 1.192425
+ - - -2.124192
+ - -0.352475
+ - -0.219647
+ - - -1.125244
+ - -1.804193
+ - -0.306613
+ - - -0.006605
+ - 0.090525
+ - -1.462485
+ - - -0.907065
+ - 1.755748
+ - -0.091386
+ - - 1.470153
+ - -1.536067
+ - -0.316861
+ - - 1.352274
+ - -0.591428
+ - 1.179148
+ - - 2.149055
+ - 0.09841
+ - -0.241648
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.16029727952983
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.178443
+ - -0.794017
+ - 0.102834
+ - - 0.001668
+ - 0.040557
+ - -0.365692
+ - - -0.065493
+ - 1.365435
+ - 0.163409
+ - - 1.32635
+ - -0.534284
+ - 0.08949
+ - - -1.181882
+ - -0.857537
+ - 1.192425
+ - - -2.124192
+ - -0.352475
+ - -0.219647
+ - - -1.125244
+ - -1.804193
+ - -0.306613
+ - - -0.006605
+ - 0.090525
+ - -1.462485
+ - - -0.907065
+ - 1.755748
+ - -0.091386
+ - - 1.470153
+ - -1.536067
+ - -0.316861
+ - - 1.352274
+ - -0.591428
+ - 1.179148
+ - - 2.149055
+ - 0.09841
+ - -0.241648
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.25726454657067
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.2022698253
- - -0.7816482559
- - 0.1046064939
- - - 0.0022509165
- - 0.0442950342
- - -0.3716946257
- - - -0.0385688824
- - 1.3790416989
- - 0.1601745429
- - - 1.3291004597
- - -0.5584677229
- - 0.0924178174
- - - -1.2191277505
- - -0.8156196842
- - 1.2038906785
- - - -2.1481235693
- - -0.3348694888
- - -0.2429823215
- - - -1.1553437436
- - -1.8115129349
- - -0.2804335503
- - - -0.0055845394
- - 0.0734764936
- - -1.4806664305
- - - -0.9117630538
- - 1.7497002413
- - -0.0667223136
- - - 1.4575840415
- - -1.5692438579
- - -0.3204080883
- - - 1.3478793647
- - -0.6185704091
- - 1.1904725999
- - - 2.1685410045
- - 0.0692317162
- - -0.2365250313
+ - - -1.188094
+ - -0.793095
+ - 0.103568
+ - - 0.00206
+ - 0.046
+ - -0.364321
+ - - -0.060433
+ - 1.369985
+ - 0.162265
+ - - 1.33674
+ - -0.533212
+ - 0.089143
+ - - -1.204467
+ - -0.853324
+ - 1.196658
+ - - -2.135092
+ - -0.350952
+ - -0.228277
+ - - -1.138634
+ - -1.809367
+ - -0.301258
+ - - -0.006501
+ - 0.083911
+ - -1.467149
+ - - -0.910903
+ - 1.746627
+ - -0.084681
+ - - 1.485424
+ - -1.535451
+ - -0.32336
+ - - 1.370682
+ - -0.596474
+ - 1.181622
+ - - 2.159794
+ - 0.106028
+ - -0.241234
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.93871690671588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.177719
+ - -0.792163
+ - 0.100389
+ - - 0.002934
+ - 0.041953
+ - -0.368669
+ - - -0.063662
+ - 1.35988
+ - 0.161351
+ - - 1.326679
+ - -0.535019
+ - 0.088075
+ - - -1.181634
+ - -0.847361
+ - 1.190333
+ - - -2.122732
+ - -0.352013
+ - -0.225902
+ - - -1.123648
+ - -1.804768
+ - -0.301957
+ - - -0.005196
+ - 0.090806
+ - -1.465203
+ - - -0.911499
+ - 1.746442
+ - -0.075394
+ - - 1.468584
+ - -1.538516
+ - -0.313839
+ - - 1.349223
+ - -0.585807
+ - 1.177911
+ - - 2.149247
+ - 0.097241
+ - -0.244121
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.30590976971512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.177468
+ - -0.788844
+ - 0.101485
+ - - 0.003381
+ - 0.043366
+ - -0.362236
+ - - -0.062182
+ - 1.362767
+ - 0.15878
+ - - 1.326239
+ - -0.532658
+ - 0.088655
+ - - -1.19135
+ - -0.850198
+ - 1.192699
+ - - -2.123523
+ - -0.349079
+ - -0.229054
+ - - -1.125851
+ - -1.802712
+ - -0.303368
+ - - -0.004287
+ - 0.085537
+ - -1.462615
+ - - -0.913807
+ - 1.738983
+ - -0.077414
+ - - 1.469459
+ - -1.536116
+ - -0.317518
+ - - 1.359465
+ - -0.589726
+ - 1.179596
+ - - 2.150501
+ - 0.099355
+ - -0.246036
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.13216228507273
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.189055
+ - -0.796107
+ - 0.103063
+ - - 0.003596
+ - 0.036755
+ - -0.367888
+ - - -0.059459
+ - 1.377814
+ - 0.16594
+ - - 1.338815
+ - -0.534707
+ - 0.090336
+ - - -1.200737
+ - -0.857378
+ - 1.196772
+ - - -2.134719
+ - -0.348857
+ - -0.228145
+ - - -1.14153
+ - -1.812756
+ - -0.304645
+ - - -0.005719
+ - 0.088573
+ - -1.46931
+ - - -0.917962
+ - 1.755749
+ - -0.083007
+ - - 1.48572
+ - -1.540671
+ - -0.316894
+ - - 1.370417
+ - -0.590729
+ - 1.183915
+ - - 2.16121
+ - 0.102988
+ - -0.247163
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.36307834718167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1784425048
+ - -0.7940166341
+ - 0.1028340493
+ - - 0.0016680241
+ - 0.0405565916
+ - -0.3656915963
+ - - -0.0654932393
+ - 1.365435173
+ - 0.1634093834
+ - - 1.3263496925
+ - -0.5342842445
+ - 0.0894895087
+ - - -1.1818822139
+ - -0.8575372053
+ - 1.1924246152
+ - - -2.1241918279
+ - -0.3524750438
+ - -0.2196470261
+ - - -1.1252437792
+ - -1.8041929718
+ - -0.3066127174
+ - - -0.0066049379
+ - 0.0905252388
+ - -1.4624847684
+ - - -0.9070651659
+ - 1.7557482753
+ - -0.0913857694
+ - - 1.4701533179
+ - -1.5360667247
+ - -0.3168611399
+ - - 1.3522740064
+ - -0.5914275951
+ - 1.1791478662
+ - - 2.1490552441
+ - 0.0984103646
+ - -0.2416478976
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.69395956481133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.179919
+ - -0.791828
+ - 0.102435
+ - - 0.002485
+ - 0.044956
+ - -0.361834
+ - - -0.065112
+ - 1.36449
+ - 0.160575
+ - - 1.328221
+ - -0.533256
+ - 0.089168
+ - - -1.192881
+ - -0.852611
+ - 1.192587
+ - - -2.125042
+ - -0.353931
+ - -0.229006
+ - - -1.122774
+ - -1.803889
+ - -0.302982
+ - - -0.005713
+ - 0.088761
+ - -1.460029
+ - - -0.909174
+ - 1.747589
+ - -0.082663
+ - - 1.467563
+ - -1.536066
+ - -0.31747
+ - - 1.361205
+ - -0.590516
+ - 1.179046
+ - - 2.151716
+ - 0.096975
+ - -0.246854
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/2-Propynyl.yml b/input/reference_sets/main/2-Propynyl.yml
index 5dc8c040b2..b25ab16bca 100644
--- a/input/reference_sets/main/2-Propynyl.yml
+++ b/input/reference_sets/main/2-Propynyl.yml
@@ -8,6 +8,578 @@ adjacency_list: |
5 H u0 p0 c0 {1,S}
6 H u0 p0 c0 {3,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 90.82431338029353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.254971
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.116643
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.336442
+ - 6.2e-05
+ - -0.000137
+ - - 1.806126
+ - 0.928563
+ - -1.8e-05
+ - - 1.806078
+ - -0.9286
+ - -1.9e-05
+ - - -2.397872
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 89.05656743616561
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.25045
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.113594
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.334206
+ - 6.2e-05
+ - -0.000137
+ - - 1.804868
+ - 0.928645
+ - -1.8e-05
+ - - 1.80482
+ - -0.928683
+ - -1.9e-05
+ - - -2.396121
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 87.11219136275224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253806
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.111872
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.341831
+ - 6.2e-05
+ - -0.000137
+ - - 1.811993
+ - 0.932018
+ - -1.8e-05
+ - - 1.811945
+ - -0.932056
+ - -1.8e-05
+ - - -2.407824
+ - 9.0e-05
+ - -0.000178
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 88.725037465776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.255455
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.111524
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.344737
+ - 6.2e-05
+ - -0.000137
+ - - 1.81614
+ - 0.935768
+ - -1.8e-05
+ - - 1.816092
+ - -0.935806
+ - -1.8e-05
+ - - -2.415209
+ - 9.0e-05
+ - -0.000178
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 89.74610064244096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.249734
+ - -4.0e-06
+ - -3.9e-05
+ - - -0.114976
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.329474
+ - 6.2e-05
+ - -0.000137
+ - - 1.80146
+ - 0.928987
+ - -1.9e-05
+ - - 1.801412
+ - -0.929024
+ - -1.9e-05
+ - - -2.39194
+ - 8.9e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.82371812309148
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.252155
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.114999
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.337081
+ - 6.2e-05
+ - -0.000137
+ - - 1.807717
+ - 0.929792
+ - -1.8e-05
+ - - 1.807669
+ - -0.92983
+ - -1.8e-05
+ - - -2.399243
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 91.67393579375346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253817
+ - -5.0e-06
+ - -3.7e-05
+ - - -0.115618
+ - 3.0e-05
+ - -8.7e-05
+ - - -1.332483
+ - 6.2e-05
+ - -0.000134
+ - - 1.802876
+ - 0.929856
+ - -2.1e-05
+ - - 1.802831
+ - -0.929893
+ - -2.1e-05
+ - - -2.395206
+ - 9.1e-05
+ - -0.000181
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.71618649601382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253817
+ - -5.0e-06
+ - -3.7e-05
+ - - -0.115618
+ - 3.0e-05
+ - -8.7e-05
+ - - -1.332483
+ - 6.2e-05
+ - -0.000134
+ - - 1.802876
+ - 0.929856
+ - -2.1e-05
+ - - 1.802831
+ - -0.929893
+ - -2.1e-05
+ - - -2.395206
+ - 9.1e-05
+ - -0.000181
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.5594553343278
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253817
+ - -5.0e-06
+ - -3.7e-05
+ - - -0.115618
+ - 3.0e-05
+ - -8.7e-05
+ - - -1.332483
+ - 6.2e-05
+ - -0.000134
+ - - 1.802876
+ - 0.929856
+ - -2.1e-05
+ - - 1.802831
+ - -0.929893
+ - -2.1e-05
+ - - -2.395206
+ - 9.1e-05
+ - -0.000181
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.134741375384
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.249589
+ - -4.0e-06
+ - -3.9e-05
+ - - -0.114595
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.337318
+ - 6.2e-05
+ - -0.000137
+ - - 1.808775
+ - 0.928608
+ - -1.8e-05
+ - - 1.808728
+ - -0.928646
+ - -1.8e-05
+ - - -2.398962
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 87.66122979560743
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.25541
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.118977
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.333204
+ - 6.2e-05
+ - -0.000137
+ - - 1.804726
+ - 0.929473
+ - -1.8e-05
+ - - 1.804678
+ - -0.92951
+ - -1.9e-05
+ - - -2.396417
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 91.56834702147452
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.250837
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.11259
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.333435
+ - 6.2e-05
+ - -0.000137
+ - - 1.804442
+ - 0.930509
+ - -1.8e-05
+ - - 1.804394
+ - -0.930547
+ - -1.9e-05
+ - - -2.39743
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 97.27896406681103
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.254553
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.113284
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.341571
+ - 6.2e-05
+ - -0.000138
+ - - 1.811881
+ - 0.931899
+ - -1.8e-05
+ - - 1.811833
+ - -0.931937
+ - -1.8e-05
+ - - -2.407196
+ - 9.0e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -52,6 +624,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.76440117971121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253817191
+ - -4.9532e-06
+ - -3.73521e-05
+ - - -0.1156175547
+ - 2.95326e-05
+ - -8.74248e-05
+ - - -1.3324832515
+ - 6.15559e-05
+ - -0.0001342557
+ - - 1.8028762972
+ - 0.9298563913
+ - -2.07304e-05
+ - - 1.8028305968
+ - -0.9298933411
+ - -2.08201e-05
+ - - -2.3952063751
+ - 9.09833e-05
+ - -0.0001810534
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 90.07626943988281
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.251864
+ - -5.0e-06
+ - -3.9e-05
+ - - -0.114347
+ - 3.1e-05
+ - -9.1e-05
+ - - -1.331561
+ - 6.2e-05
+ - -0.000137
+ - - 1.802591
+ - 0.930496
+ - -1.9e-05
+ - - 1.802543
+ - -0.930534
+ - -1.9e-05
+ - - -2.394873
+ - 8.9e-05
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/2-Propynylidyne.yml b/input/reference_sets/main/2-Propynylidyne.yml
index bf0432a842..23d2f3ee04 100644
--- a/input/reference_sets/main/2-Propynylidyne.yml
+++ b/input/reference_sets/main/2-Propynylidyne.yml
@@ -74,6 +74,210 @@ calculated_data:
- C
- C
- H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.3136117429349
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.152268
+ - -0.128921
+ - -0.085374
+ - - -0.08693
+ - -0.007313
+ - -0.005059
+ - - -1.409771
+ - 0.042896
+ - 0.02853
+ - - 2.185875
+ - 0.096746
+ - 0.061903
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 171.06123724543326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164309
+ - -0.010758
+ - -0.00393
+ - - -0.084654
+ - 0.039085
+ - 3.8e-05
+ - - -1.412999
+ - -0.010042
+ - 0.001858
+ - - 2.174279
+ - 0.339161
+ - 0.002032
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 181.64860632123052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.144747
+ - -0.001052
+ - 0.0
+ - - -0.090837
+ - 0.00017
+ - 0.0
+ - - -1.422198
+ - 0.000201
+ - 0.0
+ - - 2.209731
+ - 0.00409
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 173.86160682567996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.144747
+ - -0.001052
+ - 0.0
+ - - -0.090837
+ - 0.00017
+ - 0.0
+ - - -1.422198
+ - 0.000201
+ - 0.0
+ - - 2.209731
+ - 0.00409
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 172.71287672521083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.144747
+ - -0.001052
+ - 0.0
+ - - -0.090837
+ - 0.00017
+ - 0.0
+ - - -1.422198
+ - 0.000201
+ - 0.0
+ - - 2.209731
+ - 0.00409
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 173.0954263943234
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167682
+ - -0.030856
+ - -0.00441
+ - - -0.082515
+ - 0.036429
+ - -2.9e-05
+ - - -1.410031
+ - -0.001911
+ - 0.002042
+ - - 2.165799
+ - 0.353784
+ - 0.002395
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +312,74 @@ calculated_data:
- C
- C
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 174.24203702170897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1447465854
+ - -0.0010524717
+ - 0.0
+ - - -0.09083695
+ - 0.0001698443
+ - 0.0
+ - - -1.4221981351
+ - 0.0002010303
+ - 0.0
+ - - 2.2097309984
+ - 0.0040895832
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 182.25230688569602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.144673
+ - 0.001395
+ - -9.0e-06
+ - - -0.0906
+ - 0.000404
+ - -3.0e-06
+ - - -1.423118
+ - -0.000666
+ - 4.0e-06
+ - - 2.210488
+ - 0.00225
+ - -1.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/22-Dimethyl-1-propanethiol.yml b/input/reference_sets/main/22-Dimethyl-1-propanethiol.yml
index 791b560969..5a0f494b0a 100644
--- a/input/reference_sets/main/22-Dimethyl-1-propanethiol.yml
+++ b/input/reference_sets/main/22-Dimethyl-1-propanethiol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.115418509733868
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.806433
+ - -1.520201
+ - 0.225149
+ - - -0.796397
+ - -0.006138
+ - 0.011533
+ - - -0.869376
+ - 0.710782
+ - 1.359936
+ - - -2.004447
+ - 0.392537
+ - -0.844225
+ - - 0.460265
+ - 0.424909
+ - -0.763241
+ - - 2.077877
+ - 0.081618
+ - 0.00928
+ - - -1.740729
+ - -1.831957
+ - 0.694911
+ - - 0.012155
+ - -1.833371
+ - 0.873351
+ - - -0.715859
+ - -2.052653
+ - -0.724738
+ - - -0.893041
+ - 1.794468
+ - 1.225156
+ - - -1.773752
+ - 0.420212
+ - 1.897311
+ - - -0.008754
+ - 0.465484
+ - 1.981547
+ - - -2.018301
+ - 1.468765
+ - -1.028193
+ - - -2.935585
+ - 0.127013
+ - -0.340789
+ - - -1.988973
+ - -0.11544
+ - -1.810695
+ - - 0.452737
+ - 1.508792
+ - -0.893461
+ - - 0.457909
+ - -0.017139
+ - -1.760056
+ - - 2.110673
+ - -1.233132
+ - -0.240852
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.10365805816097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.808392
+ - -1.522585
+ - 0.224005
+ - - -0.79774
+ - -0.006143
+ - 0.010779
+ - - -0.869457
+ - 0.711265
+ - 1.361584
+ - - -2.007731
+ - 0.394368
+ - -0.845889
+ - - 0.461382
+ - 0.424519
+ - -0.76495
+ - - 2.084281
+ - 0.086561
+ - 0.009226
+ - - -1.739743
+ - -1.834387
+ - 0.700501
+ - - 0.015029
+ - -1.836821
+ - 0.86635
+ - - -0.724527
+ - -2.055305
+ - -0.726803
+ - - -0.894111
+ - 1.795506
+ - 1.227762
+ - - -1.772426
+ - 0.419695
+ - 1.90162
+ - - -0.006392
+ - 0.466649
+ - 1.980892
+ - - -2.022936
+ - 1.471483
+ - -1.02742
+ - - -2.939331
+ - 0.126682
+ - -0.343421
+ - - -1.991895
+ - -0.111163
+ - -1.814205
+ - - 0.454053
+ - 1.507882
+ - -0.898227
+ - - 0.461225
+ - -0.020037
+ - -1.760531
+ - - 2.118679
+ - -1.23362
+ - -0.229348
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.8960348525853699
+ value: -0.8960348525853699
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.800352396
+ - -1.531128434
+ - 0.2276871439
+ - - -0.8050868816
+ - -0.0048083932
+ - 0.0114477691
+ - - -0.8858121108
+ - 0.7170485129
+ - 1.3714413719
+ - - -2.0285066771
+ - 0.3843636841
+ - -0.8515052742
+ - - 0.4579474582
+ - 0.4413369178
+ - -0.7693748085
+ - - 2.0961781454
+ - 0.079913988
+ - 0.0115319456
+ - - -1.7427680763
+ - -1.8527002236
+ - 0.6958779585
+ - - 0.0253378294
+ - -1.8314301705
+ - 0.8884632709
+ - - -0.6965565598
+ - -2.0654154089
+ - -0.730392987
+ - - -0.9306338232
+ - 1.8087138418
+ - 1.2323637397
+ - - -1.7893120854
+ - 0.4044537104
+ - 1.9168043167
+ - - -0.0067543707
+ - 0.484503054
+ - 1.9887060059
+ - - -2.0555745302
+ - 1.4702664345
+ - -1.0317077881
+ - - -2.9614786069
+ - 0.1009189811
+ - -0.3409945273
+ - - -2.0056024234
+ - -0.1265711893
+ - -1.8268239061
+ - - 0.4487347068
+ - 1.5349035221
+ - -0.890787316
+ - - 0.4536600283
+ - 0.0011006785
+ - -1.7779568107
+ - - 2.0929612288
+ - -1.2482407634
+ - -0.2462402985
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.266149478028076
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.808348
+ - -1.526631
+ - 0.22515
+ - - -0.798482
+ - -0.006286
+ - 0.011865
+ - - -0.870368
+ - 0.713359
+ - 1.365868
+ - - -2.010574
+ - 0.395711
+ - -0.84904
+ - - 0.464505
+ - 0.425764
+ - -0.766069
+ - - 2.09184
+ - 0.086234
+ - 0.007784
+ - - -1.743977
+ - -1.840138
+ - 0.701625
+ - - 0.017827
+ - -1.839543
+ - 0.871772
+ - - -0.721093
+ - -2.060343
+ - -0.729566
+ - - -0.898189
+ - 1.801457
+ - 1.230308
+ - - -1.774796
+ - 0.417615
+ - 1.909528
+ - - -0.001045
+ - 0.469552
+ - 1.984269
+ - - -2.024571
+ - 1.476923
+ - -1.031483
+ - - -2.945616
+ - 0.12747
+ - -0.344211
+ - - -1.993788
+ - -0.11293
+ - -1.820447
+ - - 0.457501
+ - 1.513773
+ - -0.898262
+ - - 0.463568
+ - -0.020202
+ - -1.766089
+ - - 2.115577
+ - -1.237236
+ - -0.231077
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.878896181351807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.814341
+ - -1.53011
+ - 0.227495
+ - - -0.800949
+ - -0.00727
+ - 0.012848
+ - - -0.873742
+ - 0.714461
+ - 1.36888
+ - - -2.011586
+ - 0.398232
+ - -0.85317
+ - - 0.467871
+ - 0.423082
+ - -0.763984
+ - - 2.098798
+ - 0.091548
+ - 0.015848
+ - - -1.74749
+ - -1.843013
+ - 0.72059
+ - - 0.023623
+ - -1.848971
+ - 0.865384
+ - - -0.744121
+ - -2.07028
+ - -0.73079
+ - - -0.909452
+ - 1.807631
+ - 1.235175
+ - - -1.777867
+ - 0.413396
+ - 1.920129
+ - - 0.002771
+ - 0.475949
+ - 1.989072
+ - - -2.02601
+ - 1.484469
+ - -1.036069
+ - - -2.954288
+ - 0.130103
+ - -0.351597
+ - - -1.994343
+ - -0.110223
+ - -1.830352
+ - - 0.461933
+ - 1.51607
+ - -0.901131
+ - - 0.472143
+ - -0.025541
+ - -1.768716
+ - - 2.14702
+ - -1.234985
+ - -0.247688
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.127835860633475
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.810239
+ - -1.518469
+ - 0.226268
+ - - -0.795457
+ - -0.006864
+ - 0.012252
+ - - -0.871718
+ - 0.708966
+ - 1.358479
+ - - -2.000012
+ - 0.392672
+ - -0.84332
+ - - 0.462207
+ - 0.421394
+ - -0.759357
+ - - 2.077518
+ - 0.086648
+ - 0.003505
+ - - -1.742043
+ - -1.827132
+ - 0.702548
+ - - 0.010708
+ - -1.836293
+ - 0.869081
+ - - -0.728984
+ - -2.053205
+ - -0.722953
+ - - -0.896749
+ - 1.792672
+ - 1.225499
+ - - -1.776371
+ - 0.418119
+ - 1.894864
+ - - -0.01307
+ - 0.465601
+ - 1.983385
+ - - -2.014555
+ - 1.468809
+ - -1.026771
+ - - -2.932454
+ - 0.127496
+ - -0.342609
+ - - -1.984801
+ - -0.113471
+ - -1.810576
+ - - 0.451029
+ - 1.504057
+ - -0.89422
+ - - 0.45772
+ - -0.019686
+ - -1.755878
+ - - 2.127239
+ - -1.226764
+ - -0.248273
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.36325278773912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.816723
+ - -1.53072
+ - 0.227187
+ - - -0.798033
+ - -0.007968
+ - 0.012832
+ - - -0.872986
+ - 0.713076
+ - 1.368879
+ - - -2.011523
+ - 0.397266
+ - -0.849187
+ - - 0.466343
+ - 0.423113
+ - -0.768143
+ - - 2.108058
+ - 0.097898
+ - 0.002078
+ - - -1.75047
+ - -1.838141
+ - 0.706549
+ - - 0.00607
+ - -1.853304
+ - 0.86979
+ - - -0.738968
+ - -2.06713
+ - -0.724388
+ - - -0.893681
+ - 1.799669
+ - 1.23667
+ - - -1.781153
+ - 0.425241
+ - 1.906351
+ - - -0.013681
+ - 0.466101
+ - 1.99591
+ - - -2.027266
+ - 1.476433
+ - -1.030512
+ - - -2.946087
+ - 0.130095
+ - -0.347599
+ - - -1.997559
+ - -0.107473
+ - -1.820215
+ - - 0.457927
+ - 1.507506
+ - -0.90701
+ - - 0.469746
+ - -0.025705
+ - -1.763632
+ - - 2.159955
+ - -1.22141
+ - -0.243635
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.355151206507134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.803767
+ - -1.517698
+ - 0.224579
+ - - -0.794839
+ - -0.005423
+ - 0.010933
+ - - -0.868783
+ - 0.710048
+ - 1.358492
+ - - -2.00191
+ - 0.391899
+ - -0.842976
+ - - 0.460271
+ - 0.424669
+ - -0.762242
+ - - 2.068345
+ - 0.079865
+ - 0.012276
+ - - -1.738051
+ - -1.828245
+ - 0.696482
+ - - 0.016092
+ - -1.829739
+ - 0.873087
+ - - -0.715103
+ - -2.050218
+ - -0.726201
+ - - -0.89063
+ - 1.79451
+ - 1.223457
+ - - -1.77561
+ - 0.419633
+ - 1.892936
+ - - -0.010274
+ - 0.462097
+ - 1.983417
+ - - -2.016226
+ - 1.469012
+ - -1.025712
+ - - -2.932596
+ - 0.124043
+ - -0.338967
+ - - -1.984432
+ - -0.11626
+ - -1.809957
+ - - 0.449849
+ - 1.508729
+ - -0.895559
+ - - 0.45596
+ - -0.018105
+ - -1.759178
+ - - 2.101674
+ - -1.234269
+ - -0.242942
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.05164527986951
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.803767
+ - -1.517698
+ - 0.224579
+ - - -0.794839
+ - -0.005423
+ - 0.010933
+ - - -0.868783
+ - 0.710048
+ - 1.358492
+ - - -2.00191
+ - 0.391899
+ - -0.842976
+ - - 0.460271
+ - 0.424669
+ - -0.762242
+ - - 2.068345
+ - 0.079865
+ - 0.012276
+ - - -1.738051
+ - -1.828245
+ - 0.696482
+ - - 0.016092
+ - -1.829739
+ - 0.873087
+ - - -0.715103
+ - -2.050218
+ - -0.726201
+ - - -0.89063
+ - 1.79451
+ - 1.223457
+ - - -1.77561
+ - 0.419633
+ - 1.892936
+ - - -0.010274
+ - 0.462097
+ - 1.983417
+ - - -2.016226
+ - 1.469012
+ - -1.025712
+ - - -2.932596
+ - 0.124043
+ - -0.338967
+ - - -1.984432
+ - -0.11626
+ - -1.809957
+ - - 0.449849
+ - 1.508729
+ - -0.895559
+ - - 0.45596
+ - -0.018105
+ - -1.759178
+ - - 2.101674
+ - -1.234269
+ - -0.242942
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.9581831550892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.803767
+ - -1.517698
+ - 0.224579
+ - - -0.794839
+ - -0.005423
+ - 0.010933
+ - - -0.868783
+ - 0.710048
+ - 1.358492
+ - - -2.00191
+ - 0.391899
+ - -0.842976
+ - - 0.460271
+ - 0.424669
+ - -0.762242
+ - - 2.068345
+ - 0.079865
+ - 0.012276
+ - - -1.738051
+ - -1.828245
+ - 0.696482
+ - - 0.016092
+ - -1.829739
+ - 0.873087
+ - - -0.715103
+ - -2.050218
+ - -0.726201
+ - - -0.89063
+ - 1.79451
+ - 1.223457
+ - - -1.77561
+ - 0.419633
+ - 1.892936
+ - - -0.010274
+ - 0.462097
+ - 1.983417
+ - - -2.016226
+ - 1.469012
+ - -1.025712
+ - - -2.932596
+ - 0.124043
+ - -0.338967
+ - - -1.984432
+ - -0.11626
+ - -1.809957
+ - - 0.449849
+ - 1.508729
+ - -0.895559
+ - - 0.45596
+ - -0.018105
+ - -1.759178
+ - - 2.101674
+ - -1.234269
+ - -0.242942
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.44911072921558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.8128
+ - -1.530212
+ - 0.225295
+ - - -0.79704
+ - -0.007512
+ - 0.012364
+ - - -0.871584
+ - 0.713408
+ - 1.368084
+ - - -2.010817
+ - 0.396564
+ - -0.849351
+ - - 0.465497
+ - 0.42528
+ - -0.769189
+ - - 2.105508
+ - 0.095721
+ - -0.004397
+ - - -1.744447
+ - -1.84065
+ - 0.709669
+ - - 0.015094
+ - -1.853052
+ - 0.86334
+ - - -0.739755
+ - -2.066877
+ - -0.727919
+ - - -0.896419
+ - 1.801118
+ - 1.23599
+ - - -1.778725
+ - 0.423205
+ - 1.90857
+ - - -0.009182
+ - 0.469611
+ - 1.994227
+ - - -2.028567
+ - 1.476917
+ - -1.030792
+ - - -2.94665
+ - 0.127831
+ - -0.348227
+ - - -1.996733
+ - -0.107551
+ - -1.822086
+ - - 0.46013
+ - 1.511628
+ - -0.903901
+ - - 0.466266
+ - -0.019442
+ - -1.768187
+ - - 2.140193
+ - -1.231439
+ - -0.221567
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.227775930048296
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.799142
+ - -1.516741
+ - 0.224824
+ - - -0.794165
+ - -0.004446
+ - 0.010877
+ - - -0.868309
+ - 0.71105
+ - 1.357974
+ - - -2.002978
+ - 0.390159
+ - -0.842147
+ - - 0.459811
+ - 0.428114
+ - -0.763581
+ - - 2.068551
+ - 0.071259
+ - 0.002626
+ - - -1.739469
+ - -1.831605
+ - 0.681179
+ - - 0.01209
+ - -1.823255
+ - 0.886781
+ - - -0.691269
+ - -2.048042
+ - -0.724606
+ - - -0.892282
+ - 1.794984
+ - 1.221998
+ - - -1.774089
+ - 0.418444
+ - 1.892671
+ - - -0.007627
+ - 0.46382
+ - 1.980115
+ - - -2.015782
+ - 1.466296
+ - -1.029135
+ - - -2.932
+ - 0.125701
+ - -0.333503
+ - - -1.988341
+ - -0.122566
+ - -1.806538
+ - - 0.454549
+ - 1.513334
+ - -0.885864
+ - - 0.452172
+ - -0.007762
+ - -1.763619
+ - - 2.07825
+ - -1.244197
+ - -0.238128
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.485927824813107
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.800352396
- - -1.531128434
- - 0.2276871439
- - - -0.8050868816
- - -0.0048083932
- - 0.0114477691
- - - -0.8858121108
- - 0.7170485129
- - 1.3714413719
- - - -2.0285066771
- - 0.3843636841
- - -0.8515052742
- - - 0.4579474582
- - 0.4413369178
- - -0.7693748085
- - - 2.0961781454
- - 0.079913988
- - 0.0115319456
- - - -1.7427680763
- - -1.8527002236
- - 0.6958779585
- - - 0.0253378294
- - -1.8314301705
- - 0.8884632709
- - - -0.6965565598
- - -2.0654154089
- - -0.730392987
- - - -0.9306338232
- - 1.8087138418
- - 1.2323637397
- - - -1.7893120854
- - 0.4044537104
- - 1.9168043167
- - - -0.0067543707
- - 0.484503054
- - 1.9887060059
- - - -2.0555745302
- - 1.4702664345
- - -1.0317077881
- - - -2.9614786069
- - 0.1009189811
- - -0.3409945273
- - - -2.0056024234
- - -0.1265711893
- - -1.8268239061
- - - 0.4487347068
- - 1.5349035221
- - -0.890787316
- - - 0.4536600283
- - 0.0011006785
- - -1.7779568107
- - - 2.0929612288
- - -1.2482407634
- - -0.2462402985
+ - - -0.808995
+ - -1.516735
+ - 0.225647
+ - - -0.797156
+ - -0.00689
+ - 0.011866
+ - - -0.870453
+ - 0.708179
+ - 1.356649
+ - - -1.998789
+ - 0.39286
+ - -0.844768
+ - - 0.460233
+ - 0.420914
+ - -0.757662
+ - - 2.068349
+ - 0.084814
+ - 0.011625
+ - - -1.739155
+ - -1.827494
+ - 0.708387
+ - - 0.018315
+ - -1.831638
+ - 0.865869
+ - - -0.73157
+ - -2.05304
+ - -0.725344
+ - - -0.904281
+ - 1.793649
+ - 1.223552
+ - - -1.770325
+ - 0.40993
+ - 1.900968
+ - - -0.00236
+ - 0.469726
+ - 1.974777
+ - - -2.012988
+ - 1.471165
+ - -1.027984
+ - - -2.933854
+ - 0.127113
+ - -0.344678
+ - - -1.982228
+ - -0.113846
+ - -1.814084
+ - - 0.452028
+ - 1.506608
+ - -0.89104
+ - - 0.459459
+ - -0.01947
+ - -1.757577
+ - - 2.11374
+ - -1.231298
+ - -0.244279
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.265109188609929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.811743
+ - -1.529057
+ - 0.22694
+ - - -0.800935
+ - -0.006682
+ - 0.011324
+ - - -0.872182
+ - 0.714475
+ - 1.367392
+ - - -2.013068
+ - 0.397218
+ - -0.853166
+ - - 0.464917
+ - 0.425636
+ - -0.766164
+ - - 2.091625
+ - 0.084391
+ - 0.018961
+ - - -1.740712
+ - -1.838706
+ - 0.719106
+ - - 0.02481
+ - -1.841359
+ - 0.861448
+ - - -0.741586
+ - -2.065228
+ - -0.727954
+ - - -0.907731
+ - 1.802501
+ - 1.231827
+ - - -1.772566
+ - 0.412822
+ - 1.914785
+ - - 0.002168
+ - 0.474751
+ - 1.981266
+ - - -2.02657
+ - 1.478974
+ - -1.032937
+ - - -2.949351
+ - 0.127154
+ - -0.351349
+ - - -1.992752
+ - -0.109328
+ - -1.825716
+ - - 0.462505
+ - 1.513649
+ - -0.896412
+ - - 0.472082
+ - -0.02161
+ - -1.765282
+ - - 2.131056
+ - -1.235052
+ - -0.242145
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.335243740881594
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.8037669211
+ - -1.5176975877
+ - 0.2245786874
+ - - -0.794839241
+ - -0.0054230105
+ - 0.0109333768
+ - - -0.8687830345
+ - 0.7100482417
+ - 1.3584915527
+ - - -2.0019100301
+ - 0.3918992922
+ - -0.8429760706
+ - - 0.4602709301
+ - 0.4246691491
+ - -0.7622417099
+ - - 2.0683448379
+ - 0.0798647591
+ - 0.0122764108
+ - - -1.7380507955
+ - -1.8282450825
+ - 0.6964819934
+ - - 0.0160924792
+ - -1.8297390937
+ - 0.8730870412
+ - - -0.7151027091
+ - -2.0502175687
+ - -0.7262008338
+ - - -0.8906296848
+ - 1.7945095436
+ - 1.2234567884
+ - - -1.7756103915
+ - 0.4196334478
+ - 1.8929357896
+ - - -0.0102744512
+ - 0.4620970345
+ - 1.9834171242
+ - - -2.0162263872
+ - 1.4690115064
+ - -1.0257116595
+ - - -2.9325964678
+ - 0.1240426101
+ - -0.3389665311
+ - - -1.9844315761
+ - -0.1162599299
+ - -1.8099573856
+ - - 0.4498487091
+ - 1.5087286386
+ - -0.8955593419
+ - - 0.4559597231
+ - -0.0181046221
+ - -1.7591782915
+ - - 2.1016739253
+ - -1.2342691387
+ - -0.2429422852
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.945844513133732
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.806117
+ - -1.519654
+ - 0.225497
+ - - -0.794398
+ - -0.005876
+ - 0.012178
+ - - -0.870429
+ - 0.710203
+ - 1.360417
+ - - -2.002045
+ - 0.392355
+ - -0.843569
+ - - 0.463161
+ - 0.425079
+ - -0.762709
+ - - 2.079231
+ - 0.083066
+ - -0.004042
+ - - -1.743167
+ - -1.831333
+ - 0.691487
+ - - 0.009414
+ - -1.834227
+ - 0.878897
+ - - -0.711334
+ - -2.052791
+ - -0.724478
+ - - -0.896561
+ - 1.794679
+ - 1.226643
+ - - -1.775195
+ - 0.416865
+ - 1.897132
+ - - -0.009576
+ - 0.466262
+ - 1.984328
+ - - -2.015821
+ - 1.469083
+ - -1.029316
+ - - -2.933622
+ - 0.128033
+ - -0.338817
+ - - -1.988
+ - -0.117449
+ - -1.810022
+ - - 0.453772
+ - 1.509471
+ - -0.893345
+ - - 0.45581
+ - -0.014465
+ - -1.76131
+ - - 2.104846
+ - -1.234753
+ - -0.237044
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/23-Butanedione.yml b/input/reference_sets/main/23-Butanedione.yml
index 2812709be4..a4d4c112af 100644
--- a/input/reference_sets/main/23-Butanedione.yml
+++ b/input/reference_sets/main/23-Butanedione.yml
@@ -161,6 +161,968 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.6685482212211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.888642
+ - -0.55706
+ - 0.000385
+ - - 0.690783
+ - 0.345299
+ - 0.000381
+ - - 0.748539
+ - 1.556208
+ - 0.000383
+ - - -0.690735
+ - -0.345251
+ - 0.000377
+ - - -0.748491
+ - -1.55616
+ - 0.00037
+ - - -1.888593
+ - 0.557108
+ - 0.000383
+ - - 1.861178
+ - -1.210728
+ - -0.872138
+ - - 2.795181
+ - 0.041189
+ - 0.000389
+ - - 1.861172
+ - -1.210729
+ - 0.872907
+ - - -2.795133
+ - -0.041141
+ - 0.00038
+ - - -1.861127
+ - 1.210771
+ - 0.87291
+ - - -1.861127
+ - 1.210782
+ - -0.872135
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.38421380582912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.891193
+ - -0.555885
+ - 0.000384
+ - - 0.692979
+ - 0.346939
+ - 0.000384
+ - - 0.750525
+ - 1.553439
+ - 0.000387
+ - - -0.692931
+ - -0.346891
+ - 0.000379
+ - - -0.750476
+ - -1.553391
+ - 0.000373
+ - - -1.891145
+ - 0.555933
+ - 0.000382
+ - - 1.863476
+ - -1.211726
+ - -0.87206
+ - - 2.799611
+ - 0.040997
+ - 0.000387
+ - - 1.863473
+ - -1.211729
+ - 0.872827
+ - - -2.799562
+ - -0.040949
+ - 0.000378
+ - - -1.863427
+ - 1.211771
+ - 0.872829
+ - - -1.863425
+ - 1.21178
+ - -0.872058
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.96200678309658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.898567
+ - -0.555301
+ - 0.000383
+ - - 0.697006
+ - 0.352226
+ - 0.000387
+ - - 0.756293
+ - 1.565752
+ - 0.000393
+ - - -0.696958
+ - -0.352178
+ - 0.000382
+ - - -0.756244
+ - -1.565704
+ - 0.000379
+ - - -1.898518
+ - 0.555349
+ - 0.000381
+ - - 1.867673
+ - -1.215367
+ - -0.874322
+ - - 2.813081
+ - 0.03966
+ - 0.000389
+ - - 1.86767
+ - -1.215379
+ - 0.875079
+ - - -2.813032
+ - -0.039612
+ - 0.00038
+ - - -1.867624
+ - 1.215421
+ - 0.875082
+ - - -1.867622
+ - 1.215421
+ - -0.87432
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.04861641606785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.899843
+ - -0.556061
+ - 0.000383
+ - - 0.697418
+ - 0.350577
+ - 0.000387
+ - - 0.756078
+ - 1.569271
+ - 0.000394
+ - - -0.697369
+ - -0.350529
+ - 0.000382
+ - - -0.756029
+ - -1.569223
+ - 0.000381
+ - - -1.899795
+ - 0.556109
+ - 0.000381
+ - - 1.871494
+ - -1.22035
+ - -0.87715
+ - - 2.817384
+ - 0.0427
+ - 0.000388
+ - - 1.871491
+ - -1.220361
+ - 0.877906
+ - - -2.817336
+ - -0.042652
+ - 0.000379
+ - - -1.871445
+ - 1.220403
+ - 0.877909
+ - - -1.871443
+ - 1.220404
+ - -0.877147
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.89572874033458
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.885711
+ - -0.555392
+ - 0.000384
+ - - 0.691039
+ - 0.343706
+ - 0.000384
+ - - 0.747567
+ - 1.545208
+ - 0.000389
+ - - -0.690991
+ - -0.343658
+ - 0.00038
+ - - -0.747518
+ - -1.54516
+ - 0.000376
+ - - -1.885663
+ - 0.55544
+ - 0.000382
+ - - 1.859298
+ - -1.209685
+ - -0.871663
+ - - 2.791837
+ - 0.043655
+ - 0.000386
+ - - 1.859296
+ - -1.209689
+ - 0.872428
+ - - -2.791789
+ - -0.043607
+ - 0.000377
+ - - -1.85925
+ - 1.209731
+ - 0.872431
+ - - -1.859246
+ - 1.20974
+ - -0.871661
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.0096996197674
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.896954
+ - -0.559106
+ - 0.000386
+ - - 0.694754
+ - 0.348261
+ - 0.000381
+ - - 0.753011
+ - 1.556081
+ - 0.000379
+ - - -0.694706
+ - -0.348213
+ - 0.000376
+ - - -0.752962
+ - -1.556033
+ - 0.000366
+ - - -1.896905
+ - 0.559154
+ - 0.000384
+ - - 1.872129
+ - -1.21548
+ - -0.873649
+ - - 2.8059
+ - 0.040198
+ - 0.000398
+ - - 1.872114
+ - -1.215492
+ - 0.874412
+ - - -2.805852
+ - -0.04015
+ - 0.000389
+ - - -1.872068
+ - 1.215534
+ - 0.874414
+ - - -1.872078
+ - 1.215534
+ - -0.873646
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.40400040352152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.887759
+ - -0.555941
+ - 0.000353
+ - - 0.691698
+ - 0.345936
+ - -0.000241
+ - - 0.744563
+ - 1.550336
+ - -0.000409
+ - - -0.691716
+ - -0.345985
+ - -0.00024
+ - - -0.744632
+ - -1.55038
+ - -0.000408
+ - - -1.887702
+ - 0.555994
+ - 0.000353
+ - - 1.855009
+ - -1.213097
+ - -0.869513
+ - - 2.794328
+ - 0.042376
+ - -0.003536
+ - - 1.85863
+ - -1.206153
+ - 0.875642
+ - - -2.79437
+ - -0.042169
+ - -0.003554
+ - - -1.85846
+ - 1.206203
+ - 0.875641
+ - - -1.854817
+ - 1.213168
+ - -0.869496
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -73.59118705491859
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.887759
+ - -0.555941
+ - 0.000353
+ - - 0.691698
+ - 0.345936
+ - -0.000241
+ - - 0.744563
+ - 1.550336
+ - -0.000409
+ - - -0.691716
+ - -0.345985
+ - -0.00024
+ - - -0.744632
+ - -1.55038
+ - -0.000408
+ - - -1.887702
+ - 0.555994
+ - 0.000353
+ - - 1.855009
+ - -1.213097
+ - -0.869513
+ - - 2.794328
+ - 0.042376
+ - -0.003536
+ - - 1.85863
+ - -1.206153
+ - 0.875642
+ - - -2.79437
+ - -0.042169
+ - -0.003554
+ - - -1.85846
+ - 1.206203
+ - 0.875641
+ - - -1.854817
+ - 1.213168
+ - -0.869496
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -76.68310889835021
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.887759
+ - -0.555941
+ - 0.000353
+ - - 0.691698
+ - 0.345936
+ - -0.000241
+ - - 0.744563
+ - 1.550336
+ - -0.000409
+ - - -0.691716
+ - -0.345985
+ - -0.00024
+ - - -0.744632
+ - -1.55038
+ - -0.000408
+ - - -1.887702
+ - 0.555994
+ - 0.000353
+ - - 1.855009
+ - -1.213097
+ - -0.869513
+ - - 2.794328
+ - 0.042376
+ - -0.003536
+ - - 1.85863
+ - -1.206153
+ - 0.875642
+ - - -2.79437
+ - -0.042169
+ - -0.003554
+ - - -1.85846
+ - 1.206203
+ - 0.875641
+ - - -1.854817
+ - 1.213168
+ - -0.869496
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.67416320846729
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.89515
+ - -0.557746
+ - 0.000385
+ - - 0.691271
+ - 0.35057
+ - 0.000382
+ - - 0.747
+ - 1.558356
+ - 0.000382
+ - - -0.691222
+ - -0.350522
+ - 0.000378
+ - - -0.746952
+ - -1.558308
+ - 0.000369
+ - - -1.895102
+ - 0.557794
+ - 0.000383
+ - - 1.86791
+ - -1.215844
+ - -0.873931
+ - - 2.807447
+ - 0.038847
+ - 0.000392
+ - - 1.867901
+ - -1.215849
+ - 0.874698
+ - - -2.807398
+ - -0.038799
+ - 0.000383
+ - - -1.867856
+ - 1.215891
+ - 0.8747
+ - - -1.867859
+ - 1.215898
+ - -0.873928
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.1114894644231
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.887083
+ - -0.555454
+ - 0.000384
+ - - 0.690815
+ - 0.346854
+ - 0.000383
+ - - 0.741188
+ - 1.54795
+ - 0.000386
+ - - -0.690767
+ - -0.346806
+ - 0.000378
+ - - -0.741139
+ - -1.547902
+ - 0.000373
+ - - -1.887035
+ - 0.555502
+ - 0.000382
+ - - 1.853475
+ - -1.208611
+ - -0.872619
+ - - 2.794051
+ - 0.041994
+ - 0.000387
+ - - 1.853471
+ - -1.208613
+ - 0.873386
+ - - -2.794003
+ - -0.041946
+ - 0.000378
+ - - -1.853426
+ - 1.208655
+ - 0.873388
+ - - -1.853424
+ - 1.208665
+ - -0.872616
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.62582283446464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.883231
+ - -0.552395
+ - 0.000384
+ - - 0.689972
+ - 0.346806
+ - 0.000384
+ - - 0.744725
+ - 1.550281
+ - 0.000387
+ - - -0.689924
+ - -0.346757
+ - 0.000379
+ - - -0.744677
+ - -1.550233
+ - 0.000374
+ - - -1.883182
+ - 0.552443
+ - 0.000382
+ - - 1.853668
+ - -1.209973
+ - -0.87193
+ - - 2.793377
+ - 0.043579
+ - 0.000389
+ - - 1.853662
+ - -1.209979
+ - 0.872694
+ - - -2.793329
+ - -0.043531
+ - 0.00038
+ - - -1.853616
+ - 1.210021
+ - 0.872696
+ - - -1.853616
+ - 1.210027
+ - -0.871927
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.90505954022776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.899174
+ - -0.558274
+ - 0.000383
+ - - 0.695033
+ - 0.347855
+ - 0.000386
+ - - 0.753032
+ - 1.565117
+ - 0.000391
+ - - -0.694985
+ - -0.347807
+ - 0.000381
+ - - -0.752983
+ - -1.565069
+ - 0.000378
+ - - -1.899126
+ - 0.558322
+ - 0.000381
+ - - 1.870482
+ - -1.216843
+ - -0.875153
+ - - 2.810909
+ - 0.040243
+ - 0.000391
+ - - 1.870476
+ - -1.216856
+ - 0.87591
+ - - -2.810861
+ - -0.040195
+ - 0.000382
+ - - -1.87043
+ - 1.216898
+ - 0.875913
+ - - -1.870431
+ - 1.216897
+ - -0.875151
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -235,6 +1197,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.22615827175242
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8877590555
+ - -0.55594052
+ - 0.0003534396
+ - - 0.6916983235
+ - 0.3459358288
+ - -0.0002410681
+ - - 0.7445629762
+ - 1.5503361426
+ - -0.0004085203
+ - - -0.691716373
+ - -0.3459845781
+ - -0.0002404806
+ - - -0.744632296
+ - -1.5503804776
+ - -0.0004083902
+ - - -1.8877020725
+ - 0.5559937555
+ - 0.0003533599
+ - - 1.8550089119
+ - -1.2130968872
+ - -0.869513464
+ - - 2.7943282167
+ - 0.0423757316
+ - -0.0035359883
+ - - 1.8586302572
+ - -1.2061531495
+ - 0.8756420016
+ - - -2.7943701821
+ - -0.0421688111
+ - -0.0035540801
+ - - -1.8584595529
+ - 1.2062032633
+ - 0.87564082
+ - - -1.8548166931
+ - 1.213167615
+ - -0.8694955097
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -69.82820122696305
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.889349
+ - -0.555318
+ - 0.000376
+ - - 0.693012
+ - 0.346904
+ - 0.000398
+ - - 0.749588
+ - 1.548598
+ - 0.000422
+ - - -0.692964
+ - -0.346856
+ - 0.000393
+ - - -0.749539
+ - -1.54855
+ - 0.000408
+ - - -1.889301
+ - 0.555366
+ - 0.000374
+ - - 1.860424
+ - -1.209453
+ - -0.872758
+ - - 2.797928
+ - 0.041367
+ - 0.000378
+ - - 1.860436
+ - -1.209476
+ - 0.873492
+ - - -2.79788
+ - -0.041319
+ - 0.000369
+ - - -1.86039
+ - 1.209518
+ - 0.873495
+ - - -1.860373
+ - 1.209507
+ - -0.872755
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/23-Dihydrothiophene.yml b/input/reference_sets/main/23-Dihydrothiophene.yml
index 50bd164cff..09db76f6c1 100644
--- a/input/reference_sets/main/23-Dihydrothiophene.yml
+++ b/input/reference_sets/main/23-Dihydrothiophene.yml
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.735804574722096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.058302
+ - -1.256438
+ - 0.21702
+ - - -1.374739
+ - -0.577593
+ - -0.178318
+ - - -1.174479
+ - 0.896311
+ - 0.059814
+ - - 0.10367
+ - 1.277062
+ - 0.084556
+ - - 1.272521
+ - -0.027357
+ - -0.079275
+ - - 0.151744
+ - -2.155665
+ - -0.3567
+ - - -0.052108
+ - -1.499928
+ - 1.279543
+ - - -2.206444
+ - -0.989747
+ - 0.394838
+ - - -1.594489
+ - -0.749249
+ - -1.23855
+ - - -1.999885
+ - 1.591681
+ - 0.120713
+ - - 0.465283
+ - 2.29112
+ - 0.169196
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.15970334907572
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056475
+ - -1.261413
+ - 0.214686
+ - - -1.375309
+ - -0.575812
+ - -0.170923
+ - - -1.171532
+ - 0.90085
+ - 0.049728
+ - - 0.102437
+ - 1.282017
+ - 0.086024
+ - - 1.279586
+ - -0.02131
+ - -0.048956
+ - - 0.157096
+ - -2.147266
+ - -0.378535
+ - - -0.051217
+ - -1.531252
+ - 1.271042
+ - - -2.20303
+ - -0.979813
+ - 0.415431
+ - - -1.612419
+ - -0.758345
+ - -1.226512
+ - - -1.999386
+ - 1.595326
+ - 0.09514
+ - - 0.463021
+ - 2.297213
+ - 0.16571
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 57.383457315918115
+ value: 57.383457315918086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.088388415
+ - -1.2764287877
+ - 0.1990068987
+ - - -1.4088527507
+ - -0.5559471534
+ - -0.1687555504
+ - - -1.1715543564
+ - 0.9246526728
+ - 0.0614926735
+ - - 0.1265429859
+ - 1.2831496323
+ - 0.0763660974
+ - - 1.2879680527
+ - -0.0492515081
+ - -0.0839531031
+ - - 0.0987889914
+ - -2.1718581026
+ - -0.4057467603
+ - - -0.0736848266
+ - -1.5480597788
+ - 1.263944093
+ - - -2.2412428773
+ - -0.9559300523
+ - 0.4307010249
+ - - -1.6603922801
+ - -0.7282316167
+ - -1.231208984
+ - - -1.9905661035
+ - 1.6410298192
+ - 0.1216160801
+ - - 0.5131234706
+ - 2.298515677
+ - 0.1552834806
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.71730232217476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056023
+ - -1.263619
+ - 0.214791
+ - - -1.37883
+ - -0.576459
+ - -0.17043
+ - - -1.176179
+ - 0.90265
+ - 0.051759
+ - - 0.106585
+ - 1.283711
+ - 0.08639
+ - - 1.284173
+ - -0.01806
+ - -0.043345
+ - - 0.161875
+ - -2.150124
+ - -0.384061
+ - - -0.048959
+ - -1.536681
+ - 1.275137
+ - - -2.208411
+ - -0.985265
+ - 0.418528
+ - - -1.617325
+ - -0.760087
+ - -1.23066
+ - - -2.006131
+ - 1.60168
+ - 0.092566
+ - - 0.471997
+ - 2.30245
+ - 0.162163
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.70038652887277
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.055583
+ - -1.264554
+ - 0.21521
+ - - -1.379458
+ - -0.577367
+ - -0.171443
+ - - -1.177165
+ - 0.903391
+ - 0.052528
+ - - 0.10863
+ - 1.286386
+ - 0.086781
+ - - 1.287314
+ - -0.018681
+ - -0.045187
+ - - 0.164989
+ - -2.156294
+ - -0.384099
+ - - -0.046799
+ - -1.538711
+ - 1.280523
+ - - -2.213902
+ - -0.98884
+ - 0.418099
+ - - -1.621052
+ - -0.761033
+ - -1.23632
+ - - -2.010176
+ - 1.60638
+ - 0.094313
+ - - 0.475973
+ - 2.309519
+ - 0.162433
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.39359336880041
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.055289
+ - -1.254873
+ - 0.214013
+ - - -1.371225
+ - -0.575558
+ - -0.171882
+ - - -1.167928
+ - 0.897794
+ - 0.049488
+ - - 0.100057
+ - 1.276636
+ - 0.085722
+ - - 1.268337
+ - -0.025776
+ - -0.056075
+ - - 0.154324
+ - -2.14532
+ - -0.372844
+ - - -0.053038
+ - -1.522003
+ - 1.270409
+ - - -2.199204
+ - -0.979265
+ - 0.412244
+ - - -1.606869
+ - -0.755385
+ - -1.226782
+ - - -1.995117
+ - 1.592139
+ - 0.099547
+ - - 0.458725
+ - 2.291806
+ - 0.168996
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.175627177729535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056315
+ - -1.266225
+ - 0.215698
+ - - -1.377372
+ - -0.577307
+ - -0.172728
+ - - -1.173141
+ - 0.903445
+ - 0.049399
+ - - 0.10181
+ - 1.288456
+ - 0.085843
+ - - 1.287769
+ - -0.021629
+ - -0.053508
+ - - 0.157955
+ - -2.154499
+ - -0.376791
+ - - -0.049385
+ - -1.531075
+ - 1.274761
+ - - -2.207764
+ - -0.98137
+ - 0.413799
+ - - -1.614527
+ - -0.760164
+ - -1.230189
+ - - -2.003638
+ - 1.597395
+ - 0.097854
+ - - 0.46738
+ - 2.30317
+ - 0.1687
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.399739012169057
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056821
+ - -1.25281
+ - 0.217199
+ - - -1.37182
+ - -0.578463
+ - -0.180327
+ - - -1.171049
+ - 0.895683
+ - 0.059757
+ - - 0.100118
+ - 1.274694
+ - 0.085002
+ - - 1.264339
+ - -0.033048
+ - -0.092066
+ - - 0.148811
+ - -2.158556
+ - -0.347973
+ - - -0.051727
+ - -1.489183
+ - 1.281754
+ - - -2.205875
+ - -0.990615
+ - 0.388969
+ - - -1.588064
+ - -0.746474
+ - -1.241909
+ - - -1.997081
+ - 1.590281
+ - 0.128011
+ - - 0.46194
+ - 2.288687
+ - 0.174419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.32531179710715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056821
+ - -1.25281
+ - 0.217199
+ - - -1.37182
+ - -0.578463
+ - -0.180327
+ - - -1.171049
+ - 0.895683
+ - 0.059757
+ - - 0.100118
+ - 1.274694
+ - 0.085002
+ - - 1.264339
+ - -0.033048
+ - -0.092066
+ - - 0.148811
+ - -2.158556
+ - -0.347973
+ - - -0.051727
+ - -1.489183
+ - 1.281754
+ - - -2.205875
+ - -0.990615
+ - 0.388969
+ - - -1.588064
+ - -0.746474
+ - -1.241909
+ - - -1.997081
+ - 1.590281
+ - 0.128011
+ - - 0.46194
+ - 2.288687
+ - 0.174419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.584089487314447
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056821
+ - -1.25281
+ - 0.217199
+ - - -1.37182
+ - -0.578463
+ - -0.180327
+ - - -1.171049
+ - 0.895683
+ - 0.059757
+ - - 0.100118
+ - 1.274694
+ - 0.085002
+ - - 1.264339
+ - -0.033048
+ - -0.092066
+ - - 0.148811
+ - -2.158556
+ - -0.347973
+ - - -0.051727
+ - -1.489183
+ - 1.281754
+ - - -2.205875
+ - -0.990615
+ - 0.388969
+ - - -1.588064
+ - -0.746474
+ - -1.241909
+ - - -1.997081
+ - 1.590281
+ - 0.128011
+ - - 0.46194
+ - 2.288687
+ - 0.174419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.047031844493493
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.088388415
- - -1.2764287877
- - 0.1990068987
- - - -1.4088527507
- - -0.5559471534
- - -0.1687555504
- - - -1.1715543564
- - 0.9246526728
- - 0.0614926735
- - - 0.1265429859
- - 1.2831496323
- - 0.0763660974
- - - 1.2879680527
- - -0.0492515081
- - -0.0839531031
- - - 0.0987889914
- - -2.1718581026
- - -0.4057467603
- - - -0.0736848266
- - -1.5480597788
- - 1.263944093
- - - -2.2412428773
- - -0.9559300523
- - 0.4307010249
- - - -1.6603922801
- - -0.7282316167
- - -1.231208984
- - - -1.9905661035
- - 1.6410298192
- - 0.1216160801
- - - 0.5131234706
- - 2.298515677
- - 0.1552834806
+ - - -0.053674
+ - -1.266245
+ - 0.212564
+ - - -1.378985
+ - -0.574842
+ - -0.166336
+ - - -1.171668
+ - 0.907
+ - 0.038727
+ - - 0.103039
+ - 1.291602
+ - 0.087896
+ - - 1.289534
+ - -0.016623
+ - -0.022738
+ - - 0.165592
+ - -2.142528
+ - -0.397953
+ - - -0.049343
+ - -1.559997
+ - 1.265202
+ - - -2.203477
+ - -0.973274
+ - 0.434964
+ - - -1.633919
+ - -0.771706
+ - -1.218282
+ - - -2.004289
+ - 1.600136
+ - 0.072499
+ - - 0.469964
+ - 2.306674
+ - 0.166293
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.62301421155116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.05759
+ - -1.25384
+ - 0.216758
+ - - -1.373068
+ - -0.5784
+ - -0.178947
+ - - -1.17162
+ - 0.895744
+ - 0.059545
+ - - 0.100277
+ - 1.273724
+ - 0.084713
+ - - 1.265233
+ - -0.030985
+ - -0.08475
+ - - 0.15098
+ - -2.155814
+ - -0.352892
+ - - -0.051348
+ - -1.492148
+ - 1.280436
+ - - -2.205754
+ - -0.990347
+ - 0.392247
+ - - -1.590134
+ - -0.745897
+ - -1.239966
+ - - -1.997632
+ - 1.590702
+ - 0.124359
+ - - 0.463428
+ - 2.287455
+ - 0.171333
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.202506573477542
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.057378
+ - -1.251449
+ - 0.214384
+ - - -1.371308
+ - -0.575185
+ - -0.17393
+ - - -1.17156
+ - 0.894486
+ - 0.05517
+ - - 0.102598
+ - 1.272993
+ - 0.085922
+ - - 1.264446
+ - -0.026344
+ - -0.063393
+ - - 0.155239
+ - -2.147434
+ - -0.367489
+ - - -0.05161
+ - -1.510041
+ - 1.275778
+ - - -2.202129
+ - -0.986933
+ - 0.405136
+ - - -1.602999
+ - -0.750938
+ - -1.233517
+ - - -1.998559
+ - 1.592029
+ - 0.107816
+ - - 0.466031
+ - 2.289012
+ - 0.166958
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.80808265346795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.056551
+ - -1.263271
+ - 0.21537
+ - - -1.380216
+ - -0.577141
+ - -0.173203
+ - - -1.175782
+ - 0.902422
+ - 0.051352
+ - - 0.106421
+ - 1.283722
+ - 0.086719
+ - - 1.284232
+ - -0.019429
+ - -0.047938
+ - - 0.162856
+ - -2.15084
+ - -0.380637
+ - - -0.048519
+ - -1.531311
+ - 1.276256
+ - - -2.208832
+ - -0.986187
+ - 0.416577
+ - - -1.617958
+ - -0.760933
+ - -1.232875
+ - - -2.005287
+ - 1.601679
+ - 0.096027
+ - - 0.472407
+ - 2.301484
+ - 0.165188
isotopes:
- 12
- 12
@@ -288,6 +1185,144 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.5252913557797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0568205109
+ - -1.2528095818
+ - 0.2171993457
+ - - -1.3718196544
+ - -0.5784634133
+ - -0.1803266935
+ - - -1.1710485413
+ - 0.8956831736
+ - 0.0597570361
+ - - 0.10011828
+ - 1.2746939704
+ - 0.0850023375
+ - - 1.2643386671
+ - -0.0330477608
+ - -0.0920664683
+ - - 0.1488108319
+ - -2.1585562593
+ - -0.3479729203
+ - - -0.0517266369
+ - -1.4891833523
+ - 1.2817544923
+ - - -2.205874755
+ - -0.9906148669
+ - 0.3889685126
+ - - -1.5880643269
+ - -0.7464735525
+ - -1.2419085134
+ - - -1.9970811672
+ - 1.5902807382
+ - 0.1280112584
+ - - 0.4619399398
+ - 2.2886865724
+ - 0.1744185082
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.745999103939734
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.054583
+ - -1.255608
+ - 0.214208
+ - - -1.372688
+ - -0.576044
+ - -0.171924
+ - - -1.169144
+ - 0.898279
+ - 0.048473
+ - - 0.101187
+ - 1.277313
+ - 0.086001
+ - - 1.269183
+ - -0.025545
+ - -0.052708
+ - - 0.155941
+ - -2.144607
+ - -0.376123
+ - - -0.052344
+ - -1.524731
+ - 1.271088
+ - - -2.199473
+ - -0.979427
+ - 0.415223
+ - - -1.609498
+ - -0.756382
+ - -1.227139
+ - - -1.996077
+ - 1.593801
+ - 0.096984
+ - - 0.460267
+ - 2.293147
+ - 0.168754
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/23-Dimethylbutane.yml b/input/reference_sets/main/23-Dimethylbutane.yml
index c4017404d1..1227b41344 100644
--- a/input/reference_sets/main/23-Dimethylbutane.yml
+++ b/input/reference_sets/main/23-Dimethylbutane.yml
@@ -249,78 +249,1560 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.548811597901224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.974839
+ - -1.201555
+ - 0.839066
+ - - -0.702052
+ - -0.320743
+ - -0.380591
+ - - -1.805808
+ - 0.725312
+ - -0.534091
+ - - 0.702063
+ - 0.320737
+ - -0.380584
+ - - 1.805823
+ - -0.72532
+ - -0.534047
+ - - 0.974828
+ - 1.20157
+ - 0.839064
+ - - -1.940966
+ - -1.698661
+ - 0.738707
+ - - -0.218639
+ - -1.976389
+ - 0.965065
+ - - -1.007215
+ - -0.609756
+ - 1.755407
+ - - -0.73957
+ - -0.96468
+ - -1.266718
+ - - -1.874771
+ - 1.365235
+ - 0.347208
+ - - -2.777568
+ - 0.246365
+ - -0.664775
+ - - -1.628423
+ - 1.365248
+ - -1.400459
+ - - 0.739597
+ - 0.96466
+ - -1.266721
+ - - 1.87477
+ - -1.365229
+ - 0.347264
+ - - 2.777584
+ - -0.246375
+ - -0.664721
+ - - 1.628452
+ - -1.365271
+ - -1.400408
+ - - 1.007188
+ - 0.609785
+ - 1.755415
+ - - 0.218626
+ - 1.976405
+ - 0.965036
+ - - 1.940957
+ - 1.698674
+ - 0.738714
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.80241074108704
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.97743
+ - -1.204488
+ - 0.841088
+ - - -0.703654
+ - -0.320641
+ - -0.377979
+ - - -1.808087
+ - 0.726024
+ - -0.536355
+ - - 0.703665
+ - 0.320635
+ - -0.377971
+ - - 1.808101
+ - -0.726032
+ - -0.53631
+ - - 0.977419
+ - 1.204502
+ - 0.841085
+ - - -1.944244
+ - -1.701706
+ - 0.740515
+ - - -0.220466
+ - -1.979929
+ - 0.964763
+ - - -1.00856
+ - -0.615225
+ - 1.75997
+ - - -0.739607
+ - -0.965276
+ - -1.264167
+ - - -1.876376
+ - 1.372066
+ - 0.341549
+ - - -2.781058
+ - 0.246994
+ - -0.663724
+ - - -1.630797
+ - 1.361644
+ - -1.406843
+ - - 0.739634
+ - 0.965256
+ - -1.26417
+ - - 1.876374
+ - -1.37206
+ - 0.341606
+ - - 2.781074
+ - -0.247005
+ - -0.66367
+ - - 1.630827
+ - -1.361666
+ - -1.406792
+ - - 1.008533
+ - 0.615255
+ - 1.759978
+ - - 0.220453
+ - 1.979946
+ - 0.964734
+ - - 1.944235
+ - 1.701719
+ - 0.740522
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -10.32015033659511
+ value: -10.32015033659511
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9939023687
+ - -1.1904586434
+ - 0.858242685
+ - - -0.7092004086
+ - -0.3213874698
+ - -0.3830565641
+ - - -1.8196409918
+ - 0.7343200469
+ - -0.5543854238
+ - - 0.7099548647
+ - 0.3216944314
+ - -0.3831342835
+ - - 1.819763282
+ - -0.734745418
+ - -0.553927397
+ - - 0.9935721402
+ - 1.1909163403
+ - 0.8581289383
+ - - -1.9627128279
+ - -1.7017434378
+ - 0.752066947
+ - - -0.2233721704
+ - -1.9599803073
+ - 1.0097548398
+ - - -1.0436097871
+ - -0.5735257157
+ - 1.7681512921
+ - - -0.7475570024
+ - -0.9828664374
+ - -1.2675311545
+ - - -1.874719946
+ - 1.3997694324
+ - 0.3204528939
+ - - -2.8023140599
+ - 0.2504583512
+ - -0.6636031511
+ - - -1.6442713363
+ - 1.3567114795
+ - -1.4454472002
+ - - 0.748300819
+ - 0.9827705696
+ - -1.2679006384
+ - - 1.872940133
+ - -1.4008759931
+ - 0.3205364711
+ - - 2.803094924
+ - -0.252091451
+ - -0.661993864
+ - - 1.6442336554
+ - -1.3566056531
+ - -1.4453876261
+ - - 1.0407680916
+ - 0.5738115451
+ - 1.7680598461
+ - - 0.2230153505
+ - 1.9607417344
+ - 1.0080150404
+ - - 1.9629250501
+ - 1.7013901593
+ - 0.7536185743
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.979221572589054
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.982693
+ - -1.205437
+ - 0.845643
+ - - -0.705908
+ - -0.321598
+ - -0.377495
+ - - -1.813519
+ - 0.726869
+ - -0.54087
+ - - 0.705919
+ - 0.321592
+ - -0.377487
+ - - 1.813534
+ - -0.726877
+ - -0.540826
+ - - 0.982682
+ - 1.205451
+ - 0.845641
+ - - -1.951529
+ - -1.707468
+ - 0.742112
+ - - -0.220533
+ - -1.980791
+ - 0.974853
+ - - -1.019455
+ - -0.610624
+ - 1.765635
+ - - -0.73982
+ - -0.970749
+ - -1.266079
+ - - -1.884216
+ - 1.37582
+ - 0.339912
+ - - -2.789618
+ - 0.24489
+ - -0.670039
+ - - -1.633444
+ - 1.364224
+ - -1.414853
+ - - 0.739847
+ - 0.970729
+ - -1.266082
+ - - 1.884215
+ - -1.375814
+ - 0.339968
+ - - 2.789634
+ - -0.244901
+ - -0.669986
+ - - 1.633474
+ - -1.364247
+ - -1.414801
+ - - 1.019428
+ - 0.610654
+ - 1.765643
+ - - 0.22052
+ - 1.980807
+ - 0.974824
+ - - 1.951521
+ - 1.707481
+ - 0.742118
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.28236433576524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.987991
+ - -1.204026
+ - 0.852504
+ - - -0.707672
+ - -0.322663
+ - -0.374867
+ - - -1.817106
+ - 0.725721
+ - -0.548632
+ - - 0.707683
+ - 0.322657
+ - -0.37486
+ - - 1.81712
+ - -0.725729
+ - -0.548588
+ - - 0.98798
+ - 1.20404
+ - 0.852502
+ - - -1.958175
+ - -1.713408
+ - 0.747076
+ - - -0.221873
+ - -1.981399
+ - 0.990316
+ - - -1.03256
+ - -0.605741
+ - 1.7761
+ - - -0.738045
+ - -0.978843
+ - -1.265217
+ - - -1.885184
+ - 1.392904
+ - 0.325208
+ - - -2.79935
+ - 0.2425
+ - -0.666307
+ - - -1.642526
+ - 1.352394
+ - -1.437363
+ - - 0.738072
+ - 0.978823
+ - -1.26522
+ - - 1.885183
+ - -1.392898
+ - 0.325265
+ - - 2.799367
+ - -0.242511
+ - -0.666253
+ - - 1.642556
+ - -1.352417
+ - -1.437311
+ - - 1.032533
+ - 0.605771
+ - 1.776109
+ - - 0.22186
+ - 1.981416
+ - 0.990288
+ - - 1.958166
+ - 1.713421
+ - 0.747083
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.64281855109495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.979373
+ - -1.196148
+ - 0.843773
+ - - -0.701295
+ - -0.319889
+ - -0.374128
+ - - -1.80375
+ - 0.721033
+ - -0.540571
+ - - 0.701306
+ - 0.319883
+ - -0.374121
+ - - 1.803764
+ - -0.721042
+ - -0.540526
+ - - 0.979363
+ - 1.196162
+ - 0.843771
+ - - -1.94316
+ - -1.696646
+ - 0.739038
+ - - -0.222529
+ - -1.969176
+ - 0.977121
+ - - -1.019698
+ - -0.603837
+ - 1.759562
+ - - -0.734717
+ - -0.967817
+ - -1.256974
+ - - -1.87522
+ - 1.373438
+ - 0.33146
+ - - -2.77513
+ - 0.239907
+ - -0.665196
+ - - -1.628374
+ - 1.349935
+ - -1.415266
+ - - 0.734744
+ - 0.967796
+ - -1.256977
+ - - 1.875219
+ - -1.373432
+ - 0.331517
+ - - 2.775146
+ - -0.239917
+ - -0.665143
+ - - 1.628404
+ - -1.349959
+ - -1.415215
+ - - 1.019671
+ - 0.603867
+ - 1.75957
+ - - 0.222516
+ - 1.969193
+ - 0.977092
+ - - 1.943152
+ - 1.696659
+ - 0.739045
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.32253522231953
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.989399
+ - -1.209298
+ - 0.848884
+ - - -0.707254
+ - -0.321892
+ - -0.373483
+ - - -1.817494
+ - 0.726051
+ - -0.543628
+ - - 0.707265
+ - 0.321887
+ - -0.373476
+ - - 1.817508
+ - -0.72606
+ - -0.543584
+ - - 0.989389
+ - 1.209313
+ - 0.848882
+ - - -1.957493
+ - -1.707301
+ - 0.742258
+ - - -0.233799
+ - -1.988397
+ - 0.97666
+ - - -1.026011
+ - -0.622184
+ - 1.77139
+ - - -0.740337
+ - -0.969606
+ - -1.260001
+ - - -1.891447
+ - 1.382825
+ - 0.328404
+ - - -2.79104
+ - 0.243258
+ - -0.669794
+ - - -1.641097
+ - 1.354579
+ - -1.421872
+ - - 0.740365
+ - 0.969585
+ - -1.260004
+ - - 1.891445
+ - -1.382819
+ - 0.328461
+ - - 2.791057
+ - -0.243268
+ - -0.66974
+ - - 1.641128
+ - -1.354602
+ - -1.42182
+ - - 1.025983
+ - 0.622214
+ - 1.771399
+ - - 0.233786
+ - 1.988414
+ - 0.976631
+ - - 1.957485
+ - 1.707313
+ - 0.742265
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.265158549147635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.972782
+ - -1.1825
+ - 0.850024
+ - - -0.700044
+ - -0.321632
+ - -0.381957
+ - - -1.802494
+ - 0.721353
+ - -0.547856
+ - - 0.700039
+ - 0.32163
+ - -0.381952
+ - - 1.802496
+ - -0.721345
+ - -0.547857
+ - - 0.972777
+ - 1.182491
+ - 0.850033
+ - - -1.929488
+ - -1.697964
+ - 0.748492
+ - - -0.204593
+ - -1.941528
+ - 1.002589
+ - - -1.027075
+ - -0.570264
+ - 1.75279
+ - - -0.73425
+ - -0.977669
+ - -1.259859
+ - - -1.862435
+ - 1.37764
+ - 0.322981
+ - - -2.776315
+ - 0.241299
+ - -0.660715
+ - - -1.630427
+ - 1.34487
+ - -1.427589
+ - - 0.734259
+ - 0.977674
+ - -1.25985
+ - - 1.862558
+ - -1.377553
+ - 0.323031
+ - - 2.776286
+ - -0.241262
+ - -0.660859
+ - - 1.63037
+ - -1.344946
+ - -1.427519
+ - - 1.026572
+ - 0.570313
+ - 1.752869
+ - - 0.204861
+ - 1.941852
+ - 1.002318
+ - - 1.929724
+ - 1.697551
+ - 0.748718
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.25881391237342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.972782
+ - -1.1825
+ - 0.850024
+ - - -0.700044
+ - -0.321631
+ - -0.381957
+ - - -1.802494
+ - 0.721353
+ - -0.547856
+ - - 0.700039
+ - 0.32163
+ - -0.381952
+ - - 1.802496
+ - -0.721345
+ - -0.547857
+ - - 0.972777
+ - 1.182491
+ - 0.850033
+ - - -1.929488
+ - -1.697964
+ - 0.748492
+ - - -0.204593
+ - -1.941528
+ - 1.002589
+ - - -1.027075
+ - -0.570264
+ - 1.75279
+ - - -0.73425
+ - -0.977669
+ - -1.259859
+ - - -1.862435
+ - 1.37764
+ - 0.322981
+ - - -2.776315
+ - 0.241299
+ - -0.660715
+ - - -1.630427
+ - 1.34487
+ - -1.427589
+ - - 0.734259
+ - 0.977674
+ - -1.25985
+ - - 1.862558
+ - -1.377553
+ - 0.323031
+ - - 2.776286
+ - -0.241262
+ - -0.660859
+ - - 1.63037
+ - -1.344946
+ - -1.427519
+ - - 1.026572
+ - 0.570313
+ - 1.752869
+ - - 0.204861
+ - 1.941852
+ - 1.002318
+ - - 1.929724
+ - 1.697551
+ - 0.748718
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.550813133449424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.972782
+ - -1.1825
+ - 0.850024
+ - - -0.700044
+ - -0.321631
+ - -0.381957
+ - - -1.802494
+ - 0.721353
+ - -0.547856
+ - - 0.700039
+ - 0.32163
+ - -0.381952
+ - - 1.802496
+ - -0.721345
+ - -0.547857
+ - - 0.972777
+ - 1.182491
+ - 0.850033
+ - - -1.929488
+ - -1.697964
+ - 0.748492
+ - - -0.204593
+ - -1.941528
+ - 1.002589
+ - - -1.027075
+ - -0.570264
+ - 1.75279
+ - - -0.73425
+ - -0.977669
+ - -1.259859
+ - - -1.862435
+ - 1.37764
+ - 0.322981
+ - - -2.776315
+ - 0.241299
+ - -0.660715
+ - - -1.630427
+ - 1.34487
+ - -1.427589
+ - - 0.734259
+ - 0.977674
+ - -1.25985
+ - - 1.862558
+ - -1.377553
+ - 0.323031
+ - - 2.776286
+ - -0.241262
+ - -0.660859
+ - - 1.63037
+ - -1.344946
+ - -1.427519
+ - - 1.026572
+ - 0.570313
+ - 1.752869
+ - - 0.204861
+ - 1.941852
+ - 1.002318
+ - - 1.929724
+ - 1.697551
+ - 0.748718
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.17728128234118
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.989728
+ - -1.204961
+ - 0.85219
+ - - -0.706175
+ - -0.322656
+ - -0.373454
+ - - -1.816503
+ - 0.72403
+ - -0.548279
+ - - 0.706187
+ - 0.32265
+ - -0.373447
+ - - 1.816518
+ - -0.724039
+ - -0.548234
+ - - 0.989717
+ - 1.204976
+ - 0.852187
+ - - -1.957698
+ - -1.706056
+ - 0.746454
+ - - -0.231486
+ - -1.982144
+ - 0.986445
+ - - -1.029736
+ - -0.61304
+ - 1.773002
+ - - -0.738083
+ - -0.974949
+ - -1.258248
+ - - -1.888995
+ - 1.387241
+ - 0.320686
+ - - -2.791975
+ - 0.240927
+ - -0.668845
+ - - -1.641851
+ - 1.348586
+ - -1.431134
+ - - 0.73811
+ - 0.974928
+ - -1.258251
+ - - 1.888994
+ - -1.387236
+ - 0.320743
+ - - 2.791991
+ - -0.240937
+ - -0.668791
+ - - 1.641881
+ - -1.34861
+ - -1.431082
+ - - 1.029709
+ - 0.61307
+ - 1.773011
+ - - 0.231473
+ - 1.982161
+ - 0.986416
+ - - 1.95769
+ - 1.706068
+ - 0.74646
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.00004270908164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.955303
+ - -1.235779
+ - 0.797701
+ - - -0.702061
+ - -0.317326
+ - -0.395976
+ - - -1.801864
+ - 0.737614
+ - -0.488291
+ - - 0.702073
+ - 0.31732
+ - -0.395969
+ - - 1.801878
+ - -0.737622
+ - -0.488247
+ - - 0.955293
+ - 1.235792
+ - 0.797698
+ - - -1.942124
+ - -1.694977
+ - 0.718463
+ - - -0.221445
+ - -2.039612
+ - 0.86155
+ - - -0.930987
+ - -0.677096
+ - 1.735777
+ - - -0.756795
+ - -0.930881
+ - -1.302395
+ - - -1.879928
+ - 1.308439
+ - 0.439223
+ - - -2.771858
+ - 0.270141
+ - -0.665159
+ - - -1.611959
+ - 1.440556
+ - -1.302074
+ - - 0.756823
+ - 0.93086
+ - -1.302397
+ - - 1.879925
+ - -1.308431
+ - 0.439278
+ - - 2.771874
+ - -0.270151
+ - -0.665105
+ - - 1.611987
+ - -1.440577
+ - -1.302021
+ - - 0.93096
+ - 0.677125
+ - 1.735782
+ - - 0.221434
+ - 2.039627
+ - 0.86152
+ - - 1.942115
+ - 1.694989
+ - 0.718471
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.87740324483831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.976562
+ - -1.194959
+ - 0.842183
+ - - -0.700699
+ - -0.319874
+ - -0.374725
+ - - -1.801313
+ - 0.720549
+ - -0.539663
+ - - 0.70071
+ - 0.319868
+ - -0.374718
+ - - 1.801328
+ - -0.720557
+ - -0.539619
+ - - 0.976551
+ - 1.194974
+ - 0.842181
+ - - -1.942306
+ - -1.696589
+ - 0.73996
+ - - -0.218056
+ - -1.969456
+ - 0.975349
+ - - -1.015688
+ - -0.601004
+ - 1.759514
+ - - -0.733427
+ - -0.969222
+ - -1.259947
+ - - -1.869573
+ - 1.375377
+ - 0.333551
+ - - -2.775918
+ - 0.240394
+ - -0.660428
+ - - -1.62778
+ - 1.349874
+ - -1.416974
+ - - 0.733454
+ - 0.969202
+ - -1.25995
+ - - 1.869572
+ - -1.375371
+ - 0.333607
+ - - 2.775935
+ - -0.240404
+ - -0.660375
+ - - 1.62781
+ - -1.349897
+ - -1.416923
+ - - 1.015661
+ - 0.601034
+ - 1.759522
+ - - 0.218043
+ - 1.969473
+ - 0.97532
+ - - 1.942298
+ - 1.696602
+ - 0.739966
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.314534515890566
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.9939023687
- - -1.1904586434
- - 0.858242685
- - - -0.7092004086
- - -0.3213874698
- - -0.3830565641
- - - -1.8196409918
- - 0.7343200469
- - -0.5543854238
- - - 0.7099548647
- - 0.3216944314
- - -0.3831342835
- - - 1.819763282
- - -0.734745418
- - -0.553927397
- - - 0.9935721402
- - 1.1909163403
- - 0.8581289383
- - - -1.9627128279
- - -1.7017434378
- - 0.752066947
- - - -0.2233721704
- - -1.9599803073
- - 1.0097548398
- - - -1.0436097871
- - -0.5735257157
- - 1.7681512921
- - - -0.7475570024
- - -0.9828664374
- - -1.2675311545
- - - -1.874719946
- - 1.3997694324
- - 0.3204528939
- - - -2.8023140599
- - 0.2504583512
- - -0.6636031511
- - - -1.6442713363
- - 1.3567114795
- - -1.4454472002
- - - 0.748300819
- - 0.9827705696
- - -1.2679006384
- - - 1.872940133
- - -1.4008759931
- - 0.3205364711
- - - 2.803094924
- - -0.252091451
- - -0.661993864
- - - 1.6442336554
- - -1.3566056531
- - -1.4453876261
- - - 1.0407680916
- - 0.5738115451
- - 1.7680598461
- - - 0.2230153505
- - 1.9607417344
- - 1.0080150404
- - - 1.9629250501
- - 1.7013901593
- - 0.7536185743
+ - - -0.986055
+ - -1.198135
+ - 0.856887
+ - - -0.706255
+ - -0.324394
+ - -0.376696
+ - - -1.815998
+ - 0.724279
+ - -0.552182
+ - - 0.706267
+ - 0.324388
+ - -0.376689
+ - - 1.816012
+ - -0.724288
+ - -0.552138
+ - - 0.986044
+ - 1.19815
+ - 0.856884
+ - - -1.951488
+ - -1.706233
+ - 0.751704
+ - - -0.220345
+ - -1.968554
+ - 0.99742
+ - - -1.030928
+ - -0.5942
+ - 1.770697
+ - - -0.736902
+ - -0.9813
+ - -1.25933
+ - - -1.876114
+ - 1.393572
+ - 0.314218
+ - - -2.793746
+ - 0.240797
+ - -0.661149
+ - - -1.643042
+ - 1.340117
+ - -1.442749
+ - - 0.736929
+ - 0.98128
+ - -1.259333
+ - - 1.876113
+ - -1.393567
+ - 0.314274
+ - - 2.793763
+ - -0.240808
+ - -0.661095
+ - - 1.643072
+ - -1.34014
+ - -1.442698
+ - - 1.030901
+ - 0.59423
+ - 1.770706
+ - - 0.220331
+ - 1.968571
+ - 0.997392
+ - - 1.951479
+ - 1.706246
+ - 0.75171
isotopes:
- 12
- 12
@@ -477,6 +1959,234 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.572222710318584
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9727823989
+ - -1.1824995118
+ - 0.8500237306
+ - - -0.7000435535
+ - -0.3216315034
+ - -0.3819567139
+ - - -1.8024936072
+ - 0.7213527045
+ - -0.5478562049
+ - - 0.7000386451
+ - 0.321630151
+ - -0.3819522096
+ - - 1.8024962439
+ - -0.7213447037
+ - -0.5478574565
+ - - 0.9727769215
+ - 1.1824906603
+ - 0.8500327413
+ - - -1.9294876521
+ - -1.6979644867
+ - 0.7484922497
+ - - -0.2045931742
+ - -1.9415279356
+ - 1.0025886191
+ - - -1.0270749784
+ - -0.57026352
+ - 1.7527901077
+ - - -0.7342496397
+ - -0.9776686456
+ - -1.2598590591
+ - - -1.8624353843
+ - 1.3776402134
+ - 0.3229814113
+ - - -2.7763145899
+ - 0.2412985629
+ - -0.6607151702
+ - - -1.6304272221
+ - 1.3448701215
+ - -1.4275889071
+ - - 0.7342587296
+ - 0.9776736797
+ - -1.2598504601
+ - - 1.8625582632
+ - -1.3775531717
+ - 0.3230313438
+ - - 2.7762862778
+ - -0.2412617748
+ - -0.6608590108
+ - - 1.6303696292
+ - -1.3449457022
+ - -1.4275191852
+ - - 1.026571932
+ - 0.5703128861
+ - 1.7528686709
+ - - 0.2048605549
+ - 1.9418515707
+ - 1.0023176866
+ - - 1.9297237482
+ - 1.6975514215
+ - 0.7487183809
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.92566345267087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.975392
+ - -1.201256
+ - 0.838476
+ - - -0.702244
+ - -0.319668
+ - -0.378749
+ - - -1.805226
+ - 0.724991
+ - -0.534288
+ - - 0.702255
+ - 0.319662
+ - -0.378741
+ - - 1.80524
+ - -0.724999
+ - -0.534244
+ - - 0.975381
+ - 1.20127
+ - 0.838474
+ - - -1.942065
+ - -1.69866
+ - 0.738037
+ - - -0.218003
+ - -1.976553
+ - 0.963014
+ - - -1.007143
+ - -0.609756
+ - 1.756448
+ - - -0.739765
+ - -0.963736
+ - -1.264983
+ - - -1.877727
+ - 1.364163
+ - 0.348773
+ - - -2.776774
+ - 0.245028
+ - -0.668287
+ - - -1.625542
+ - 1.366867
+ - -1.399623
+ - - 0.739792
+ - 0.963716
+ - -1.264985
+ - - 1.877726
+ - -1.364156
+ - 0.348829
+ - - 2.77679
+ - -0.245039
+ - -0.668234
+ - - 1.625572
+ - -1.36689
+ - -1.399571
+ - - 1.007116
+ - 0.609786
+ - 1.756456
+ - - 0.21799
+ - 1.976568
+ - 0.962986
+ - - 1.942056
+ - 1.698674
+ - 0.738043
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/25-Dihydrothiophene.yml b/input/reference_sets/main/25-Dihydrothiophene.yml
index 2b01942390..eb07ff05c3 100644
--- a/input/reference_sets/main/25-Dihydrothiophene.yml
+++ b/input/reference_sets/main/25-Dihydrothiophene.yml
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.422821626827606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002466
+ - -1.345969
+ - 0.000135
+ - - -1.246601
+ - -1.8e-05
+ - 0.000292
+ - - -0.002505
+ - 1.345969
+ - 0.000134
+ - - 1.330918
+ - 0.664204
+ - -5.0e-06
+ - - 1.330938
+ - -0.664165
+ - -4.0e-06
+ - - -0.135685
+ - -1.97449
+ - -0.882241
+ - - -0.135491
+ - -1.974513
+ - 0.882523
+ - - -0.135549
+ - 1.97451
+ - 0.882521
+ - - -0.135743
+ - 1.974485
+ - -0.882243
+ - - 2.238203
+ - 1.255171
+ - -0.000102
+ - - 2.23824
+ - -1.255105
+ - -0.000101
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.67135585168963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001385
+ - -1.347136
+ - 0.000136
+ - - -1.252231
+ - -1.8e-05
+ - 0.000272
+ - - -0.001424
+ - 1.347136
+ - 0.000134
+ - - 1.330704
+ - 0.662604
+ - -8.0e-06
+ - - 1.330724
+ - -0.662565
+ - -7.0e-06
+ - - -0.134575
+ - -1.977212
+ - -0.882205
+ - - -0.134385
+ - -1.977213
+ - 0.882505
+ - - -0.134443
+ - 1.97721
+ - 0.882503
+ - - -0.134633
+ - 1.977207
+ - -0.882207
+ - - 2.237934
+ - 1.254866
+ - -0.000106
+ - - 2.237971
+ - -1.2548
+ - -0.000105
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 58.24159330459143
+ value: 58.24159330459143
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0043128429
+ - -1.3585292247
+ - 0.0003813855
+ - - -1.2655888228
+ - 0.0004963692
+ - -0.0002636563
+ - - 0.0055762455
+ - 1.358543792
+ - 0.0003806506
+ - - 1.3487535682
+ - 0.6697410322
+ - -0.000178077
+ - - 1.348028886
+ - -0.6706079841
+ - -0.0001735065
+ - - -0.1282602649
+ - -1.9948097423
+ - -0.8901406696
+ - - -0.1280331023
+ - -1.9939331425
+ - 0.8915778704
+ - - -0.1262308433
+ - 1.9937193418
+ - 0.8917293282
+ - - -0.1264844136
+ - 1.9946229158
+ - -0.8902701617
+ - - 2.2600446955
+ - 1.2711095947
+ - -0.0005684159
+ - - 2.2583558384
+ - -1.2735365662
+ - -0.0005721667
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.75821931489961
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.00214
+ - -1.349856
+ - 0.000136
+ - - -1.256487
+ - -1.8e-05
+ - 0.000271
+ - - -0.00218
+ - 1.349856
+ - 0.000135
+ - - 1.333043
+ - 0.666112
+ - -8.0e-06
+ - - 1.333062
+ - -0.666073
+ - -8.0e-06
+ - - -0.13691
+ - -1.983536
+ - -0.885841
+ - - -0.136719
+ - -1.983536
+ - 0.886142
+ - - -0.136777
+ - 1.983533
+ - 0.88614
+ - - -0.136968
+ - 1.983531
+ - -0.885843
+ - - 2.243149
+ - 1.262469
+ - -0.000107
+ - - 2.243186
+ - -1.262403
+ - -0.000105
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.71220125059604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002805
+ - -1.352967
+ - 0.000136
+ - - -1.257073
+ - -1.8e-05
+ - 0.000273
+ - - -0.002845
+ - 1.352967
+ - 0.000135
+ - - 1.332874
+ - 0.6679
+ - -8.0e-06
+ - - 1.332894
+ - -0.667861
+ - -8.0e-06
+ - - -0.139081
+ - -1.990105
+ - -0.889279
+ - - -0.138889
+ - -1.990107
+ - 0.889579
+ - - -0.138947
+ - 1.990104
+ - 0.889577
+ - - -0.139139
+ - 1.9901
+ - -0.889281
+ - - 2.248616
+ - 1.26462
+ - -0.000107
+ - - 2.248653
+ - -1.264554
+ - -0.000106
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.62430325910834
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.003162
+ - -1.340131
+ - 0.000136
+ - - -1.240728
+ - -1.8e-05
+ - 0.000269
+ - - -0.003201
+ - 1.340131
+ - 0.000135
+ - - 1.32828
+ - 0.659895
+ - -8.0e-06
+ - - 1.3283
+ - -0.659856
+ - -8.0e-06
+ - - -0.133847
+ - -1.970355
+ - -0.880924
+ - - -0.133657
+ - -1.970355
+ - 0.881225
+ - - -0.133715
+ - 1.970352
+ - 0.881223
+ - - -0.133905
+ - 1.970351
+ - -0.880926
+ - - 2.234929
+ - 1.251921
+ - -0.000106
+ - - 2.234965
+ - -1.251855
+ - -0.000105
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.760565513259078
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001605
+ - -1.352407
+ - 0.000136
+ - - -1.260561
+ - -1.8e-05
+ - 0.000264
+ - - -0.001644
+ - 1.352407
+ - 0.000135
+ - - 1.333381
+ - 0.664004
+ - -1.0e-05
+ - - 1.3334
+ - -0.663965
+ - -9.0e-06
+ - - -0.135705
+ - -1.981472
+ - -0.884531
+ - - -0.135514
+ - -1.981465
+ - 0.884838
+ - - -0.135572
+ - 1.981462
+ - 0.884835
+ - - -0.135763
+ - 1.981467
+ - -0.884533
+ - - 2.241902
+ - 1.257487
+ - -0.000107
+ - - 2.241939
+ - -1.257421
+ - -0.000106
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.911728546311227
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.004701
+ - -1.341811
+ - 0.000144
+ - - -1.240176
+ - -1.3e-05
+ - -9.9e-05
+ - - -0.004745
+ - 1.341804
+ - 0.000143
+ - - 1.330549
+ - 0.661161
+ - -8.5e-05
+ - - 1.330574
+ - -0.66113
+ - -8.7e-05
+ - - -0.135486
+ - -1.970651
+ - -0.881881
+ - - -0.135325
+ - -1.970247
+ - 0.882488
+ - - -0.135373
+ - 1.970244
+ - 0.882484
+ - - -0.135528
+ - 1.970642
+ - -0.881884
+ - - 2.237207
+ - 1.253577
+ - -0.000155
+ - - 2.237262
+ - -1.253496
+ - -0.000158
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.8454376648536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.004701
+ - -1.341811
+ - 0.000144
+ - - -1.240176
+ - -1.3e-05
+ - -9.9e-05
+ - - -0.004745
+ - 1.341804
+ - 0.000143
+ - - 1.330549
+ - 0.661161
+ - -8.5e-05
+ - - 1.330574
+ - -0.66113
+ - -8.7e-05
+ - - -0.135486
+ - -1.970651
+ - -0.881881
+ - - -0.135325
+ - -1.970247
+ - 0.882488
+ - - -0.135373
+ - 1.970244
+ - 0.882484
+ - - -0.135528
+ - 1.970642
+ - -0.881884
+ - - 2.237207
+ - 1.253577
+ - -0.000155
+ - - 2.237262
+ - -1.253496
+ - -0.000158
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.089179873603396
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.004701
+ - -1.341811
+ - 0.000144
+ - - -1.240176
+ - -1.3e-05
+ - -9.9e-05
+ - - -0.004745
+ - 1.341804
+ - 0.000143
+ - - 1.330549
+ - 0.661161
+ - -8.5e-05
+ - - 1.330574
+ - -0.66113
+ - -8.7e-05
+ - - -0.135486
+ - -1.970651
+ - -0.881881
+ - - -0.135325
+ - -1.970247
+ - 0.882488
+ - - -0.135373
+ - 1.970244
+ - 0.882484
+ - - -0.135528
+ - 1.970642
+ - -0.881884
+ - - 2.237207
+ - 1.253577
+ - -0.000155
+ - - 2.237262
+ - -1.253496
+ - -0.000158
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.617318680671854
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.0043128429
- - -1.3585292247
- - 0.0003813855
- - - -1.2655888228
- - 0.0004963692
- - -0.0002636563
- - - 0.0055762455
- - 1.358543792
- - 0.0003806506
- - - 1.3487535682
- - 0.6697410322
- - -0.000178077
- - - 1.348028886
- - -0.6706079841
- - -0.0001735065
- - - -0.1282602649
- - -1.9948097423
- - -0.8901406696
- - - -0.1280331023
- - -1.9939331425
- - 0.8915778704
- - - -0.1262308433
- - 1.9937193418
- - 0.8917293282
- - - -0.1264844136
- - 1.9946229158
- - -0.8902701617
- - - 2.2600446955
- - 1.2711095947
- - -0.0005684159
- - - 2.2583558384
- - -1.2735365662
- - -0.0005721667
+ - - -0.000586
+ - -1.352123
+ - 0.000136
+ - - -1.25527
+ - -1.8e-05
+ - 0.000268
+ - - -0.000626
+ - 1.352123
+ - 0.000135
+ - - 1.334217
+ - 0.664138
+ - -9.0e-06
+ - - 1.334236
+ - -0.664099
+ - -9.0e-06
+ - - -0.137363
+ - -1.985159
+ - -0.883413
+ - - -0.137172
+ - -1.985157
+ - 0.883716
+ - - -0.13723
+ - 1.985154
+ - 0.883714
+ - - -0.137421
+ - 1.985155
+ - -0.883415
+ - - 2.240718
+ - 1.261764
+ - -0.000107
+ - - 2.240755
+ - -1.261698
+ - -0.000106
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.14954782374517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.004189
+ - -1.341627
+ - 0.000137
+ - - -1.240622
+ - -1.8e-05
+ - 0.000252
+ - - -0.004228
+ - 1.341627
+ - 0.000136
+ - - 1.3307
+ - 0.661282
+ - -1.1e-05
+ - - 1.330719
+ - -0.661243
+ - -1.1e-05
+ - - -0.135664
+ - -1.96954
+ - -0.882456
+ - - -0.135476
+ - -1.969522
+ - 0.882771
+ - - -0.135533
+ - 1.969519
+ - 0.882769
+ - - -0.135721
+ - 1.969536
+ - -0.882458
+ - - 2.237118
+ - 1.254337
+ - -0.00011
+ - - 2.237155
+ - -1.254272
+ - -0.000109
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.835406868902492
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.002363
+ - -1.339296
+ - 0.000136
+ - - -1.235375
+ - -1.8e-05
+ - 0.000272
+ - - -0.002402
+ - 1.339296
+ - 0.000135
+ - - 1.327102
+ - 0.662106
+ - -8.0e-06
+ - - 1.327121
+ - -0.662067
+ - -7.0e-06
+ - - -0.135395
+ - -1.971768
+ - -0.882833
+ - - -0.135204
+ - -1.97177
+ - 0.883132
+ - - -0.135262
+ - 1.971767
+ - 0.88313
+ - - -0.135453
+ - 1.971763
+ - -0.882835
+ - - 2.235726
+ - 1.255243
+ - -0.000106
+ - - 2.235763
+ - -1.255177
+ - -0.000105
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.72137701684357
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.001556
+ - -1.35257
+ - 0.000136
+ - - -1.252665
+ - -1.8e-05
+ - 0.000275
+ - - -0.001596
+ - 1.35257
+ - 0.000134
+ - - 1.333147
+ - 0.66599
+ - -8.0e-06
+ - - 1.333167
+ - -0.665951
+ - -7.0e-06
+ - - -0.138515
+ - -1.983725
+ - -0.886246
+ - - -0.138323
+ - -1.98373
+ - 0.886544
+ - - -0.138381
+ - 1.983726
+ - 0.886542
+ - - -0.138573
+ - 1.98372
+ - -0.886248
+ - - 2.243759
+ - 1.261212
+ - -0.000106
+ - - 2.243796
+ - -1.261146
+ - -0.000105
isotopes:
- 12
- 32
@@ -288,6 +1185,144 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.783397240540864
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0047010314
+ - -1.3418112046
+ - 0.0001442265
+ - - -1.2401763169
+ - -1.32439e-05
+ - -9.92132e-05
+ - - -0.0047446278
+ - 1.3418036641
+ - 0.0001434279
+ - - 1.3305490477
+ - 0.6611614652
+ - -8.48166e-05
+ - - 1.3305737832
+ - -0.6611299231
+ - -8.73579e-05
+ - - -0.1354855074
+ - -1.9706510103
+ - -0.881881141
+ - - -0.1353250184
+ - -1.9702467941
+ - 0.8824883659
+ - - -0.1353731305
+ - 1.9702435515
+ - 0.88248441
+ - - -0.1355276443
+ - 1.9706418077
+ - -0.8818840662
+ - - 2.2372070266
+ - 1.2535766884
+ - -0.0001546572
+ - - 2.237262314
+ - -1.2534963498
+ - -0.0001583798
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.174159862659607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.004047
+ - -1.340756
+ - 0.000136
+ - - -1.240131
+ - -1.8e-05
+ - 0.000268
+ - - -0.004086
+ - 1.340756
+ - 0.000135
+ - - 1.329275
+ - 0.660843
+ - -9.0e-06
+ - - 1.329295
+ - -0.660804
+ - -8.0e-06
+ - - -0.134414
+ - -1.97033
+ - -0.882518
+ - - -0.134223
+ - -1.970329
+ - 0.88282
+ - - -0.134281
+ - 1.970326
+ - 0.882818
+ - - -0.134471
+ - 1.970325
+ - -0.88252
+ - - 2.235653
+ - 1.254168
+ - -0.000107
+ - - 2.23569
+ - -1.254102
+ - -0.000105
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Ethylsulphinyl-1-propene.yml b/input/reference_sets/main/3-Ethylsulphinyl-1-propene.yml
index 189cf1f641..a8bc3e216c 100644
--- a/input/reference_sets/main/3-Ethylsulphinyl-1-propene.yml
+++ b/input/reference_sets/main/3-Ethylsulphinyl-1-propene.yml
@@ -216,69 +216,1356 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.222437903502717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.424184
+ - 1.178526
+ - 0.180101
+ - - 0.975412
+ - 0.995222
+ - -0.245392
+ - - 0.613065
+ - -0.779556
+ - -0.395528
+ - - 0.744452
+ - -1.367095
+ - 0.971067
+ - - -1.190162
+ - -0.6295
+ - -0.740228
+ - - -1.944146
+ - -0.012025
+ - 0.383342
+ - - -2.67455
+ - 1.094742
+ - 0.273508
+ - - 2.64768
+ - 2.23785
+ - 0.305049
+ - - 3.111653
+ - 0.770987
+ - -0.561816
+ - - 2.605262
+ - 0.674829
+ - 1.128398
+ - - 0.773759
+ - 1.440144
+ - -1.222821
+ - - 0.282669
+ - 1.410844
+ - 0.486398
+ - - -1.493254
+ - -1.666036
+ - -0.90181
+ - - -1.299086
+ - -0.081389
+ - -1.678003
+ - - -1.856831
+ - -0.515389
+ - 1.33891
+ - - -2.774312
+ - 1.618838
+ - -0.669355
+ - - -3.2044
+ - 1.504182
+ - 1.122548
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.332216489781849
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427325
+ - 1.184276
+ - 0.181658
+ - - 0.979512
+ - 0.996136
+ - -0.24488
+ - - 0.614369
+ - -0.786319
+ - -0.397372
+ - - 0.750462
+ - -1.375949
+ - 0.965957
+ - - -1.19999
+ - -0.635799
+ - -0.739757
+ - - -1.953583
+ - -0.013877
+ - 0.379877
+ - - -2.671698
+ - 1.097742
+ - 0.274356
+ - - 2.646605
+ - 2.245231
+ - 0.309536
+ - - 3.118678
+ - 0.781731
+ - -0.560858
+ - - 2.61119
+ - 0.679209
+ - 1.129705
+ - - 0.77651
+ - 1.439394
+ - -1.223069
+ - - 0.283709
+ - 1.410819
+ - 0.484673
+ - - -1.499679
+ - -1.674133
+ - -0.89761
+ - - -1.306325
+ - -0.092464
+ - -1.680593
+ - - -1.869716
+ - -0.52034
+ - 1.334947
+ - - -2.767595
+ - 1.627986
+ - -0.666612
+ - - -3.198378
+ - 1.51153
+ - 1.124411
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 24.890867174780947
+ value: 24.890867174780947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.3941682641
+ - -1.1872082382
+ - 0.2357143522
+ - - -1.0315354679
+ - -0.9870310976
+ - -0.4299802938
+ - - -0.6174068197
+ - 0.8458225691
+ - -0.3826637695
+ - - -0.7102714408
+ - 1.2655685402
+ - 1.0803826598
+ - - 1.2516602313
+ - 0.6408352854
+ - -0.7715860738
+ - - 1.9500676428
+ - 0.0032160069
+ - 0.3805138187
+ - - 2.6255326234
+ - -1.1573805898
+ - 0.3140793154
+ - - -2.6267750074
+ - -2.2595185985
+ - 0.3067196232
+ - - -3.1979936343
+ - -0.6946842353
+ - -0.3313172938
+ - - -2.3721380345
+ - -0.7630976343
+ - 1.2486247139
+ - - -1.0209568255
+ - -1.2909195848
+ - -1.488044821
+ - - -0.2321168841
+ - -1.510330117
+ - 0.1130918914
+ - - 1.5806997764
+ - 1.6782061286
+ - -0.9340403058
+ - - 1.3376671215
+ - 0.0738948833
+ - -1.7103154669
+ - - 1.8431709316
+ - 0.5270563903
+ - 1.3331657772
+ - - 2.7340541309
+ - -1.7054473074
+ - -0.6254062984
+ - - 3.1057284745
+ - -1.5874575534
+ - 1.1946345021
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.056552321329334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.421181
+ - 1.200481
+ - 0.180581
+ - - 0.969712
+ - 0.994384
+ - -0.235792
+ - - 0.624247
+ - -0.804934
+ - -0.397047
+ - - 0.775368
+ - -1.410186
+ - 0.963824
+ - - -1.213754
+ - -0.655708
+ - -0.742152
+ - - -1.965343
+ - -0.023999
+ - 0.372421
+ - - -2.644509
+ - 1.121533
+ - 0.27335
+ - - 2.627856
+ - 2.268376
+ - 0.309878
+ - - 3.114541
+ - 0.807203
+ - -0.57117
+ - - 2.620118
+ - 0.694216
+ - 1.129722
+ - - 0.749876
+ - 1.437574
+ - -1.215314
+ - - 0.268132
+ - 1.394852
+ - 0.50256
+ - - -1.505132
+ - -1.701628
+ - -0.892985
+ - - -1.311486
+ - -0.116012
+ - -1.690888
+ - - -1.911376
+ - -0.544326
+ - 1.32745
+ - - -2.71073
+ - 1.667445
+ - -0.666572
+ - - -3.167305
+ - 1.5459
+ - 1.126503
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.7396432722755355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.449803
+ - 1.185539
+ - 0.185864
+ - - 0.997591
+ - 1.001659
+ - -0.244355
+ - - 0.627012
+ - -0.797735
+ - -0.407101
+ - - 0.780235
+ - -1.409054
+ - 0.959188
+ - - -1.214876
+ - -0.635155
+ - -0.739685
+ - - -1.96513
+ - -0.004458
+ - 0.380001
+ - - -2.709645
+ - 1.102952
+ - 0.270503
+ - - 2.671656
+ - 2.253697
+ - 0.326184
+ - - 3.149299
+ - 0.788802
+ - -0.565133
+ - - 2.636646
+ - 0.668367
+ - 1.137285
+ - - 0.793451
+ - 1.447856
+ - -1.231662
+ - - 0.290829
+ - 1.416608
+ - 0.489686
+ - - -1.507958
+ - -1.686885
+ - -0.88815
+ - - -1.321797
+ - -0.098314
+ - -1.695275
+ - - -1.867454
+ - -0.502356
+ - 1.349808
+ - - -2.831612
+ - 1.623806
+ - -0.68332
+ - - -3.236654
+ - 1.519843
+ - 1.13053
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.620324903917179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.453061
+ - 1.159567
+ - 0.174656
+ - - 1.000983
+ - 0.995349
+ - -0.234286
+ - - 0.60712
+ - -0.762532
+ - -0.39113
+ - - 0.730192
+ - -1.352501
+ - 0.965009
+ - - -1.180535
+ - -0.600102
+ - -0.7314
+ - - -1.945984
+ - 0.01347
+ - 0.386607
+ - - -2.739148
+ - 1.06337
+ - 0.259999
+ - - 2.690259
+ - 2.215097
+ - 0.305705
+ - - 3.128815
+ - 0.751721
+ - -0.578015
+ - - 2.641785
+ - 0.64684
+ - 1.116715
+ - - 0.796488
+ - 1.452185
+ - -1.205076
+ - - 0.324048
+ - 1.420349
+ - 0.50631
+ - - -1.491713
+ - -1.633678
+ - -0.896361
+ - - -1.291228
+ - -0.054359
+ - -1.669769
+ - - -1.815633
+ - -0.460275
+ - 1.352932
+ - - -2.885941
+ - 1.556944
+ - -0.693763
+ - - -3.281172
+ - 1.463727
+ - 1.106234
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.839973968282308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.465067
+ - 1.167052
+ - 0.196608
+ - - 1.029612
+ - 1.003494
+ - -0.292713
+ - - 0.614015
+ - -0.788511
+ - -0.392265
+ - - 0.719759
+ - -1.336874
+ - 1.000388
+ - - -1.207843
+ - -0.597961
+ - -0.75256
+ - - -1.955699
+ - 0.00022
+ - 0.390871
+ - - -2.761177
+ - 1.05586
+ - 0.301524
+ - - 2.706905
+ - 2.226354
+ - 0.312933
+ - - 3.181701
+ - 0.730538
+ - -0.504194
+ - - 2.58987
+ - 0.676816
+ - 1.163784
+ - - 0.884337
+ - 1.410735
+ - -1.29833
+ - - 0.314258
+ - 1.466706
+ - 0.389915
+ - - -1.521386
+ - -1.629946
+ - -0.937509
+ - - -1.305367
+ - -0.030353
+ - -1.681916
+ - - -1.789573
+ - -0.484719
+ - 1.348527
+ - - -2.941167
+ - 1.564075
+ - -0.641227
+ - - -3.281918
+ - 1.441684
+ - 1.170533
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.010956161544183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427724
+ - 1.168146
+ - 0.174541
+ - - 0.97467
+ - 0.992218
+ - -0.236153
+ - - 0.609457
+ - -0.769946
+ - -0.390979
+ - - 0.729377
+ - -1.349995
+ - 0.9744
+ - - -1.175318
+ - -0.617507
+ - -0.737076
+ - - -1.93464
+ - 0.00037
+ - 0.387998
+ - - -2.690214
+ - 1.081567
+ - 0.264592
+ - - 2.657596
+ - 2.225221
+ - 0.307137
+ - - 3.105317
+ - 0.764528
+ - -0.579094
+ - - 2.61751
+ - 0.654266
+ - 1.116232
+ - - 0.76298
+ - 1.446063
+ - -1.207651
+ - - 0.290434
+ - 1.403814
+ - 0.506494
+ - - -1.48949
+ - -1.649873
+ - -0.90559
+ - - -1.283201
+ - -0.064137
+ - -1.672322
+ - - -1.827541
+ - -0.48966
+ - 1.349477
+ - - -2.806591
+ - 1.587922
+ - -0.687369
+ - - -3.226675
+ - 1.492173
+ - 1.109732
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.499007405596096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427724
+ - 1.168146
+ - 0.174541
+ - - 0.97467
+ - 0.992218
+ - -0.236153
+ - - 0.609457
+ - -0.769946
+ - -0.390979
+ - - 0.729377
+ - -1.349995
+ - 0.9744
+ - - -1.175318
+ - -0.617507
+ - -0.737076
+ - - -1.93464
+ - 0.00037
+ - 0.387998
+ - - -2.690214
+ - 1.081567
+ - 0.264592
+ - - 2.657596
+ - 2.225221
+ - 0.307137
+ - - 3.105317
+ - 0.764528
+ - -0.579094
+ - - 2.61751
+ - 0.654266
+ - 1.116232
+ - - 0.76298
+ - 1.446063
+ - -1.207651
+ - - 0.290434
+ - 1.403814
+ - 0.506494
+ - - -1.48949
+ - -1.649873
+ - -0.90559
+ - - -1.283201
+ - -0.064137
+ - -1.672322
+ - - -1.827541
+ - -0.48966
+ - 1.349477
+ - - -2.806591
+ - 1.587922
+ - -0.687369
+ - - -3.226675
+ - 1.492173
+ - 1.109732
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.67147112369266
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427724
+ - 1.168146
+ - 0.174541
+ - - 0.97467
+ - 0.992218
+ - -0.236153
+ - - 0.609457
+ - -0.769946
+ - -0.390979
+ - - 0.729377
+ - -1.349995
+ - 0.9744
+ - - -1.175318
+ - -0.617507
+ - -0.737076
+ - - -1.93464
+ - 0.00037
+ - 0.387998
+ - - -2.690214
+ - 1.081567
+ - 0.264592
+ - - 2.657596
+ - 2.225221
+ - 0.307137
+ - - 3.105317
+ - 0.764528
+ - -0.579094
+ - - 2.61751
+ - 0.654266
+ - 1.116232
+ - - 0.76298
+ - 1.446063
+ - -1.207651
+ - - 0.290434
+ - 1.403814
+ - 0.506494
+ - - -1.48949
+ - -1.649873
+ - -0.90559
+ - - -1.283201
+ - -0.064137
+ - -1.672322
+ - - -1.827541
+ - -0.48966
+ - 1.349477
+ - - -2.806591
+ - 1.587922
+ - -0.687369
+ - - -3.226675
+ - 1.492173
+ - 1.109732
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.819693341957525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.447065
+ - 1.171789
+ - 0.202351
+ - - 1.015057
+ - 1.000248
+ - -0.296905
+ - - 0.616189
+ - -0.792327
+ - -0.401976
+ - - 0.739585
+ - -1.351355
+ - 0.979453
+ - - -1.20634
+ - -0.610667
+ - -0.748636
+ - - -1.947148
+ - 0.000714
+ - 0.392436
+ - - -2.73282
+ - 1.071074
+ - 0.301987
+ - - 2.677809
+ - 2.232702
+ - 0.336071
+ - - 3.172195
+ - 0.752667
+ - -0.50245
+ - - 2.571438
+ - 0.665412
+ - 1.162892
+ - - 0.872353
+ - 1.411622
+ - -1.302403
+ - - 0.290716
+ - 1.458372
+ - 0.381921
+ - - -1.519429
+ - -1.646149
+ - -0.922268
+ - - -1.312227
+ - -0.052625
+ - -1.684268
+ - - -1.790669
+ - -0.489399
+ - 1.350047
+ - - -2.903909
+ - 1.581266
+ - -0.642087
+ - - -3.248469
+ - 1.471828
+ - 1.168204
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.600919641298383
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.421454
+ - 1.167133
+ - 0.181527
+ - - 0.97346
+ - 0.999372
+ - -0.248709
+ - - 0.607907
+ - -0.76513
+ - -0.397737
+ - - 0.723232
+ - -1.332268
+ - 0.972798
+ - - -1.181897
+ - -0.622582
+ - -0.74318
+ - - -1.9287
+ - -0.003247
+ - 0.386292
+ - - -2.679468
+ - 1.082291
+ - 0.270856
+ - - 2.653331
+ - 2.222435
+ - 0.321905
+ - - 3.105764
+ - 0.762281
+ - -0.564954
+ - - 2.591878
+ - 0.646673
+ - 1.123383
+ - - 0.774603
+ - 1.450395
+ - -1.223604
+ - - 0.281795
+ - 1.410791
+ - 0.487188
+ - - -1.486804
+ - -1.659412
+ - -0.89937
+ - - -1.29765
+ - -0.074839
+ - -1.680145
+ - - -1.810088
+ - -0.493668
+ - 1.346595
+ - - -2.803873
+ - 1.588017
+ - -0.680358
+ - - -3.203548
+ - 1.496931
+ - 1.121883
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.192475307803889
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.3941682641
- - -1.1872082382
- - 0.2357143522
- - - -1.0315354679
- - -0.9870310976
- - -0.4299802938
- - - -0.6174068197
- - 0.8458225691
- - -0.3826637695
- - - -0.7102714408
- - 1.2655685402
- - 1.0803826598
- - - 1.2516602313
- - 0.6408352854
- - -0.7715860738
- - - 1.9500676428
- - 0.0032160069
- - 0.3805138187
- - - 2.6255326234
- - -1.1573805898
- - 0.3140793154
- - - -2.6267750074
- - -2.2595185985
- - 0.3067196232
- - - -3.1979936343
- - -0.6946842353
- - -0.3313172938
- - - -2.3721380345
- - -0.7630976343
- - 1.2486247139
- - - -1.0209568255
- - -1.2909195848
- - -1.488044821
- - - -0.2321168841
- - -1.510330117
- - 0.1130918914
- - - 1.5806997764
- - 1.6782061286
- - -0.9340403058
- - - 1.3376671215
- - 0.0738948833
- - -1.7103154669
- - - 1.8431709316
- - 0.5270563903
- - 1.3331657772
- - - 2.7340541309
- - -1.7054473074
- - -0.6254062984
- - - 3.1057284745
- - -1.5874575534
- - 1.1946345021
+ - - 2.433896
+ - 1.165116
+ - 0.179876
+ - - 0.987293
+ - 0.993857
+ - -0.237702
+ - - 0.610531
+ - -0.767913
+ - -0.398233
+ - - 0.746568
+ - -1.367059
+ - 0.953145
+ - - -1.182679
+ - -0.611202
+ - -0.732468
+ - - -1.936969
+ - 0.00971
+ - 0.383821
+ - - -2.710205
+ - 1.080765
+ - 0.262593
+ - - 2.664459
+ - 2.223284
+ - 0.318367
+ - - 3.118355
+ - 0.764458
+ - -0.571549
+ - - 2.62027
+ - 0.647591
+ - 1.122218
+ - - 0.783031
+ - 1.447103
+ - -1.212922
+ - - 0.297231
+ - 1.412152
+ - 0.498857
+ - - -1.487686
+ - -1.650851
+ - -0.887774
+ - - -1.295383
+ - -0.072419
+ - -1.677229
+ - - -1.815364
+ - -0.469628
+ - 1.351228
+ - - -2.849593
+ - 1.580424
+ - -0.691386
+ - - -3.242363
+ - 1.489784
+ - 1.113527
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.05734282850828
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.438952
+ - 1.186605
+ - 0.190821
+ - - 0.991174
+ - 1.00046
+ - -0.258492
+ - - 0.624617
+ - -0.797657
+ - -0.408392
+ - - 0.776097
+ - -1.396121
+ - 0.960997
+ - - -1.213851
+ - -0.637152
+ - -0.74209
+ - - -1.959498
+ - -0.009599
+ - 0.383587
+ - - -2.691316
+ - 1.103016
+ - 0.279704
+ - - 2.654294
+ - 2.25161
+ - 0.327348
+ - - 3.142083
+ - 0.787513
+ - -0.547942
+ - - 2.609163
+ - 0.674602
+ - 1.142124
+ - - 0.804252
+ - 1.435884
+ - -1.247757
+ - - 0.280283
+ - 1.419038
+ - 0.460781
+ - - -1.508056
+ - -1.682104
+ - -0.893401
+ - - -1.31992
+ - -0.095007
+ - -1.688116
+ - - -1.866906
+ - -0.513169
+ - 1.344272
+ - - -2.805769
+ - 1.629459
+ - -0.665848
+ - - -3.214203
+ - 1.517795
+ - 1.136774
isotopes:
- 12
- 12
@@ -414,6 +1701,204 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.973693508014193
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4277244663
+ - 1.1681458595
+ - 0.1745413703
+ - - 0.9746703922
+ - 0.9922182538
+ - -0.236153102
+ - - 0.6094568786
+ - -0.7699455117
+ - -0.3909789185
+ - - 0.7293765471
+ - -1.34999496
+ - 0.9744003048
+ - - -1.1753181018
+ - -0.6175067996
+ - -0.737075903
+ - - -1.9346399612
+ - 0.0003702246
+ - 0.3879982126
+ - - -2.6902136551
+ - 1.0815673582
+ - 0.2645919592
+ - - 2.6575959055
+ - 2.2252213229
+ - 0.3071369507
+ - - 3.1053165375
+ - 0.7645283055
+ - -0.5790942747
+ - - 2.6175101452
+ - 0.6542659879
+ - 1.116231811
+ - - 0.7629802422
+ - 1.4460634038
+ - -1.2076509787
+ - - 0.2904344971
+ - 1.4038144462
+ - 0.5064937976
+ - - -1.4894903272
+ - -1.649872559
+ - -0.9055901717
+ - - -1.283201037
+ - -0.0641373841
+ - -1.6723222269
+ - - -1.8275410777
+ - -0.4896600363
+ - 1.3494770229
+ - - -2.8065911571
+ - 1.587921578
+ - -0.6873693228
+ - - -3.2266750063
+ - 1.4921734238
+ - 1.1097324281
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.872183937167147
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.434029
+ - 1.174972
+ - 0.171055
+ - - 0.978894
+ - 0.988232
+ - -0.223755
+ - - 0.609446
+ - -0.776708
+ - -0.388144
+ - - 0.740782
+ - -1.37577
+ - 0.959956
+ - - -1.18151
+ - -0.622708
+ - -0.732687
+ - - -1.947636
+ - 0.00039
+ - 0.381628
+ - - -2.690972
+ - 1.089341
+ - 0.258199
+ - - 2.652659
+ - 2.235187
+ - 0.302437
+ - - 3.108772
+ - 0.780482
+ - -0.590688
+ - - 2.640605
+ - 0.663412
+ - 1.111145
+ - - 0.755402
+ - 1.447305
+ - -1.190214
+ - - 0.302136
+ - 1.397663
+ - 0.527597
+ - - -1.491733
+ - -1.657944
+ - -0.892155
+ - - -1.287119
+ - -0.079924
+ - -1.67449
+ - - -1.856336
+ - -0.492981
+ - 1.343434
+ - - -2.795453
+ - 1.604167
+ - -0.691021
+ - - -3.23057
+ - 1.500055
+ - 1.102069
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methyl-1-butanethiol.yml b/input/reference_sets/main/3-Methyl-1-butanethiol.yml
index 5fd24ba318..85dc7fc0bc 100644
--- a/input/reference_sets/main/3-Methyl-1-butanethiol.yml
+++ b/input/reference_sets/main/3-Methyl-1-butanethiol.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.41426983211059
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.404522
+ - -1.423317
+ - -0.323089
+ - - -1.154197
+ - -0.044348
+ - 0.284356
+ - - -2.475638
+ - 0.675793
+ - 0.544468
+ - - -0.253059
+ - 0.822696
+ - -0.597552
+ - - 1.116836
+ - 0.239935
+ - -0.926699
+ - - 2.210882
+ - -0.031869
+ - 0.509258
+ - - -2.080305
+ - -2.005827
+ - 0.304721
+ - - -0.485305
+ - -1.999448
+ - -0.43593
+ - - -1.864181
+ - -1.332523
+ - -1.310715
+ - - -0.652671
+ - -0.17708
+ - 1.247741
+ - - -3.113665
+ - 0.098404
+ - 1.215116
+ - - -3.024008
+ - 0.82701
+ - -0.388638
+ - - -2.31031
+ - 1.65466
+ - 0.997182
+ - - -0.770971
+ - 1.011098
+ - -1.545966
+ - - -0.113314
+ - 1.793234
+ - -0.11521
+ - - 1.037435
+ - -0.68932
+ - -1.488037
+ - - 1.674915
+ - 0.938755
+ - -1.550442
+ - - 1.543604
+ - -1.063113
+ - 1.042561
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.009881164476957
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.4119
+ - -1.426593
+ - -0.328548
+ - - -1.157709
+ - -0.046406
+ - 0.278549
+ - - -2.47659
+ - 0.677957
+ - 0.548632
+ - - -0.252575
+ - 0.820648
+ - -0.602665
+ - - 1.120874
+ - 0.241363
+ - -0.925094
+ - - 2.218601
+ - -0.021417
+ - 0.516469
+ - - -2.081139
+ - -2.011487
+ - 0.305221
+ - - -0.491559
+ - -2.000562
+ - -0.449429
+ - - -1.880404
+ - -1.337572
+ - -1.312946
+ - - -0.652355
+ - -0.183021
+ - 1.240111
+ - - -3.114594
+ - 0.098314
+ - 1.21862
+ - - -3.029762
+ - 0.838481
+ - -0.381069
+ - - -2.305428
+ - 1.653767
+ - 1.007664
+ - - -0.765952
+ - 1.00697
+ - -1.554533
+ - - -0.118255
+ - 1.79326
+ - -0.122232
+ - - 1.047081
+ - -0.692119
+ - -1.480906
+ - - 1.678807
+ - 0.9384
+ - -1.55137
+ - - 1.554386
+ - -1.055243
+ - 1.056651
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 1.2151533014589821
+ value: 1.2151533014589821
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.3682327737
+ - -1.4141134855
+ - -0.4088582116
+ - - -1.1585765122
+ - -0.0578614692
+ - 0.2901990641
+ - - -2.5142228634
+ - 0.6142506603
+ - 0.5778503312
+ - - -0.2667108669
+ - 0.8941279341
+ - -0.5336962154
+ - - 1.1189465486
+ - 0.3501036953
+ - -0.9198522042
+ - - 2.2083119967
+ - -0.0956124738
+ - 0.50960422
+ - - -2.0517275442
+ - -2.0506671718
+ - 0.1728962205
+ - - -0.4245317463
+ - -1.9662501756
+ - -0.533528416
+ - - -1.8096547437
+ - -1.2688582451
+ - -1.4082538727
+ - - -0.652667082
+ - -0.2352699665
+ - 1.2542696161
+ - - -3.1438573253
+ - -0.0231453356
+ - 1.2168741227
+ - - -3.0607661667
+ - 0.7959334703
+ - -0.3618454191
+ - - -2.3798241823
+ - 1.5821419125
+ - 1.0842733298
+ - - -0.7950296006
+ - 1.1490440567
+ - -1.4712459398
+ - - -0.1348300918
+ - 1.8322295027
+ - 0.0282381429
+ - - 1.0403577661
+ - -0.520079167
+ - -1.5858202878
+ - - 1.6867527635
+ - 1.1202423605
+ - -1.4612876676
+ - - 1.5255648118
+ - -1.2045656702
+ - 0.8779060659
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.221677745740568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.413031
+ - -1.431023
+ - -0.326728
+ - - -1.159157
+ - -0.046377
+ - 0.280148
+ - - -2.481751
+ - 0.679995
+ - 0.550346
+ - - -0.251217
+ - 0.822836
+ - -0.603142
+ - - 1.126243
+ - 0.243679
+ - -0.927106
+ - - 2.22587
+ - -0.024698
+ - 0.517787
+ - - -2.088117
+ - -2.016003
+ - 0.308083
+ - - -0.488903
+ - -2.007844
+ - -0.443071
+ - - -1.879119
+ - -1.342314
+ - -1.316884
+ - - -0.650847
+ - -0.181815
+ - 1.245466
+ - - -3.121686
+ - 0.098273
+ - 1.223654
+ - - -3.036619
+ - 0.83906
+ - -0.383524
+ - - -2.309963
+ - 1.660463
+ - 1.009366
+ - - -0.766224
+ - 1.008763
+ - -1.559379
+ - - -0.117183
+ - 1.799449
+ - -0.120949
+ - - 1.052939
+ - -0.692361
+ - -1.487705
+ - - 1.687435
+ - 0.945638
+ - -1.552968
+ - - 1.552857
+ - -1.06098
+ - 1.049729
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.548644012073634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.457738
+ - -1.436317
+ - -0.362214
+ - - -1.165827
+ - -0.065736
+ - 0.265834
+ - - -2.472071
+ - 0.682154
+ - 0.568999
+ - - -0.25049
+ - 0.802722
+ - -0.616158
+ - - 1.142962
+ - 0.238358
+ - -0.910309
+ - - 2.256823
+ - 0.07518
+ - 0.54425
+ - - -2.11652
+ - -2.033219
+ - 0.286787
+ - - -0.542763
+ - -2.024801
+ - -0.529399
+ - - -1.96416
+ - -1.322035
+ - -1.335245
+ - - -0.644141
+ - -0.228637
+ - 1.22681
+ - - -3.122472
+ - 0.094882
+ - 1.23509
+ - - -3.036166
+ - 0.880399
+ - -0.357561
+ - - -2.27647
+ - 1.65002
+ - 1.05555
+ - - -0.754756
+ - 0.972731
+ - -1.587289
+ - - -0.134907
+ - 1.793027
+ - -0.144871
+ - - 1.096777
+ - -0.730651
+ - -1.426701
+ - - 1.690786
+ - 0.923458
+ - -1.574319
+ - - 1.632661
+ - -0.976794
+ - 1.12387
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.567855138312138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.435238
+ - -1.424503
+ - -0.344805
+ - - -1.159985
+ - -0.057903
+ - 0.272447
+ - - -2.465767
+ - 0.676392
+ - 0.553336
+ - - -0.252839
+ - 0.805146
+ - -0.602944
+ - - 1.12513
+ - 0.237332
+ - -0.910775
+ - - 2.229359
+ - 0.035343
+ - 0.5193
+ - - -2.104824
+ - -2.008048
+ - 0.288509
+ - - -0.524954
+ - -2.009401
+ - -0.481764
+ - - -1.913019
+ - -1.319333
+ - -1.322321
+ - - -0.653997
+ - -0.209571
+ - 1.230706
+ - - -3.110042
+ - 0.096482
+ - 1.21566
+ - - -3.017924
+ - 0.855695
+ - -0.372631
+ - - -2.283716
+ - 1.64327
+ - 1.024802
+ - - -0.759942
+ - 0.984346
+ - -1.558448
+ - - -0.128188
+ - 1.780999
+ - -0.127812
+ - - 1.063412
+ - -0.70944
+ - -1.443879
+ - - 1.66547
+ - 0.924873
+ - -1.561369
+ - - 1.608591
+ - -1.006938
+ - 1.085113
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.724170039533902
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.464628
+ - -1.43744
+ - -0.365299
+ - - -1.168437
+ - -0.069734
+ - 0.266533
+ - - -2.472702
+ - 0.681964
+ - 0.567052
+ - - -0.248928
+ - 0.798976
+ - -0.61055
+ - - 1.142184
+ - 0.235548
+ - -0.913769
+ - - 2.274905
+ - 0.082144
+ - 0.531752
+ - - -2.130042
+ - -2.024655
+ - 0.273764
+ - - -0.558753
+ - -2.029436
+ - -0.521783
+ - - -1.957332
+ - -1.320047
+ - -1.336875
+ - - -0.658575
+ - -0.237503
+ - 1.22327
+ - - -3.121955
+ - 0.098225
+ - 1.225696
+ - - -3.029893
+ - 0.883992
+ - -0.35435
+ - - -2.27575
+ - 1.640823
+ - 1.054897
+ - - -0.75002
+ - 0.974557
+ - -1.573327
+ - - -0.129902
+ - 1.779069
+ - -0.137226
+ - - 1.095153
+ - -0.729057
+ - -1.420545
+ - - 1.676721
+ - 0.915877
+ - -1.580447
+ - - 1.659482
+ - -0.948565
+ - 1.134329
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.081949271082575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.392013
+ - -1.419256
+ - -0.314593
+ - - -1.150851
+ - -0.039009
+ - 0.290135
+ - - -2.475965
+ - 0.674427
+ - 0.539426
+ - - -0.254591
+ - 0.828175
+ - -0.593009
+ - - 1.110326
+ - 0.239932
+ - -0.926817
+ - - 2.195596
+ - -0.047739
+ - 0.504077
+ - - -2.073089
+ - -2.001134
+ - 0.308452
+ - - -0.470261
+ - -1.994833
+ - -0.41752
+ - - -1.843122
+ - -1.330722
+ - -1.307203
+ - - -0.649546
+ - -0.165359
+ - 1.255387
+ - - -3.114783
+ - 0.098194
+ - 1.210559
+ - - -3.019209
+ - 0.814762
+ - -0.399182
+ - - -2.318399
+ - 1.658265
+ - 0.985017
+ - - -0.777888
+ - 1.019727
+ - -1.538238
+ - - -0.110972
+ - 1.797657
+ - -0.108315
+ - - 1.023799
+ - -0.685138
+ - -1.494735
+ - - 1.67166
+ - 0.937692
+ - -1.54877
+ - - 1.530835
+ - -1.090901
+ - 1.018451
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.044810175912463
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.392013
+ - -1.419256
+ - -0.314593
+ - - -1.150851
+ - -0.039009
+ - 0.290135
+ - - -2.475965
+ - 0.674427
+ - 0.539426
+ - - -0.254591
+ - 0.828175
+ - -0.593009
+ - - 1.110326
+ - 0.239932
+ - -0.926817
+ - - 2.195596
+ - -0.047739
+ - 0.504077
+ - - -2.073089
+ - -2.001134
+ - 0.308452
+ - - -0.470261
+ - -1.994833
+ - -0.41752
+ - - -1.843122
+ - -1.330722
+ - -1.307203
+ - - -0.649546
+ - -0.165359
+ - 1.255387
+ - - -3.114783
+ - 0.098194
+ - 1.210559
+ - - -3.019209
+ - 0.814762
+ - -0.399182
+ - - -2.318399
+ - 1.658265
+ - 0.985017
+ - - -0.777888
+ - 1.019727
+ - -1.538238
+ - - -0.110972
+ - 1.797657
+ - -0.108315
+ - - 1.023799
+ - -0.685138
+ - -1.494735
+ - - 1.67166
+ - 0.937692
+ - -1.54877
+ - - 1.530835
+ - -1.090901
+ - 1.018451
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.892255187450267
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.392013
+ - -1.419256
+ - -0.314593
+ - - -1.150851
+ - -0.039009
+ - 0.290135
+ - - -2.475965
+ - 0.674427
+ - 0.539426
+ - - -0.254591
+ - 0.828175
+ - -0.593009
+ - - 1.110326
+ - 0.239932
+ - -0.926817
+ - - 2.195596
+ - -0.047739
+ - 0.504077
+ - - -2.073089
+ - -2.001134
+ - 0.308452
+ - - -0.470261
+ - -1.994833
+ - -0.41752
+ - - -1.843122
+ - -1.330722
+ - -1.307203
+ - - -0.649546
+ - -0.165359
+ - 1.255387
+ - - -3.114783
+ - 0.098194
+ - 1.210559
+ - - -3.019209
+ - 0.814762
+ - -0.399182
+ - - -2.318399
+ - 1.658265
+ - 0.985017
+ - - -0.777888
+ - 1.019727
+ - -1.538238
+ - - -0.110972
+ - 1.797657
+ - -0.108315
+ - - 1.023799
+ - -0.685138
+ - -1.494735
+ - - 1.67166
+ - 0.937692
+ - -1.54877
+ - - 1.530835
+ - -1.090901
+ - 1.018451
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.913808257781092
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.462777
+ - -1.437165
+ - -0.365132
+ - - -1.16592
+ - -0.069614
+ - 0.266445
+ - - -2.470242
+ - 0.680823
+ - 0.568916
+ - - -0.249699
+ - 0.800049
+ - -0.612239
+ - - 1.142349
+ - 0.236533
+ - -0.913939
+ - - 2.270043
+ - 0.077085
+ - 0.531251
+ - - -2.129426
+ - -2.02498
+ - 0.27424
+ - - -0.555967
+ - -2.029911
+ - -0.522053
+ - - -1.955909
+ - -1.320529
+ - -1.337967
+ - - -0.652303
+ - -0.237578
+ - 1.222738
+ - - -3.1197
+ - 0.095757
+ - 1.228207
+ - - -3.029776
+ - 0.883294
+ - -0.352457
+ - - -2.273774
+ - 1.641228
+ - 1.056671
+ - - -0.750288
+ - 0.973001
+ - -1.577066
+ - - -0.131936
+ - 1.782797
+ - -0.141187
+ - - 1.093857
+ - -0.728063
+ - -1.423851
+ - - 1.680534
+ - 0.918086
+ - -1.578662
+ - - 1.642462
+ - -0.946072
+ - 1.139208
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.68157727603959
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.365995
+ - -1.415586
+ - -0.294962
+ - - -1.147693
+ - -0.027608
+ - 0.300325
+ - - -2.483687
+ - 0.671958
+ - 0.530352
+ - - -0.253076
+ - 0.840838
+ - -0.584351
+ - - 1.10169
+ - 0.240966
+ - -0.938031
+ - - 2.180952
+ - -0.105972
+ - 0.483318
+ - - -2.058726
+ - -1.994984
+ - 0.317141
+ - - -0.437537
+ - -1.984814
+ - -0.369606
+ - - -1.792195
+ - -1.338108
+ - -1.299284
+ - - -0.65407
+ - -0.13835
+ - 1.270871
+ - - -3.116375
+ - 0.099692
+ - 1.210378
+ - - -3.023561
+ - 0.784777
+ - -0.41355
+ - - -2.341202
+ - 1.666571
+ - 0.95612
+ - - -0.78439
+ - 1.043555
+ - -1.522529
+ - - -0.095231
+ - 1.804254
+ - -0.092633
+ - - 0.99761
+ - -0.666994
+ - -1.530391
+ - - 1.67525
+ - 0.946668
+ - -1.539147
+ - - 1.479765
+ - -1.132124
+ - 0.9791
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.81863108138413
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.3682327737
- - -1.4141134855
- - -0.4088582116
- - - -1.1585765122
- - -0.0578614692
- - 0.2901990641
- - - -2.5142228634
- - 0.6142506603
- - 0.5778503312
- - - -0.2667108669
- - 0.8941279341
- - -0.5336962154
- - - 1.1189465486
- - 0.3501036953
- - -0.9198522042
- - - 2.2083119967
- - -0.0956124738
- - 0.50960422
- - - -2.0517275442
- - -2.0506671718
- - 0.1728962205
- - - -0.4245317463
- - -1.9662501756
- - -0.533528416
- - - -1.8096547437
- - -1.2688582451
- - -1.4082538727
- - - -0.652667082
- - -0.2352699665
- - 1.2542696161
- - - -3.1438573253
- - -0.0231453356
- - 1.2168741227
- - - -3.0607661667
- - 0.7959334703
- - -0.3618454191
- - - -2.3798241823
- - 1.5821419125
- - 1.0842733298
- - - -0.7950296006
- - 1.1490440567
- - -1.4712459398
- - - -0.1348300918
- - 1.8322295027
- - 0.0282381429
- - - 1.0403577661
- - -0.520079167
- - -1.5858202878
- - - 1.6867527635
- - 1.1202423605
- - -1.4612876676
- - - 1.5255648118
- - -1.2045656702
- - 0.8779060659
+ - - -1.428308
+ - -1.422772
+ - -0.340733
+ - - -1.157888
+ - -0.055347
+ - 0.272465
+ - - -2.463837
+ - 0.675621
+ - 0.552189
+ - - -0.253751
+ - 0.807119
+ - -0.603806
+ - - 1.121948
+ - 0.238341
+ - -0.910925
+ - - 2.216652
+ - 0.024252
+ - 0.521007
+ - - -2.09348
+ - -2.010413
+ - 0.296895
+ - - -0.513872
+ - -2.004576
+ - -0.48124
+ - - -1.91156
+ - -1.321904
+ - -1.318226
+ - - -0.647634
+ - -0.202402
+ - 1.232607
+ - - -3.107777
+ - 0.095259
+ - 1.217729
+ - - -3.018436
+ - 0.851146
+ - -0.375395
+ - - -2.284013
+ - 1.646406
+ - 1.021168
+ - - -0.762416
+ - 0.986161
+ - -1.561427
+ - - -0.128809
+ - 1.785496
+ - -0.128486
+ - - 1.061398
+ - -0.70725
+ - -1.452028
+ - - 1.670994
+ - 0.929499
+ - -1.554749
+ - - 1.582317
+ - -1.019897
+ - 1.076079
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0109244852914079
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.450963
+ - -1.4356
+ - -0.357522
+ - - -1.162413
+ - -0.062707
+ - 0.268459
+ - - -2.472458
+ - 0.681695
+ - 0.56709
+ - - -0.252914
+ - 0.807297
+ - -0.617915
+ - - 1.139951
+ - 0.239829
+ - -0.914181
+ - - 2.242138
+ - 0.058384
+ - 0.546493
+ - - -2.106698
+ - -2.02724
+ - 0.29118
+ - - -0.53649
+ - -2.017334
+ - -0.519498
+ - - -1.953235
+ - -1.323243
+ - -1.327061
+ - - -0.64313
+ - -0.220404
+ - 1.224658
+ - - -3.115758
+ - 0.095462
+ - 1.233056
+ - - -3.032561
+ - 0.871627
+ - -0.3575
+ - - -2.278464
+ - 1.64765
+ - 1.047043
+ - - -0.756136
+ - 0.972888
+ - -1.583913
+ - - -0.135265
+ - 1.791805
+ - -0.148068
+ - - 1.091754
+ - -0.721452
+ - -1.432597
+ - - 1.691049
+ - 0.92731
+ - -1.563591
+ - - 1.613118
+ - -0.991227
+ - 1.106991
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.602713317607513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.3920132479
+ - -1.4192561459
+ - -0.3145925176
+ - - -1.1508506062
+ - -0.0390088865
+ - 0.2901354896
+ - - -2.475965002
+ - 0.6744270804
+ - 0.5394257818
+ - - -0.254590644
+ - 0.8281746983
+ - -0.5930087547
+ - - 1.110325728
+ - 0.2399324522
+ - -0.9268166242
+ - - 2.1955960765
+ - -0.0477390764
+ - 0.5040772864
+ - - -2.0730888191
+ - -2.0011338377
+ - 0.3084520503
+ - - -0.4702611924
+ - -1.9948330089
+ - -0.4175200539
+ - - -1.8431224667
+ - -1.3307218689
+ - -1.3072025126
+ - - -0.6495459983
+ - -0.1653587638
+ - 1.2553873587
+ - - -3.1147827642
+ - 0.0981936209
+ - 1.2105590673
+ - - -3.0192090529
+ - 0.8147622191
+ - -0.3991820731
+ - - -2.3183986507
+ - 1.6582646806
+ - 0.9850168654
+ - - -0.7778875339
+ - 1.0197266279
+ - -1.5382375883
+ - - -0.1109715266
+ - 1.7976570824
+ - -0.1083150082
+ - - 1.0237990526
+ - -0.6851377835
+ - -1.4947354804
+ - - 1.6716596222
+ - 0.9376916806
+ - -1.5487702075
+ - - 1.5308347382
+ - -1.0909006171
+ - 1.0184507495
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.105257753922782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.397176
+ - -1.42335
+ - -0.313306
+ - - -1.155898
+ - -0.040936
+ - 0.286914
+ - - -2.479134
+ - 0.676064
+ - 0.538717
+ - - -0.2515
+ - 0.825679
+ - -0.591353
+ - - 1.115544
+ - 0.242846
+ - -0.927383
+ - - 2.211447
+ - -0.053991
+ - 0.493268
+ - - -2.082111
+ - -2.001754
+ - 0.309429
+ - - -0.474728
+ - -2.000013
+ - -0.40694
+ - - -1.841788
+ - -1.340782
+ - -1.309468
+ - - -0.659439
+ - -0.168746
+ - 1.254445
+ - - -3.117565
+ - 0.099796
+ - 1.211032
+ - - -3.025615
+ - 0.820518
+ - -0.397703
+ - - -2.31805
+ - 1.658578
+ - 0.986848
+ - - -0.769414
+ - 1.020273
+ - -1.53892
+ - - -0.110753
+ - 1.79483
+ - -0.105082
+ - - 1.029544
+ - -0.678882
+ - -1.502069
+ - - 1.672151
+ - 0.947069
+ - -1.546996
+ - - 1.536011
+ - -1.082457
+ - 1.021691
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methyl-2-butanethiol.yml b/input/reference_sets/main/3-Methyl-2-butanethiol.yml
index 29f7540bab..c29d074647 100644
--- a/input/reference_sets/main/3-Methyl-2-butanethiol.yml
+++ b/input/reference_sets/main/3-Methyl-2-butanethiol.yml
@@ -129,7 +129,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -30.855551963807052
+ value: -30.855551963807006
class: ThermoData
xyz_dict:
coords:
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.913573381554155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.169863
+ - 1.609394
+ - 0.422413
+ - - 0.442959
+ - 0.280398
+ - 0.589619
+ - - 1.335261
+ - -1.071883
+ - -0.27393
+ - - -1.05797
+ - 0.35885
+ - 0.252881
+ - - -1.33877
+ - 0.644901
+ - -1.21998
+ - - -1.804862
+ - -0.890086
+ - 0.711419
+ - - 1.206842
+ - 1.914374
+ - -0.623634
+ - - 0.656635
+ - 2.39404
+ - 0.983234
+ - - 2.194063
+ - 1.537384
+ - 0.784227
+ - - 0.524184
+ - -0.025657
+ - 1.636209
+ - - 1.435651
+ - -0.462899
+ - -1.463396
+ - - -1.43446
+ - 1.20766
+ - 0.836978
+ - - -1.020085
+ - -0.191749
+ - -1.843334
+ - - -2.408664
+ - 0.784826
+ - -1.378571
+ - - -0.834555
+ - 1.545845
+ - -1.570268
+ - - -2.877091
+ - -0.781386
+ - 0.542738
+ - - -1.649757
+ - -1.076677
+ - 1.775792
+ - - -1.461889
+ - -1.767222
+ - 0.161832
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.32256578638139
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.171019
+ - 1.611793
+ - 0.425652
+ - - 0.444078
+ - 0.281809
+ - 0.588604
+ - - 1.341647
+ - -1.075557
+ - -0.275094
+ - - -1.058531
+ - 0.357585
+ - 0.250688
+ - - -1.34069
+ - 0.645317
+ - -1.223122
+ - - -1.80676
+ - -0.890557
+ - 0.714016
+ - - 1.204029
+ - 1.92362
+ - -0.619203
+ - - 0.659749
+ - 2.394377
+ - 0.992785
+ - - 2.197161
+ - 1.538451
+ - 0.783411
+ - - 0.525102
+ - -0.027576
+ - 1.634065
+ - - 1.438233
+ - -0.472369
+ - -1.471173
+ - - -1.435042
+ - 1.207669
+ - 0.833859
+ - - -1.02028
+ - -0.189803
+ - -1.848824
+ - - -2.411225
+ - 0.78462
+ - -1.382177
+ - - -0.836439
+ - 1.547663
+ - -1.571756
+ - - -2.879353
+ - -0.783764
+ - 0.542219
+ - - -1.653772
+ - -1.071987
+ - 1.780331
+ - - -1.461571
+ - -1.77118
+ - 0.169948
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -0.5305875291263245
+ value: -0.5305875291263245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1751412223
+ - 1.633216642
+ - 0.4102743202
+ - - 0.4391689036
+ - 0.2970755841
+ - 0.5992523912
+ - - 1.3464856334
+ - -1.0819673291
+ - -0.2678879056
+ - - -1.0719693996
+ - 0.3671998812
+ - 0.2502562211
+ - - -1.3470848342
+ - 0.6204917761
+ - -1.2432512721
+ - - -1.8239044415
+ - -0.8855406802
+ - 0.7337623289
+ - - 1.2106859577
+ - 1.9214612429
+ - -0.6499914517
+ - - 0.6558372798
+ - 2.4333313124
+ - 0.9622608896
+ - - 2.2076903109
+ - 1.5642803786
+ - 0.7769647583
+ - - 0.522031266
+ - 0.0041100248
+ - 1.6585647614
+ - - 1.4077001042
+ - -0.466886106
+ - -1.4724042935
+ - - -1.4571993406
+ - 1.2350852911
+ - 0.8174042642
+ - - -1.0103983549
+ - -0.2366048838
+ - -1.8454483211
+ - - -2.4263374924
+ - 0.7464793022
+ - -1.4135788069
+ - - -0.8414163758
+ - 1.5253165602
+ - -1.6107572964
+ - - -2.9023613123
+ - -0.7899474436
+ - 0.5374940338
+ - - -1.6843786416
+ - -1.0414480525
+ - 1.8148079989
+ - - -1.4537322397
+ - -1.7783595788
+ - 0.209126017
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.609809931227039
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177142
+ - 1.614351
+ - 0.428175
+ - - 0.445991
+ - 0.281971
+ - 0.588934
+ - - 1.345624
+ - -1.078088
+ - -0.279105
+ - - -1.061192
+ - 0.357755
+ - 0.249868
+ - - -1.344339
+ - 0.64427
+ - -1.227802
+ - - -1.810979
+ - -0.892913
+ - 0.716868
+ - - 1.209506
+ - 1.928525
+ - -0.620318
+ - - 0.665063
+ - 2.399627
+ - 0.999307
+ - - 2.207442
+ - 1.537385
+ - 0.786083
+ - - 0.527099
+ - -0.031904
+ - 1.637952
+ - - 1.438548
+ - -0.463461
+ - -1.472971
+ - - -1.437511
+ - 1.212662
+ - 0.834782
+ - - -1.021746
+ - -0.195938
+ - -1.852874
+ - - -2.419093
+ - 0.783162
+ - -1.387654
+ - - -0.837699
+ - 1.549305
+ - -1.579037
+ - - -2.88739
+ - -0.787934
+ - 0.541025
+ - - -1.658771
+ - -1.071891
+ - 1.788023
+ - - -1.460337
+ - -1.776771
+ - 0.172972
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.326236419317768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.181923
+ - 1.615415
+ - 0.43057
+ - - 0.447233
+ - 0.282134
+ - 0.586838
+ - - 1.349771
+ - -1.083365
+ - -0.279573
+ - - -1.063945
+ - 0.357749
+ - 0.248199
+ - - -1.350953
+ - 0.643924
+ - -1.231383
+ - - -1.814675
+ - -0.893527
+ - 0.719873
+ - - 1.209163
+ - 1.941506
+ - -0.62001
+ - - 0.676139
+ - 2.402725
+ - 1.013881
+ - - 2.219273
+ - 1.534358
+ - 0.78203
+ - - 0.528698
+ - -0.037116
+ - 1.640167
+ - - 1.463369
+ - -0.462254
+ - -1.478059
+ - - -1.440306
+ - 1.217922
+ - 0.835984
+ - - -1.027809
+ - -0.199142
+ - -1.861788
+ - - -2.430664
+ - 0.782108
+ - -1.391549
+ - - -0.846414
+ - 1.554465
+ - -1.58769
+ - - -2.895076
+ - -0.794547
+ - 0.535641
+ - - -1.671354
+ - -1.066673
+ - 1.798102
+ - - -1.457017
+ - -1.785571
+ - 0.182995
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.10603422877449
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167407
+ - 1.607517
+ - 0.427093
+ - - 0.445266
+ - 0.27797
+ - 0.581747
+ - - 1.342552
+ - -1.065438
+ - -0.275288
+ - - -1.05417
+ - 0.35566
+ - 0.247242
+ - - -1.341914
+ - 0.640969
+ - -1.221449
+ - - -1.804223
+ - -0.885143
+ - 0.713194
+ - - 1.203978
+ - 1.925169
+ - -0.6153
+ - - 0.655212
+ - 2.386458
+ - 0.996276
+ - - 2.192221
+ - 1.534859
+ - 0.786924
+ - - 0.52321
+ - -0.029657
+ - 1.627344
+ - - 1.450367
+ - -0.4652
+ - -1.467873
+ - - -1.427748
+ - 1.206275
+ - 0.829537
+ - - -1.029029
+ - -0.194987
+ - -1.848778
+ - - -2.412186
+ - 0.782969
+ - -1.374887
+ - - -0.839137
+ - 1.541391
+ - -1.575219
+ - - -2.875902
+ - -0.774148
+ - 0.543159
+ - - -1.652243
+ - -1.065368
+ - 1.779045
+ - - -1.466303
+ - -1.769184
+ - 0.171459
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.701661506872778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.179366
+ - 1.619932
+ - 0.430976
+ - - 0.450044
+ - 0.283475
+ - 0.586227
+ - - 1.367894
+ - -1.082679
+ - -0.271528
+ - - -1.059526
+ - 0.353968
+ - 0.245023
+ - - -1.353059
+ - 0.645073
+ - -1.232442
+ - - -1.813849
+ - -0.895119
+ - 0.716791
+ - - 1.214845
+ - 1.943688
+ - -0.612281
+ - - 0.66803
+ - 2.399583
+ - 1.005843
+ - - 2.20663
+ - 1.544338
+ - 0.790606
+ - - 0.529447
+ - -0.027165
+ - 1.633167
+ - - 1.467917
+ - -0.48883
+ - -1.473155
+ - - -1.435489
+ - 1.205907
+ - 0.829709
+ - - -1.042223
+ - -0.189924
+ - -1.866467
+ - - -2.426445
+ - 0.788692
+ - -1.382143
+ - - -0.850432
+ - 1.549038
+ - -1.585784
+ - - -2.888797
+ - -0.782075
+ - 0.551194
+ - - -1.658098
+ - -1.075373
+ - 1.784918
+ - - -1.478898
+ - -1.782417
+ - 0.173574
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.537299085640143
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167082
+ - 1.60532
+ - 0.419425
+ - - 0.440692
+ - 0.278337
+ - 0.590888
+ - - 1.324197
+ - -1.067292
+ - -0.275432
+ - - -1.05762
+ - 0.360553
+ - 0.256439
+ - - -1.334591
+ - 0.644246
+ - -1.216194
+ - - -1.803624
+ - -0.888603
+ - 0.710893
+ - - 1.207014
+ - 1.903048
+ - -0.629522
+ - - 0.652286
+ - 2.393722
+ - 0.973797
+ - - 2.191019
+ - 1.535302
+ - 0.7836
+ - - 0.522574
+ - -0.025626
+ - 1.63852
+ - - 1.433371
+ - -0.447241
+ - -1.459061
+ - - -1.433641
+ - 1.209834
+ - 0.840615
+ - - -1.014327
+ - -0.195597
+ - -1.83622
+ - - -2.404575
+ - 0.783219
+ - -1.378156
+ - - -0.82875
+ - 1.544568
+ - -1.567852
+ - - -2.876508
+ - -0.778875
+ - 0.544358
+ - - -1.645229
+ - -1.082113
+ - 1.774157
+ - - -1.462013
+ - -1.76269
+ - 0.153974
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.544599834278408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167082
+ - 1.60532
+ - 0.419425
+ - - 0.440692
+ - 0.278337
+ - 0.590888
+ - - 1.324197
+ - -1.067292
+ - -0.275432
+ - - -1.05762
+ - 0.360553
+ - 0.256439
+ - - -1.334591
+ - 0.644246
+ - -1.216194
+ - - -1.803624
+ - -0.888603
+ - 0.710893
+ - - 1.207014
+ - 1.903048
+ - -0.629522
+ - - 0.652286
+ - 2.393722
+ - 0.973797
+ - - 2.191019
+ - 1.535302
+ - 0.7836
+ - - 0.522574
+ - -0.025626
+ - 1.63852
+ - - 1.433371
+ - -0.447241
+ - -1.459061
+ - - -1.433641
+ - 1.209834
+ - 0.840615
+ - - -1.014327
+ - -0.195597
+ - -1.83622
+ - - -2.404575
+ - 0.783219
+ - -1.378156
+ - - -0.82875
+ - 1.544568
+ - -1.567852
+ - - -2.876508
+ - -0.778875
+ - 0.544358
+ - - -1.645229
+ - -1.082113
+ - 1.774157
+ - - -1.462013
+ - -1.76269
+ - 0.153974
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.414036804340913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167082
+ - 1.60532
+ - 0.419425
+ - - 0.440692
+ - 0.278337
+ - 0.590888
+ - - 1.324197
+ - -1.067292
+ - -0.275432
+ - - -1.05762
+ - 0.360553
+ - 0.256439
+ - - -1.334591
+ - 0.644246
+ - -1.216194
+ - - -1.803624
+ - -0.888603
+ - 0.710893
+ - - 1.207014
+ - 1.903048
+ - -0.629522
+ - - 0.652286
+ - 2.393722
+ - 0.973797
+ - - 2.191019
+ - 1.535302
+ - 0.7836
+ - - 0.522574
+ - -0.025626
+ - 1.63852
+ - - 1.433371
+ - -0.447241
+ - -1.459061
+ - - -1.433641
+ - 1.209834
+ - 0.840615
+ - - -1.014327
+ - -0.195597
+ - -1.83622
+ - - -2.404575
+ - 0.783219
+ - -1.378156
+ - - -0.82875
+ - 1.544568
+ - -1.567852
+ - - -2.876508
+ - -0.778875
+ - 0.544358
+ - - -1.645229
+ - -1.082113
+ - 1.774157
+ - - -1.462013
+ - -1.76269
+ - 0.153974
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.85669755877812
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.179034
+ - 1.618517
+ - 0.43317
+ - - 0.449685
+ - 0.281517
+ - 0.586381
+ - - 1.364232
+ - -1.079133
+ - -0.275426
+ - - -1.058946
+ - 0.355102
+ - 0.245358
+ - - -1.35015
+ - 0.643474
+ - -1.233058
+ - - -1.813829
+ - -0.892728
+ - 0.718681
+ - - 1.212851
+ - 1.943513
+ - -0.611276
+ - - 0.666885
+ - 2.398686
+ - 1.008916
+ - - 2.208199
+ - 1.543718
+ - 0.791559
+ - - 0.530216
+ - -0.033844
+ - 1.633296
+ - - 1.457056
+ - -0.485551
+ - -1.480334
+ - - -1.433975
+ - 1.209891
+ - 0.828903
+ - - -1.028967
+ - -0.189719
+ - -1.866544
+ - - -2.425347
+ - 0.778237
+ - -1.387128
+ - - -0.85274
+ - 1.552362
+ - -1.585176
+ - - -2.88974
+ - -0.780486
+ - 0.550643
+ - - -1.659597
+ - -1.070985
+ - 1.788591
+ - - -1.477511
+ - -1.782459
+ - 0.177674
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.057210201767617
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167053
+ - 1.60801
+ - 0.415865
+ - - 0.441834
+ - 0.281096
+ - 0.594693
+ - - 1.326402
+ - -1.066923
+ - -0.265971
+ - - -1.057374
+ - 0.359736
+ - 0.259205
+ - - -1.331832
+ - 0.647775
+ - -1.21291
+ - - -1.802637
+ - -0.89228
+ - 0.70679
+ - - 1.212968
+ - 1.894515
+ - -0.635716
+ - - 0.64687
+ - 2.400217
+ - 0.959544
+ - - 2.188571
+ - 1.541768
+ - 0.787011
+ - - 0.524813
+ - -0.01961
+ - 1.642658
+ - - 1.412452
+ - -0.460083
+ - -1.456419
+ - - -1.436032
+ - 1.205903
+ - 0.845296
+ - - -1.011909
+ - -0.192292
+ - -1.832767
+ - - -2.401158
+ - 0.788302
+ - -1.375451
+ - - -0.824004
+ - 1.548183
+ - -1.560937
+ - - -2.875542
+ - -0.778962
+ - 0.545362
+ - - -1.639774
+ - -1.094013
+ - 1.767346
+ - - -1.463345
+ - -1.761231
+ - 0.140628
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.644003253720552
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.1751412223
- - 1.633216642
- - 0.4102743202
- - - 0.4391689036
- - 0.2970755841
- - 0.5992523912
- - - 1.3464856334
- - -1.0819673291
- - -0.2678879056
- - - -1.0719693996
- - 0.3671998812
- - 0.2502562211
- - - -1.3470848342
- - 0.6204917761
- - -1.2432512721
- - - -1.8239044415
- - -0.8855406802
- - 0.7337623289
- - - 1.2106859577
- - 1.9214612429
- - -0.6499914517
- - - 0.6558372798
- - 2.4333313124
- - 0.9622608896
- - - 2.2076903109
- - 1.5642803786
- - 0.7769647583
- - - 0.522031266
- - 0.0041100248
- - 1.6585647614
- - - 1.4077001042
- - -0.466886106
- - -1.4724042935
- - - -1.4571993406
- - 1.2350852911
- - 0.8174042642
- - - -1.0103983549
- - -0.2366048838
- - -1.8454483211
- - - -2.4263374924
- - 0.7464793022
- - -1.4135788069
- - - -0.8414163758
- - 1.5253165602
- - -1.6107572964
- - - -2.9023613123
- - -0.7899474436
- - 0.5374940338
- - - -1.6843786416
- - -1.0414480525
- - 1.8148079989
- - - -1.4537322397
- - -1.7783595788
- - 0.209126017
+ - - 1.168011
+ - 1.603763
+ - 0.425766
+ - - 0.441086
+ - 0.279601
+ - 0.582871
+ - - 1.329109
+ - -1.064624
+ - -0.276574
+ - - -1.056875
+ - 0.358303
+ - 0.2487
+ - - -1.339996
+ - 0.640642
+ - -1.219324
+ - - -1.802162
+ - -0.883545
+ - 0.712975
+ - - 1.197304
+ - 1.923261
+ - -0.618602
+ - - 0.66319
+ - 2.386292
+ - 1.000954
+ - - 2.197453
+ - 1.525035
+ - 0.777103
+ - - 0.521026
+ - -0.032653
+ - 1.630214
+ - - 1.442911
+ - -0.451315
+ - -1.465707
+ - - -1.430795
+ - 1.211777
+ - 0.832074
+ - - -1.020682
+ - -0.198409
+ - -1.843381
+ - - -2.411973
+ - 0.778656
+ - -1.378437
+ - - -0.837561
+ - 1.543369
+ - -1.57434
+ - - -2.874957
+ - -0.78263
+ - 0.531691
+ - - -1.658223
+ - -1.05983
+ - 1.782629
+ - - -1.449509
+ - -1.767579
+ - 0.175616
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.2693855286661607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.181594
+ - 1.615193
+ - 0.431287
+ - - 0.444691
+ - 0.282392
+ - 0.590047
+ - - 1.340892
+ - -1.077578
+ - -0.288707
+ - - -1.065073
+ - 0.361736
+ - 0.250635
+ - - -1.347065
+ - 0.64095
+ - -1.231646
+ - - -1.8136
+ - -0.892305
+ - 0.720034
+ - - 1.20275
+ - 1.937834
+ - -0.615106
+ - - 0.679114
+ - 2.39686
+ - 1.01568
+ - - 2.214928
+ - 1.529634
+ - 0.777884
+ - - 0.529013
+ - -0.03833
+ - 1.636206
+ - - 1.448573
+ - -0.452253
+ - -1.47672
+ - - -1.441432
+ - 1.218279
+ - 0.832708
+ - - -1.021631
+ - -0.202439
+ - -1.851377
+ - - -2.422039
+ - 0.777314
+ - -1.392271
+ - - -0.84178
+ - 1.545984
+ - -1.586108
+ - - -2.888559
+ - -0.794613
+ - 0.531781
+ - - -1.672223
+ - -1.061185
+ - 1.794246
+ - - -1.450798
+ - -1.777361
+ - 0.185655
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.950491098709282
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1670815726
+ - 1.605319648
+ - 0.4194248105
+ - - 0.4406924887
+ - 0.2783374522
+ - 0.590888089
+ - - 1.3241965535
+ - -1.0672915705
+ - -0.2754322726
+ - - -1.057620424
+ - 0.3605527568
+ - 0.256439036
+ - - -1.3345907145
+ - 0.6442457483
+ - -1.216194055
+ - - -1.8036239898
+ - -0.8886032944
+ - 0.7108933721
+ - - 1.2070139109
+ - 1.9030479754
+ - -0.6295224445
+ - - 0.6522861227
+ - 2.393721708
+ - 0.9737971393
+ - - 2.1910189618
+ - 1.535301588
+ - 0.7836003557
+ - - 0.5225739622
+ - -0.0256260749
+ - 1.6385199432
+ - - 1.4333713194
+ - -0.4472413669
+ - -1.4590611925
+ - - -1.4336409572
+ - 1.2098343637
+ - 0.8406148315
+ - - -1.014326939
+ - -0.1955966208
+ - -1.8362199805
+ - - -2.4045746809
+ - 0.783218616
+ - -1.3781561264
+ - - -0.8287501438
+ - 1.5445680012
+ - -1.5678521472
+ - - -2.8765081451
+ - -0.7788746975
+ - 0.5443578189
+ - - -1.6452291973
+ - -1.0821125549
+ - 1.7741565996
+ - - -1.462012668
+ - -1.7626896735
+ - 0.153974049
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.82264564825637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168574
+ - 1.611003
+ - 0.424492
+ - - 0.447325
+ - 0.279238
+ - 0.586899
+ - - 1.344901
+ - -1.066326
+ - -0.26818
+ - - -1.054047
+ - 0.354962
+ - 0.250441
+ - - -1.337633
+ - 0.644681
+ - -1.220057
+ - - -1.804214
+ - -0.889987
+ - 0.71089
+ - - 1.208818
+ - 1.918675
+ - -0.621943
+ - - 0.649581
+ - 2.393186
+ - 0.984487
+ - - 2.192483
+ - 1.54375
+ - 0.790455
+ - - 0.526663
+ - -0.024678
+ - 1.634442
+ - - 1.419183
+ - -0.476856
+ - -1.469123
+ - - -1.430043
+ - 1.203982
+ - 0.834562
+ - - -1.023214
+ - -0.192021
+ - -1.847832
+ - - -2.408035
+ - 0.788239
+ - -1.376135
+ - - -0.831103
+ - 1.545974
+ - -1.569228
+ - - -2.876697
+ - -0.776722
+ - 0.542538
+ - - -1.649265
+ - -1.076337
+ - 1.776022
+ - - -1.465919
+ - -1.770652
+ - 0.161498
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methyl-2-butanone.yml b/input/reference_sets/main/3-Methyl-2-butanone.yml
index d0faa92124..ed0981a89e 100644
--- a/input/reference_sets/main/3-Methyl-2-butanone.yml
+++ b/input/reference_sets/main/3-Methyl-2-butanone.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.70152032634157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.948335
+ - -0.496372
+ - 0.461715
+ - - 0.745637
+ - 0.242393
+ - -0.075829
+ - - -0.61964
+ - -0.24298
+ - 0.394007
+ - - -1.086173
+ - -1.351011
+ - -0.562121
+ - - -1.628684
+ - 0.897072
+ - 0.452384
+ - - 0.860125
+ - 1.16526
+ - -0.855358
+ - - 2.839393
+ - -0.224726
+ - -0.098033
+ - - 1.794331
+ - -1.57571
+ - 0.428898
+ - - 2.086185
+ - -0.225612
+ - 1.511502
+ - - -0.496223
+ - -0.681047
+ - 1.389158
+ - - -0.375626
+ - -2.17702
+ - -0.611036
+ - - -2.044822
+ - -1.752576
+ - -0.233022
+ - - -1.21104
+ - -0.948667
+ - -1.568175
+ - - -1.735154
+ - 1.358274
+ - -0.528261
+ - - -1.312089
+ - 1.672169
+ - 1.150571
+ - - -2.603
+ - 0.525614
+ - 0.771835
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.21728838914709
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.949384
+ - -0.500234
+ - 0.456864
+ - - 0.748477
+ - 0.249099
+ - -0.073598
+ - - -0.620582
+ - -0.238016
+ - 0.392033
+ - - -1.083834
+ - -1.354281
+ - -0.559485
+ - - -1.633818
+ - 0.900395
+ - 0.449719
+ - - 0.867303
+ - 1.177764
+ - -0.839106
+ - - 2.842098
+ - -0.227303
+ - -0.101193
+ - - 1.792573
+ - -1.579864
+ - 0.416748
+ - - 2.090237
+ - -0.23871
+ - 1.509807
+ - - -0.498131
+ - -0.673804
+ - 1.389106
+ - - -0.370823
+ - -2.179344
+ - -0.602351
+ - - -2.042271
+ - -1.756433
+ - -0.227944
+ - - -1.209752
+ - -0.959948
+ - -1.569279
+ - - -1.741424
+ - 1.363605
+ - -0.530708
+ - - -1.319646
+ - 1.67615
+ - 1.14947
+ - - -2.608236
+ - 0.525985
+ - 0.768151
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -30.349602809861775
+ value: -30.349602809861775
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9586035597
+ - -0.5163969927
+ - 0.4668883873
+ - - 0.7539801034
+ - 0.2603396345
+ - -0.0567860811
+ - - -0.6241990957
+ - -0.2380695029
+ - 0.4100522684
+ - - -1.0897289971
+ - -1.3455742169
+ - -0.569938951
+ - - -1.6462144374
+ - 0.9076855567
+ - 0.4677162606
+ - - 0.8730498397
+ - 1.2096482482
+ - -0.8188263505
+ - - 2.8687343617
+ - -0.2191948681
+ - -0.0674464957
+ - - 1.8007277214
+ - -1.6021502005
+ - 0.3756872721
+ - - 2.0832540396
+ - -0.303470371
+ - 1.5416266109
+ - - -0.5095541839
+ - -0.6947272894
+ - 1.4083153233
+ - - -0.3733903318
+ - -2.1790626284
+ - -0.6214829143
+ - - -2.0606639532
+ - -1.7488530498
+ - -0.2471189132
+ - - -1.2067792833
+ - -0.926135113
+ - -1.5798474275
+ - - -1.7227105793
+ - 1.3875160387
+ - -0.5170044343
+ - - -1.3425803088
+ - 1.6755409031
+ - 1.1935669569
+ - - -2.6360829978
+ - 0.5254437214
+ - 0.7567235212
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.54538107002759
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.957271
+ - -0.489772
+ - 0.471268
+ - - 0.752557
+ - 0.240441
+ - -0.092825
+ - - -0.620109
+ - -0.244646
+ - 0.386336
+ - - -1.095576
+ - -1.353989
+ - -0.574679
+ - - -1.63191
+ - 0.899839
+ - 0.462614
+ - - 0.869686
+ - 1.147518
+ - -0.893976
+ - - 2.859567
+ - -0.227694
+ - -0.084724
+ - - 1.803617
+ - -1.575121
+ - 0.460116
+ - - 2.084333
+ - -0.200013
+ - 1.523227
+ - - -0.490536
+ - -0.691768
+ - 1.382157
+ - - -0.3825
+ - -2.184013
+ - -0.628537
+ - - -2.057692
+ - -1.755763
+ - -0.238925
+ - - -1.225025
+ - -0.947277
+ - -1.583443
+ - - -1.747038
+ - 1.372036
+ - -0.517241
+ - - -1.306797
+ - 1.671193
+ - 1.168912
+ - - -2.608292
+ - 0.524091
+ - 0.787955
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.803931969565284
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.962441
+ - -0.495285
+ - 0.463036
+ - - 0.753577
+ - 0.245421
+ - -0.081076
+ - - -0.62378
+ - -0.242736
+ - 0.390592
+ - - -1.09508
+ - -1.359031
+ - -0.568394
+ - - -1.637373
+ - 0.903396
+ - 0.456212
+ - - 0.871719
+ - 1.17468
+ - -0.864215
+ - - 2.860485
+ - -0.234105
+ - -0.109301
+ - - 1.806784
+ - -1.584994
+ - 0.455465
+ - - 2.111913
+ - -0.205031
+ - 1.516794
+ - - -0.497615
+ - -0.688718
+ - 1.393463
+ - - -0.379304
+ - -2.193204
+ - -0.619553
+ - - -2.060565
+ - -1.764783
+ - -0.231633
+ - - -1.226783
+ - -0.958044
+ - -1.584522
+ - - -1.731812
+ - 1.387424
+ - -0.525757
+ - - -1.327303
+ - 1.673239
+ - 1.177888
+ - - -2.625749
+ - 0.526831
+ - 0.759238
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.10347309379841
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.945155
+ - -0.500946
+ - 0.453925
+ - - 0.745522
+ - 0.247625
+ - -0.066125
+ - - -0.620551
+ - -0.238941
+ - 0.392035
+ - - -1.081777
+ - -1.351376
+ - -0.555242
+ - - -1.629661
+ - 0.896837
+ - 0.445121
+ - - 0.864115
+ - 1.181354
+ - -0.818449
+ - - 2.832277
+ - -0.225836
+ - -0.110426
+ - - 1.78954
+ - -1.579555
+ - 0.413265
+ - - 2.094078
+ - -0.239239
+ - 1.504364
+ - - -0.500601
+ - -0.672224
+ - 1.389677
+ - - -0.370999
+ - -2.177413
+ - -0.598517
+ - - -2.039774
+ - -1.753352
+ - -0.225157
+ - - -1.208181
+ - -0.9589
+ - -1.565037
+ - - -1.73402
+ - 1.358686
+ - -0.535486
+ - - -1.318705
+ - 1.673902
+ - 1.143532
+ - - -2.604861
+ - 0.52444
+ - 0.760755
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.14627538582752
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.961466
+ - -0.498325
+ - 0.456481
+ - - 0.751291
+ - 0.249017
+ - -0.073634
+ - - -0.624419
+ - -0.241512
+ - 0.393447
+ - - -1.093649
+ - -1.362728
+ - -0.558303
+ - - -1.637
+ - 0.905301
+ - 0.4491
+ - - 0.866775
+ - 1.180954
+ - -0.837329
+ - - 2.849729
+ - -0.216079
+ - -0.107462
+ - - 1.815854
+ - -1.581227
+ - 0.416546
+ - - 2.108398
+ - -0.234977
+ - 1.509971
+ - - -0.504649
+ - -0.67716
+ - 1.392985
+ - - -0.384274
+ - -2.193721
+ - -0.598722
+ - - -2.055479
+ - -1.761709
+ - -0.226316
+ - - -1.21818
+ - -0.972787
+ - -1.572045
+ - - -1.717243
+ - 1.387161
+ - -0.526856
+ - - -1.333878
+ - 1.668787
+ - 1.170081
+ - - -2.623186
+ - 0.534067
+ - 0.740292
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.26940016861191
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.941379
+ - -0.515373
+ - 0.443307
+ - - 0.744185
+ - 0.259843
+ - -0.050883
+ - - -0.621871
+ - -0.232077
+ - 0.403713
+ - - -1.06719
+ - -1.349356
+ - -0.548551
+ - - -1.639901
+ - 0.898067
+ - 0.438461
+ - - 0.865062
+ - 1.215632
+ - -0.779782
+ - - 2.823369
+ - -0.255591
+ - -0.136269
+ - - 1.761331
+ - -1.590545
+ - 0.404194
+ - - 2.112131
+ - -0.256237
+ - 1.491486
+ - - -0.502985
+ - -0.661424
+ - 1.4041
+ - - -0.34714
+ - -2.167849
+ - -0.590792
+ - - -2.023581
+ - -1.760645
+ - -0.224306
+ - - -1.191579
+ - -0.951475
+ - -1.557141
+ - - -1.747235
+ - 1.339921
+ - -0.551749
+ - - -1.332462
+ - 1.690012
+ - 1.121738
+ - - -2.611957
+ - 0.522159
+ - 0.76071
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.28390000677378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.941379
+ - -0.515373
+ - 0.443307
+ - - 0.744185
+ - 0.259843
+ - -0.050883
+ - - -0.621871
+ - -0.232077
+ - 0.403713
+ - - -1.06719
+ - -1.349356
+ - -0.548551
+ - - -1.639901
+ - 0.898067
+ - 0.438461
+ - - 0.865062
+ - 1.215632
+ - -0.779782
+ - - 2.823369
+ - -0.255591
+ - -0.136269
+ - - 1.761331
+ - -1.590545
+ - 0.404194
+ - - 2.112131
+ - -0.256237
+ - 1.491486
+ - - -0.502985
+ - -0.661424
+ - 1.4041
+ - - -0.34714
+ - -2.167849
+ - -0.590792
+ - - -2.023581
+ - -1.760645
+ - -0.224306
+ - - -1.191579
+ - -0.951475
+ - -1.557141
+ - - -1.747235
+ - 1.339921
+ - -0.551749
+ - - -1.332462
+ - 1.690012
+ - 1.121738
+ - - -2.611957
+ - 0.522159
+ - 0.76071
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.02918481829079
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.941379
+ - -0.515373
+ - 0.443307
+ - - 0.744185
+ - 0.259843
+ - -0.050883
+ - - -0.621871
+ - -0.232077
+ - 0.403713
+ - - -1.06719
+ - -1.349356
+ - -0.548551
+ - - -1.639901
+ - 0.898067
+ - 0.438461
+ - - 0.865062
+ - 1.215632
+ - -0.779782
+ - - 2.823369
+ - -0.255591
+ - -0.136269
+ - - 1.761331
+ - -1.590545
+ - 0.404194
+ - - 2.112131
+ - -0.256237
+ - 1.491486
+ - - -0.502985
+ - -0.661424
+ - 1.4041
+ - - -0.34714
+ - -2.167849
+ - -0.590792
+ - - -2.023581
+ - -1.760645
+ - -0.224306
+ - - -1.191579
+ - -0.951475
+ - -1.557141
+ - - -1.747235
+ - 1.339921
+ - -0.551749
+ - - -1.332462
+ - 1.690012
+ - 1.121738
+ - - -2.611957
+ - 0.522159
+ - 0.76071
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.32850857053602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.961249
+ - -0.490805
+ - 0.460081
+ - - 0.749296
+ - 0.244379
+ - -0.084991
+ - - -0.622163
+ - -0.244519
+ - 0.394015
+ - - -1.098361
+ - -1.362681
+ - -0.557762
+ - - -1.631259
+ - 0.905703
+ - 0.452746
+ - - 0.858751
+ - 1.159904
+ - -0.868346
+ - - 2.858874
+ - -0.192518
+ - -0.082942
+ - - 1.827857
+ - -1.57614
+ - 0.40277
+ - - 2.084123
+ - -0.244324
+ - 1.52196
+ - - -0.49766
+ - -0.682197
+ - 1.393063
+ - - -0.389144
+ - -2.195324
+ - -0.603329
+ - - -2.060612
+ - -1.761212
+ - -0.22242
+ - - -1.225818
+ - -0.970107
+ - -1.571576
+ - - -1.707251
+ - 1.390763
+ - -0.523469
+ - - -1.32591
+ - 1.66691
+ - 1.177031
+ - - -2.620416
+ - 0.53723
+ - 0.741403
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.08775129797043
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.941955
+ - -0.513529
+ - 0.44105
+ - - 0.74166
+ - 0.258813
+ - -0.051515
+ - - -0.622505
+ - -0.23354
+ - 0.408486
+ - - -1.06725
+ - -1.349796
+ - -0.545614
+ - - -1.638729
+ - 0.897988
+ - 0.439267
+ - - 0.857047
+ - 1.208155
+ - -0.783941
+ - - 2.824479
+ - -0.242311
+ - -0.132168
+ - - 1.766655
+ - -1.588744
+ - 0.388726
+ - - 2.104398
+ - -0.265086
+ - 1.492834
+ - - -0.503216
+ - -0.662763
+ - 1.40821
+ - - -0.350966
+ - -2.171589
+ - -0.581544
+ - - -2.028406
+ - -1.753934
+ - -0.227093
+ - - -1.181461
+ - -0.950196
+ - -1.554658
+ - - -1.737997
+ - 1.337151
+ - -0.553022
+ - - -1.331122
+ - 1.689721
+ - 1.122445
+ - - -2.612988
+ - 0.524722
+ - 0.756773
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.06922097089411
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.9586035597
- - -0.5163969927
- - 0.4668883873
- - - 0.7539801034
- - 0.2603396345
- - -0.0567860811
- - - -0.6241990957
- - -0.2380695029
- - 0.4100522684
- - - -1.0897289971
- - -1.3455742169
- - -0.569938951
- - - -1.6462144374
- - 0.9076855567
- - 0.4677162606
- - - 0.8730498397
- - 1.2096482482
- - -0.8188263505
- - - 2.8687343617
- - -0.2191948681
- - -0.0674464957
- - - 1.8007277214
- - -1.6021502005
- - 0.3756872721
- - - 2.0832540396
- - -0.303470371
- - 1.5416266109
- - - -0.5095541839
- - -0.6947272894
- - 1.4083153233
- - - -0.3733903318
- - -2.1790626284
- - -0.6214829143
- - - -2.0606639532
- - -1.7488530498
- - -0.2471189132
- - - -1.2067792833
- - -0.926135113
- - -1.5798474275
- - - -1.7227105793
- - 1.3875160387
- - -0.5170044343
- - - -1.3425803088
- - 1.6755409031
- - 1.1935669569
- - - -2.6360829978
- - 0.5254437214
- - 0.7567235212
+ - - 1.94022
+ - -0.505409
+ - 0.447487
+ - - 0.744354
+ - 0.253422
+ - -0.064578
+ - - -0.620533
+ - -0.235225
+ - 0.395146
+ - - -1.074774
+ - -1.349899
+ - -0.551279
+ - - -1.632031
+ - 0.89611
+ - 0.443846
+ - - 0.864125
+ - 1.194697
+ - -0.809354
+ - - 2.829102
+ - -0.24065
+ - -0.122551
+ - - 1.774184
+ - -1.584754
+ - 0.415111
+ - - 2.098131
+ - -0.24049
+ - 1.498175
+ - - -0.498356
+ - -0.669266
+ - 1.395037
+ - - -0.359601
+ - -2.174834
+ - -0.593165
+ - - -2.033724
+ - -1.755968
+ - -0.221967
+ - - -1.201336
+ - -0.95816
+ - -1.563486
+ - - -1.729766
+ - 1.36077
+ - -0.538507
+ - - -1.327616
+ - 1.674072
+ - 1.147083
+ - - -2.610823
+ - 0.520645
+ - 0.751238
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.71000464827411
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.962705
+ - -0.497123
+ - 0.459904
+ - - 0.751812
+ - 0.24674
+ - -0.076359
+ - - -0.622913
+ - -0.241678
+ - 0.394194
+ - - -1.094742
+ - -1.360549
+ - -0.563413
+ - - -1.637631
+ - 0.904938
+ - 0.451451
+ - - 0.868669
+ - 1.179028
+ - -0.853638
+ - - 2.856306
+ - -0.222629
+ - -0.103264
+ - - 1.810315
+ - -1.582078
+ - 0.428303
+ - - 2.104985
+ - -0.22703
+ - 1.514864
+ - - -0.50039
+ - -0.683235
+ - 1.393261
+ - - -0.380561
+ - -2.189982
+ - -0.608137
+ - - -2.056555
+ - -1.760414
+ - -0.225238
+ - - -1.223207
+ - -0.962325
+ - -1.575358
+ - - -1.726422
+ - 1.381348
+ - -0.528923
+ - - -1.329255
+ - 1.672007
+ - 1.169357
+ - - -2.621561
+ - 0.528043
+ - 0.751233
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.89228471446351
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.9413788724
+ - -0.5153730706
+ - 0.443306577
+ - - 0.7441852979
+ - 0.2598427145
+ - -0.0508825674
+ - - -0.6218713057
+ - -0.2320774937
+ - 0.4037134263
+ - - -1.0671903005
+ - -1.3493557243
+ - -0.5485505045
+ - - -1.6399009892
+ - 0.8980670058
+ - 0.4384608947
+ - - 0.8650623765
+ - 1.2156317057
+ - -0.7797821074
+ - - 2.8233686289
+ - -0.255591429
+ - -0.1362694812
+ - - 1.761331437
+ - -1.5905451892
+ - 0.4041936842
+ - - 2.1121306205
+ - -0.2562368575
+ - 1.4914856959
+ - - -0.5029854823
+ - -0.6614241321
+ - 1.4041001811
+ - - -0.3471402151
+ - -2.1678493629
+ - -0.5907920121
+ - - -2.0235813301
+ - -1.7606448126
+ - -0.2243064328
+ - - -1.191578757
+ - -0.9514752077
+ - -1.5571405382
+ - - -1.7472346045
+ - 1.3399214179
+ - -0.5517492569
+ - - -1.3324616117
+ - 1.6900120492
+ - 1.1217377187
+ - - -2.6119571478
+ - 0.5221592882
+ - 0.7607103431
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.33451559748878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.943946
+ - -0.506916
+ - 0.450165
+ - - 0.74766
+ - 0.25599
+ - -0.065734
+ - - -0.620237
+ - -0.233599
+ - 0.393662
+ - - -1.07498
+ - -1.350999
+ - -0.554423
+ - - -1.636053
+ - 0.898462
+ - 0.444951
+ - - 0.869632
+ - 1.195227
+ - -0.810907
+ - - 2.834935
+ - -0.240959
+ - -0.113851
+ - - 1.774504
+ - -1.5843
+ - 0.407481
+ - - 2.094071
+ - -0.248034
+ - 1.501919
+ - - -0.498796
+ - -0.666134
+ - 1.392166
+ - - -0.359756
+ - -2.174648
+ - -0.592383
+ - - -2.033512
+ - -1.754878
+ - -0.225631
+ - - -1.198814
+ - -0.959474
+ - -1.56592
+ - - -1.750433
+ - 1.352158
+ - -0.539595
+ - - -1.323382
+ - 1.681943
+ - 1.136429
+ - - -2.60723
+ - 0.521223
+ - 0.769906
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methylenepentane.yml b/input/reference_sets/main/3-Methylenepentane.yml
index c85eb8fa1d..c283970f19 100644
--- a/input/reference_sets/main/3-Methylenepentane.yml
+++ b/input/reference_sets/main/3-Methylenepentane.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.24765639087618146
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.577767
+ - -0.025359
+ - 4.7e-05
+ - - 1.263222
+ - 0.742056
+ - 1.0e-05
+ - - 0.0
+ - -0.082616
+ - 1.4e-05
+ - - -1.263222
+ - 0.742057
+ - -2.4e-05
+ - - -2.577766
+ - -0.025358
+ - -2.3e-05
+ - - 0.0
+ - -1.415798
+ - 4.7e-05
+ - - 2.667891
+ - -0.660419
+ - -0.881714
+ - - 3.420592
+ - 0.666043
+ - 4.2e-05
+ - - 2.667866
+ - -0.660374
+ - 0.881843
+ - - 1.230959
+ - 1.408595
+ - 0.869085
+ - - 1.230982
+ - 1.408551
+ - -0.8691
+ - - -1.230958
+ - 1.408552
+ - -0.869133
+ - - -1.230981
+ - 1.408595
+ - 0.869052
+ - - -2.667866
+ - -0.660418
+ - -0.881786
+ - - -2.66789
+ - -0.660373
+ - 0.88177
+ - - -3.420591
+ - 0.666044
+ - -5.2e-05
+ - - 0.918445
+ - -1.984714
+ - 7.4e-05
+ - - -0.918445
+ - -1.984714
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9456967969418222
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.582275
+ - -0.022914
+ - 4.8e-05
+ - - 1.263347
+ - 0.73884
+ - 1.1e-05
+ - - 0.0
+ - -0.087236
+ - 1.4e-05
+ - - -1.263346
+ - 0.738841
+ - -2.4e-05
+ - - -2.582275
+ - -0.022913
+ - -2.4e-05
+ - - 0.0
+ - -1.417489
+ - 4.7e-05
+ - - 2.67603
+ - -0.658569
+ - -0.882181
+ - - 3.4228
+ - 0.672728
+ - 4.2e-05
+ - - 2.676006
+ - -0.658525
+ - 0.882312
+ - - 1.229715
+ - 1.407181
+ - 0.868891
+ - - 1.22974
+ - 1.407137
+ - -0.868905
+ - - -1.229714
+ - 1.407138
+ - -0.868939
+ - - -1.229738
+ - 1.407181
+ - 0.868857
+ - - -2.676006
+ - -0.658568
+ - -0.882256
+ - - -2.67603
+ - -0.658525
+ - 0.882237
+ - - -3.422799
+ - 0.67273
+ - -5.2e-05
+ - - 0.917995
+ - -1.988344
+ - 7.4e-05
+ - - -0.917996
+ - -1.988343
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 24.99181368367319
+ value: 24.99181368367319
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.6013036342
+ - -0.0205726962
+ - 0.001716583
+ - - 1.2723147082
+ - 0.7480626753
+ - -0.0012989196
+ - - 0.0003985386
+ - -0.0864253907
+ - -0.0007189812
+ - - -1.2721172085
+ - 0.7475632123
+ - -0.0003496878
+ - - -2.6015850649
+ - -0.0205757605
+ - 0.0012660386
+ - - 0.0002661882
+ - -1.4320683224
+ - -0.0010134896
+ - - 2.6895789707
+ - -0.6630070259
+ - -0.8866864566
+ - - 3.4489984196
+ - 0.6799336098
+ - 0.0006964897
+ - - 2.6878816065
+ - -0.6586660511
+ - 0.8934256422
+ - - 1.2394565747
+ - 1.4232869846
+ - 0.8734230353
+ - - 1.2410130921
+ - 1.4193570579
+ - -0.879133384
+ - - -1.2413099177
+ - 1.4202601567
+ - -0.8771214967
+ - - -1.2400404511
+ - 1.4215748747
+ - 0.8753490717
+ - - -2.6907039096
+ - -0.6617652245
+ - -0.8879739089
+ - - -2.6896912266
+ - -0.6596131648
+ - 0.8921590594
+ - - -3.4486611189
+ - 0.6807350124
+ - 0.0008104338
+ - - 0.9249619887
+ - -2.0093562101
+ - -0.0015512628
+ - - -0.9249688036
+ - -2.0086423259
+ - -0.0010064828
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.34984358179067915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.590447
+ - -0.021063
+ - 4.9e-05
+ - - 1.266209
+ - 0.739269
+ - 1.1e-05
+ - - 0.0
+ - -0.088961
+ - 1.4e-05
+ - - -1.266208
+ - 0.739269
+ - -2.5e-05
+ - - -2.590447
+ - -0.021062
+ - -2.4e-05
+ - - 0.0
+ - -1.426228
+ - 4.7e-05
+ - - 2.685228
+ - -0.659001
+ - -0.88565
+ - - 3.432713
+ - 0.679251
+ - 4.3e-05
+ - - 2.685203
+ - -0.658957
+ - 0.885781
+ - - 1.231349
+ - 1.411405
+ - 0.87178
+ - - 1.231374
+ - 1.411362
+ - -0.871793
+ - - -1.231348
+ - 1.411363
+ - -0.871827
+ - - -1.231373
+ - 1.411406
+ - 0.871746
+ - - -2.685203
+ - -0.658999
+ - -0.885726
+ - - -2.685227
+ - -0.658956
+ - 0.885705
+ - - -3.432712
+ - 0.679252
+ - -5.3e-05
+ - - 0.921886
+ - -1.9995
+ - 7.4e-05
+ - - -0.921886
+ - -1.9995
+ - 4.8e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.000267975037491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.594119
+ - -0.022841
+ - 4.8e-05
+ - - 1.269842
+ - 0.741121
+ - 1.1e-05
+ - - 0.0
+ - -0.085814
+ - 1.4e-05
+ - - -1.269841
+ - 0.741121
+ - -2.5e-05
+ - - -2.594119
+ - -0.02284
+ - -2.4e-05
+ - - 0.0
+ - -1.42666
+ - 4.7e-05
+ - - 2.690831
+ - -0.66389
+ - -0.889078
+ - - 3.442151
+ - 0.677542
+ - 4.3e-05
+ - - 2.690806
+ - -0.663847
+ - 0.889208
+ - - 1.236256
+ - 1.417685
+ - 0.874826
+ - - 1.23628
+ - 1.417642
+ - -0.874838
+ - - -1.236255
+ - 1.417642
+ - -0.874874
+ - - -1.236279
+ - 1.417687
+ - 0.87479
+ - - -2.690806
+ - -0.66389
+ - -0.889152
+ - - -2.69083
+ - -0.663845
+ - 0.889134
+ - - -3.44215
+ - 0.677544
+ - -5.3e-05
+ - - 0.926651
+ - -2.002004
+ - 7.5e-05
+ - - -0.926651
+ - -2.002004
+ - 4.8e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.2311646178003324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.575751
+ - -0.02252
+ - 4.8e-05
+ - - 1.260691
+ - 0.736584
+ - 1.0e-05
+ - - 0.0
+ - -0.088165
+ - 1.4e-05
+ - - -1.26069
+ - 0.736584
+ - -2.4e-05
+ - - -2.575751
+ - -0.022519
+ - -2.4e-05
+ - - 0.0
+ - -1.413117
+ - 4.7e-05
+ - - 2.670995
+ - -0.657524
+ - -0.88139
+ - - 3.415319
+ - 0.672846
+ - 4.2e-05
+ - - 2.67097
+ - -0.65748
+ - 0.88152
+ - - 1.226474
+ - 1.403575
+ - 0.868244
+ - - 1.226498
+ - 1.403531
+ - -0.868257
+ - - -1.226473
+ - 1.403531
+ - -0.868291
+ - - -1.226497
+ - 1.403575
+ - 0.86821
+ - - -2.67097
+ - -0.657523
+ - -0.881464
+ - - -2.670994
+ - -0.657479
+ - 0.881446
+ - - -3.415318
+ - 0.672848
+ - -5.2e-05
+ - - 0.918128
+ - -1.983199
+ - 7.4e-05
+ - - -0.918128
+ - -1.983199
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.559725980202575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.595008
+ - -0.021013
+ - 4.9e-05
+ - - 1.268699
+ - 0.738977
+ - 1.0e-05
+ - - 0.0
+ - -0.090924
+ - 1.4e-05
+ - - -1.268698
+ - 0.738978
+ - -2.4e-05
+ - - -2.595007
+ - -0.021012
+ - -2.4e-05
+ - - 0.0
+ - -1.424361
+ - 4.7e-05
+ - - 2.692761
+ - -0.657025
+ - -0.883734
+ - - 3.434453
+ - 0.678946
+ - 4.3e-05
+ - - 2.692735
+ - -0.65698
+ - 0.883866
+ - - 1.235639
+ - 1.408619
+ - 0.870277
+ - - 1.235664
+ - 1.408574
+ - -0.870292
+ - - -1.235638
+ - 1.408576
+ - -0.870324
+ - - -1.235663
+ - 1.408618
+ - 0.870245
+ - - -2.692735
+ - -0.657023
+ - -0.88381
+ - - -2.692761
+ - -0.65698
+ - 0.883789
+ - - -3.434452
+ - 0.678948
+ - -5.4e-05
+ - - 0.919002
+ - -1.997284
+ - 7.4e-05
+ - - -0.919002
+ - -1.997284
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0979917002516568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.57259
+ - -0.027812
+ - 0.000244
+ - - 1.26252
+ - 0.743887
+ - -0.000371
+ - - -1.0e-06
+ - -0.081233
+ - -5.9e-05
+ - - -1.262519
+ - 0.74389
+ - 0.000269
+ - - -2.572588
+ - -0.027811
+ - -6.1e-05
+ - - -2.0e-06
+ - -1.408993
+ - -6.4e-05
+ - - 2.659121
+ - -0.664319
+ - -0.881538
+ - - 3.419209
+ - 0.659018
+ - 5.2e-05
+ - - 2.658759
+ - -0.663425
+ - 0.882709
+ - - 1.22912
+ - 1.410808
+ - 0.868443
+ - - 1.229329
+ - 1.409779
+ - -0.869985
+ - - -1.229223
+ - 1.410683
+ - -0.868648
+ - - -1.22922
+ - 1.409908
+ - 0.869782
+ - - -2.658938
+ - -0.663479
+ - -0.882468
+ - - -2.658936
+ - -0.664264
+ - 0.881779
+ - - -3.419209
+ - 0.659016
+ - 0.000261
+ - - 0.919955
+ - -1.977651
+ - -0.000241
+ - - -0.919958
+ - -1.977656
+ - 9.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.10291792497182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.57259
+ - -0.027812
+ - 0.000244
+ - - 1.26252
+ - 0.743887
+ - -0.000371
+ - - -1.0e-06
+ - -0.081233
+ - -5.9e-05
+ - - -1.262519
+ - 0.74389
+ - 0.000269
+ - - -2.572588
+ - -0.027811
+ - -6.1e-05
+ - - -2.0e-06
+ - -1.408993
+ - -6.4e-05
+ - - 2.659121
+ - -0.664319
+ - -0.881538
+ - - 3.419209
+ - 0.659018
+ - 5.2e-05
+ - - 2.658759
+ - -0.663425
+ - 0.882709
+ - - 1.22912
+ - 1.410808
+ - 0.868443
+ - - 1.229329
+ - 1.409779
+ - -0.869985
+ - - -1.229223
+ - 1.410683
+ - -0.868648
+ - - -1.22922
+ - 1.409908
+ - 0.869782
+ - - -2.658938
+ - -0.663479
+ - -0.882468
+ - - -2.658936
+ - -0.664264
+ - 0.881779
+ - - -3.419209
+ - 0.659016
+ - 0.000261
+ - - 0.919955
+ - -1.977651
+ - -0.000241
+ - - -0.919958
+ - -1.977656
+ - 9.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.502519215604664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.57259
+ - -0.027812
+ - 0.000244
+ - - 1.26252
+ - 0.743887
+ - -0.000371
+ - - -1.0e-06
+ - -0.081233
+ - -5.9e-05
+ - - -1.262519
+ - 0.74389
+ - 0.000269
+ - - -2.572588
+ - -0.027811
+ - -6.1e-05
+ - - -2.0e-06
+ - -1.408993
+ - -6.4e-05
+ - - 2.659121
+ - -0.664319
+ - -0.881538
+ - - 3.419209
+ - 0.659018
+ - 5.2e-05
+ - - 2.658759
+ - -0.663425
+ - 0.882709
+ - - 1.22912
+ - 1.410808
+ - 0.868443
+ - - 1.229329
+ - 1.409779
+ - -0.869985
+ - - -1.229223
+ - 1.410683
+ - -0.868648
+ - - -1.22922
+ - 1.409908
+ - 0.869782
+ - - -2.658938
+ - -0.663479
+ - -0.882468
+ - - -2.658936
+ - -0.664264
+ - 0.881779
+ - - -3.419209
+ - 0.659016
+ - 0.000261
+ - - 0.919955
+ - -1.977651
+ - -0.000241
+ - - -0.919958
+ - -1.977656
+ - 9.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.104842508764346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.591949
+ - -0.022508
+ - 4.8e-05
+ - - 1.266957
+ - 0.740157
+ - 1.0e-05
+ - - 0.0
+ - -0.090031
+ - 1.4e-05
+ - - -1.266956
+ - 0.740157
+ - -2.4e-05
+ - - -2.591948
+ - -0.022507
+ - -2.4e-05
+ - - 0.0
+ - -1.422718
+ - 4.7e-05
+ - - 2.687432
+ - -0.660176
+ - -0.884399
+ - - 3.434263
+ - 0.675799
+ - 4.3e-05
+ - - 2.687407
+ - -0.660131
+ - 0.884531
+ - - 1.235837
+ - 1.412953
+ - 0.869951
+ - - 1.235861
+ - 1.412909
+ - -0.869966
+ - - -1.235836
+ - 1.41291
+ - -0.869999
+ - - -1.23586
+ - 1.412952
+ - 0.869918
+ - - -2.687407
+ - -0.660174
+ - -0.884475
+ - - -2.687432
+ - -0.660131
+ - 0.884455
+ - - -3.434262
+ - 0.675801
+ - -5.3e-05
+ - - 0.918575
+ - -1.997457
+ - 7.4e-05
+ - - -0.918575
+ - -1.997456
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.086444142852462
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.570334
+ - -0.02948
+ - 4.6e-05
+ - - 1.262961
+ - 0.746279
+ - 1.0e-05
+ - - 0.0
+ - -0.077998
+ - 1.4e-05
+ - - -1.26296
+ - 0.74628
+ - -2.5e-05
+ - - -2.570334
+ - -0.029479
+ - -2.2e-05
+ - - 0.0
+ - -1.405932
+ - 4.8e-05
+ - - 2.651304
+ - -0.665857
+ - -0.882169
+ - - 3.41958
+ - 0.653537
+ - 4.0e-05
+ - - 2.651281
+ - -0.665813
+ - 0.882295
+ - - 1.230561
+ - 1.411816
+ - 0.869648
+ - - 1.230583
+ - 1.411773
+ - -0.869662
+ - - -1.230559
+ - 1.411772
+ - -0.869697
+ - - -1.230583
+ - 1.411817
+ - 0.869613
+ - - -2.65128
+ - -0.665857
+ - -0.882239
+ - - -2.651304
+ - -0.665811
+ - 0.882226
+ - - -3.419579
+ - 0.653538
+ - -5.1e-05
+ - - 0.919848
+ - -1.975117
+ - 7.5e-05
+ - - -0.919848
+ - -1.975117
+ - 5.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.5131936827445047
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.6013036342
- - -0.0205726962
- - 0.001716583
- - - 1.2723147082
- - 0.7480626753
- - -0.0012989196
- - - 0.0003985386
- - -0.0864253907
- - -0.0007189812
- - - -1.2721172085
- - 0.7475632123
- - -0.0003496878
- - - -2.6015850649
- - -0.0205757605
- - 0.0012660386
- - - 0.0002661882
- - -1.4320683224
- - -0.0010134896
- - - 2.6895789707
- - -0.6630070259
- - -0.8866864566
- - - 3.4489984196
- - 0.6799336098
- - 0.0006964897
- - - 2.6878816065
- - -0.6586660511
- - 0.8934256422
- - - 1.2394565747
- - 1.4232869846
- - 0.8734230353
- - - 1.2410130921
- - 1.4193570579
- - -0.879133384
- - - -1.2413099177
- - 1.4202601567
- - -0.8771214967
- - - -1.2400404511
- - 1.4215748747
- - 0.8753490717
- - - -2.6907039096
- - -0.6617652245
- - -0.8879739089
- - - -2.6896912266
- - -0.6596131648
- - 0.8921590594
- - - -3.4486611189
- - 0.6807350124
- - 0.0008104338
- - - 0.9249619887
- - -2.0093562101
- - -0.0015512628
- - - -0.9249688036
- - -2.0086423259
- - -0.0010064828
+ - - 2.570835
+ - -0.024239
+ - 4.8e-05
+ - - 1.259965
+ - 0.737844
+ - 1.0e-05
+ - - 0.0
+ - -0.083154
+ - 1.4e-05
+ - - -1.259964
+ - 0.737844
+ - -2.4e-05
+ - - -2.570834
+ - -0.024239
+ - -2.3e-05
+ - - 0.0
+ - -1.412589
+ - 4.7e-05
+ - - 2.663618
+ - -0.661113
+ - -0.882895
+ - - 3.415441
+ - 0.668013
+ - 4.2e-05
+ - - 2.663594
+ - -0.661069
+ - 0.883025
+ - - 1.226093
+ - 1.40813
+ - 0.869122
+ - - 1.226117
+ - 1.408086
+ - -0.869137
+ - - -1.226092
+ - 1.408087
+ - -0.86917
+ - - -1.226116
+ - 1.408131
+ - 0.869089
+ - - -2.663594
+ - -0.661112
+ - -0.882968
+ - - -2.663617
+ - -0.661068
+ - 0.882951
+ - - -3.41544
+ - 0.668014
+ - -5.2e-05
+ - - 0.920917
+ - -1.982608
+ - 7.4e-05
+ - - -0.920917
+ - -1.982607
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.685803055636683
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.589914
+ - -0.027654
+ - 4.7e-05
+ - - 1.270057
+ - 0.745988
+ - 1.0e-05
+ - - 0.0
+ - -0.080764
+ - 1.3e-05
+ - - -1.270056
+ - 0.745988
+ - -2.4e-05
+ - - -2.589914
+ - -0.027653
+ - -2.3e-05
+ - - 0.0
+ - -1.418148
+ - 4.7e-05
+ - - 2.678762
+ - -0.665625
+ - -0.88601
+ - - 3.437181
+ - 0.666221
+ - 4.1e-05
+ - - 2.678737
+ - -0.66558
+ - 0.886139
+ - - 1.240155
+ - 1.416392
+ - 0.87283
+ - - 1.240178
+ - 1.416348
+ - -0.872846
+ - - -1.240154
+ - 1.416349
+ - -0.872879
+ - - -1.240177
+ - 1.416393
+ - 0.872797
+ - - -2.678737
+ - -0.665623
+ - -0.886082
+ - - -2.678761
+ - -0.665579
+ - 0.886067
+ - - -3.43718
+ - 0.666222
+ - -5.1e-05
+ - - 0.922148
+ - -1.991461
+ - 7.4e-05
+ - - -0.922148
+ - -1.991461
+ - 5.0e-05
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.978598208424586
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.572589757
+ - -0.0278115847
+ - 0.0002443998
+ - - 1.2625202469
+ - 0.7438873991
+ - -0.0003706331
+ - - -1.0149e-06
+ - -0.0812326219
+ - -5.85692e-05
+ - - -1.2625193889
+ - 0.7438901089
+ - 0.000269006
+ - - -2.5725883692
+ - -0.0278105397
+ - -6.07279e-05
+ - - -2.4764e-06
+ - -1.4089927916
+ - -6.36812e-05
+ - - 2.6591208267
+ - -0.6643191305
+ - -0.8815379026
+ - - 3.4192086315
+ - 0.6590181659
+ - 5.1806e-05
+ - - 2.6587592884
+ - -0.6634249708
+ - 0.882709491
+ - - 1.2291196825
+ - 1.4108083302
+ - 0.8684433691
+ - - 1.2293289793
+ - 1.4097794525
+ - -0.8699854997
+ - - -1.229222946
+ - 1.4106833711
+ - -0.8686477161
+ - - -1.2292200429
+ - 1.4099083505
+ - 0.8697821467
+ - - -2.6589383827
+ - -0.6634785772
+ - -0.8824680445
+ - - -2.658936065
+ - -0.6642644105
+ - 0.8817787394
+ - - -3.4192094519
+ - 0.6590164077
+ - 0.0002614109
+ - - 0.9199554064
+ - -1.9776512477
+ - -0.0002414542
+ - - -0.9199584532
+ - -1.9776555615
+ - 9.48878e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.486703712341346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.577818
+ - -0.022453
+ - 4.9e-05
+ - - 1.261898
+ - 0.7383
+ - 9.0e-06
+ - - 0.0
+ - -0.088048
+ - 1.3e-05
+ - - -1.261897
+ - 0.7383
+ - -2.3e-05
+ - - -2.577818
+ - -0.022453
+ - -2.4e-05
+ - - 0.0
+ - -1.415347
+ - 4.6e-05
+ - - 2.670578
+ - -0.657709
+ - -0.882678
+ - - 3.418045
+ - 0.673087
+ - 4.2e-05
+ - - 2.670552
+ - -0.657661
+ - 0.882812
+ - - 1.227225
+ - 1.404772
+ - 0.869439
+ - - 1.227249
+ - 1.404725
+ - -0.869458
+ - - -1.227224
+ - 1.404729
+ - -0.869487
+ - - -1.227248
+ - 1.404769
+ - 0.869411
+ - - -2.670552
+ - -0.657705
+ - -0.882755
+ - - -2.670577
+ - -0.657663
+ - 0.882735
+ - - -3.418044
+ - 0.673088
+ - -5.2e-05
+ - - 0.919193
+ - -1.98619
+ - 7.3e-05
+ - - -0.919193
+ - -1.98619
+ - 4.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methylisoxazole.yml b/input/reference_sets/main/3-Methylisoxazole.yml
index e4b44dc733..e9a729807e 100644
--- a/input/reference_sets/main/3-Methylisoxazole.yml
+++ b/input/reference_sets/main/3-Methylisoxazole.yml
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.303344898151735
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.124905
+ - 0.027499
+ - -2.0e-06
+ - - 0.634334
+ - 0.026694
+ - -0.000129
+ - - -0.024273
+ - -1.108612
+ - -0.000914
+ - - -1.380867
+ - -0.766592
+ - -0.00081
+ - - -1.48337
+ - 0.571097
+ - 4.1e-05
+ - - -0.254265
+ - 1.139731
+ - 0.000511
+ - - 2.510124
+ - 0.542433
+ - -0.880528
+ - - 2.509975
+ - 0.541306
+ - 0.881248
+ - - 2.497305
+ - -0.994336
+ - -0.000624
+ - - -2.484319
+ - 0.967474
+ - 0.000211
+ - - -0.008795
+ - 2.186525
+ - 0.001205
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.49668840761169
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.124113
+ - 0.02679
+ - -3.0e-06
+ - - 0.633495
+ - 0.021636
+ - -0.000132
+ - - -0.025263
+ - -1.108246
+ - -0.000914
+ - - -1.380912
+ - -0.764967
+ - -0.000808
+ - - -1.483176
+ - 0.570925
+ - 4.2e-05
+ - - -0.255699
+ - 1.137589
+ - 0.00051
+ - - 2.508353
+ - 0.544596
+ - -0.88083
+ - - 2.508204
+ - 0.543462
+ - 0.881554
+ - - 2.502177
+ - -0.993753
+ - -0.000627
+ - - -2.483431
+ - 0.971039
+ - 0.000215
+ - - -0.007106
+ - 2.184148
+ - 0.001204
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 40.5915456842694
+ value: 40.5915456842694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1403919652
+ - 0.024651921
+ - 3.37452e-05
+ - - 0.6386477344
+ - 0.028027963
+ - -3.61455e-05
+ - - -0.0244834211
+ - -1.1197535272
+ - -4.09771e-05
+ - - -1.3912428383
+ - -0.7687466136
+ - 5.8094e-06
+ - - -1.4915015113
+ - 0.5818655538
+ - 5.4248e-05
+ - - -0.2498753466
+ - 1.1529064462
+ - -3.97474e-05
+ - - 2.53101655
+ - 0.5434679675
+ - -0.8879301591
+ - - 2.5309406278
+ - 0.5402387673
+ - 0.8899246767
+ - - 2.5138316829
+ - -1.0072688657
+ - -0.0017927938
+ - - -2.5019781194
+ - 0.9794315165
+ - 0.0001138836
+ - - 0.0015388621
+ - 2.2076669091
+ - -0.000147845
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.66605096516481
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.12921
+ - 0.026732
+ - -4.0e-06
+ - - 0.634915
+ - 0.021618
+ - -0.000132
+ - - -0.025349
+ - -1.119398
+ - -0.00092
+ - - -1.392504
+ - -0.770956
+ - -0.00081
+ - - -1.490978
+ - 0.573619
+ - 4.5e-05
+ - - -0.254844
+ - 1.139468
+ - 0.000512
+ - - 2.514488
+ - 0.547481
+ - -0.884054
+ - - 2.514341
+ - 0.546347
+ - 0.884776
+ - - 2.510727
+ - -0.997045
+ - -0.000628
+ - - -2.495505
+ - 0.975309
+ - 0.000219
+ - - -0.003746
+ - 2.190043
+ - 0.001207
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.897144142338323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.132167
+ - 0.025933
+ - -1.0e-06
+ - - 0.635984
+ - 0.027156
+ - -0.000128
+ - - -0.02304
+ - -1.119074
+ - -0.000921
+ - - -1.393483
+ - -0.774168
+ - -0.000816
+ - - -1.494278
+ - 0.572522
+ - 4.1e-05
+ - - -0.257879
+ - 1.144293
+ - 0.000513
+ - - 2.525052
+ - 0.544702
+ - -0.887367
+ - - 2.5249
+ - 0.543562
+ - 0.888096
+ - - 2.507995
+ - -1.004942
+ - -0.000631
+ - - -2.504796
+ - 0.972252
+ - 0.000212
+ - - -0.01187
+ - 2.200982
+ - 0.001213
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.060685550217684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.119395
+ - 0.026319
+ - -3.0e-06
+ - - 0.631832
+ - 0.024632
+ - -0.000132
+ - - -0.02697
+ - -1.096471
+ - -0.00093
+ - - -1.366941
+ - -0.760636
+ - -0.000827
+ - - -1.475074
+ - 0.567873
+ - 4.0e-05
+ - - -0.25602
+ - 1.137418
+ - 0.000523
+ - - 2.50531
+ - 0.541313
+ - -0.880215
+ - - 2.50516
+ - 0.540249
+ - 0.880896
+ - - 2.492347
+ - -0.995209
+ - -0.000589
+ - - -2.477016
+ - 0.963144
+ - 0.000212
+ - - -0.011269
+ - 2.184586
+ - 0.001236
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.197861141019932
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.128468
+ - 0.026516
+ - -1.0e-06
+ - - 0.632623
+ - 0.025279
+ - -0.00013
+ - - -0.025258
+ - -1.108347
+ - -0.000916
+ - - -1.381242
+ - -0.766338
+ - -0.000812
+ - - -1.487038
+ - 0.571204
+ - 4.0e-05
+ - - -0.25906
+ - 1.143107
+ - 0.000514
+ - - 2.517432
+ - 0.541501
+ - -0.882536
+ - - 2.51728
+ - 0.540375
+ - 0.883256
+ - - 2.500492
+ - -0.997976
+ - -0.000623
+ - - -2.490647
+ - 0.966266
+ - 0.000209
+ - - -0.012295
+ - 2.19163
+ - 0.00121
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.804823167217428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.122584
+ - 0.025721
+ - 3.2e-05
+ - - 0.631824
+ - 0.025237
+ - -6.8e-05
+ - - -0.025794
+ - -1.09928
+ - -5.3e-05
+ - - -1.369902
+ - -0.763143
+ - 3.5e-05
+ - - -1.476977
+ - 0.568511
+ - 3.4e-05
+ - - -0.256767
+ - 1.141423
+ - -2.6e-05
+ - - 2.507068
+ - 0.542297
+ - -0.879703
+ - - 2.506907
+ - 0.538226
+ - 0.882232
+ - - 2.493312
+ - -0.996824
+ - -0.00224
+ - - -2.479587
+ - 0.96226
+ - 5.1e-05
+ - - -0.011914
+ - 2.18879
+ - -8.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.583091708169476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.122584
+ - 0.025721
+ - 3.2e-05
+ - - 0.631824
+ - 0.025237
+ - -6.8e-05
+ - - -0.025794
+ - -1.09928
+ - -5.3e-05
+ - - -1.369902
+ - -0.763143
+ - 3.5e-05
+ - - -1.476977
+ - 0.568511
+ - 3.4e-05
+ - - -0.256767
+ - 1.141423
+ - -2.6e-05
+ - - 2.507068
+ - 0.542297
+ - -0.879703
+ - - 2.506907
+ - 0.538226
+ - 0.882232
+ - - 2.493312
+ - -0.996824
+ - -0.00224
+ - - -2.479587
+ - 0.96226
+ - 5.1e-05
+ - - -0.011914
+ - 2.18879
+ - -8.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.181351534889126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.122584
+ - 0.025721
+ - 3.2e-05
+ - - 0.631824
+ - 0.025237
+ - -6.8e-05
+ - - -0.025794
+ - -1.09928
+ - -5.3e-05
+ - - -1.369902
+ - -0.763143
+ - 3.5e-05
+ - - -1.476977
+ - 0.568511
+ - 3.4e-05
+ - - -0.256767
+ - 1.141423
+ - -2.6e-05
+ - - 2.507068
+ - 0.542297
+ - -0.879703
+ - - 2.506907
+ - 0.538226
+ - 0.882232
+ - - 2.493312
+ - -0.996824
+ - -0.00224
+ - - -2.479587
+ - 0.96226
+ - 5.1e-05
+ - - -0.011914
+ - 2.18879
+ - -8.2e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.991007646502181
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.1403919652
- - 0.024651921
- - 3.37452e-05
- - - 0.6386477344
- - 0.028027963
- - -3.61455e-05
- - - -0.0244834211
- - -1.1197535272
- - -4.09771e-05
- - - -1.3912428383
- - -0.7687466136
- - 5.8094e-06
- - - -1.4915015113
- - 0.5818655538
- - 5.4248e-05
- - - -0.2498753466
- - 1.1529064462
- - -3.97474e-05
- - - 2.53101655
- - 0.5434679675
- - -0.8879301591
- - - 2.5309406278
- - 0.5402387673
- - 0.8899246767
- - - 2.5138316829
- - -1.0072688657
- - -0.0017927938
- - - -2.5019781194
- - 0.9794315165
- - 0.0001138836
- - - 0.0015388621
- - 2.2076669091
- - -0.000147845
+ - - 2.127006
+ - 0.025614
+ - -2.0e-06
+ - - 0.63195
+ - 0.026743
+ - -0.000129
+ - - -0.02928
+ - -1.107702
+ - -0.000916
+ - - -1.380339
+ - -0.765126
+ - -0.000811
+ - - -1.485498
+ - 0.570259
+ - 4.0e-05
+ - - -0.257903
+ - 1.143951
+ - 0.000514
+ - - 2.518723
+ - 0.54226
+ - -0.88223
+ - - 2.518571
+ - 0.541131
+ - 0.882954
+ - - 2.500902
+ - -0.999796
+ - -0.000626
+ - - -2.490764
+ - 0.962921
+ - 0.000207
+ - - -0.012615
+ - 2.192964
+ - 0.001211
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.907109500343164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.122486
+ - 0.024978
+ - -3.0e-06
+ - - 0.632318
+ - 0.025601
+ - -0.00013
+ - - -0.030218
+ - -1.095384
+ - -0.00091
+ - - -1.362296
+ - -0.760598
+ - -0.000808
+ - - -1.475601
+ - 0.56744
+ - 3.9e-05
+ - - -0.256057
+ - 1.142849
+ - 0.000515
+ - - 2.505663
+ - 0.540252
+ - -0.880992
+ - - 2.505512
+ - 0.539122
+ - 0.881712
+ - - 2.49067
+ - -0.998384
+ - -0.000627
+ - - -2.479958
+ - 0.957317
+ - 0.000204
+ - - -0.011764
+ - 2.190025
+ - 0.001211
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.81077999919566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.118298
+ - 0.025616
+ - -2.0e-06
+ - - 0.632805
+ - 0.028885
+ - -0.000127
+ - - -0.029266
+ - -1.09631
+ - -0.000908
+ - - -1.363045
+ - -0.761349
+ - -0.000807
+ - - -1.475357
+ - 0.565828
+ - 3.7e-05
+ - - -0.253932
+ - 1.140937
+ - 0.000512
+ - - 2.507753
+ - 0.540437
+ - -0.881311
+ - - 2.507601
+ - 0.539297
+ - 0.882039
+ - - 2.48863
+ - -0.998905
+ - -0.000632
+ - - -2.480588
+ - 0.958165
+ - 0.000203
+ - - -0.012144
+ - 2.190618
+ - 0.001207
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.877098223957166
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.13211
+ - 0.026069
+ - -1.0e-06
+ - - 0.634577
+ - 0.028479
+ - -0.000127
+ - - -0.019522
+ - -1.116347
+ - -0.000917
+ - - -1.39249
+ - -0.77093
+ - -0.000813
+ - - -1.491169
+ - 0.57368
+ - 4.1e-05
+ - - -0.257929
+ - 1.143397
+ - 0.000512
+ - - 2.52073
+ - 0.543026
+ - -0.884281
+ - - 2.520579
+ - 0.54189
+ - 0.885008
+ - - 2.503554
+ - -1.000963
+ - -0.000629
+ - - -2.497217
+ - 0.969809
+ - 0.00021
+ - - -0.012467
+ - 2.195109
+ - 0.001208
isotopes:
- 12
- 12
@@ -288,6 +1185,144 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.32090455686349
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1225843544
+ - 0.0257209877
+ - 3.22163e-05
+ - - 0.6318236957
+ - 0.0252371512
+ - -6.83459e-05
+ - - -0.025793687
+ - -1.0992797029
+ - -5.2628e-05
+ - - -1.3699015445
+ - -0.7631426368
+ - 3.54649e-05
+ - - -1.4769771835
+ - 0.5685109247
+ - 3.35636e-05
+ - - -0.2567671654
+ - 1.1414225355
+ - -2.61737e-05
+ - - 2.5070682515
+ - 0.5422971978
+ - -0.8797030674
+ - - 2.5069067462
+ - 0.5382255936
+ - 0.8822315601
+ - - 2.4933119385
+ - -0.9968238464
+ - -0.0022403292
+ - - -2.4795866959
+ - 0.9622602712
+ - 5.10874e-05
+ - - -0.0119142821
+ - 2.1887902045
+ - -8.21369e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.876324204120342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.120662
+ - 0.025673
+ - -3.0e-06
+ - - 0.631509
+ - 0.025421
+ - -0.00013
+ - - -0.030939
+ - -1.097296
+ - -0.000911
+ - - -1.365787
+ - -0.760062
+ - -0.000807
+ - - -1.475108
+ - 0.566454
+ - 3.9e-05
+ - - -0.254809
+ - 1.139427
+ - 0.000513
+ - - 2.504768
+ - 0.541666
+ - -0.88124
+ - - 2.504618
+ - 0.540534
+ - 0.881961
+ - - 2.494135
+ - -0.996558
+ - -0.000628
+ - - -2.478024
+ - 0.960898
+ - 0.000208
+ - - -0.010271
+ - 2.187062
+ - 0.001209
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/3-Methylthiophene.yml b/input/reference_sets/main/3-Methylthiophene.yml
index 2980a9ffc9..6aa4d869bb 100644
--- a/input/reference_sets/main/3-Methylthiophene.yml
+++ b/input/reference_sets/main/3-Methylthiophene.yml
@@ -93,7 +93,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 18.925332941460084
+ value: 18.925332941460066
class: ThermoData
xyz_dict:
coords:
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.6631654959777
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.467253
+ - -0.193415
+ - -4.0e-06
+ - - 0.977849
+ - -0.023417
+ - 2.0e-06
+ - - 0.075407
+ - -1.054727
+ - 3.6e-05
+ - - -1.548532
+ - -0.498946
+ - 3.5e-05
+ - - -1.043097
+ - 1.139454
+ - -1.1e-05
+ - - 0.320048
+ - 1.241637
+ - -2.5e-05
+ - - 2.742746
+ - -1.247023
+ - -3.0e-06
+ - - 2.915725
+ - 0.271977
+ - 0.879581
+ - - 2.915717
+ - 0.271973
+ - -0.879595
+ - - 0.28635
+ - -2.111952
+ - 6.1e-05
+ - - -1.77063
+ - 1.934031
+ - -2.6e-05
+ - - 0.843436
+ - 2.187519
+ - -5.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.2606651335726
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.466027
+ - -0.193836
+ - -4.0e-06
+ - - 0.976447
+ - -0.026395
+ - 2.0e-06
+ - - 0.076485
+ - -1.05525
+ - 3.4e-05
+ - - -1.55171
+ - -0.499947
+ - 3.3e-05
+ - - -1.041768
+ - 1.140939
+ - -1.0e-05
+ - - 0.317701
+ - 1.241187
+ - -2.3e-05
+ - - 2.74511
+ - -1.247223
+ - 5.0e-06
+ - - 2.915069
+ - 0.273459
+ - 0.879824
+ - - 2.91506
+ - 0.273441
+ - -0.879847
+ - - 0.288238
+ - -2.112313
+ - 5.7e-05
+ - - -1.767956
+ - 1.936946
+ - -2.4e-05
+ - - 0.843566
+ - 2.186104
+ - -5.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 71.38896474421072
+ value: 71.38896474421072
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4877171794
+ - -0.202373336
+ - 7.5969e-06
+ - - 0.9900353441
+ - -0.0229018738
+ - 4.40779e-05
+ - - 0.0802822069
+ - -1.0618556063
+ - -2.4498e-06
+ - - -1.5666360948
+ - -0.5019089308
+ - -5.602e-07
+ - - -1.0447423044
+ - 1.1557293365
+ - 3.7762e-06
+ - - 0.3290913011
+ - 1.2541875067
+ - -5.8652e-06
+ - - 2.7596972541
+ - -1.2671749843
+ - -3.45386e-05
+ - - 2.9421411477
+ - 0.2643409059
+ - 0.8878697344
+ - - 2.942021241
+ - 0.2643300247
+ - -0.8879268958
+ - - 0.2898072718
+ - -2.1285427437
+ - -8.887e-05
+ - - -1.7806102555
+ - 1.9547716957
+ - 3.40759e-05
+ - - 0.8588184944
+ - 2.2061018329
+ - -0.0001273591
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.19553213615879
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.47188
+ - -0.19519
+ - -4.0e-06
+ - - 0.979476
+ - -0.023998
+ - 2.0e-06
+ - - 0.073225
+ - -1.058726
+ - 3.7e-05
+ - - -1.557401
+ - -0.501653
+ - 3.7e-05
+ - - -1.048345
+ - 1.143302
+ - -1.1e-05
+ - - 0.319124
+ - 1.245397
+ - -2.6e-05
+ - - 2.750465
+ - -1.253091
+ - -7.0e-06
+ - - 2.923611
+ - 0.273858
+ - 0.883038
+ - - 2.923605
+ - 0.273863
+ - -0.883047
+ - - 0.282429
+ - -2.120744
+ - 6.3e-05
+ - - -1.781352
+ - 1.939017
+ - -2.7e-05
+ - - 0.845554
+ - 2.195075
+ - -5.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.24321977344127
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.474798
+ - -0.195547
+ - -4.0e-06
+ - - 0.980135
+ - -0.023154
+ - 2.0e-06
+ - - 0.071999
+ - -1.060656
+ - 3.7e-05
+ - - -1.560126
+ - -0.502127
+ - 3.6e-05
+ - - -1.052896
+ - 1.145263
+ - -1.1e-05
+ - - 0.317206
+ - 1.246532
+ - -2.6e-05
+ - - 2.754708
+ - -1.257755
+ - -5.0e-06
+ - - 2.931198
+ - 0.273481
+ - 0.886205
+ - - 2.931191
+ - 0.273482
+ - -0.886217
+ - - 0.279941
+ - -2.128019
+ - 6.2e-05
+ - - -1.789813
+ - 1.94391
+ - -2.6e-05
+ - - 0.843928
+ - 2.2017
+ - -5.6e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.29342575591813
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.461017
+ - -0.193264
+ - -4.0e-06
+ - - 0.973909
+ - -0.02744
+ - 2.0e-06
+ - - 0.077039
+ - -1.049487
+ - 3.1e-05
+ - - -1.540727
+ - -0.495594
+ - 3.0e-05
+ - - -1.036151
+ - 1.135376
+ - -9.0e-06
+ - - 0.316409
+ - 1.237289
+ - -2.1e-05
+ - - 2.740766
+ - -1.245629
+ - 1.7e-05
+ - - 2.909185
+ - 0.273241
+ - 0.879097
+ - - 2.909173
+ - 0.273204
+ - -0.879131
+ - - 0.290576
+ - -2.106139
+ - 5.2e-05
+ - - -1.760212
+ - 1.933153
+ - -2.2e-05
+ - - 0.841286
+ - 2.182402
+ - -4.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.76913481399538
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.471549
+ - -0.194306
+ - -4.0e-06
+ - - 0.976371
+ - -0.027246
+ - 2.0e-06
+ - - 0.076779
+ - -1.058602
+ - 3.1e-05
+ - - -1.559955
+ - -0.501989
+ - 3.0e-05
+ - - -1.045334
+ - 1.146332
+ - -1.0e-05
+ - - 0.315643
+ - 1.243506
+ - -2.1e-05
+ - - 2.753153
+ - -1.24891
+ - 1.7e-05
+ - - 2.922089
+ - 0.272998
+ - 0.881349
+ - - 2.922077
+ - 0.27296
+ - -0.881383
+ - - 0.283074
+ - -2.118297
+ - 5.2e-05
+ - - -1.775566
+ - 1.940721
+ - -2.2e-05
+ - - 0.842391
+ - 2.189945
+ - -4.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.02364680958392
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.464279
+ - -0.194191
+ - -3.0e-06
+ - - 0.97437
+ - -0.027365
+ - 4.0e-06
+ - - 0.076278
+ - -1.051097
+ - 4.0e-06
+ - - -1.543411
+ - -0.496005
+ - -2.0e-06
+ - - -1.038108
+ - 1.136842
+ - -1.0e-06
+ - - 0.31696
+ - 1.240404
+ - 2.0e-06
+ - - 2.74227
+ - -1.247389
+ - 0.000125
+ - - 2.910884
+ - 0.272933
+ - 0.879469
+ - - 2.910851
+ - 0.272708
+ - -0.879612
+ - - 0.290275
+ - -2.108389
+ - 7.0e-06
+ - - -1.764634
+ - 1.93291
+ - -1.0e-06
+ - - 0.842257
+ - 2.18575
+ - 5.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.334029718653294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.464279
+ - -0.194191
+ - -3.0e-06
+ - - 0.97437
+ - -0.027365
+ - 4.0e-06
+ - - 0.076278
+ - -1.051097
+ - 4.0e-06
+ - - -1.543411
+ - -0.496005
+ - -2.0e-06
+ - - -1.038108
+ - 1.136842
+ - -1.0e-06
+ - - 0.31696
+ - 1.240404
+ - 2.0e-06
+ - - 2.74227
+ - -1.247389
+ - 0.000125
+ - - 2.910884
+ - 0.272933
+ - 0.879469
+ - - 2.910851
+ - 0.272708
+ - -0.879612
+ - - 0.290275
+ - -2.108389
+ - 7.0e-06
+ - - -1.764634
+ - 1.93291
+ - -1.0e-06
+ - - 0.842257
+ - 2.18575
+ - 5.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.320664396096692
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.464279
+ - -0.194191
+ - -3.0e-06
+ - - 0.97437
+ - -0.027365
+ - 4.0e-06
+ - - 0.076278
+ - -1.051097
+ - 4.0e-06
+ - - -1.543411
+ - -0.496005
+ - -2.0e-06
+ - - -1.038108
+ - 1.136842
+ - -1.0e-06
+ - - 0.31696
+ - 1.240404
+ - 2.0e-06
+ - - 2.74227
+ - -1.247389
+ - 0.000125
+ - - 2.910884
+ - 0.272933
+ - 0.879469
+ - - 2.910851
+ - 0.272708
+ - -0.879612
+ - - 0.290275
+ - -2.108389
+ - 7.0e-06
+ - - -1.764634
+ - 1.93291
+ - -1.0e-06
+ - - 0.842257
+ - 2.18575
+ - 5.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.574227579338345
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.4877171794
- - -0.202373336
- - 7.5969e-06
- - - 0.9900353441
- - -0.0229018738
- - 4.40779e-05
- - - 0.0802822069
- - -1.0618556063
- - -2.4498e-06
- - - -1.5666360948
- - -0.5019089308
- - -5.602e-07
- - - -1.0447423044
- - 1.1557293365
- - 3.7762e-06
- - - 0.3290913011
- - 1.2541875067
- - -5.8652e-06
- - - 2.7596972541
- - -1.2671749843
- - -3.45386e-05
- - - 2.9421411477
- - 0.2643409059
- - 0.8878697344
- - - 2.942021241
- - 0.2643300247
- - -0.8879268958
- - - 0.2898072718
- - -2.1285427437
- - -8.887e-05
- - - -1.7806102555
- - 1.9547716957
- - 3.40759e-05
- - - 0.8588184944
- - 2.2061018329
- - -0.0001273591
+ - - 2.4695
+ - -0.194412
+ - -4.0e-06
+ - - 0.975329
+ - -0.027543
+ - 2.0e-06
+ - - 0.076885
+ - -1.058612
+ - 3.6e-05
+ - - -1.558939
+ - -0.501766
+ - 3.5e-05
+ - - -1.045636
+ - 1.146858
+ - -1.1e-05
+ - - 0.31438
+ - 1.243336
+ - -2.5e-05
+ - - 2.752218
+ - -1.250186
+ - -3.0e-06
+ - - 2.923337
+ - 0.273813
+ - 0.881073
+ - - 2.923329
+ - 0.273809
+ - -0.881088
+ - - 0.284518
+ - -2.118379
+ - 6.1e-05
+ - - -1.776345
+ - 1.94125
+ - -2.6e-05
+ - - 0.843693
+ - 2.188942
+ - -5.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.37919235057629
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.464688
+ - -0.193981
+ - -4.0e-06
+ - - 0.975357
+ - -0.027433
+ - 2.0e-06
+ - - 0.076038
+ - -1.050908
+ - 3.1e-05
+ - - -1.541781
+ - -0.495722
+ - 3.0e-05
+ - - -1.037303
+ - 1.136405
+ - -1.0e-05
+ - - 0.318168
+ - 1.23984
+ - -2.1e-05
+ - - 2.741509
+ - -1.247067
+ - 1.7e-05
+ - - 2.909176
+ - 0.274107
+ - 0.879992
+ - - 2.909164
+ - 0.274069
+ - -0.880026
+ - - 0.287972
+ - -2.108381
+ - 5.3e-05
+ - - -1.764849
+ - 1.931442
+ - -2.2e-05
+ - - 0.84413
+ - 2.184742
+ - -4.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.12921690179362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.461515
+ - -0.193477
+ - -4.0e-06
+ - - 0.977172
+ - -0.023667
+ - 2.0e-06
+ - - 0.075993
+ - -1.050094
+ - 3.1e-05
+ - - -1.53787
+ - -0.494818
+ - 3.0e-05
+ - - -1.038575
+ - 1.135213
+ - -9.0e-06
+ - - 0.319259
+ - 1.238505
+ - -2.1e-05
+ - - 2.739485
+ - -1.248135
+ - 1.7e-05
+ - - 2.912564
+ - 0.272968
+ - 0.880309
+ - - 2.912553
+ - 0.27293
+ - -0.880343
+ - - 0.285771
+ - -2.109584
+ - 5.2e-05
+ - - -1.768308
+ - 1.930519
+ - -2.2e-05
+ - - 0.842711
+ - 2.186751
+ - -4.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.66587021066788
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.474836
+ - -0.195771
+ - -4.0e-06
+ - - 0.979149
+ - -0.022405
+ - 2.0e-06
+ - - 0.074023
+ - -1.057062
+ - 3.6e-05
+ - - -1.555434
+ - -0.500727
+ - 3.5e-05
+ - - -1.049392
+ - 1.14334
+ - -1.1e-05
+ - - 0.316912
+ - 1.245479
+ - -2.5e-05
+ - - 2.749486
+ - -1.254298
+ - -1.0e-06
+ - - 2.926849
+ - 0.271534
+ - 0.883236
+ - - 2.926841
+ - 0.271527
+ - -0.883253
+ - - 0.281321
+ - -2.119252
+ - 6.0e-05
+ - - -1.782806
+ - 1.938171
+ - -2.5e-05
+ - - 0.840484
+ - 2.196577
+ - -5.4e-05
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.77334518929044
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4642792909
+ - -0.1941909343
+ - -2.8924e-06
+ - - 0.9743703277
+ - -0.0273650237
+ - 4.4199e-06
+ - - 0.0762778018
+ - -1.0510972077
+ - 3.5063e-06
+ - - -1.5434111741
+ - -0.4960050803
+ - -1.733e-06
+ - - -1.0381082848
+ - 1.1368424776
+ - -1.0772e-06
+ - - 0.3169602164
+ - 1.2404036539
+ - 1.9652e-06
+ - - 2.742269533
+ - -1.2473885989
+ - 0.0001246731
+ - - 2.9108844404
+ - 0.2729329389
+ - 0.8794691644
+ - - 2.9108505372
+ - 0.2727082289
+ - -0.8796123722
+ - - 0.2902753063
+ - -2.1083888822
+ - 6.5799e-06
+ - - -1.7646338305
+ - 1.9329101167
+ - -6.992e-07
+ - - 0.842256687
+ - 2.1857496868
+ - 4.8522e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.97012340573331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.463144
+ - -0.193733
+ - -4.0e-06
+ - - 0.974596
+ - -0.026816
+ - 3.0e-06
+ - - 0.075988
+ - -1.050573
+ - 2.8e-05
+ - - -1.540564
+ - -0.495358
+ - 2.6e-05
+ - - -1.037599
+ - 1.13571
+ - -8.0e-06
+ - - 0.3173
+ - 1.238183
+ - -1.8e-05
+ - - 2.742141
+ - -1.247128
+ - 2.9e-05
+ - - 2.909405
+ - 0.273802
+ - 0.880304
+ - - 2.909391
+ - 0.273743
+ - -0.880351
+ - - 0.289127
+ - -2.108119
+ - 4.7e-05
+ - - -1.762813
+ - 1.933396
+ - -2.0e-05
+ - - 0.842156
+ - 2.184006
+ - -3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/34-Dihydro-2H-pyran.yml b/input/reference_sets/main/34-Dihydro-2H-pyran.yml
index ba7e193683..d9239df4a5 100644
--- a/input/reference_sets/main/34-Dihydro-2H-pyran.yml
+++ b/input/reference_sets/main/34-Dihydro-2H-pyran.yml
@@ -105,7 +105,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -28.86623250056607
+ value: -28.866232500566053
class: ThermoData
xyz_dict:
coords:
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.528091411465857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.483215
+ - -1.233438
+ - 0.300769
+ - - -0.883059
+ - -1.00887
+ - -0.323492
+ - - -1.435009
+ - 0.34503
+ - 0.123692
+ - - -0.342075
+ - 1.373621
+ - 0.062554
+ - - 0.941471
+ - 1.035962
+ - -0.079177
+ - - 1.426149
+ - -0.23562
+ - -0.108628
+ - - 0.408863
+ - -1.205277
+ - 1.393238
+ - - 0.919743
+ - -2.184426
+ - 0.003037
+ - - -0.777688
+ - -1.027734
+ - -1.410338
+ - - -1.550613
+ - -1.825166
+ - -0.042493
+ - - -2.266164
+ - 0.643848
+ - -0.519195
+ - - -1.84447
+ - 0.272136
+ - 1.136385
+ - - -0.588934
+ - 2.425644
+ - 0.091519
+ - - 1.736066
+ - 1.760385
+ - -0.192827
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.540235594364706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.486474
+ - -1.237325
+ - 0.298381
+ - - -0.884378
+ - -1.011051
+ - -0.319113
+ - - -1.433622
+ - 0.348645
+ - 0.120599
+ - - -0.340577
+ - 1.377797
+ - 0.059045
+ - - 0.94108
+ - 1.040819
+ - -0.074497
+ - - 1.425359
+ - -0.23066
+ - -0.099154
+ - - 0.415771
+ - -1.225745
+ - 1.392308
+ - - 0.92462
+ - -2.18435
+ - -0.012712
+ - - -0.787285
+ - -1.03817
+ - -1.407332
+ - - -1.552765
+ - -1.824491
+ - -0.029491
+ - - -2.264549
+ - 0.644729
+ - -0.525496
+ - - -1.847926
+ - 0.281901
+ - 1.132985
+ - - -0.592441
+ - 2.429332
+ - 0.084369
+ - - 1.737736
+ - 1.764664
+ - -0.184849
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 11.96400048522478
+ value: 11.96400048522478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5484457909
+ - -1.2226509272
+ - 0.2935124775
+ - - -0.8425174823
+ - -1.0600633515
+ - -0.3304416759
+ - - -1.4609608884
+ - 0.2771109921
+ - 0.1311441834
+ - - -0.4150786113
+ - 1.3682063916
+ - 0.0633022564
+ - - 0.8952901147
+ - 1.0877314991
+ - -0.0850394605
+ - - 1.4496918176
+ - -0.1661386608
+ - -0.1077929883
+ - - 0.4679679525
+ - -1.2114376171
+ - 1.394736355
+ - - 1.0351894298
+ - -2.1550846691
+ - -0.0201846261
+ - - -0.7371620784
+ - -1.0632499341
+ - -1.4256702365
+ - - -1.4753031094
+ - -1.9153484708
+ - -0.0491476799
+ - - -2.321102226
+ - 0.5328393174
+ - -0.5095526714
+ - - -1.8611078809
+ - 0.1757614753
+ - 1.1560583748
+ - - -0.7231215686
+ - 2.4134672558
+ - 0.0881754015
+ - - 1.6660313989
+ - 1.8501543045
+ - -0.2069376966
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.661167975370583
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.486533
+ - -1.241241
+ - 0.300472
+ - - -0.885892
+ - -1.011864
+ - -0.321862
+ - - -1.437049
+ - 0.34965
+ - 0.12319
+ - - -0.343226
+ - 1.381005
+ - 0.060322
+ - - 0.946001
+ - 1.042634
+ - -0.075816
+ - - 1.437706
+ - -0.231997
+ - -0.096029
+ - - 0.413353
+ - -1.226016
+ - 1.398751
+ - - 0.927748
+ - -2.192124
+ - -0.010873
+ - - -0.785497
+ - -1.034495
+ - -1.414003
+ - - -1.556781
+ - -1.830235
+ - -0.03531
+ - - -2.27383
+ - 0.646346
+ - -0.523043
+ - - -1.851887
+ - 0.278667
+ - 1.140294
+ - - -0.596114
+ - 2.437061
+ - 0.081382
+ - - 1.746432
+ - 1.768704
+ - -0.192431
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.14253262731015
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.488947
+ - -1.242459
+ - 0.29984
+ - - -0.886775
+ - -1.01315
+ - -0.320455
+ - - -1.439794
+ - 0.350874
+ - 0.122651
+ - - -0.343923
+ - 1.383206
+ - 0.063398
+ - - 0.948633
+ - 1.044282
+ - -0.075947
+ - - 1.44286
+ - -0.232666
+ - -0.098536
+ - - 0.419738
+ - -1.229796
+ - 1.403514
+ - - 0.931786
+ - -2.197705
+ - -0.013478
+ - - -0.789279
+ - -1.040471
+ - -1.417914
+ - - -1.559529
+ - -1.835701
+ - -0.031374
+ - - -2.277192
+ - 0.64937
+ - -0.530362
+ - - -1.864591
+ - 0.282265
+ - 1.141141
+ - - -0.595812
+ - 2.444464
+ - 0.086498
+ - - 1.752429
+ - 1.773582
+ - -0.193932
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.708978038909416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.48491
+ - -1.231533
+ - 0.29682
+ - - -0.882255
+ - -1.00857
+ - -0.318298
+ - - -1.430634
+ - 0.345918
+ - 0.119585
+ - - -0.338936
+ - 1.372633
+ - 0.059823
+ - - 0.936912
+ - 1.036657
+ - -0.075095
+ - - 1.415667
+ - -0.231388
+ - -0.104412
+ - - 0.414607
+ - -1.216941
+ - 1.390174
+ - - 0.920865
+ - -2.180396
+ - -0.009705
+ - - -0.784827
+ - -1.036855
+ - -1.405727
+ - - -1.549139
+ - -1.822161
+ - -0.028926
+ - - -2.259483
+ - 0.643447
+ - -0.526473
+ - - -1.844422
+ - 0.280405
+ - 1.130759
+ - - -0.588969
+ - 2.423998
+ - 0.089461
+ - - 1.7332
+ - 1.760882
+ - -0.18294
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.106840846586255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.490721
+ - -1.239616
+ - 0.297603
+ - - -0.887436
+ - -1.015134
+ - -0.317607
+ - - -1.438118
+ - 0.351101
+ - 0.118974
+ - - -0.340446
+ - 1.382564
+ - 0.060921
+ - - 0.943634
+ - 1.043342
+ - -0.073247
+ - - 1.429928
+ - -0.230547
+ - -0.104011
+ - - 0.42358
+ - -1.229768
+ - 1.393483
+ - - 0.930662
+ - -2.186787
+ - -0.015716
+ - - -0.792769
+ - -1.046161
+ - -1.407665
+ - - -1.556565
+ - -1.82912
+ - -0.023705
+ - - -2.267193
+ - 0.646864
+ - -0.53309
+ - - -1.859558
+ - 0.287355
+ - 1.13084
+ - - -0.592675
+ - 2.435832
+ - 0.089863
+ - - 1.743731
+ - 1.766171
+ - -0.181597
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.388746866131141
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.482127
+ - -1.228411
+ - 0.300242
+ - - -0.882423
+ - -1.009164
+ - -0.326293
+ - - -1.434324
+ - 0.341654
+ - 0.123605
+ - - -0.338555
+ - 1.369117
+ - 0.065756
+ - - 0.938754
+ - 1.033258
+ - -0.08231
+ - - 1.420658
+ - -0.238338
+ - -0.120007
+ - - 0.405003
+ - -1.187199
+ - 1.393175
+ - - 0.916462
+ - -2.184766
+ - 0.015711
+ - - -0.773951
+ - -1.026125
+ - -1.413553
+ - - -1.548638
+ - -1.827333
+ - -0.047957
+ - - -2.264251
+ - 0.645651
+ - -0.518114
+ - - -1.842381
+ - 0.267018
+ - 1.136712
+ - - -0.584282
+ - 2.421845
+ - 0.102583
+ - - 1.733297
+ - 1.758888
+ - -0.194506
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.20025181009966
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.482127
+ - -1.228411
+ - 0.300242
+ - - -0.882423
+ - -1.009164
+ - -0.326293
+ - - -1.434324
+ - 0.341654
+ - 0.123605
+ - - -0.338555
+ - 1.369117
+ - 0.065756
+ - - 0.938754
+ - 1.033258
+ - -0.08231
+ - - 1.420658
+ - -0.238338
+ - -0.120007
+ - - 0.405003
+ - -1.187199
+ - 1.393175
+ - - 0.916462
+ - -2.184766
+ - 0.015711
+ - - -0.773951
+ - -1.026125
+ - -1.413553
+ - - -1.548638
+ - -1.827333
+ - -0.047957
+ - - -2.264251
+ - 0.645651
+ - -0.518114
+ - - -1.842381
+ - 0.267018
+ - 1.136712
+ - - -0.584282
+ - 2.421845
+ - 0.102583
+ - - 1.733297
+ - 1.758888
+ - -0.194506
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.498290094406435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.482127
+ - -1.228411
+ - 0.300242
+ - - -0.882423
+ - -1.009164
+ - -0.326293
+ - - -1.434324
+ - 0.341654
+ - 0.123605
+ - - -0.338555
+ - 1.369117
+ - 0.065756
+ - - 0.938754
+ - 1.033258
+ - -0.08231
+ - - 1.420658
+ - -0.238338
+ - -0.120007
+ - - 0.405003
+ - -1.187199
+ - 1.393175
+ - - 0.916462
+ - -2.184766
+ - 0.015711
+ - - -0.773951
+ - -1.026125
+ - -1.413553
+ - - -1.548638
+ - -1.827333
+ - -0.047957
+ - - -2.264251
+ - 0.645651
+ - -0.518114
+ - - -1.842381
+ - 0.267018
+ - 1.136712
+ - - -0.584282
+ - 2.421845
+ - 0.102583
+ - - 1.733297
+ - 1.758888
+ - -0.194506
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.53421083027375
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.493059
+ - -1.235391
+ - 0.296916
+ - - -0.886409
+ - -1.012986
+ - -0.319195
+ - - -1.438486
+ - 0.352055
+ - 0.120607
+ - - -0.340526
+ - 1.381577
+ - 0.0598
+ - - 0.942005
+ - 1.039668
+ - -0.073318
+ - - 1.429313
+ - -0.23017
+ - -0.099852
+ - - 0.420632
+ - -1.230497
+ - 1.394591
+ - - 0.932311
+ - -2.186258
+ - -0.014833
+ - - -0.791953
+ - -1.042194
+ - -1.410607
+ - - -1.553598
+ - -1.830198
+ - -0.026125
+ - - -2.271869
+ - 0.64711
+ - -0.528705
+ - - -1.859913
+ - 0.286069
+ - 1.133921
+ - - -0.59183
+ - 2.435816
+ - 0.08488
+ - - 1.744761
+ - 1.761493
+ - -0.183036
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.23301209715861
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.5484457909
- - -1.2226509272
- - 0.2935124775
- - - -0.8425174823
- - -1.0600633515
- - -0.3304416759
- - - -1.4609608884
- - 0.2771109921
- - 0.1311441834
- - - -0.4150786113
- - 1.3682063916
- - 0.0633022564
- - - 0.8952901147
- - 1.0877314991
- - -0.0850394605
- - - 1.4496918176
- - -0.1661386608
- - -0.1077929883
- - - 0.4679679525
- - -1.2114376171
- - 1.394736355
- - - 1.0351894298
- - -2.1550846691
- - -0.0201846261
- - - -0.7371620784
- - -1.0632499341
- - -1.4256702365
- - - -1.4753031094
- - -1.9153484708
- - -0.0491476799
- - - -2.321102226
- - 0.5328393174
- - -0.5095526714
- - - -1.8611078809
- - 0.1757614753
- - 1.1560583748
- - - -0.7231215686
- - 2.4134672558
- - 0.0881754015
- - - 1.6660313989
- - 1.8501543045
- - -0.2069376966
+ - - 0.483472
+ - -1.228073
+ - 0.300881
+ - - -0.882283
+ - -1.009076
+ - -0.32665
+ - - -1.434195
+ - 0.341558
+ - 0.124683
+ - - -0.339361
+ - 1.369399
+ - 0.064592
+ - - 0.937649
+ - 1.031051
+ - -0.08282
+ - - 1.415459
+ - -0.238418
+ - -0.11654
+ - - 0.404123
+ - -1.187191
+ - 1.393592
+ - - 0.91799
+ - -2.184209
+ - 0.015346
+ - - -0.770274
+ - -1.021037
+ - -1.413187
+ - - -1.549243
+ - -1.826902
+ - -0.051075
+ - - -2.265065
+ - 0.644759
+ - -0.515799
+ - - -1.838967
+ - 0.266885
+ - 1.138734
+ - - -0.585245
+ - 2.421701
+ - 0.099214
+ - - 1.733436
+ - 1.755648
+ - -0.195925
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.54068508684792
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.485237
+ - -1.22682
+ - 0.296657
+ - - -0.880822
+ - -1.005437
+ - -0.319459
+ - - -1.431274
+ - 0.34507
+ - 0.121848
+ - - -0.341506
+ - 1.369205
+ - 0.06271
+ - - 0.938075
+ - 1.029999
+ - -0.076992
+ - - 1.419315
+ - -0.233532
+ - -0.104059
+ - - 0.411887
+ - -1.209558
+ - 1.392266
+ - - 0.919917
+ - -2.180463
+ - -0.005542
+ - - -0.781851
+ - -1.029747
+ - -1.409019
+ - - -1.546563
+ - -1.824005
+ - -0.033748
+ - - -2.262586
+ - 0.643711
+ - -0.524914
+ - - -1.848417
+ - 0.276735
+ - 1.134361
+ - - -0.587874
+ - 2.423568
+ - 0.09056
+ - - 1.733958
+ - 1.757369
+ - -0.189623
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.8183648027595094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.485567
+ - -1.24296
+ - 0.303255
+ - - -0.886391
+ - -1.012072
+ - -0.323452
+ - - -1.440213
+ - 0.349594
+ - 0.125031
+ - - -0.343207
+ - 1.380459
+ - 0.062865
+ - - 0.9456
+ - 1.043103
+ - -0.077715
+ - - 1.440022
+ - -0.233584
+ - -0.099737
+ - - 0.416296
+ - -1.221439
+ - 1.400443
+ - - 0.929341
+ - -2.191988
+ - -0.007063
+ - - -0.783304
+ - -1.032247
+ - -1.414971
+ - - -1.557639
+ - -1.83092
+ - -0.039263
+ - - -2.273901
+ - 0.647905
+ - -0.523843
+ - - -1.856685
+ - 0.277162
+ - 1.14079
+ - - -0.594845
+ - 2.436706
+ - 0.085165
+ - - 1.746855
+ - 1.766376
+ - -0.196459
isotopes:
- 12
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.979195316512826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.4821267307
+ - -1.2284112614
+ - 0.3002418216
+ - - -0.8824227983
+ - -1.0091642509
+ - -0.3262932009
+ - - -1.4343243668
+ - 0.3416543397
+ - 0.1236054601
+ - - -0.3385546941
+ - 1.3691165243
+ - 0.0657564125
+ - - 0.9387543321
+ - 1.0332584183
+ - -0.082310268
+ - - 1.4206582604
+ - -0.2383377093
+ - -0.1200065628
+ - - 0.4050028476
+ - -1.1871985697
+ - 1.3931753245
+ - - 0.9164619334
+ - -2.1847664199
+ - 0.0157112022
+ - - -0.7739513207
+ - -1.0261252221
+ - -1.4135529773
+ - - -1.5486377905
+ - -1.8273330052
+ - -0.0479567433
+ - - -2.2642513145
+ - 0.6456510214
+ - -0.51811385
+ - - -1.8423806368
+ - 0.2670181997
+ - 1.1367119163
+ - - -0.5842816926
+ - 2.4218454489
+ - 0.1025826554
+ - - 1.7332966688
+ - 1.7588876011
+ - -0.1945063765
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.268050669823474
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.48676
+ - -1.229358
+ - 0.296937
+ - - -0.882943
+ - -1.008343
+ - -0.320674
+ - - -1.433226
+ - 0.346044
+ - 0.120939
+ - - -0.339765
+ - 1.372883
+ - 0.059269
+ - - 0.938193
+ - 1.033666
+ - -0.074393
+ - - 1.418094
+ - -0.231442
+ - -0.099762
+ - - 0.411436
+ - -1.216684
+ - 1.391206
+ - - 0.922179
+ - -2.179282
+ - -0.00991
+ - - -0.7854
+ - -1.034337
+ - -1.408782
+ - - -1.547764
+ - -1.823796
+ - -0.030568
+ - - -2.263439
+ - 0.644263
+ - -0.523781
+ - - -1.84267
+ - 0.278199
+ - 1.134363
+ - - -0.588081
+ - 2.425202
+ - 0.084632
+ - - 1.734122
+ - 1.759079
+ - -0.184432
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/4-Methylene-2-oxetanone.yml b/input/reference_sets/main/4-Methylene-2-oxetanone.yml
index 7ca357b44f..bb3bd87213 100644
--- a/input/reference_sets/main/4-Methylene-2-oxetanone.yml
+++ b/input/reference_sets/main/4-Methylene-2-oxetanone.yml
@@ -17,7 +17,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -45.27863266612565
+ value: -45.27863266612564
class: ThermoData
xyz_dict:
coords:
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.892137003199203
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.224764
+ - -0.18313
+ - 0.0
+ - - 1.054769
+ - -0.00341
+ - 0.0
+ - - 0.053782
+ - 1.147934
+ - 0.0
+ - - 0.042792
+ - -0.969793
+ - 0.0
+ - - -0.953178
+ - 0.030966
+ - 0.0
+ - - -2.257885
+ - -0.155253
+ - 0.0
+ - - 0.088936
+ - 1.768724
+ - -0.89285
+ - - 0.088936
+ - 1.768724
+ - 0.89285
+ - - -2.921268
+ - 0.69546
+ - 0.0
+ - - -2.677868
+ - -1.149774
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.439843426137834
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.224305
+ - -0.185651
+ - 0.0
+ - - 1.057459
+ - -0.004983
+ - 0.0
+ - - 0.054445
+ - 1.147399
+ - 0.0
+ - - 0.044246
+ - -0.966813
+ - 0.0
+ - - -0.955152
+ - 0.030594
+ - 0.0
+ - - -2.256995
+ - -0.155558
+ - 0.0
+ - - 0.089161
+ - 1.770878
+ - -0.892294
+ - - 0.089161
+ - 1.770878
+ - 0.892294
+ - - -2.923606
+ - 0.693865
+ - 0.0
+ - - -2.679242
+ - -1.15016
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,47 +331,879 @@ calculated_data:
- H
- H
- H
- LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -48.81106021870497
+ value: -28.129162841209947
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2122937382
- - -0.18626468559999995
+ - - 2.242137
+ - -0.182744
- 0.0
- - - 1.0463832848
- - -0.005689606799999999
+ - - 1.069041
+ - -0.002242
- 0.0
- - - 0.053619757
- - 1.1502014112
+ - - 0.055146
+ - 1.14668
- 0.0
- - - 0.0417392733
- - -0.9643401546999999
+ - - 0.046294
+ - -0.978629
- 0.0
- - - -0.9524754296
- - 0.0317174201
+ - - -0.955648
+ - 0.028223
- 0.0
- - - -2.2519301479
- - -0.1554716414
+ - - -2.265251
+ - -0.156395
- 0.0
- - - 0.0897159318
- - 1.7686373948
- - -0.894022622
- - - 0.0897159318
- - 1.7686373948
- - 0.894022622
- - - -2.9164437683
- - 0.6950545637999999
+ - - 0.088201
+ - 1.774548
+ - -0.895019
+ - - 0.088201
+ - 1.774548
+ - 0.895019
+ - - -2.930782
+ - 0.699557
- 0.0
- - - -2.6688376615999996
- - -1.152034722
+ - - -2.693558
+ - -1.153098
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.03474179211524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.244401
+ - -0.186067
+ - 0.0
+ - - 1.066625
+ - -0.003012
+ - 0.0
+ - - 0.056935
+ - 1.149306
+ - 0.0
+ - - 0.044963
+ - -0.982156
+ - 0.0
+ - - -0.953877
+ - 0.029388
+ - 0.0
+ - - -2.266754
+ - -0.157401
+ - 0.0
+ - - 0.091972
+ - 1.780283
+ - -0.898548
+ - - 0.091972
+ - 1.780283
+ - 0.898548
+ - - -2.938433
+ - 0.699311
+ - 0.0
+ - - -2.694022
+ - -1.159487
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.270022029566086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.208746
+ - -0.187059
+ - 0.0
+ - - 1.045804
+ - -0.005927
+ - 0.0
+ - - 0.053875
+ - 1.147059
+ - 0.0
+ - - 0.041157
+ - -0.958813
+ - 0.0
+ - - -0.95252
+ - 0.032377
+ - 0.0
+ - - -2.24914
+ - -0.154677
+ - 0.0
+ - - 0.09005
+ - 1.767801
+ - -0.892561
+ - - 0.09005
+ - 1.767801
+ - 0.892561
+ - - -2.917494
+ - 0.692599
+ - 0.0
+ - - -2.666745
+ - -1.150714
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.89559830073733
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.225263
+ - -0.188561
+ - 0.0
+ - - 1.057193
+ - -0.006811
+ - 0.0
+ - - 0.055713
+ - 1.150685
+ - 0.0
+ - - 0.043977
+ - -0.969011
+ - 0.0
+ - - -0.953305
+ - 0.029204
+ - 0.0
+ - - -2.25883
+ - -0.155807
+ - 0.0
+ - - 0.090624
+ - 1.775181
+ - -0.893722
+ - - 0.090624
+ - 1.775181
+ - 0.893722
+ - - -2.928458
+ - 0.693119
+ - 0.0
+ - - -2.679019
+ - -1.152733
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.00575073915863
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.212294
+ - -0.186265
+ - 0.0
+ - - 1.046383
+ - -0.00569
+ - 0.0
+ - - 0.05362
+ - 1.150201
+ - 0.0
+ - - 0.041739
+ - -0.96434
+ - 0.0
+ - - -0.952475
+ - 0.031717
+ - 0.0
+ - - -2.25193
+ - -0.155472
+ - 0.0
+ - - 0.089716
+ - 1.768637
+ - -0.894023
+ - - 0.089716
+ - 1.768637
+ - 0.894023
+ - - -2.916444
+ - 0.695055
+ - 0.0
+ - - -2.668838
+ - -1.152035
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.48917827140736
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.212294
+ - -0.186265
+ - 0.0
+ - - 1.046383
+ - -0.00569
+ - 0.0
+ - - 0.05362
+ - 1.150201
+ - 0.0
+ - - 0.041739
+ - -0.96434
+ - 0.0
+ - - -0.952475
+ - 0.031717
+ - 0.0
+ - - -2.25193
+ - -0.155472
+ - 0.0
+ - - 0.089716
+ - 1.768637
+ - -0.894023
+ - - 0.089716
+ - 1.768637
+ - 0.894023
+ - - -2.916444
+ - 0.695055
+ - 0.0
+ - - -2.668838
+ - -1.152035
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.76871274451087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.212294
+ - -0.186265
+ - 0.0
+ - - 1.046383
+ - -0.00569
+ - 0.0
+ - - 0.05362
+ - 1.150201
+ - 0.0
+ - - 0.041739
+ - -0.96434
+ - 0.0
+ - - -0.952475
+ - 0.031717
+ - 0.0
+ - - -2.25193
+ - -0.155472
+ - 0.0
+ - - 0.089716
+ - 1.768637
+ - -0.894023
+ - - 0.089716
+ - 1.768637
+ - 0.894023
+ - - -2.916444
+ - 0.695055
+ - 0.0
+ - - -2.668838
+ - -1.152035
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.1857519041424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.225686
+ - -0.192875
+ - 0.0
+ - - 1.057261
+ - -0.008167
+ - 0.0
+ - - 0.055294
+ - 1.151292
+ - 0.0
+ - - 0.044134
+ - -0.966921
+ - 0.0
+ - - -0.952501
+ - 0.028366
+ - 0.0
+ - - -2.256957
+ - -0.157827
+ - 0.0
+ - - 0.089998
+ - 1.779159
+ - -0.892821
+ - - 0.089998
+ - 1.779159
+ - 0.892821
+ - - -2.927065
+ - 0.6915
+ - 0.0
+ - - -2.682065
+ - -1.153238
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.21098347098674
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.205981
+ - -0.188365
+ - 0.0
+ - - 1.042865
+ - -0.007159
+ - 0.0
+ - - 0.053548
+ - 1.151561
+ - 0.0
+ - - 0.041197
+ - -0.959498
+ - 0.0
+ - - -0.949665
+ - 0.030445
+ - 0.0
+ - - -2.249608
+ - -0.155617
+ - 0.0
+ - - 0.089507
+ - 1.768509
+ - -0.894988
+ - - 0.089507
+ - 1.768509
+ - 0.894988
+ - - -2.914156
+ - 0.694697
+ - 0.0
+ - - -2.665396
+ - -1.152635
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.48491701528939
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.209717
+ - -0.186251
+ - 0.0
+ - - 1.044822
+ - -0.005228
+ - 0.0
+ - - 0.053277
+ - 1.145909
+ - 0.0
+ - - 0.041958
+ - -0.960238
+ - 0.0
+ - - -0.947835
+ - 0.029922
+ - 0.0
+ - - -2.249498
+ - -0.155695
+ - 0.0
+ - - 0.088817
+ - 1.769033
+ - -0.893837
+ - - 0.088817
+ - 1.769033
+ - 0.893837
+ - - -2.915164
+ - 0.695938
+ - 0.0
+ - - -2.67113
+ - -1.151975
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.9813102722312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.238889
+ - -0.18729
+ - 0.0
+ - - 1.063162
+ - -0.002079
+ - 0.0
+ - - 0.056548
+ - 1.149654
+ - 0.0
+ - - 0.044724
+ - -0.978056
+ - 0.0
+ - - -0.954608
+ - 0.032158
+ - 0.0
+ - - -2.264156
+ - -0.157179
+ - 0.0
+ - - 0.091441
+ - 1.776711
+ - -0.894919
+ - - 0.091441
+ - 1.776711
+ - 0.894919
+ - - -2.934356
+ - 0.694361
+ - 0.0
+ - - -2.689303
+ - -1.154543
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.81106021870497
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2122937382
+ - -0.18626468559999995
+ - 0.0
+ - - 1.0463832848
+ - -0.005689606799999999
+ - 0.0
+ - - 0.053619757
+ - 1.1502014112
+ - 0.0
+ - - 0.0417392733
+ - -0.9643401546999999
+ - 0.0
+ - - -0.9524754296
+ - 0.0317174201
+ - 0.0
+ - - -2.2519301479
+ - -0.1554716414
+ - 0.0
+ - - 0.0897159318
+ - 1.7686373948
+ - -0.894022622
+ - - 0.0897159318
+ - 1.7686373948
+ - 0.894022622
+ - - -2.9164437683
+ - 0.6950545637999999
+ - 0.0
+ - - -2.6688376615999996
+ - -1.152034722
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.11643450733785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2122937382
+ - -0.1862646856
+ - 0.0
+ - - 1.0463832848
+ - -0.0056896068
+ - 0.0
+ - - 0.053619757
+ - 1.1502014112
+ - 0.0
+ - - 0.0417392733
+ - -0.9643401547
+ - 0.0
+ - - -0.9524754296
+ - 0.0317174201
+ - 0.0
+ - - -2.2519301479
+ - -0.1554716414
+ - 0.0
+ - - 0.0897159318
+ - 1.7686373948
+ - -0.894022622
+ - - 0.0897159318
+ - 1.7686373948
+ - 0.894022622
+ - - -2.9164437683
+ - 0.6950545638
+ - 0.0
+ - - -2.6688376616
+ - -1.152034722
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.69624055632004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.208783
+ - -0.187739
+ - 0.0
+ - - 1.04487
+ - -0.00674
+ - 0.0
+ - - 0.053055
+ - 1.148827
+ - 0.0
+ - - 0.042279
+ - -0.959872
+ - 0.0
+ - - -0.948878
+ - 0.02927
+ - 0.0
+ - - -2.248601
+ - -0.155877
+ - 0.0
+ - - 0.087186
+ - 1.768901
+ - -0.893827
+ - - 0.087186
+ - 1.768901
+ - 0.893827
+ - - -2.912294
+ - 0.69593
+ - 0.0
+ - - -2.669806
+ - -1.151154
- 0.0
isotopes:
- 16
diff --git a/input/reference_sets/main/4-Methylthiazole.yml b/input/reference_sets/main/4-Methylthiazole.yml
index bee40b0d74..759d65b21c 100644
--- a/input/reference_sets/main/4-Methylthiazole.yml
+++ b/input/reference_sets/main/4-Methylthiazole.yml
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.27103252771958
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.434643
+ - -0.165669
+ - -7.6e-05
+ - - 0.947162
+ - -0.033561
+ - -1.3e-05
+ - - 0.044416
+ - -1.06204
+ - 0.000279
+ - - -1.558134
+ - -0.451941
+ - 0.000241
+ - - -0.917159
+ - 1.148666
+ - -0.000166
+ - - 0.382951
+ - 1.221308
+ - -0.000265
+ - - 2.736153
+ - -1.211698
+ - 0.000141
+ - - 2.859233
+ - 0.32054
+ - 0.878865
+ - - 2.859123
+ - 0.320143
+ - -0.879289
+ - - 0.24201
+ - -2.12077
+ - 0.000509
+ - - -1.568979
+ - 2.009241
+ - -0.000322
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.43910773624174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.433983
+ - -0.166307
+ - -7.6e-05
+ - - 0.946425
+ - -0.036461
+ - -1.2e-05
+ - - 0.045774
+ - -1.062331
+ - 0.000278
+ - - -1.56165
+ - -0.452891
+ - 0.00024
+ - - -0.91607
+ - 1.150891
+ - -0.000166
+ - - 0.378643
+ - 1.2185
+ - -0.000262
+ - - 2.738758
+ - -1.212101
+ - 0.000145
+ - - 2.859388
+ - 0.321673
+ - 0.879058
+ - - 2.859277
+ - 0.32127
+ - -0.879487
+ - - 0.243821
+ - -2.121032
+ - 0.000507
+ - - -1.566933
+ - 2.013006
+ - -0.000322
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 63.900052650557974
+ value: 63.900052650557974
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4537104572
+ - -0.1829098928
+ - 3.04056e-05
+ - - 0.9581859099
+ - -0.0301879711
+ - 0.0001320334
+ - - 0.0453865305
+ - -1.0660601944
+ - -0.0002353168
+ - - -1.5794276251
+ - -0.4534444514
+ - 0.0001346599
+ - - -0.9080225903
+ - 1.1695643988
+ - -0.000297424
+ - - 0.3976449606
+ - 1.2361080056
+ - 0.0001509015
+ - - 2.7402365979
+ - -1.2429460966
+ - 0.0004904902
+ - - 2.8892957337
+ - 0.3007528575
+ - 0.8868398287
+ - - 2.8889585418
+ - 0.2997851969
+ - -0.88749039
+ - - 0.2390333061
+ - -2.1348675847
+ - -0.0004663969
+ - - -1.5657587466
+ - 2.0371927664
+ - -0.0003625892
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.017142184137334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.440221
+ - -0.166768
+ - -7.6e-05
+ - - 0.949504
+ - -0.032064
+ - -1.3e-05
+ - - 0.042525
+ - -1.064399
+ - 0.000279
+ - - -1.567992
+ - -0.457098
+ - 0.000242
+ - - -0.922132
+ - 1.154632
+ - -0.000166
+ - - 0.379965
+ - 1.225789
+ - -0.000264
+ - - 2.7422
+ - -1.217701
+ - 0.000145
+ - - 2.869442
+ - 0.321826
+ - 0.882333
+ - - 2.869331
+ - 0.321422
+ - -0.882763
+ - - 0.238523
+ - -2.128182
+ - 0.00051
+ - - -1.580171
+ - 2.016762
+ - -0.000322
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.448392207270814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.441794
+ - -0.166419
+ - -7.6e-05
+ - - 0.94866
+ - -0.032189
+ - -1.3e-05
+ - - 0.039981
+ - -1.067574
+ - 0.00028
+ - - -1.571064
+ - -0.457683
+ - 0.000242
+ - - -0.92447
+ - 1.156366
+ - -0.000167
+ - - 0.381037
+ - 1.227854
+ - -0.000265
+ - - 2.748298
+ - -1.220632
+ - 0.000146
+ - - 2.873795
+ - 0.324446
+ - 0.885317
+ - - 2.873684
+ - 0.32404
+ - -0.885749
+ - - 0.23469
+ - -2.136646
+ - 0.000512
+ - - -1.584989
+ - 2.022656
+ - -0.000323
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.33465555032845
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.428112
+ - -0.166007
+ - -7.5e-05
+ - - 0.942949
+ - -0.038262
+ - -1.1e-05
+ - - 0.046402
+ - -1.057871
+ - 0.000278
+ - - -1.549651
+ - -0.446431
+ - 0.000239
+ - - -0.910376
+ - 1.143834
+ - -0.000166
+ - - 0.378349
+ - 1.213251
+ - -0.000263
+ - - 2.735191
+ - -1.210319
+ - 0.000143
+ - - 2.851554
+ - 0.322277
+ - 0.878234
+ - - 2.851444
+ - 0.321878
+ - -0.87866
+ - - 0.246317
+ - -2.115909
+ - 0.000508
+ - - -1.558876
+ - 2.007778
+ - -0.000323
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.100266617257265
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.437795
+ - -0.166111
+ - -7.5e-05
+ - - 0.944515
+ - -0.037621
+ - -1.1e-05
+ - - 0.044856
+ - -1.066841
+ - 0.000278
+ - - -1.57023
+ - -0.4554
+ - 0.000239
+ - - -0.916197
+ - 1.155588
+ - -0.000167
+ - - 0.379082
+ - 1.22112
+ - -0.000262
+ - - 2.74759
+ - -1.212349
+ - 0.000145
+ - - 2.863237
+ - 0.323539
+ - 0.880289
+ - - 2.863127
+ - 0.323136
+ - -0.880717
+ - - 0.23806
+ - -2.127966
+ - 0.000507
+ - - -1.570419
+ - 2.017126
+ - -0.000322
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.851259106929206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.430744
+ - -0.166589
+ - -2.6e-05
+ - - 0.942721
+ - -0.037579
+ - 4.4e-05
+ - - 0.045768
+ - -1.059228
+ - 3.4e-05
+ - - -1.552087
+ - -0.446355
+ - -1.9e-05
+ - - -0.911753
+ - 1.144265
+ - -5.0e-06
+ - - 0.380414
+ - 1.21946
+ - 2.3e-05
+ - - 2.735316
+ - -1.211895
+ - 0.000989
+ - - 2.852961
+ - 0.322397
+ - 0.878354
+ - - 2.852744
+ - 0.320581
+ - -0.879529
+ - - 0.246993
+ - -2.117623
+ - 4.6e-05
+ - - -1.562404
+ - 2.006785
+ - -7.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.266536672874597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.430744
+ - -0.166589
+ - -2.6e-05
+ - - 0.942721
+ - -0.037579
+ - 4.4e-05
+ - - 0.045768
+ - -1.059228
+ - 3.4e-05
+ - - -1.552087
+ - -0.446355
+ - -1.9e-05
+ - - -0.911753
+ - 1.144265
+ - -5.0e-06
+ - - 0.380414
+ - 1.21946
+ - 2.3e-05
+ - - 2.735316
+ - -1.211895
+ - 0.000989
+ - - 2.852961
+ - 0.322397
+ - 0.878354
+ - - 2.852744
+ - 0.320581
+ - -0.879529
+ - - 0.246993
+ - -2.117623
+ - 4.6e-05
+ - - -1.562404
+ - 2.006785
+ - -7.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.185325010844235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.430744
+ - -0.166589
+ - -2.6e-05
+ - - 0.942721
+ - -0.037579
+ - 4.4e-05
+ - - 0.045768
+ - -1.059228
+ - 3.4e-05
+ - - -1.552087
+ - -0.446355
+ - -1.9e-05
+ - - -0.911753
+ - 1.144265
+ - -5.0e-06
+ - - 0.380414
+ - 1.21946
+ - 2.3e-05
+ - - 2.735316
+ - -1.211895
+ - 0.000989
+ - - 2.852961
+ - 0.322397
+ - 0.878354
+ - - 2.852744
+ - 0.320581
+ - -0.879529
+ - - 0.246993
+ - -2.117623
+ - 4.6e-05
+ - - -1.562404
+ - 2.006785
+ - -7.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.016268678890835
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.4537104572
- - -0.1829098928
- - 3.04056e-05
- - - 0.9581859099
- - -0.0301879711
- - 0.0001320334
- - - 0.0453865305
- - -1.0660601944
- - -0.0002353168
- - - -1.5794276251
- - -0.4534444514
- - 0.0001346599
- - - -0.9080225903
- - 1.1695643988
- - -0.000297424
- - - 0.3976449606
- - 1.2361080056
- - 0.0001509015
- - - 2.7402365979
- - -1.2429460966
- - 0.0004904902
- - - 2.8892957337
- - 0.3007528575
- - 0.8868398287
- - - 2.8889585418
- - 0.2997851969
- - -0.88749039
- - - 0.2390333061
- - -2.1348675847
- - -0.0004663969
- - - -1.5657587466
- - 2.0371927664
- - -0.0003625892
+ - - 2.436153
+ - -0.165937
+ - -7.6e-05
+ - - 0.943356
+ - -0.036465
+ - -1.1e-05
+ - - 0.045384
+ - -1.065796
+ - 0.000278
+ - - -1.569724
+ - -0.455964
+ - 0.00024
+ - - -0.916821
+ - 1.155166
+ - -0.000166
+ - - 0.378191
+ - 1.223015
+ - -0.000262
+ - - 2.743598
+ - -1.214199
+ - 0.000147
+ - - 2.866146
+ - 0.322616
+ - 0.880528
+ - - 2.866035
+ - 0.322209
+ - -0.880959
+ - - 0.241132
+ - -2.126783
+ - 0.000507
+ - - -1.572031
+ - 2.016356
+ - -0.000321
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.760694065462104
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.431436
+ - -0.166526
+ - -7.6e-05
+ - - 0.943817
+ - -0.036918
+ - -1.3e-05
+ - - 0.045437
+ - -1.059007
+ - 0.000279
+ - - -1.550664
+ - -0.447363
+ - 0.000241
+ - - -0.909976
+ - 1.144639
+ - -0.000167
+ - - 0.380529
+ - 1.217548
+ - -0.000265
+ - - 2.734232
+ - -1.21192
+ - 0.000144
+ - - 2.85163
+ - 0.322605
+ - 0.879286
+ - - 2.851522
+ - 0.322204
+ - -0.879712
+ - - 0.245283
+ - -2.117488
+ - 0.000508
+ - - -1.561829
+ - 2.006445
+ - -0.000321
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.12888909003309
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427749
+ - -0.165502
+ - -7.6e-05
+ - - 0.944783
+ - -0.03265
+ - -1.3e-05
+ - - 0.045279
+ - -1.058497
+ - 0.000282
+ - - -1.547286
+ - -0.447702
+ - 0.000242
+ - - -0.910468
+ - 1.143424
+ - -0.000168
+ - - 0.38214
+ - 1.216047
+ - -0.000267
+ - - 2.732198
+ - -1.212257
+ - 0.000133
+ - - 2.854524
+ - 0.322581
+ - 0.879433
+ - - 2.854415
+ - 0.322198
+ - -0.879851
+ - - 0.242172
+ - -2.119309
+ - 0.000516
+ - - -1.564089
+ - 2.005885
+ - -0.000326
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.51318526601084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.441419
+ - -0.165966
+ - -7.6e-05
+ - - 0.947305
+ - -0.033625
+ - -1.3e-05
+ - - 0.04151
+ - -1.065176
+ - 0.000279
+ - - -1.566936
+ - -0.456031
+ - 0.000241
+ - - -0.921999
+ - 1.152815
+ - -0.000166
+ - - 0.380831
+ - 1.226605
+ - -0.000265
+ - - 2.74417
+ - -1.216284
+ - 0.000145
+ - - 2.868865
+ - 0.322809
+ - 0.882472
+ - - 2.868754
+ - 0.322405
+ - -0.882901
+ - - 0.235076
+ - -2.12917
+ - 0.00051
+ - - -1.577577
+ - 2.015836
+ - -0.000322
isotopes:
- 12
- 12
@@ -288,6 +1185,144 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.25999954867343
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4307435062
+ - -0.1665889805
+ - -2.56236e-05
+ - - 0.9427207919
+ - -0.0375787237
+ - 4.40876e-05
+ - - 0.04576767
+ - -1.0592281087
+ - 3.43547e-05
+ - - -1.5520865395
+ - -0.4463548212
+ - -1.86722e-05
+ - - -0.9117529681
+ - 1.1442646193
+ - -4.8115e-06
+ - - 0.3804143231
+ - 1.2194599789
+ - 2.26708e-05
+ - - 2.7353163414
+ - -1.2118953621
+ - 0.00098856
+ - - 2.8529605897
+ - 0.3223970841
+ - 0.8783540185
+ - - 2.8527444222
+ - 0.3205812427
+ - -0.8795290339
+ - - 0.2469934116
+ - -2.11762323
+ - 4.57306e-05
+ - - -1.5624043943
+ - 2.0067847127
+ - -7.2588e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.04674707770397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.42969
+ - -0.166134
+ - -7.6e-05
+ - - 0.942767
+ - -0.035405
+ - -1.2e-05
+ - - 0.045955
+ - -1.058278
+ - 0.000278
+ - - -1.549462
+ - -0.447252
+ - 0.000238
+ - - -0.911685
+ - 1.14381
+ - -0.000165
+ - - 0.379535
+ - 1.216855
+ - -0.000263
+ - - 2.73347
+ - -1.212246
+ - 0.000147
+ - - 2.852945
+ - 0.321398
+ - 0.87958
+ - - 2.852834
+ - 0.320992
+ - -0.88001
+ - - 0.247219
+ - -2.116855
+ - 0.000507
+ - - -1.56185
+ - 2.007335
+ - -0.000321
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/4-Thiazolecarbonitrile.yml b/input/reference_sets/main/4-Thiazolecarbonitrile.yml
index 3e1a2ea0b5..f493904417 100644
--- a/input/reference_sets/main/4-Thiazolecarbonitrile.yml
+++ b/input/reference_sets/main/4-Thiazolecarbonitrile.yml
@@ -128,44 +128,811 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.35568025031478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.233244
+ - -0.147278
+ - 0.0
+ - - 2.078839
+ - -0.042077
+ - 0.0
+ - - 0.655094
+ - 0.047152
+ - 0.0
+ - - -0.179757
+ - -1.042641
+ - 0.0
+ - - -1.802111
+ - -0.517742
+ - 0.0
+ - - -1.253298
+ - 1.121449
+ - -0.0
+ - - 0.038069
+ - 1.274363
+ - -0.0
+ - - 0.091483
+ - -2.084651
+ - 0.0
+ - - -1.954099
+ - 1.942309
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.95433376484898
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.225799
+ - -0.146251
+ - 0.0
+ - - 2.078978
+ - -0.042824
+ - 0.0
+ - - 0.656853
+ - 0.044868
+ - 0.0
+ - - -0.177295
+ - -1.042341
+ - 0.0
+ - - -1.803256
+ - -0.520123
+ - 0.0
+ - - -1.251129
+ - 1.124182
+ - -0.0
+ - - 0.034628
+ - 1.271633
+ - -0.0
+ - - 0.094878
+ - -2.084032
+ - 0.0
+ - - -1.951993
+ - 1.945773
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 115.47008141044036
+ value: 115.47008141044036
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.259589099
+ - -0.1658648715
+ - 0.0
+ - - 2.0925336799
+ - -0.0501832483
+ - 0.0
+ - - 0.6654182009
+ - 0.0538049972
+ - -0.0
+ - - -0.1815128937
+ - -1.0457365254
+ - 0.0
+ - - -1.8257124884
+ - -0.522643819
+ - 0.0
+ - - -1.2507632637
+ - 1.1429781849
+ - -0.0
+ - - 0.0450319404
+ - 1.2924977195
+ - -0.0
+ - - 0.084785013
+ - -2.0980021099
+ - 0.0
+ - - -1.9597868144
+ - 1.9686928267
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.52162123698514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.240805
+ - -0.151615
+ - 0.0
+ - - 2.084183
+ - -0.042688
+ - 0.0
+ - - 0.662265
+ - 0.049505
+ - 0.0
+ - - -0.179473
+ - -1.044886
+ - 0.0
+ - - -1.808369
+ - -0.524913
+ - 0.0
+ - - -1.255732
+ - 1.127798
+ - -0.0
+ - - 0.036411
+ - 1.280356
+ - -0.0
+ - - 0.091278
+ - -2.091496
+ - 0.0
+ - - -1.963905
+ - 1.948823
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.6901937980928
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.24719
+ - -0.147474
+ - 0.0
+ - - 2.086385
+ - -0.042212
+ - 0.0
+ - - 0.661455
+ - 0.048867
+ - 0.0
+ - - -0.180957
+ - -1.048713
+ - 0.0
+ - - -1.810509
+ - -0.525278
+ - 0.0
+ - - -1.256647
+ - 1.129289
+ - -0.0
+ - - 0.038821
+ - 1.282525
+ - -0.0
+ - - 0.089117
+ - -2.1007
+ - 0.0
+ - - -1.96739
+ - 1.95458
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.00462746261096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.216494
+ - -0.144312
+ - 0.0
+ - - 2.075949
+ - -0.043197
+ - 0.0
+ - - 0.649969
+ - 0.04336
+ - 0.0
+ - - -0.1778
+ - -1.037403
+ - 0.0
+ - - -1.793255
+ - -0.512596
+ - 0.0
+ - - -1.247316
+ - 1.117141
+ - -0.0
+ - - 0.033134
+ - 1.265509
+ - -0.0
+ - - 0.095999
+ - -2.078477
+ - 0.0
+ - - -1.94571
+ - 1.940858
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.83982793705239
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.231512
+ - -0.141715
+ - 0.0
+ - - 2.081453
+ - -0.042679
+ - 0.0
+ - - 0.65691
+ - 0.04418
+ - 0.0
+ - - -0.176715
+ - -1.046493
+ - 0.0
+ - - -1.809298
+ - -0.523168
+ - 0.0
+ - - -1.249969
+ - 1.12831
+ - -0.0
+ - - 0.036579
+ - 1.274286
+ - -0.0
+ - - 0.091197
+ - -2.090829
+ - 0.0
+ - - -1.954205
+ - 1.94899
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.74196071909246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.222691
+ - -0.150824
+ - 0.0
+ - - 2.079666
+ - -0.043906
+ - 0.0
+ - - 0.647573
+ - 0.045648
+ - 0.0
+ - - -0.17804
+ - -1.038072
+ - 0.0
+ - - -1.796135
+ - -0.512594
+ - 0.0
+ - - -1.250029
+ - 1.117304
+ - 0.0
+ - - 0.03376
+ - 1.273016
+ - 0.0
+ - - 0.098752
+ - -2.078715
+ - 0.0
+ - - -1.950775
+ - 1.939025
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 74.30337634057607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.222691
+ - -0.150824
+ - 0.0
+ - - 2.079666
+ - -0.043906
+ - 0.0
+ - - 0.647573
+ - 0.045648
+ - 0.0
+ - - -0.17804
+ - -1.038072
+ - 0.0
+ - - -1.796135
+ - -0.512594
+ - 0.0
+ - - -1.250029
+ - 1.117304
+ - 0.0
+ - - 0.03376
+ - 1.273016
+ - 0.0
+ - - 0.098752
+ - -2.078715
+ - 0.0
+ - - -1.950775
+ - 1.939025
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.67192021076757
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.222691
+ - -0.150824
+ - 0.0
+ - - 2.079666
+ - -0.043906
+ - 0.0
+ - - 0.647573
+ - 0.045648
+ - 0.0
+ - - -0.17804
+ - -1.038072
+ - 0.0
+ - - -1.796135
+ - -0.512594
+ - 0.0
+ - - -1.250029
+ - 1.117304
+ - 0.0
+ - - 0.03376
+ - 1.273016
+ - 0.0
+ - - 0.098752
+ - -2.078715
+ - 0.0
+ - - -1.950775
+ - 1.939025
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.73356654935594
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 3.259589099
- - -0.1658648715
+ - - 3.233348
+ - -0.14279
- 0.0
- - - 2.0925336799
- - -0.0501832483
+ - - 2.080652
+ - -0.04343
- 0.0
- - - 0.6654182009
- - 0.0538049972
+ - - 0.656504
+ - 0.043997
+ - 0.0
+ - - -0.176555
+ - -1.045935
+ - 0.0
+ - - -1.809667
+ - -0.522983
+ - 0.0
+ - - -1.250556
+ - 1.128085
+ - 0.0
+ - - 0.03614
+ - 1.275068
+ - 0.0
+ - - 0.092501
+ - -2.090271
+ - 0.0
+ - - -1.954903
+ - 1.949143
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.84603658708917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.220566
+ - -0.150719
+ - 0.0
+ - - 2.078972
+ - -0.043844
+ - 0.0
+ - - 0.648738
+ - 0.047262
+ - 0.0
+ - - -0.178054
+ - -1.037608
+ - 0.0
+ - - -1.794262
+ - -0.513684
+ - 0.0
+ - - -1.248705
+ - 1.11776
- -0.0
- - - -0.1815128937
- - -1.0457365254
+ - - 0.033448
+ - 1.271584
+ - -0.0
+ - - 0.097495
+ - -2.078659
- 0.0
- - - -1.8257124884
- - -0.522643819
+ - - -1.950735
+ - 1.938791
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.70060460236564
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.219681
+ - -0.148385
- 0.0
- - - -1.2507632637
- - 1.1429781849
+ - - 2.073667
+ - -0.042084
+ - 0.0
+ - - 0.651808
+ - 0.049482
- -0.0
- - - 0.0450319404
- - 1.2924977195
+ - - -0.178617
+ - -1.038298
+ - 0.0
+ - - -1.790919
+ - -0.513747
+ - 0.0
+ - - -1.247069
+ - 1.117026
- -0.0
- - - 0.084785013
- - -2.0980021099
+ - - 0.03637
+ - 1.270141
+ - -0.0
+ - - 0.093335
+ - -2.082006
- 0.0
- - - -1.9597868144
- - 1.9686928267
+ - - -1.950792
+ - 1.938755
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 97.41726990403764
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.240428
+ - -0.146014
+ - 0.0
+ - - 2.083027
+ - -0.042178
+ - 0.0
+ - - 0.65956
+ - 0.047168
+ - 0.0
+ - - -0.180387
+ - -1.046356
+ - 0.0
+ - - -1.807028
+ - -0.523198
+ - 0.0
+ - - -1.254502
+ - 1.125705
+ - -0.0
+ - - 0.038358
+ - 1.280974
+ - -0.0
+ - - 0.087953
+ - -2.093296
+ - 0.0
+ - - -1.959946
+ - 1.948078
- -0.0
isotopes:
- 14
@@ -246,6 +1013,124 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.81643397273062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.2226913741
+ - -0.1508237563
+ - 0.0
+ - - 2.0796656915
+ - -0.0439055976
+ - 0.0
+ - - 0.647573186
+ - 0.0456476067
+ - 0.0
+ - - -0.1780404517
+ - -1.038072169
+ - 0.0
+ - - -1.7961346259
+ - -0.5125940523
+ - 0.0
+ - - -1.250028904
+ - 1.117304444
+ - 0.0
+ - - 0.0337600058
+ - 1.273016426
+ - 0.0
+ - - 0.0987523163
+ - -2.0787149326
+ - 0.0
+ - - -1.9507750913
+ - 1.9390253764
+ - 0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.13281126403703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.219341
+ - -0.148485
+ - 0.0
+ - - 2.076486
+ - -0.042811
+ - 0.0
+ - - 0.649027
+ - 0.046375
+ - 0.0
+ - - -0.177953
+ - -1.038153
+ - 0.0
+ - - -1.793199
+ - -0.513228
+ - 0.0
+ - - -1.24862
+ - 1.117063
+ - -0.0
+ - - 0.034152
+ - 1.269628
+ - -0.0
+ - - 0.096879
+ - -2.079719
+ - 0.0
+ - - -1.94865
+ - 1.940214
+ - -0.0
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - S
+ - C
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/45-Dihydro-2-methyl-oxazole.yml b/input/reference_sets/main/45-Dihydro-2-methyl-oxazole.yml
index 80a8118a63..8e188057e8 100644
--- a/input/reference_sets/main/45-Dihydro-2-methyl-oxazole.yml
+++ b/input/reference_sets/main/45-Dihydro-2-methyl-oxazole.yml
@@ -20,7 +20,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -29.872041913491294
+ value: -29.87204191349126
class: ThermoData
xyz_dict:
coords:
@@ -99,7 +99,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -30.94230356326448
+ value: -30.94230356326446
class: ThermoData
xyz_dict:
coords:
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.800386584491754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.152541
+ - 0.007296
+ - -0.003261
+ - - 0.670865
+ - 0.107975
+ - -0.001211
+ - - -0.017404
+ - 1.174263
+ - 0.030266
+ - - -1.429606
+ - 0.768492
+ - 0.017202
+ - - -1.396913
+ - -0.774067
+ - -0.028976
+ - - 0.016283
+ - -1.090579
+ - -0.037522
+ - - 2.4899
+ - -0.515139
+ - -0.898649
+ - - 2.585533
+ - 1.002176
+ - 0.026812
+ - - 2.488755
+ - -0.567791
+ - 0.859702
+ - - -1.928431
+ - 1.148912
+ - 0.908901
+ - - -1.927296
+ - 1.201613
+ - -0.850775
+ - - -1.841075
+ - -1.192631
+ - -0.93039
+ - - -1.842249
+ - -1.245811
+ - 0.845185
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.73337674084322
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.153954
+ - 0.008264
+ - -0.003221
+ - - 0.671927
+ - 0.108137
+ - -0.001196
+ - - -0.016923
+ - 1.170122
+ - 0.030219
+ - - -1.429411
+ - 0.769316
+ - 0.017269
+ - - -1.39842
+ - -0.775382
+ - -0.029073
+ - - 0.01494
+ - -1.089565
+ - -0.037565
+ - - 2.493296
+ - -0.514908
+ - -0.89904
+ - - 2.587788
+ - 1.00371
+ - 0.026935
+ - - 2.492142
+ - -0.567695
+ - 0.860061
+ - - -1.92997
+ - 1.151286
+ - 0.908924
+ - - -1.928826
+ - 1.204094
+ - -0.850521
+ - - -1.844207
+ - -1.194682
+ - -0.930759
+ - - -1.845386
+ - -1.247988
+ - 0.845251
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -2.1547419429823824
+ value: -2.1547419429823824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1647748541
+ - 0.0068529104
+ - 0.0002635258
+ - - 0.6719299055
+ - 0.1127583741
+ - 0.0004565243
+ - - -0.0201797271
+ - 1.1907470484
+ - 0.0019948525
+ - - -1.4349646834
+ - 0.7760560764
+ - -0.0021270871
+ - - -1.404350596
+ - -0.7846506119
+ - 0.0024657367
+ - - 0.0186439611
+ - -1.1013263297
+ - -0.0025678681
+ - - 2.5036947167
+ - -0.5373259673
+ - -0.8933853053
+ - - 2.6043424105
+ - 1.0092530909
+ - 0.0131711495
+ - - 2.502360732
+ - -0.5608570986
+ - 0.8795201974
+ - - -1.9489357551
+ - 1.1856476782
+ - 0.8816051868
+ - - -1.9409864338
+ - 1.1802871822
+ - -0.8929624297
+ - - -1.8603757247
+ - -1.2370567515
+ - -0.8894738473
+ - - -1.8523304259
+ - -1.2306673289
+ - 0.9017518281
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.03812109429126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.160272
+ - 0.008076
+ - -0.003164
+ - - 0.673767
+ - 0.106855
+ - -0.001221
+ - - -0.016879
+ - 1.177273
+ - 0.030386
+ - - -1.432833
+ - 0.772294
+ - 0.017276
+ - - -1.405047
+ - -0.777227
+ - -0.029127
+ - - 0.016159
+ - -1.099518
+ - -0.037826
+ - - 2.503593
+ - -0.516111
+ - -0.902123
+ - - 2.593449
+ - 1.008313
+ - 0.027104
+ - - 2.502385
+ - -0.56901
+ - 0.863265
+ - - -1.935734
+ - 1.155931
+ - 0.912907
+ - - -1.934513
+ - 1.20888
+ - -0.854478
+ - - -1.851258
+ - -1.198785
+ - -0.935384
+ - - -1.852459
+ - -1.252262
+ - 0.849669
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.81927294910719
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.162853
+ - 0.007754
+ - -0.003146
+ - - 0.675147
+ - 0.10647
+ - -0.001223
+ - - -0.017332
+ - 1.181044
+ - 0.03049
+ - - -1.434192
+ - 0.772992
+ - 0.017279
+ - - -1.406439
+ - -0.778015
+ - -0.02917
+ - - 0.016587
+ - -1.102888
+ - -0.037914
+ - - 2.509581
+ - -0.518074
+ - -0.905299
+ - - 2.597564
+ - 1.012271
+ - 0.027252
+ - - 2.508349
+ - -0.571154
+ - 0.866391
+ - - -1.940033
+ - 1.160411
+ - 0.915654
+ - - -1.9388
+ - 1.21352
+ - -0.856994
+ - - -1.855567
+ - -1.202985
+ - -0.938414
+ - - -1.856813
+ - -1.256637
+ - 0.852376
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.821694955206652
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.147683
+ - 0.007857
+ - -0.003258
+ - - 0.668958
+ - 0.108436
+ - -0.001193
+ - - -0.017913
+ - 1.164657
+ - 0.030081
+ - - -1.424244
+ - 0.766135
+ - 0.017205
+ - - -1.391068
+ - -0.772391
+ - -0.028978
+ - - 0.013458
+ - -1.081829
+ - -0.037361
+ - - 2.485044
+ - -0.514886
+ - -0.898521
+ - - 2.581491
+ - 1.002431
+ - 0.026896
+ - - 2.483907
+ - -0.567689
+ - 0.859451
+ - - -1.924855
+ - 1.147516
+ - 0.907766
+ - - -1.923721
+ - 1.20029
+ - -0.849509
+ - - -1.838343
+ - -1.191279
+ - -0.929372
+ - - -1.839492
+ - -1.244539
+ - 0.844076
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.82675939710744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.157143
+ - 0.008088
+ - -0.003225
+ - - 0.670335
+ - 0.109051
+ - -0.001167
+ - - -0.015595
+ - 1.175533
+ - 0.030403
+ - - -1.430944
+ - 0.771439
+ - 0.017359
+ - - -1.400477
+ - -0.778125
+ - -0.029182
+ - - 0.015251
+ - -1.091984
+ - -0.037652
+ - - 2.496792
+ - -0.516142
+ - -0.900222
+ - - 2.591088
+ - 1.005177
+ - 0.026992
+ - - 2.495639
+ - -0.569019
+ - 0.861152
+ - - -1.932404
+ - 1.154919
+ - 0.910247
+ - - -1.931287
+ - 1.207854
+ - -0.851528
+ - - -1.846714
+ - -1.199325
+ - -0.931938
+ - - -1.847923
+ - -1.252756
+ - 0.846044
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.581415963045647
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.149257
+ - 0.007092
+ - -0.006426
+ - - 0.667596
+ - 0.108925
+ - -0.000427
+ - - -0.017886
+ - 1.17039
+ - -0.025611
+ - - -1.426639
+ - 0.765729
+ - 0.029312
+ - - -1.391228
+ - -0.771213
+ - -0.040258
+ - - 0.013068
+ - -1.085673
+ - 0.043625
+ - - 2.479951
+ - -0.565603
+ - -0.872935
+ - - 2.582271
+ - 1.002168
+ - -0.034163
+ - - 2.488104
+ - -0.519161
+ - 0.886183
+ - - -1.872982
+ - 1.132426
+ - 0.955195
+ - - -1.97772
+ - 1.208766
+ - -0.799723
+ - - -1.771154
+ - -1.165942
+ - -0.982789
+ - - -1.901736
+ - -1.263195
+ - 0.785301
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.359935724997563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.149257
+ - 0.007092
+ - -0.006426
+ - - 0.667596
+ - 0.108925
+ - -0.000427
+ - - -0.017886
+ - 1.17039
+ - -0.025611
+ - - -1.426639
+ - 0.765729
+ - 0.029312
+ - - -1.391228
+ - -0.771213
+ - -0.040258
+ - - 0.013068
+ - -1.085673
+ - 0.043625
+ - - 2.479951
+ - -0.565603
+ - -0.872935
+ - - 2.582271
+ - 1.002168
+ - -0.034163
+ - - 2.488104
+ - -0.519161
+ - 0.886183
+ - - -1.872982
+ - 1.132426
+ - 0.955195
+ - - -1.97772
+ - 1.208766
+ - -0.799723
+ - - -1.771154
+ - -1.165942
+ - -0.982789
+ - - -1.901736
+ - -1.263195
+ - 0.785301
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.688898004520414
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.149257
+ - 0.007092
+ - -0.006426
+ - - 0.667596
+ - 0.108925
+ - -0.000427
+ - - -0.017886
+ - 1.17039
+ - -0.025611
+ - - -1.426639
+ - 0.765729
+ - 0.029312
+ - - -1.391228
+ - -0.771213
+ - -0.040258
+ - - 0.013068
+ - -1.085673
+ - 0.043625
+ - - 2.479951
+ - -0.565603
+ - -0.872935
+ - - 2.582271
+ - 1.002168
+ - -0.034163
+ - - 2.488104
+ - -0.519161
+ - 0.886183
+ - - -1.872982
+ - 1.132426
+ - 0.955195
+ - - -1.97772
+ - 1.208766
+ - -0.799723
+ - - -1.771154
+ - -1.165942
+ - -0.982789
+ - - -1.901736
+ - -1.263195
+ - 0.785301
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.116395722816073
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.1647748541
- - 0.0068529104
- - 0.0002635258
- - - 0.6719299055
- - 0.1127583741
- - 0.0004565243
- - - -0.0201797271
- - 1.1907470484
- - 0.0019948525
- - - -1.4349646834
- - 0.7760560764
- - -0.0021270871
- - - -1.404350596
- - -0.7846506119
- - 0.0024657367
- - - 0.0186439611
- - -1.1013263297
- - -0.0025678681
- - - 2.5036947167
- - -0.5373259673
- - -0.8933853053
- - - 2.6043424105
- - 1.0092530909
- - 0.0131711495
- - - 2.502360732
- - -0.5608570986
- - 0.8795201974
- - - -1.9489357551
- - 1.1856476782
- - 0.8816051868
- - - -1.9409864338
- - 1.1802871822
- - -0.8929624297
- - - -1.8603757247
- - -1.2370567515
- - -0.8894738473
- - - -1.8523304259
- - -1.2306673289
- - 0.9017518281
+ - - 2.155385
+ - 0.006869
+ - -0.003296
+ - - 0.668495
+ - 0.108757
+ - -0.001188
+ - - -0.016161
+ - 1.178037
+ - 0.030491
+ - - -1.429253
+ - 0.772934
+ - 0.017417
+ - - -1.394603
+ - -0.777307
+ - -0.029122
+ - - 0.015371
+ - -1.089147
+ - -0.03759
+ - - 2.497654
+ - -0.518347
+ - -0.900483
+ - - 2.59151
+ - 1.004566
+ - 0.026951
+ - - 2.496525
+ - -0.571262
+ - 0.861189
+ - - -1.936341
+ - 1.15448
+ - 0.910141
+ - - -1.935211
+ - 1.207391
+ - -0.851446
+ - - -1.845667
+ - -1.199434
+ - -0.931767
+ - - -1.846801
+ - -1.252829
+ - 0.845987
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.953226363266783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.149661
+ - 0.007662
+ - -0.00331
+ - - 0.667844
+ - 0.110723
+ - -0.001142
+ - - -0.017402
+ - 1.169781
+ - 0.0302
+ - - -1.425801
+ - 0.767178
+ - 0.017244
+ - - -1.388434
+ - -0.7747
+ - -0.028991
+ - - 0.013679
+ - -1.081681
+ - -0.037321
+ - - 2.481208
+ - -0.517112
+ - -0.899476
+ - - 2.582653
+ - 1.002565
+ - 0.026797
+ - - 2.480112
+ - -0.569884
+ - 0.86021
+ - - -1.925302
+ - 1.147326
+ - 0.908789
+ - - -1.924205
+ - 1.200108
+ - -0.85053
+ - - -1.835997
+ - -1.192002
+ - -0.930061
+ - - -1.837113
+ - -1.245256
+ - 0.844876
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.825741813539526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.143969
+ - 0.007412
+ - -0.003254
+ - - 0.666383
+ - 0.105126
+ - -0.001292
+ - - -0.018381
+ - 1.167947
+ - 0.030125
+ - - -1.419888
+ - 0.766465
+ - 0.017172
+ - - -1.386599
+ - -0.771515
+ - -0.02893
+ - - 0.014026
+ - -1.084041
+ - -0.037374
+ - - 2.484369
+ - -0.516121
+ - -0.899467
+ - - 2.57618
+ - 1.004513
+ - 0.026929
+ - - 2.483215
+ - -0.568893
+ - 0.860426
+ - - -1.924448
+ - 1.148645
+ - 0.908649
+ - - -1.923303
+ - 1.2014
+ - -0.850455
+ - - -1.836721
+ - -1.191485
+ - -0.930536
+ - - -1.837899
+ - -1.244743
+ - 0.845291
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.97227612679947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.161484
+ - 0.007578
+ - -0.003184
+ - - 0.673034
+ - 0.107385
+ - -0.001207
+ - - -0.016634
+ - 1.179893
+ - 0.030451
+ - - -1.435028
+ - 0.772154
+ - 0.017271
+ - - -1.407879
+ - -0.77674
+ - -0.029108
+ - - 0.016245
+ - -1.100944
+ - -0.037851
+ - - 2.503708
+ - -0.51614
+ - -0.902261
+ - - 2.593526
+ - 1.007862
+ - 0.027074
+ - - 2.502506
+ - -0.56903
+ - 0.863398
+ - - -1.934993
+ - 1.156634
+ - 0.913077
+ - - -1.933789
+ - 1.209585
+ - -0.854595
+ - - -1.850031
+ - -1.20003
+ - -0.935337
+ - - -1.851246
+ - -1.253498
+ - 0.849556
isotopes:
- 12
- 12
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.710080548921646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1492567652
+ - 0.0070917091
+ - -0.0064258622
+ - - 0.6675963108
+ - 0.1089248985
+ - -0.000426668
+ - - -0.017885514
+ - 1.1703896428
+ - -0.0256108522
+ - - -1.4266386911
+ - 0.7657289157
+ - 0.0293116135
+ - - -1.3912276337
+ - -0.7712127438
+ - -0.0402575146
+ - - 0.013067978
+ - -1.0856730105
+ - 0.0436247963
+ - - 2.4799508135
+ - -0.565602671
+ - -0.8729348721
+ - - 2.582270847
+ - 1.0021679861
+ - -0.0341631709
+ - - 2.4881039941
+ - -0.5191605708
+ - 0.8861832005
+ - - -1.8729815432
+ - 1.1324262727
+ - 0.9551945466
+ - - -1.9777199567
+ - 1.2087655281
+ - -0.7997234372
+ - - -1.7711541623
+ - -1.1659419474
+ - -0.9827886759
+ - - -1.9017357259
+ - -1.2631946903
+ - 0.7853005915
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.20748578142861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.147334
+ - 0.006828
+ - -0.003305
+ - - 0.666099
+ - 0.10626
+ - -0.001267
+ - - -0.017914
+ - 1.168001
+ - 0.03014
+ - - -1.423317
+ - 0.767774
+ - 0.01725
+ - - -1.388133
+ - -0.773084
+ - -0.028972
+ - - 0.012884
+ - -1.081703
+ - -0.037311
+ - - 2.484592
+ - -0.515558
+ - -0.89967
+ - - 2.579888
+ - 1.002799
+ - 0.026844
+ - - 2.483469
+ - -0.568354
+ - 0.860569
+ - - -1.925194
+ - 1.147553
+ - 0.908888
+ - - -1.924099
+ - 1.200359
+ - -0.850631
+ - - -1.836767
+ - -1.191442
+ - -0.930225
+ - - -1.83794
+ - -1.244724
+ - 0.844974
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/5-Methylisoxazole.yml b/input/reference_sets/main/5-Methylisoxazole.yml
index 9ba13776d3..e11d8ba06d 100644
--- a/input/reference_sets/main/5-Methylisoxazole.yml
+++ b/input/reference_sets/main/5-Methylisoxazole.yml
@@ -87,7 +87,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 8.016964361733564
+ value: 8.01696436173356
class: ThermoData
xyz_dict:
coords:
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.353328979282384
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.099669
+ - 0.013942
+ - 0.000126
+ - - 0.619387
+ - 0.107563
+ - 0.0002
+ - - -0.258142
+ - 1.147055
+ - -0.000854
+ - - -1.528012
+ - 0.518701
+ - -1.0e-06
+ - - -1.436964
+ - -0.787319
+ - 0.001445
+ - - -0.062935
+ - -1.054448
+ - 0.001577
+ - - 2.452389
+ - -0.523281
+ - -0.880695
+ - - 2.452601
+ - -0.521323
+ - 0.882054
+ - - 2.535043
+ - 1.010576
+ - -0.001034
+ - - -0.031909
+ - 2.197812
+ - -0.002052
+ - - -2.507657
+ - 0.969396
+ - -0.000385
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.53600399010909
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.09887
+ - 0.015171
+ - 0.000125
+ - - 0.619015
+ - 0.106107
+ - 0.000201
+ - - -0.256855
+ - 1.144787
+ - -0.000852
+ - - -1.528728
+ - 0.516158
+ - 2.0e-06
+ - - -1.437769
+ - -0.784911
+ - 0.001442
+ - - -0.064754
+ - -1.053418
+ - 0.001576
+ - - 2.453681
+ - -0.523275
+ - -0.880816
+ - - 2.453892
+ - -0.521306
+ - 0.882182
+ - - 2.534895
+ - 1.012377
+ - -0.001041
+ - - -0.031185
+ - 2.196168
+ - -0.002051
+ - - -2.507593
+ - 0.970816
+ - -0.000388
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 39.60462654376908
+ value: 39.60462654376907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1169953377
+ - 0.0152554299
+ - 4.20647e-05
+ - - 0.6273016721
+ - 0.1114214667
+ - -7.2215e-05
+ - - -0.2585300707
+ - 1.1606036251
+ - -4.28336e-05
+ - - -1.5344998231
+ - 0.52580807
+ - 9.05104e-05
+ - - -1.4500201386
+ - -0.7936419581
+ - -3.41063e-05
+ - - -0.0632576065
+ - -1.0618072515
+ - -1.04952e-05
+ - - 2.474037866
+ - -0.5302941849
+ - -0.8862479617
+ - - 2.4744023348
+ - -0.5248252302
+ - 0.8895571026
+ - - 2.5566900144
+ - 1.0200837281
+ - -0.0031108491
+ - - -0.0355698557
+ - 2.2214889754
+ - -0.0001433369
+ - - -2.5209612333
+ - 0.9849668794
+ - 0.0001625918
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.75983911362393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.104907
+ - 0.014323
+ - 0.000128
+ - - 0.621644
+ - 0.103209
+ - 0.000204
+ - - -0.260474
+ - 1.14683
+ - -0.000853
+ - - -1.534815
+ - 0.519778
+ - -5.0e-06
+ - - -1.45101
+ - -0.791923
+ - 0.001444
+ - - -0.066206
+ - -1.064473
+ - 0.001584
+ - - 2.46471
+ - -0.524615
+ - -0.883999
+ - - 2.464919
+ - -0.522645
+ - 0.885369
+ - - 2.538452
+ - 1.017218
+ - -0.001039
+ - - -0.031835
+ - 2.2022
+ - -0.002053
+ - - -2.516823
+ - 0.978772
+ - -0.0004
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.86651335301338
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.107114
+ - 0.012931
+ - 0.000127
+ - - 0.622093
+ - 0.105531
+ - 0.000202
+ - - -0.263267
+ - 1.15079
+ - -0.000857
+ - - -1.537405
+ - 0.520122
+ - -2.0e-06
+ - - -1.452609
+ - -0.794767
+ - 0.001452
+ - - -0.064783
+ - -1.066048
+ - 0.001589
+ - - 2.468165
+ - -0.529192
+ - -0.887129
+ - - 2.468378
+ - -0.527218
+ - 0.8885
+ - - 2.547629
+ - 1.017558
+ - -0.001042
+ - - -0.036505
+ - 2.211443
+ - -0.002065
+ - - -2.525343
+ - 0.977522
+ - -0.000394
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.00874781483818
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.093115
+ - 0.014625
+ - 0.000126
+ - - 0.615832
+ - 0.109951
+ - 0.000207
+ - - -0.254617
+ - 1.144323
+ - -0.000875
+ - - -1.521973
+ - 0.513079
+ - 5.0e-06
+ - - -1.421671
+ - -0.779897
+ - 0.001478
+ - - -0.064903
+ - -1.04292
+ - 0.001615
+ - - 2.444054
+ - -0.524415
+ - -0.880307
+ - - 2.444268
+ - -0.522575
+ - 0.881598
+ - - 2.532997
+ - 1.009115
+ - -0.000968
+ - - -0.030562
+ - 2.195735
+ - -0.002109
+ - - -2.50307
+ - 0.961652
+ - -0.00039
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.1914700525019875
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.102902
+ - 0.014351
+ - 0.000124
+ - - 0.618413
+ - 0.108015
+ - 0.0002
+ - - -0.258974
+ - 1.149077
+ - -0.000861
+ - - -1.531799
+ - 0.516486
+ - 3.0e-06
+ - - -1.440236
+ - -0.787383
+ - 0.001455
+ - - -0.065962
+ - -1.05362
+ - 0.001586
+ - - 2.456913
+ - -0.526127
+ - -0.881906
+ - - 2.457125
+ - -0.524188
+ - 0.883255
+ - - 2.544262
+ - 1.0111
+ - -0.001024
+ - - -0.035584
+ - 2.202474
+ - -0.002069
+ - - -2.51359
+ - 0.968487
+ - -0.000384
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.90343472087395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.095991
+ - 0.01414
+ - 6.1e-05
+ - - 0.615277
+ - 0.110901
+ - -0.000109
+ - - -0.254501
+ - 1.148235
+ - -5.4e-05
+ - - -1.524593
+ - 0.513582
+ - 6.9e-05
+ - - -1.424563
+ - -0.782219
+ - 3.9e-05
+ - - -0.063851
+ - -1.045664
+ - -6.5e-05
+ - - 2.444563
+ - -0.527504
+ - -0.879467
+ - - 2.444861
+ - -0.520689
+ - 0.883662
+ - - 2.534727
+ - 1.009209
+ - -0.003799
+ - - -0.02754
+ - 2.199256
+ - -9.3e-05
+ - - -2.506902
+ - 0.959426
+ - 0.000136
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.654853378537597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.095991
+ - 0.01414
+ - 6.1e-05
+ - - 0.615277
+ - 0.110901
+ - -0.000109
+ - - -0.254501
+ - 1.148235
+ - -5.4e-05
+ - - -1.524593
+ - 0.513582
+ - 6.9e-05
+ - - -1.424563
+ - -0.782219
+ - 3.9e-05
+ - - -0.063851
+ - -1.045664
+ - -6.5e-05
+ - - 2.444563
+ - -0.527504
+ - -0.879467
+ - - 2.444861
+ - -0.520689
+ - 0.883662
+ - - 2.534727
+ - 1.009209
+ - -0.003799
+ - - -0.02754
+ - 2.199256
+ - -9.3e-05
+ - - -2.506902
+ - 0.959426
+ - 0.000136
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.282063110622211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.095991
+ - 0.01414
+ - 6.1e-05
+ - - 0.615277
+ - 0.110901
+ - -0.000109
+ - - -0.254501
+ - 1.148235
+ - -5.4e-05
+ - - -1.524593
+ - 0.513582
+ - 6.9e-05
+ - - -1.424563
+ - -0.782219
+ - 3.9e-05
+ - - -0.063851
+ - -1.045664
+ - -6.5e-05
+ - - 2.444563
+ - -0.527504
+ - -0.879467
+ - - 2.444861
+ - -0.520689
+ - 0.883662
+ - - 2.534727
+ - 1.009209
+ - -0.003799
+ - - -0.02754
+ - 2.199256
+ - -9.3e-05
+ - - -2.506902
+ - 0.959426
+ - 0.000136
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.10548456014156
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.1169953377
- - 0.0152554299
- - 4.20647e-05
- - - 0.6273016721
- - 0.1114214667
- - -7.2215e-05
- - - -0.2585300707
- - 1.1606036251
- - -4.28336e-05
- - - -1.5344998231
- - 0.52580807
- - 9.05104e-05
- - - -1.4500201386
- - -0.7936419581
- - -3.41063e-05
- - - -0.0632576065
- - -1.0618072515
- - -1.04952e-05
- - - 2.474037866
- - -0.5302941849
- - -0.8862479617
- - - 2.4744023348
- - -0.5248252302
- - 0.8895571026
- - - 2.5566900144
- - 1.0200837281
- - -0.0031108491
- - - -0.0355698557
- - 2.2214889754
- - -0.0001433369
- - - -2.5209612333
- - 0.9849668794
- - 0.0001625918
+ - - 2.100498
+ - 0.01344
+ - 0.000127
+ - - 0.615859
+ - 0.107304
+ - 0.000201
+ - - -0.260195
+ - 1.149743
+ - -0.00086
+ - - -1.531175
+ - 0.51694
+ - 2.0e-06
+ - - -1.43646
+ - -0.788952
+ - 0.001452
+ - - -0.066892
+ - -1.052613
+ - 0.001582
+ - - 2.458865
+ - -0.526837
+ - -0.882143
+ - - 2.459076
+ - -0.524887
+ - 0.883501
+ - - 2.540959
+ - 1.012082
+ - -0.001029
+ - - -0.034165
+ - 2.202779
+ - -0.002066
+ - - -2.5129
+ - 0.969674
+ - -0.000386
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.887251450518635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.095651
+ - 0.01341
+ - 0.000125
+ - - 0.615521
+ - 0.11164
+ - 0.000196
+ - - -0.254097
+ - 1.149899
+ - -0.00086
+ - - -1.523504
+ - 0.512698
+ - 8.0e-06
+ - - -1.415898
+ - -0.781684
+ - 0.001444
+ - - -0.066364
+ - -1.040165
+ - 0.001568
+ - - 2.441684
+ - -0.526967
+ - -0.881312
+ - - 2.4419
+ - -0.524993
+ - 0.882684
+ - - 2.53343
+ - 1.008675
+ - -0.001043
+ - - -0.027642
+ - 2.200719
+ - -0.002064
+ - - -2.507211
+ - 0.955439
+ - -0.000367
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.765210453791763
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.091593
+ - 0.013391
+ - 0.000126
+ - - 0.616348
+ - 0.108756
+ - 0.000198
+ - - -0.256374
+ - 1.147694
+ - -0.000856
+ - - -1.520871
+ - 0.514379
+ - 5.0e-06
+ - - -1.417664
+ - -0.783
+ - 0.001441
+ - - -0.066423
+ - -1.042421
+ - 0.001567
+ - - 2.445446
+ - -0.526547
+ - -0.881378
+ - - 2.445661
+ - -0.524567
+ - 0.882754
+ - - 2.5317
+ - 1.009625
+ - -0.001046
+ - - -0.030885
+ - 2.200647
+ - -0.002059
+ - - -2.505064
+ - 0.960715
+ - -0.000373
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.858316133497283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.107588
+ - 0.013436
+ - 0.000126
+ - - 0.621402
+ - 0.107547
+ - 0.000199
+ - - -0.262278
+ - 1.149155
+ - -0.000853
+ - - -1.534292
+ - 0.51976
+ - -1.0e-06
+ - - -1.452708
+ - -0.791992
+ - 0.001446
+ - - -0.062856
+ - -1.063031
+ - 0.001581
+ - - 2.463443
+ - -0.526788
+ - -0.884103
+ - - 2.463656
+ - -0.524814
+ - 0.885472
+ - - 2.544601
+ - 1.014329
+ - -0.001043
+ - - -0.038038
+ - 2.205284
+ - -0.002053
+ - - -2.517049
+ - 0.975789
+ - -0.000391
isotopes:
- 12
- 12
@@ -288,13 +1185,151 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.330136976195202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0959912043
+ - 0.0141399008
+ - 6.07949e-05
+ - - 0.615276598
+ - 0.1109005785
+ - -0.0001090644
+ - - -0.2545012839
+ - 1.1482347389
+ - -5.39553e-05
+ - - -1.524593283
+ - 0.513582435
+ - 6.94414e-05
+ - - -1.424563217
+ - -0.7822188704
+ - 3.94399e-05
+ - - -0.0638508041
+ - -1.0456639621
+ - -6.46748e-05
+ - - 2.4445630991
+ - -0.5275044566
+ - -0.8794665851
+ - - 2.4448611698
+ - -0.5206885488
+ - 0.8836618872
+ - - 2.534726968
+ - 1.0092088597
+ - -0.0037994402
+ - - -0.0275401105
+ - 2.1992562179
+ - -9.34454e-05
+ - - -2.5069015875
+ - 0.9594257982
+ - 0.0001356036
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.900001403358079
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.093855
+ - 0.013541
+ - 0.000126
+ - - 0.61441
+ - 0.107907
+ - 0.000199
+ - - -0.254938
+ - 1.146393
+ - -0.000853
+ - - -1.52201
+ - 0.514109
+ - 5.0e-06
+ - - -1.419102
+ - -0.781928
+ - 0.001437
+ - - -0.066704
+ - -1.042386
+ - 0.001563
+ - - 2.444834
+ - -0.524841
+ - -0.881509
+ - - 2.445048
+ - -0.522848
+ - 0.88289
+ - - 2.530507
+ - 1.010218
+ - -0.001052
+ - - -0.02804
+ - 2.197663
+ - -0.002052
+ - - -2.504392
+ - 0.960846
+ - -0.000373
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 15.341038074002034
+ value: 15.341038074002029
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Acetaldehyde.yml b/input/reference_sets/main/Acetaldehyde.yml
index 98850c1ec8..a789701869 100644
--- a/input/reference_sets/main/Acetaldehyde.yml
+++ b/input/reference_sets/main/Acetaldehyde.yml
@@ -106,6 +106,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.969994338582616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16339
+ - -0.147647
+ - 3.4e-05
+ - - -0.233511
+ - 0.397649
+ - 6.0e-06
+ - - -1.234099
+ - -0.278108
+ - -0.000738
+ - - 1.698004
+ - 0.223607
+ - 0.877497
+ - - 1.698504
+ - 0.224799
+ - -0.876618
+ - - 1.153196
+ - -1.234682
+ - -0.000708
+ - - -0.308027
+ - 1.503729
+ - 0.000737
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.51134142098711
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.162305
+ - -0.148651
+ - 3.3e-05
+ - - -0.235724
+ - 0.395875
+ - 5.0e-06
+ - - -1.233626
+ - -0.276173
+ - -0.000735
+ - - 1.698264
+ - 0.224467
+ - 0.877772
+ - - 1.698765
+ - 0.225662
+ - -0.876891
+ - - 1.155336
+ - -1.23687
+ - -0.00071
+ - - -0.307864
+ - 1.505039
+ - 0.000737
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -155,6 +253,545 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.71651177200571
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163433
+ - -0.151261
+ - 3.1e-05
+ - - -0.239956
+ - 0.394523
+ - 4.0e-06
+ - - -1.245203
+ - -0.277745
+ - -0.000738
+ - - 1.701239
+ - 0.22715
+ - 0.880079
+ - - 1.701738
+ - 0.228346
+ - -0.879197
+ - - 1.161672
+ - -1.243574
+ - -0.000712
+ - - -0.305466
+ - 1.511908
+ - 0.000745
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.168844290372434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163216
+ - -0.151132
+ - 3.1e-05
+ - - -0.239521
+ - 0.395425
+ - 4.0e-06
+ - - -1.247917
+ - -0.280739
+ - -0.000741
+ - - 1.705084
+ - 0.227848
+ - 0.882844
+ - - 1.705585
+ - 0.229047
+ - -0.881958
+ - - 1.160013
+ - -1.247956
+ - -0.000715
+ - - -0.309003
+ - 1.516856
+ - 0.000746
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.328916526030056
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.161052
+ - -0.147064
+ - 3.6e-05
+ - - -0.232106
+ - 0.396091
+ - 6.0e-06
+ - - -1.224647
+ - -0.276236
+ - -0.000759
+ - - 1.696258
+ - 0.223476
+ - 0.877425
+ - - 1.696746
+ - 0.224648
+ - -0.87656
+ - - 1.149921
+ - -1.234358
+ - -0.000696
+ - - -0.309768
+ - 1.502791
+ - 0.000757
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.55340510058829
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16504
+ - -0.146943
+ - 3.7e-05
+ - - -0.240051
+ - 0.396367
+ - 4.0e-06
+ - - -1.236729
+ - -0.278626
+ - -0.00076
+ - - 1.703323
+ - 0.223119
+ - 0.87947
+ - - 1.703811
+ - 0.224294
+ - -0.878601
+ - - 1.152872
+ - -1.236693
+ - -0.000697
+ - - -0.310809
+ - 1.50783
+ - 0.000758
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.22966141829178
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163356
+ - -0.148031
+ - -2.2e-05
+ - - -0.232651
+ - 0.397882
+ - -2.9e-05
+ - - -1.227284
+ - -0.276944
+ - 6.0e-06
+ - - 1.697169
+ - 0.22285
+ - 0.877906
+ - - 1.698132
+ - 0.224774
+ - -0.87653
+ - - 1.150532
+ - -1.235371
+ - -0.001142
+ - - -0.311798
+ - 1.504186
+ - 2.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.47323207791147
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163356
+ - -0.148031
+ - -2.2e-05
+ - - -0.232651
+ - 0.397882
+ - -2.9e-05
+ - - -1.227284
+ - -0.276944
+ - 6.0e-06
+ - - 1.697169
+ - 0.22285
+ - 0.877906
+ - - 1.698132
+ - 0.224774
+ - -0.87653
+ - - 1.150532
+ - -1.235371
+ - -0.001142
+ - - -0.311798
+ - 1.504186
+ - 2.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.738103161538824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163356
+ - -0.148031
+ - -2.2e-05
+ - - -0.232651
+ - 0.397882
+ - -2.9e-05
+ - - -1.227284
+ - -0.276944
+ - 6.0e-06
+ - - 1.697169
+ - 0.22285
+ - 0.877906
+ - - 1.698132
+ - 0.224774
+ - -0.87653
+ - - 1.150532
+ - -1.235371
+ - -0.001142
+ - - -0.311798
+ - 1.504186
+ - 2.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.27969896269137
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16396
+ - -0.147827
+ - 3.6e-05
+ - - -0.242522
+ - 0.395044
+ - 3.0e-06
+ - - -1.239992
+ - -0.278562
+ - -0.000759
+ - - 1.702471
+ - 0.225116
+ - 0.879686
+ - - 1.702958
+ - 0.226292
+ - -0.878817
+ - - 1.156232
+ - -1.238917
+ - -0.000699
+ - - -0.30565
+ - 1.508201
+ - 0.00076
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.18711680219867
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163831
+ - -0.147677
+ - 3.6e-05
+ - - -0.232811
+ - 0.398134
+ - 7.0e-06
+ - - -1.223444
+ - -0.27682
+ - -0.000757
+ - - 1.697383
+ - 0.222822
+ - 0.878097
+ - - 1.697875
+ - 0.223998
+ - -0.877228
+ - - 1.147902
+ - -1.234684
+ - -0.000698
+ - - -0.313278
+ - 1.503576
+ - 0.000753
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.191349613292076
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.15942
+ - -0.148515
+ - 3.2e-05
+ - - -0.233017
+ - 0.393978
+ - 4.0e-06
+ - - -1.228333
+ - -0.276156
+ - -0.000734
+ - - 1.695793
+ - 0.226002
+ - 0.877703
+ - - 1.696295
+ - 0.227198
+ - -0.876819
+ - - 1.152931
+ - -1.237518
+ - -0.000712
+ - - -0.305633
+ - 1.50436
+ - 0.000737
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.90204233256391
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164899
+ - -0.150291
+ - 3.2e-05
+ - - -0.238014
+ - 0.397891
+ - 6.0e-06
+ - - -1.243936
+ - -0.279188
+ - -0.00074
+ - - 1.703282
+ - 0.225211
+ - 0.880307
+ - - 1.703782
+ - 0.226407
+ - -0.879425
+ - - 1.158076
+ - -1.24182
+ - -0.000711
+ - - -0.310633
+ - 1.511139
+ - 0.000741
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.996889694260425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1633561962
+ - -0.1480308398
+ - -2.18723e-05
+ - - -0.232650515
+ - 0.3978822253
+ - -2.85204e-05
+ - - -1.2272836619
+ - -0.2769435423
+ - 5.9295e-06
+ - - 1.6971694852
+ - 0.2228500526
+ - 0.8779056017
+ - - 1.6981317855
+ - 0.2247741532
+ - -0.8765300683
+ - - 1.1505321145
+ - -1.2353705947
+ - -0.0011415726
+ - - -0.3117981776
+ - 1.5041864142
+ - 2.09591e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.217488746327305
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16209
+ - -0.148596
+ - 3.3e-05
+ - - -0.234454
+ - 0.395556
+ - 5.0e-06
+ - - -1.228722
+ - -0.274831
+ - -0.000735
+ - - 1.695771
+ - 0.224408
+ - 0.878147
+ - - 1.696273
+ - 0.225604
+ - -0.877266
+ - - 1.154481
+ - -1.236633
+ - -0.00071
+ - - -0.307982
+ - 1.50384
+ - 0.000737
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetaldoxime.yml b/input/reference_sets/main/Acetaldoxime.yml
index a1464a9261..e3fff11e40 100644
--- a/input/reference_sets/main/Acetaldoxime.yml
+++ b/input/reference_sets/main/Acetaldoxime.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6738183633217936
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832418
+ - -0.093033
+ - 6.0e-06
+ - - 0.418042
+ - 0.374589
+ - 0.0001
+ - - -0.529897
+ - -0.471775
+ - -0.000131
+ - - -1.782408
+ - 0.171203
+ - 7.0e-06
+ - - 2.360085
+ - 0.282987
+ - 0.878728
+ - - 2.360091
+ - 0.283362
+ - -0.878553
+ - - 1.8726
+ - -1.180054
+ - -0.000228
+ - - 0.196921
+ - 1.441359
+ - 0.000366
+ - - -2.395781
+ - -0.571696
+ - -0.00019
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.3613096362264514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832144
+ - -0.093635
+ - 5.0e-06
+ - - 0.416661
+ - 0.372203
+ - 9.5e-05
+ - - -0.531433
+ - -0.468028
+ - -0.000125
+ - - -1.785055
+ - 0.169352
+ - 7.0e-06
+ - - 2.360848
+ - 0.284376
+ - 0.879176
+ - - 2.360865
+ - 0.284768
+ - -0.878986
+ - - 1.876705
+ - -1.181477
+ - -0.000238
+ - - 0.201619
+ - 1.441701
+ - 0.000352
+ - - -2.400284
+ - -0.572317
+ - -0.000182
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.174238613594431
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.833995
+ - -0.094254
+ - 6.0e-06
+ - - 0.417385
+ - 0.378505
+ - 9.2e-05
+ - - -0.536054
+ - -0.470283
+ - -0.00012
+ - - -1.798189
+ - 0.170917
+ - 8.0e-06
+ - - 2.367203
+ - 0.283701
+ - 0.882292
+ - - 2.367231
+ - 0.28411
+ - -0.882089
+ - - 1.876075
+ - -1.186505
+ - -0.000247
+ - - 0.208424
+ - 1.454178
+ - 0.000338
+ - - -2.404001
+ - -0.583426
+ - -0.000176
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.017623293224715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.835887
+ - -0.093641
+ - 6.0e-06
+ - - 0.418897
+ - 0.379828
+ - 9.2e-05
+ - - -0.53649
+ - -0.472692
+ - -0.00012
+ - - -1.80074
+ - 0.172984
+ - 8.0e-06
+ - - 2.373404
+ - 0.283858
+ - 0.885305
+ - - 2.373433
+ - 0.284267
+ - -0.885101
+ - - 1.875976
+ - -1.190578
+ - -0.000247
+ - - 0.202841
+ - 1.459051
+ - 0.000339
+ - - -2.411139
+ - -0.586134
+ - -0.000177
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.9240316299959779
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.828765
+ - -0.093195
+ - 6.0e-06
+ - - 0.416054
+ - 0.370112
+ - 9.1e-05
+ - - -0.529141
+ - -0.464199
+ - -0.00012
+ - - -1.771036
+ - 0.16649
+ - 7.0e-06
+ - - 2.35608
+ - 0.283796
+ - 0.878541
+ - - 2.356108
+ - 0.284204
+ - -0.878338
+ - - 1.871943
+ - -1.180145
+ - -0.000246
+ - - 0.195621
+ - 1.437659
+ - 0.000338
+ - - -2.392325
+ - -0.567779
+ - -0.000175
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.01362419213724
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.834444
+ - -0.092753
+ - 6.0e-06
+ - - 0.414742
+ - 0.375235
+ - 9.7e-05
+ - - -0.534675
+ - -0.469016
+ - -0.000126
+ - - -1.78772
+ - 0.16894
+ - 6.0e-06
+ - - 2.365959
+ - 0.282512
+ - 0.880723
+ - - 2.365973
+ - 0.2829
+ - -0.880537
+ - - 1.874213
+ - -1.182388
+ - -0.000235
+ - - 0.197679
+ - 1.44588
+ - 0.000356
+ - - -2.398546
+ - -0.574368
+ - -0.000185
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3035173509077498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.83147
+ - -0.093175
+ - 7.0e-06
+ - - 0.415722
+ - 0.372389
+ - -2.1e-05
+ - - -0.527353
+ - -0.469121
+ - -1.8e-05
+ - - -1.771987
+ - 0.168816
+ - 1.1e-05
+ - - 2.357755
+ - 0.282818
+ - 0.879139
+ - - 2.358079
+ - 0.283618
+ - -0.878583
+ - - 1.870402
+ - -1.180553
+ - -0.000465
+ - - 0.189847
+ - 1.43895
+ - -4.0e-06
+ - - -2.391865
+ - -0.5668
+ - 3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4853688814399473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.83147
+ - -0.093175
+ - 7.0e-06
+ - - 0.415722
+ - 0.372389
+ - -2.1e-05
+ - - -0.527353
+ - -0.469121
+ - -1.8e-05
+ - - -1.771987
+ - 0.168816
+ - 1.1e-05
+ - - 2.357755
+ - 0.282818
+ - 0.879139
+ - - 2.358079
+ - 0.283618
+ - -0.878583
+ - - 1.870402
+ - -1.180553
+ - -0.000465
+ - - 0.189847
+ - 1.43895
+ - -4.0e-06
+ - - -2.391865
+ - -0.5668
+ - 3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.3923350203630926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.83147
+ - -0.093175
+ - 7.0e-06
+ - - 0.415722
+ - 0.372389
+ - -2.1e-05
+ - - -0.527353
+ - -0.469121
+ - -1.8e-05
+ - - -1.771987
+ - 0.168816
+ - 1.1e-05
+ - - 2.357755
+ - 0.282818
+ - 0.879139
+ - - 2.358079
+ - 0.283618
+ - -0.878583
+ - - 1.870402
+ - -1.180553
+ - -0.000465
+ - - 0.189847
+ - 1.43895
+ - -4.0e-06
+ - - -2.391865
+ - -0.5668
+ - 3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.6412341575208
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832727
+ - -0.092651
+ - 6.0e-06
+ - - 0.413449
+ - 0.374703
+ - 9.6e-05
+ - - -0.538379
+ - -0.469713
+ - -0.000126
+ - - -1.786159
+ - 0.16858
+ - 7.0e-06
+ - - 2.366499
+ - 0.283673
+ - 0.880771
+ - - 2.366515
+ - 0.284064
+ - -0.880582
+ - - 1.874581
+ - -1.183584
+ - -0.000237
+ - - 0.200961
+ - 1.446917
+ - 0.000354
+ - - -2.398125
+ - -0.575047
+ - -0.000184
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.8007038294406685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.830598
+ - -0.093543
+ - 6.0e-06
+ - - 0.41593
+ - 0.374051
+ - 9.7e-05
+ - - -0.52884
+ - -0.464103
+ - -0.000126
+ - - -1.767675
+ - 0.163952
+ - 5.0e-06
+ - - 2.356703
+ - 0.282449
+ - 0.87927
+ - - 2.356716
+ - 0.282836
+ - -0.879086
+ - - 1.865838
+ - -1.180778
+ - -0.000234
+ - - 0.192408
+ - 1.441145
+ - 0.000357
+ - - -2.389608
+ - -0.569067
+ - -0.000185
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.4780618268429606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.824605
+ - -0.093242
+ - 6.0e-06
+ - - 0.416368
+ - 0.375859
+ - 0.0001
+ - - -0.532394
+ - -0.461366
+ - -0.000128
+ - - -1.769585
+ - 0.162973
+ - 5.0e-06
+ - - 2.35646
+ - 0.281933
+ - 0.879439
+ - - 2.356467
+ - 0.28231
+ - -0.879263
+ - - 1.863082
+ - -1.182309
+ - -0.000229
+ - - 0.200819
+ - 1.446802
+ - 0.000365
+ - - -2.383752
+ - -0.576016
+ - -0.00019
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.533280431851152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.836544
+ - -0.093834
+ - 6.0e-06
+ - - 0.418324
+ - 0.379474
+ - 9.2e-05
+ - - -0.531305
+ - -0.474706
+ - -0.000121
+ - - -1.798879
+ - 0.174217
+ - 9.0e-06
+ - - 2.368822
+ - 0.283325
+ - 0.882484
+ - - 2.368851
+ - 0.283734
+ - -0.88228
+ - - 1.874687
+ - -1.185588
+ - -0.000246
+ - - 0.202682
+ - 1.452439
+ - 0.000337
+ - - -2.407657
+ - -0.582118
+ - -0.000176
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.197240278439462
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8314697857
+ - -0.0931749342
+ - 6.9858e-06
+ - - 0.415722244
+ - 0.37238931
+ - -2.08967e-05
+ - - -0.527353436
+ - -0.469121319
+ - -1.84543e-05
+ - - -1.7719870033
+ - 0.168816158
+ - 1.08309e-05
+ - - 2.3577552734
+ - 0.2828184373
+ - 0.8791388633
+ - - 2.3580790471
+ - 0.2836177905
+ - -0.8785834037
+ - - 1.8704017162
+ - -1.1805530859
+ - -0.0004648127
+ - - 0.189847132
+ - 1.4389502954
+ - -4.0523e-06
+ - - -2.3918652684
+ - -0.5667997226
+ - 3.94031e-05
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.5306979018290328
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.828241
+ - -0.094067
+ - 5.0e-06
+ - - 0.415077
+ - 0.373997
+ - 9.6e-05
+ - - -0.532794
+ - -0.462479
+ - -0.000124
+ - - -1.772
+ - 0.16358
+ - 6.0e-06
+ - - 2.355369
+ - 0.282947
+ - 0.879508
+ - - 2.355386
+ - 0.283339
+ - -0.879319
+ - - 1.869712
+ - -1.181973
+ - -0.000238
+ - - 0.200252
+ - 1.443283
+ - 0.000352
+ - - -2.387175
+ - -0.571683
+ - -0.000182
+ isotopes:
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetic acid.yml b/input/reference_sets/main/Acetic acid.yml
index 0bb41ddf6e..7d70753e6b 100644
--- a/input/reference_sets/main/Acetic acid.yml
+++ b/input/reference_sets/main/Acetic acid.yml
@@ -117,6 +117,708 @@ calculated_data:
- H
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.86872685253729
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389262
+ - -0.122821
+ - 0.000487
+ - - -0.089338
+ - 0.127874
+ - -0.002341
+ - - -0.627731
+ - 1.206071
+ - -0.013104
+ - - 1.918116
+ - 0.824246
+ - -0.008741
+ - - 1.663033
+ - -0.697231
+ - 0.884777
+ - - 1.663453
+ - -0.714587
+ - -0.872151
+ - - -0.788489
+ - -1.033672
+ - 0.008947
+ - - -1.726958
+ - -0.788591
+ - 0.006306
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -94.51312537886795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389865
+ - -0.12215
+ - 0.000487
+ - - -0.090186
+ - 0.128805
+ - -0.002357
+ - - -0.625945
+ - 1.205339
+ - -0.013122
+ - - 1.919642
+ - 0.825567
+ - -0.008748
+ - - 1.665329
+ - -0.697657
+ - 0.885228
+ - - 1.665762
+ - -0.715028
+ - -0.872572
+ - - -0.791519
+ - -1.031477
+ - 0.008929
+ - - -1.731599
+ - -0.79211
+ - 0.006334
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.08246541976798
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.392604
+ - -0.122301
+ - 0.000484
+ - - -0.092926
+ - 0.131443
+ - -0.00237
+ - - -0.632704
+ - 1.213299
+ - -0.013144
+ - - 1.925185
+ - 0.828521
+ - -0.008755
+ - - 1.670379
+ - -0.70026
+ - 0.888157
+ - - 1.670803
+ - -0.717635
+ - -0.875496
+ - - -0.79555
+ - -1.041164
+ - 0.008998
+ - - -1.736444
+ - -0.790614
+ - 0.006307
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.68240859401521
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.393366
+ - -0.122295
+ - 0.000484
+ - - -0.09255
+ - 0.129484
+ - -0.002357
+ - - -0.636803
+ - 1.214664
+ - -0.013187
+ - - 1.927087
+ - 0.833021
+ - -0.00882
+ - - 1.67453
+ - -0.702345
+ - 0.891265
+ - - 1.674957
+ - -0.719821
+ - -0.878533
+ - - -0.796518
+ - -1.044961
+ - 0.009052
+ - - -1.742722
+ - -0.786458
+ - 0.006276
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -97.11591420815215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.387313
+ - -0.122246
+ - 0.000489
+ - - -0.087935
+ - 0.125228
+ - -0.00233
+ - - -0.622878
+ - 1.197414
+ - -0.013079
+ - - 1.914915
+ - 0.825795
+ - -0.008782
+ - - 1.662106
+ - -0.696656
+ - 0.884657
+ - - 1.662542
+ - -0.71408
+ - -0.871974
+ - - -0.787986
+ - -1.026262
+ - 0.008896
+ - - -1.726731
+ - -0.787903
+ - 0.006304
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.35280263185284
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.391003
+ - -0.123021
+ - 0.00049
+ - - -0.093299
+ - 0.130055
+ - -0.002367
+ - - -0.630555
+ - 1.206494
+ - -0.013126
+ - - 1.921178
+ - 0.826359
+ - -0.008766
+ - - 1.66703
+ - -0.699079
+ - 0.886483
+ - - 1.667454
+ - -0.716479
+ - -0.873809
+ - - -0.792035
+ - -1.033734
+ - 0.008957
+ - - -1.729427
+ - -0.789306
+ - 0.006319
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.402584956593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389569
+ - -0.122177
+ - -0.000194
+ - - -0.088616
+ - 0.125646
+ - -0.000571
+ - - -0.626427
+ - 1.199758
+ - 8.2e-05
+ - - 1.916833
+ - 0.825849
+ - -0.018333
+ - - 1.663701
+ - -0.688527
+ - 0.889449
+ - - 1.660878
+ - -0.722832
+ - -0.867662
+ - - -0.788732
+ - -1.030992
+ - -0.000132
+ - - -1.725859
+ - -0.785435
+ - 0.001543
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.65784628580532
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389569
+ - -0.122177
+ - -0.000194
+ - - -0.088616
+ - 0.125646
+ - -0.000571
+ - - -0.626427
+ - 1.199758
+ - 8.2e-05
+ - - 1.916833
+ - 0.825849
+ - -0.018333
+ - - 1.663701
+ - -0.688527
+ - 0.889449
+ - - 1.660878
+ - -0.722832
+ - -0.867662
+ - - -0.788732
+ - -1.030992
+ - -0.000132
+ - - -1.725859
+ - -0.785435
+ - 0.001543
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -101.7282276340991
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389569
+ - -0.122177
+ - -0.000194
+ - - -0.088616
+ - 0.125646
+ - -0.000571
+ - - -0.626427
+ - 1.199758
+ - 8.2e-05
+ - - 1.916833
+ - 0.825849
+ - -0.018333
+ - - 1.663701
+ - -0.688527
+ - 0.889449
+ - - 1.660878
+ - -0.722832
+ - -0.867662
+ - - -0.788732
+ - -1.030992
+ - -0.000132
+ - - -1.725859
+ - -0.785435
+ - 0.001543
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.46463811421563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.390285
+ - -0.123182
+ - 0.000487
+ - - -0.095843
+ - 0.129784
+ - -0.002365
+ - - -0.633627
+ - 1.206403
+ - -0.01313
+ - - 1.921641
+ - 0.827149
+ - -0.008786
+ - - 1.668495
+ - -0.700505
+ - 0.886786
+ - - 1.668912
+ - -0.71792
+ - -0.874089
+ - - -0.790876
+ - -1.034071
+ - 0.008972
+ - - -1.72764
+ - -0.786369
+ - 0.006305
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.45563599967116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389741
+ - -0.121817
+ - 0.00048
+ - - -0.088581
+ - 0.126948
+ - -0.002345
+ - - -0.622812
+ - 1.19895
+ - -0.013091
+ - - 1.916216
+ - 0.826671
+ - -0.008793
+ - - 1.658851
+ - -0.697607
+ - 0.885485
+ - - 1.659279
+ - -0.715037
+ - -0.872805
+ - - -0.786309
+ - -1.02653
+ - 0.008909
+ - - -1.725037
+ - -0.790288
+ - 0.006341
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.08546915694988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.38529
+ - -0.122175
+ - 0.000483
+ - - -0.089752
+ - 0.124245
+ - -0.00232
+ - - -0.624978
+ - 1.198394
+ - -0.013097
+ - - 1.913827
+ - 0.827192
+ - -0.008805
+ - - 1.661844
+ - -0.69846
+ - 0.885426
+ - - 1.662273
+ - -0.7159
+ - -0.87272
+ - - -0.785594
+ - -1.02845
+ - 0.008934
+ - - -1.721562
+ - -0.783557
+ - 0.006279
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.01238083864438
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394298
+ - -0.122945
+ - 0.000489
+ - - -0.09115
+ - 0.130987
+ - -0.002363
+ - - -0.63487
+ - 1.213789
+ - -0.013137
+ - - 1.924919
+ - 0.828429
+ - -0.008758
+ - - 1.671014
+ - -0.700078
+ - 0.888489
+ - - 1.671435
+ - -0.717464
+ - -0.875833
+ - - -0.795124
+ - -1.041843
+ - 0.008999
+ - - -1.739174
+ - -0.789585
+ - 0.006295
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +873,114 @@ calculated_data:
- H
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.09138467311942
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3895690603
+ - -0.1221765449
+ - -0.0001943063
+ - - -0.0886160311
+ - 0.1256460216
+ - -0.000570993
+ - - -0.6264273725
+ - 1.1997582044
+ - 8.17652e-05
+ - - 1.9168331797
+ - 0.8258487122
+ - -0.0183334905
+ - - 1.6637012846
+ - -0.6885271163
+ - 0.8894487011
+ - - 1.6608782773
+ - -0.7228323045
+ - -0.8676619224
+ - - -0.7887315822
+ - -1.030992069
+ - -0.00013228
+ - - -1.725859279
+ - -0.7854352349
+ - 0.0015426256
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -97.6787278089062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.387826
+ - -0.122781
+ - 0.000491
+ - - -0.09087
+ - 0.124925
+ - -0.002326
+ - - -0.624748
+ - 1.198834
+ - -0.013092
+ - - 1.915937
+ - 0.825878
+ - -0.008788
+ - - 1.662667
+ - -0.697187
+ - 0.885631
+ - - 1.663099
+ - -0.71463
+ - -0.872946
+ - - -0.788823
+ - -1.02642
+ - 0.008903
+ - - -1.72374
+ - -0.787331
+ - 0.006307
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetone.yml b/input/reference_sets/main/Acetone.yml
index 5fe32b5218..573686c87f 100644
--- a/input/reference_sets/main/Acetone.yml
+++ b/input/reference_sets/main/Acetone.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.77377021289174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.284257
+ - -0.611121
+ - -0.015105
+ - - 1.0e-06
+ - 0.185469
+ - -0.000318
+ - - 8.0e-06
+ - 1.398046
+ - -0.000991
+ - - -1.284263
+ - -0.61109
+ - 0.015354
+ - - 2.138641
+ - 0.059896
+ - -0.026012
+ - - 1.33412
+ - -1.258939
+ - 0.862299
+ - - 1.312971
+ - -1.260597
+ - -0.892226
+ - - -1.334133
+ - -1.259882
+ - -0.86133
+ - - -2.13864
+ - 0.059947
+ - 0.025516
+ - - -1.312984
+ - -1.259591
+ - 0.893196
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.14311714457332
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.285633
+ - -0.610247
+ - -0.015152
+ - - 1.0e-06
+ - 0.187007
+ - -0.000319
+ - - 7.0e-06
+ - 1.395769
+ - -0.000991
+ - - -1.285639
+ - -0.610216
+ - 0.015401
+ - - 2.141147
+ - 0.060794
+ - -0.02572
+ - - 1.336238
+ - -1.259956
+ - 0.862334
+ - - 1.315358
+ - -1.260982
+ - -0.892834
+ - - -1.336251
+ - -1.260901
+ - -0.861363
+ - - -2.141146
+ - 0.060844
+ - 0.025223
+ - - -1.315371
+ - -1.259976
+ - 0.893806
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,646 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.91283935295922
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.288783
+ - -0.610399
+ - -0.004653
+ - - 2.0e-06
+ - 0.193926
+ - -0.000321
+ - - 9.0e-06
+ - 1.409121
+ - -0.000994
+ - - -1.288789
+ - -0.610379
+ - 0.004901
+ - - 2.149918
+ - 0.055546
+ - -0.083992
+ - - 1.36221
+ - -1.19735
+ - 0.920097
+ - - 1.291132
+ - -1.32829
+ - -0.834245
+ - - -1.362223
+ - -1.198352
+ - -0.919199
+ - - -2.149916
+ - 0.055664
+ - 0.083502
+ - - -1.291147
+ - -1.32735
+ - 0.835287
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.142676370444214
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.292083
+ - -0.610681
+ - -0.001532
+ - - 2.0e-06
+ - 0.189088
+ - -0.00032
+ - - 9.0e-06
+ - 1.409412
+ - -0.000999
+ - - -1.292089
+ - -0.610663
+ - 0.001781
+ - - 2.151757
+ - 0.062072
+ - -0.100807
+ - - 1.379802
+ - -1.180073
+ - 0.938347
+ - - 1.294894
+ - -1.349528
+ - -0.818513
+ - - -1.379816
+ - -1.181099
+ - -0.937465
+ - - -2.151755
+ - 0.06221
+ - 0.100308
+ - - -1.294909
+ - -1.348602
+ - 0.819583
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.408503500030754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.282531
+ - -0.610036
+ - -0.01505
+ - - 1.0e-06
+ - 0.18143
+ - -0.000317
+ - - 7.0e-06
+ - 1.385795
+ - -0.000988
+ - - -1.282537
+ - -0.610006
+ - 0.015298
+ - - 2.13436
+ - 0.064398
+ - -0.025481
+ - - 1.335398
+ - -1.258019
+ - 0.861987
+ - - 1.314661
+ - -1.258959
+ - -0.892396
+ - - -1.335411
+ - -1.258965
+ - -0.861015
+ - - -2.134359
+ - 0.064449
+ - 0.024978
+ - - -1.314674
+ - -1.25795
+ - 0.893367
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.69260755323532
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.291448
+ - -0.612372
+ - -0.014879
+ - - 1.0e-06
+ - 0.1874
+ - -0.00032
+ - - 8.0e-06
+ - 1.396531
+ - -0.000993
+ - - -1.291454
+ - -0.612341
+ - 0.01513
+ - - 2.142948
+ - 0.066448
+ - -0.025176
+ - - 1.348215
+ - -1.262011
+ - 0.864342
+ - - 1.327759
+ - -1.263034
+ - -0.894426
+ - - -1.348228
+ - -1.262959
+ - -0.863367
+ - - -2.142947
+ - 0.066499
+ - 0.024671
+ - - -1.327772
+ - -1.262024
+ - 0.895401
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.848529206985326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.28336
+ - -0.610815
+ - -0.001692
+ - - -3.0e-06
+ - 0.184549
+ - -6.8e-05
+ - - 2.2e-05
+ - 1.39187
+ - 1.3e-05
+ - - -1.283384
+ - -0.610779
+ - 0.001666
+ - - 2.135311
+ - 0.056657
+ - -0.098343
+ - - 1.363608
+ - -1.175497
+ - 0.929836
+ - - 1.28027
+ - -1.337518
+ - -0.816096
+ - - -1.362863
+ - -1.177176
+ - -0.928876
+ - - -2.135409
+ - 0.056851
+ - 0.09654
+ - - -1.280934
+ - -1.336005
+ - 0.817404
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.57922039166151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.28336
+ - -0.610815
+ - -0.001692
+ - - -3.0e-06
+ - 0.184549
+ - -6.8e-05
+ - - 2.2e-05
+ - 1.39187
+ - 1.3e-05
+ - - -1.283384
+ - -0.610779
+ - 0.001666
+ - - 2.135311
+ - 0.056657
+ - -0.098343
+ - - 1.363608
+ - -1.175497
+ - 0.929836
+ - - 1.28027
+ - -1.337518
+ - -0.816096
+ - - -1.362863
+ - -1.177176
+ - -0.928876
+ - - -2.135409
+ - 0.056851
+ - 0.09654
+ - - -1.280934
+ - -1.336005
+ - 0.817404
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.89776643923286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.290032
+ - -0.611012
+ - -0.01512
+ - - 1.0e-06
+ - 0.192643
+ - -0.000322
+ - - 6.0e-06
+ - 1.401303
+ - -0.000994
+ - - -1.290038
+ - -0.610983
+ - 0.015369
+ - - 2.147563
+ - 0.06251
+ - -0.025627
+ - - 1.34332
+ - -1.263247
+ - 0.864069
+ - - 1.322539
+ - -1.264223
+ - -0.894597
+ - - -1.343331
+ - -1.264195
+ - -0.863094
+ - - -2.147563
+ - 0.062558
+ - 0.025127
+ - - -1.32255
+ - -1.263217
+ - 0.895572
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.12540688976968
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.283276
+ - -0.610687
+ - -0.008762
+ - - 1.0e-06
+ - 0.18579
+ - -0.000319
+ - - 7.0e-06
+ - 1.389466
+ - -0.000989
+ - - -1.283282
+ - -0.610664
+ - 0.009011
+ - - 2.136367
+ - 0.060218
+ - -0.060091
+ - - 1.344594
+ - -1.219279
+ - 0.895773
+ - - 1.293946
+ - -1.29686
+ - -0.857651
+ - - -1.344607
+ - -1.220262
+ - -0.894846
+ - - -2.136366
+ - 0.060306
+ - 0.059594
+ - - -1.293959
+ - -1.295891
+ - 0.858664
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.27671332659127
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.280569
+ - -0.608948
+ - -0.012529
+ - - 1.0e-06
+ - 0.184813
+ - -0.000318
+ - - 8.0e-06
+ - 1.390505
+ - -0.000989
+ - - -1.280575
+ - -0.60892
+ - 0.012776
+ - - 2.136497
+ - 0.062664
+ - -0.04026
+ - - 1.337841
+ - -1.243458
+ - 0.8767
+ - - 1.304535
+ - -1.276913
+ - -0.878265
+ - - -1.337853
+ - -1.244419
+ - -0.875746
+ - - -2.136496
+ - 0.062732
+ - 0.03976
+ - - -1.304548
+ - -1.275921
+ - 0.879255
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.960247357206235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.293086
+ - -0.611293
+ - -0.015081
+ - - 1.0e-06
+ - 0.186871
+ - -0.000319
+ - - 7.0e-06
+ - 1.405411
+ - -0.000997
+ - - -1.293092
+ - -0.611262
+ - 0.015331
+ - - 2.149239
+ - 0.064796
+ - -0.025551
+ - - 1.345721
+ - -1.263812
+ - 0.865349
+ - - 1.324989
+ - -1.264837
+ - -0.895746
+ - - -1.345733
+ - -1.26476
+ - -0.864374
+ - - -2.149238
+ - 0.064847
+ - 0.025049
+ - - -1.325002
+ - -1.263826
+ - 0.896722
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1035,70 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.38296075372663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2833604571
+ - -0.610814849
+ - -0.0016921747
+ - - -3.4987e-06
+ - 0.1845486109
+ - -6.81906e-05
+ - - 2.24882e-05
+ - 1.3918699601
+ - 1.29587e-05
+ - - -1.2833840526
+ - -0.610779009
+ - 0.0016655549
+ - - 2.1353112248
+ - 0.0566567975
+ - -0.0983428219
+ - - 1.3636080623
+ - -1.1754973452
+ - 0.9298362784
+ - - 1.2802703464
+ - -1.3375175933
+ - -0.8160957821
+ - - -1.3628633763
+ - -1.1771755614
+ - -0.928875847
+ - - -2.1354093369
+ - 0.0568506119
+ - 0.0965396128
+ - - -1.2809342607
+ - -1.3360051075
+ - 0.8174037524
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetonyl.yml b/input/reference_sets/main/Acetonyl.yml
index 679e32526a..08205d751d 100644
--- a/input/reference_sets/main/Acetonyl.yml
+++ b/input/reference_sets/main/Acetonyl.yml
@@ -11,6 +11,773 @@ adjacency_list: |
8 H u0 p0 c0 {4,S}
9 H u0 p0 c0 {4,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.4165071743395856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.350948
+ - -0.357128
+ - -5.1e-05
+ - - -0.082451
+ - 0.126643
+ - -0.000743
+ - - -0.358738
+ - 1.322403
+ - -0.002594
+ - - -1.128913
+ - -0.867769
+ - 0.00085
+ - - 2.023422
+ - 0.495932
+ - -0.001385
+ - - 1.543421
+ - -0.976094
+ - -0.878149
+ - - 1.543486
+ - -0.973398
+ - 0.879927
+ - - -2.156449
+ - -0.53597
+ - 0.000376
+ - - -0.910078
+ - -1.926044
+ - 0.002488
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.9740207491192865
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.351956
+ - -0.358173
+ - -4.7e-05
+ - - -0.08561
+ - 0.119819
+ - -0.000733
+ - - -0.362183
+ - 1.320505
+ - -0.002593
+ - - -1.129204
+ - -0.864835
+ - 0.000842
+ - - 2.021298
+ - 0.498644
+ - -0.001393
+ - - 1.550786
+ - -0.976464
+ - -0.878671
+ - - 1.55085
+ - -0.973751
+ - 0.880466
+ - - -2.157612
+ - -0.531477
+ - 0.000363
+ - - -0.915632
+ - -1.925692
+ - 0.002485
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.041242363372386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.354564
+ - -0.357751
+ - -5.4e-05
+ - - -0.087954
+ - 0.126467
+ - -0.000738
+ - - -0.366487
+ - 1.334109
+ - -0.002598
+ - - -1.130891
+ - -0.865561
+ - 0.000847
+ - - 2.031549
+ - 0.498255
+ - -0.001398
+ - - 1.550676
+ - -0.981127
+ - -0.881322
+ - - 1.55075
+ - -0.978416
+ - 0.883109
+ - - -2.165721
+ - -0.536967
+ - 0.000384
+ - - -0.911836
+ - -1.930433
+ - 0.002489
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.6644225301048073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.357421
+ - -0.357258
+ - -4.8e-05
+ - - -0.086593
+ - 0.122591
+ - -0.000742
+ - - -0.367294
+ - 1.33432
+ - -0.002631
+ - - -1.135316
+ - -0.867749
+ - 0.000852
+ - - 2.032268
+ - 0.50634
+ - -0.001381
+ - - 1.560263
+ - -0.981664
+ - -0.8846
+ - - 1.560312
+ - -0.978974
+ - 0.886386
+ - - -2.172257
+ - -0.529965
+ - 0.000361
+ - - -0.924155
+ - -1.939065
+ - 0.002524
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.7842875414438444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.349573
+ - -0.357663
+ - -4.5e-05
+ - - -0.08289
+ - 0.116702
+ - -0.00072
+ - - -0.358913
+ - 1.310689
+ - -0.002543
+ - - -1.127475
+ - -0.864729
+ - 0.000827
+ - - 2.015827
+ - 0.500576
+ - -0.001447
+ - - 1.549062
+ - -0.974197
+ - -0.878165
+ - - 1.549153
+ - -0.97139
+ - 0.880019
+ - - -2.153527
+ - -0.526067
+ - 0.000351
+ - - -0.916163
+ - -1.925346
+ - 0.002444
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.917700400484113
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.356264
+ - -0.359444
+ - -3.9e-05
+ - - -0.086994
+ - 0.120143
+ - -0.000739
+ - - -0.363901
+ - 1.321289
+ - -0.002612
+ - - -1.134102
+ - -0.867541
+ - 0.000844
+ - - 2.021168
+ - 0.502955
+ - -0.001376
+ - - 1.560448
+ - -0.976511
+ - -0.880342
+ - - 1.560492
+ - -0.973817
+ - 0.882136
+ - - -2.161885
+ - -0.527032
+ - 0.000346
+ - - -0.926841
+ - -1.931466
+ - 0.002503
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.36413730049825815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.35107
+ - -0.357967
+ - -3.0e-05
+ - - -0.083076
+ - 0.119802
+ - -0.000116
+ - - -0.36011
+ - 1.315842
+ - -2.0e-06
+ - - -1.128769
+ - -0.865729
+ - 5.0e-06
+ - - 2.019202
+ - 0.498736
+ - -0.004417
+ - - 1.5454
+ - -0.978035
+ - -0.876902
+ - - 1.547304
+ - -0.970035
+ - 0.882069
+ - - -2.155183
+ - -0.529203
+ - 0.000349
+ - - -0.911189
+ - -1.924836
+ - -0.000235
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.239440054377667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.35107
+ - -0.357967
+ - -3.0e-05
+ - - -0.083076
+ - 0.119802
+ - -0.000116
+ - - -0.36011
+ - 1.315842
+ - -2.0e-06
+ - - -1.128769
+ - -0.865729
+ - 5.0e-06
+ - - 2.019202
+ - 0.498736
+ - -0.004417
+ - - 1.5454
+ - -0.978035
+ - -0.876902
+ - - 1.547304
+ - -0.970035
+ - 0.882069
+ - - -2.155183
+ - -0.529203
+ - 0.000349
+ - - -0.911189
+ - -1.924836
+ - -0.000235
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.724601505170691
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.35107
+ - -0.357967
+ - -3.0e-05
+ - - -0.083076
+ - 0.119802
+ - -0.000116
+ - - -0.36011
+ - 1.315842
+ - -2.0e-06
+ - - -1.128769
+ - -0.865729
+ - 5.0e-06
+ - - 2.019202
+ - 0.498736
+ - -0.004417
+ - - 1.5454
+ - -0.978035
+ - -0.876902
+ - - 1.547304
+ - -0.970035
+ - 0.882069
+ - - -2.155183
+ - -0.529203
+ - 0.000349
+ - - -0.911189
+ - -1.924836
+ - -0.000235
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.670479849538529
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.354696
+ - -0.358711
+ - -4.5e-05
+ - - -0.088499
+ - 0.124763
+ - -0.00074
+ - - -0.363682
+ - 1.325315
+ - -0.002594
+ - - -1.132434
+ - -0.865536
+ - 0.000839
+ - - 2.025562
+ - 0.500888
+ - -0.001402
+ - - 1.556522
+ - -0.979019
+ - -0.880292
+ - - 1.556586
+ - -0.976288
+ - 0.882106
+ - - -2.164064
+ - -0.533568
+ - 0.000366
+ - - -0.920039
+ - -1.929269
+ - 0.002482
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.688243564097868
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.350401
+ - -0.357541
+ - -5.0e-05
+ - - -0.082314
+ - 0.125472
+ - -0.000734
+ - - -0.357289
+ - 1.316535
+ - -0.002554
+ - - -1.127806
+ - -0.866248
+ - 0.000837
+ - - 2.020745
+ - 0.497448
+ - -0.001437
+ - - 1.541541
+ - -0.975991
+ - -0.878786
+ - - 1.541633
+ - -0.973205
+ - 0.880621
+ - - -2.155261
+ - -0.53373
+ - 0.000378
+ - - -0.907002
+ - -1.924165
+ - 0.002445
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.6315679681114963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.348239
+ - -0.356613
+ - -5.0e-05
+ - - -0.08246
+ - 0.120981
+ - -0.000729
+ - - -0.359566
+ - 1.315828
+ - -0.002563
+ - - -1.126018
+ - -0.865036
+ - 0.000836
+ - - 2.019686
+ - 0.499857
+ - -0.001428
+ - - 1.546177
+ - -0.976362
+ - -0.878878
+ - - 1.54626
+ - -0.973591
+ - 0.880708
+ - - -2.155159
+ - -0.529134
+ - 0.000364
+ - - -0.912511
+ - -1.927356
+ - 0.00246
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.563001600876003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.358604
+ - -0.357883
+ - -4.4e-05
+ - - -0.085861
+ - 0.1203
+ - -0.000732
+ - - -0.365736
+ - 1.330347
+ - -0.002599
+ - - -1.135334
+ - -0.867348
+ - 0.000839
+ - - 2.028078
+ - 0.50344
+ - -0.001399
+ - - 1.559072
+ - -0.978715
+ - -0.881623
+ - - 1.559136
+ - -0.975989
+ - 0.883433
+ - - -2.167708
+ - -0.531431
+ - 0.000355
+ - - -0.925601
+ - -1.934146
+ - 0.00249
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -70,6 +837,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.215256356977469
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3510696016
+ - -0.3579670001
+ - -2.9528e-05
+ - - -0.0830763857
+ - 0.1198024537
+ - -0.0001157336
+ - - -0.3601097225
+ - 1.3158420001
+ - -2.379e-06
+ - - -1.1287692773
+ - -0.8657293051
+ - 4.611e-06
+ - - 2.0192022658
+ - 0.4987363182
+ - -0.004417468
+ - - 1.5453998047
+ - -0.9780353579
+ - -0.8769022754
+ - - 1.5473041627
+ - -0.970034517
+ - 0.8820686264
+ - - -2.1551829283
+ - -0.5292029803
+ - 0.0003489683
+ - - -0.9111891568
+ - -1.9248363554
+ - -0.000234916
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.860406418460706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.350294
+ - -0.357463
+ - -4.9e-05
+ - - -0.083993
+ - 0.122392
+ - -0.000729
+ - - -0.36015
+ - 1.316116
+ - -0.002555
+ - - -1.127629
+ - -0.864456
+ - 0.000834
+ - - 2.022129
+ - 0.497449
+ - -0.001434
+ - - 1.545379
+ - -0.975729
+ - -0.878995
+ - - 1.545469
+ - -0.972944
+ - 0.88083
+ - - -2.156659
+ - -0.531893
+ - 0.000371
+ - - -0.91019
+ - -1.924898
+ - 0.002449
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/Acetyl chloride.yml b/input/reference_sets/main/Acetyl chloride.yml
index 0b6ee4a0fb..030d8ae4de 100644
--- a/input/reference_sets/main/Acetyl chloride.yml
+++ b/input/reference_sets/main/Acetyl chloride.yml
@@ -63,7 +63,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -58.45503616132602
+ value: -58.45503616132595
class: ThermoData
xyz_dict:
coords:
@@ -106,6 +106,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.6287314414276
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.31593
+ - -0.99255
+ - -0.000133
+ - - 0.472044
+ - 0.243286
+ - 0.000485
+ - - 0.832303
+ - 1.371144
+ - 0.002994
+ - - -1.295183
+ - -0.153958
+ - -0.003221
+ - - 1.081037
+ - -1.589404
+ - -0.880247
+ - - 2.365749
+ - -0.711474
+ - 0.002145
+ - - 1.078014
+ - -1.592348
+ - 0.877164
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.74760219329083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.316905
+ - -0.991763
+ - -0.000131
+ - - 0.47419
+ - 0.245045
+ - 0.000494
+ - - 0.832042
+ - 1.369107
+ - 0.002992
+ - - -1.30246
+ - -0.152277
+ - -0.003224
+ - - 1.082062
+ - -1.590372
+ - -0.880457
+ - - 2.368116
+ - -0.711725
+ - 0.002146
+ - - 1.079039
+ - -1.59332
+ - 0.877369
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -155,6 +253,545 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.63867855528807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.31908
+ - -0.991996
+ - -0.000124
+ - - 0.477859
+ - 0.250206
+ - 0.000501
+ - - 0.834093
+ - 1.381161
+ - 0.002993
+ - - -1.313085
+ - -0.159902
+ - -0.003249
+ - - 1.079539
+ - -1.592659
+ - -0.882983
+ - - 2.375891
+ - -0.716519
+ - 0.002147
+ - - 1.076516
+ - -1.595595
+ - 0.879902
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.10556752744551
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.318356
+ - -0.991661
+ - -0.000125
+ - - 0.47529
+ - 0.249551
+ - 0.000497
+ - - 0.833916
+ - 1.385157
+ - 0.003004
+ - - -1.314223
+ - -0.157219
+ - -0.003249
+ - - 1.080059
+ - -1.596892
+ - -0.886075
+ - - 2.379476
+ - -0.714395
+ - 0.002161
+ - - 1.07702
+ - -1.599845
+ - 0.882974
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.706934184028825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.314032
+ - -0.99094
+ - -0.000136
+ - - 0.468328
+ - 0.239292
+ - 0.000479
+ - - 0.829212
+ - 1.359423
+ - 0.00299
+ - - -1.287522
+ - -0.144677
+ - -0.003198
+ - - 1.083054
+ - -1.589907
+ - -0.880013
+ - - 2.362772
+ - -0.705621
+ - 0.002157
+ - - 1.080019
+ - -1.592874
+ - 0.876909
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.35261355585472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.318999
+ - -0.99401
+ - -0.000126
+ - - 0.48171
+ - 0.250345
+ - 0.000513
+ - - 0.831281
+ - 1.375313
+ - 0.002972
+ - - -1.318319
+ - -0.153716
+ - -0.003227
+ - - 1.083445
+ - -1.592532
+ - -0.88203
+ - - 2.372356
+ - -0.715194
+ - 0.00215
+ - - 1.080422
+ - -1.59551
+ - 0.878936
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.7451881938417
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.315807
+ - -0.992896
+ - 7.5e-05
+ - - 0.469407
+ - 0.24066
+ - 0.000174
+ - - 0.827376
+ - 1.364918
+ - -4.4e-05
+ - - -1.285475
+ - -0.147996
+ - -7.0e-06
+ - - 1.082445
+ - -1.588124
+ - -0.881845
+ - - 2.364642
+ - -0.707914
+ - 0.004729
+ - - 1.075692
+ - -1.593951
+ - 0.876107
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.2317244070224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.315807
+ - -0.992896
+ - 7.5e-05
+ - - 0.469407
+ - 0.24066
+ - 0.000174
+ - - 0.827376
+ - 1.364918
+ - -4.4e-05
+ - - -1.285475
+ - -0.147996
+ - -7.0e-06
+ - - 1.082445
+ - -1.588124
+ - -0.881845
+ - - 2.364642
+ - -0.707914
+ - 0.004729
+ - - 1.075692
+ - -1.593951
+ - 0.876107
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.31183591079442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.315807
+ - -0.992896
+ - 7.5e-05
+ - - 0.469407
+ - 0.24066
+ - 0.000174
+ - - 0.827376
+ - 1.364918
+ - -4.4e-05
+ - - -1.285475
+ - -0.147996
+ - -7.0e-06
+ - - 1.082445
+ - -1.588124
+ - -0.881845
+ - - 2.364642
+ - -0.707914
+ - 0.004729
+ - - 1.075692
+ - -1.593951
+ - 0.876107
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.599545879001944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.318042
+ - -0.993396
+ - -0.000127
+ - - 0.478052
+ - 0.250859
+ - 0.000505
+ - - 0.830315
+ - 1.377338
+ - 0.00298
+ - - -1.309536
+ - -0.155226
+ - -0.00323
+ - - 1.081545
+ - -1.593442
+ - -0.882578
+ - - 2.372966
+ - -0.71503
+ - 0.002157
+ - - 1.07851
+ - -1.596407
+ - 0.87948
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.67568967682057
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.316293
+ - -0.993233
+ - -0.000136
+ - - 0.468807
+ - 0.240455
+ - 0.000482
+ - - 0.827456
+ - 1.36111
+ - 0.003022
+ - - -1.283745
+ - -0.147323
+ - -0.00324
+ - - 1.079868
+ - -1.58861
+ - -0.881203
+ - - 2.364351
+ - -0.706158
+ - 0.002136
+ - - 1.076863
+ - -1.591545
+ - 0.878127
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.26487523090229
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.313085
+ - -0.988994
+ - -0.000133
+ - - 0.469518
+ - 0.240482
+ - 0.000481
+ - - 0.829267
+ - 1.363257
+ - 0.003012
+ - - -1.281199
+ - -0.151133
+ - -0.00323
+ - - 1.078813
+ - -1.58959
+ - -0.880673
+ - - 2.364614
+ - -0.706794
+ - 0.002146
+ - - 1.075796
+ - -1.592531
+ - 0.877584
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.373258674293055
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.319039
+ - -0.993742
+ - -0.000126
+ - - 0.47657
+ - 0.249138
+ - 0.000496
+ - - 0.833054
+ - 1.382879
+ - 0.002987
+ - - -1.310239
+ - -0.158649
+ - -0.003236
+ - - 1.079888
+ - -1.593035
+ - -0.883553
+ - - 2.374731
+ - -0.715915
+ - 0.002154
+ - - 1.076851
+ - -1.59598
+ - 0.880465
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.527912948762065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3158069044
+ - -0.9928961839
+ - 7.45157e-05
+ - - 0.4694065836
+ - 0.2406599847
+ - 0.0001738821
+ - - 0.8273763156
+ - 1.3649175973
+ - -4.44606e-05
+ - - -1.2854747323
+ - -0.1479961468
+ - -7.3867e-06
+ - - 1.0824446778
+ - -1.5881240173
+ - -0.8818446864
+ - - 2.3646420609
+ - -0.7079140732
+ - 0.0047286117
+ - - 1.0756922572
+ - -1.5939509957
+ - 0.8761069464
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -54.306323470452426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.315278
+ - -0.99208
+ - -0.000134
+ - - 0.469246
+ - 0.241562
+ - 0.000481
+ - - 0.828275
+ - 1.362648
+ - 0.002976
+ - - -1.290526
+ - -0.145964
+ - -0.003191
+ - - 1.082767
+ - -1.590207
+ - -0.881203
+ - - 2.365143
+ - -0.708078
+ - 0.002169
+ - - 1.079711
+ - -1.593186
+ - 0.87809
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetyl.yml b/input/reference_sets/main/Acetyl.yml
index 9739ce78d5..ed4867456c 100644
--- a/input/reference_sets/main/Acetyl.yml
+++ b/input/reference_sets/main/Acetyl.yml
@@ -14,7 +14,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -2.6701324613160056
+ value: -2.6701324613160042
class: ThermoData
xyz_dict:
coords:
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3753243775519117
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16456
+ - -0.098127
+ - -1.6e-05
+ - - -0.24621
+ - 0.432544
+ - -5.4e-05
+ - - -1.261652
+ - -0.173492
+ - 6.9e-05
+ - - 1.679797
+ - 0.288727
+ - -0.878193
+ - - 1.173306
+ - -1.189462
+ - 0.000105
+ - - 1.679813
+ - 0.288919
+ - 0.878067
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4276008990680344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16302
+ - -0.098952
+ - -1.2e-05
+ - - -0.247557
+ - 0.430268
+ - -3.9e-05
+ - - -1.261142
+ - -0.17017
+ - 5.1e-05
+ - - 1.679691
+ - 0.289896
+ - -0.878341
+ - - 1.175871
+ - -1.192023
+ - 0.000109
+ - - 1.67973
+ - 0.29009
+ - 0.878209
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.193821755122444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164034
+ - -0.100305
+ - -1.1e-05
+ - - -0.251272
+ - 0.436214
+ - -3.9e-05
+ - - -1.27079
+ - -0.172041
+ - 5.1e-05
+ - - 1.683898
+ - 0.291476
+ - -0.880893
+ - - 1.179807
+ - -1.197905
+ - 0.00011
+ - - 1.683938
+ - 0.291671
+ - 0.88076
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4344292294336278
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.162463
+ - -0.100794
+ - -1.1e-05
+ - - -0.248852
+ - 0.433713
+ - -3.9e-05
+ - - -1.275007
+ - -0.169652
+ - 5.1e-05
+ - - 1.684869
+ - 0.294457
+ - -0.8834
+ - - 1.181234
+ - -1.203268
+ - 0.000111
+ - - 1.684908
+ - 0.294653
+ - 0.883266
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.49889475662344035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16151
+ - -0.097921
+ - -1.1e-05
+ - - -0.244747
+ - 0.427841
+ - -3.7e-05
+ - - -1.253721
+ - -0.170535
+ - 4.9e-05
+ - - 1.67747
+ - 0.289466
+ - -0.877734
+ - - 1.17159
+ - -1.189402
+ - 0.000109
+ - - 1.677511
+ - 0.289661
+ - 0.877601
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.2317770348978554
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164472
+ - -0.098393
+ - -1.2e-05
+ - - -0.252507
+ - 0.434967
+ - -4.1e-05
+ - - -1.263546
+ - -0.173559
+ - 5.3e-05
+ - - 1.683061
+ - 0.289433
+ - -0.879579
+ - - 1.175037
+ - -1.192966
+ - 0.000109
+ - - 1.683097
+ - 0.289627
+ - 0.879447
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.3298730601262587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164724
+ - -0.098258
+ - 2.0e-06
+ - - -0.247265
+ - 0.432184
+ - 4.0e-06
+ - - -1.253844
+ - -0.174105
+ - -1.0e-06
+ - - 1.678534
+ - 0.289503
+ - -0.878337
+ - - 1.168826
+ - -1.189918
+ - 0.000121
+ - - 1.678639
+ - 0.289705
+ - 0.878189
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.9492800014265645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164724
+ - -0.098258
+ - 2.0e-06
+ - - -0.247265
+ - 0.432184
+ - 4.0e-06
+ - - -1.253844
+ - -0.174105
+ - -1.0e-06
+ - - 1.678534
+ - 0.289503
+ - -0.878337
+ - - 1.168826
+ - -1.189918
+ - 0.000121
+ - - 1.678639
+ - 0.289705
+ - 0.878189
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.9871184068200702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.164724
+ - -0.098258
+ - 2.0e-06
+ - - -0.247265
+ - 0.432184
+ - 4.0e-06
+ - - -1.253844
+ - -0.174105
+ - -1.0e-06
+ - - 1.678534
+ - 0.289503
+ - -0.878337
+ - - 1.168826
+ - -1.189918
+ - 0.000121
+ - - 1.678639
+ - 0.289705
+ - 0.878189
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.6921610521598613
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163782
+ - -0.099275
+ - -1.3e-05
+ - - -0.254129
+ - 0.436535
+ - -4.4e-05
+ - - -1.267509
+ - -0.172476
+ - 5.7e-05
+ - - 1.683917
+ - 0.289388
+ - -0.880152
+ - - 1.179605
+ - -1.194644
+ - 0.000108
+ - - 1.683949
+ - 0.289582
+ - 0.880021
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.4479271594326543
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.165267
+ - -0.099029
+ - -1.1e-05
+ - - -0.247612
+ - 0.432059
+ - -3.7e-05
+ - - -1.251155
+ - -0.173524
+ - 4.9e-05
+ - - 1.677268
+ - 0.289656
+ - -0.879174
+ - - 1.168535
+ - -1.189904
+ - 0.000109
+ - - 1.677311
+ - 0.289851
+ - 0.879041
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.0927230736317424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.159754
+ - -0.099893
+ - -1.2e-05
+ - - -0.242252
+ - 0.425004
+ - -4.1e-05
+ - - -1.258246
+ - -0.166114
+ - 5.3e-05
+ - - 1.67683
+ - 0.291739
+ - -0.878093
+ - - 1.176663
+ - -1.193559
+ - 0.000109
+ - - 1.676865
+ - 0.291933
+ - 0.877961
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.565522072409677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1659
+ - -0.100693
+ - -1.2e-05
+ - - -0.249989
+ - 0.434778
+ - -3.9e-05
+ - - -1.27223
+ - -0.171186
+ - 5.1e-05
+ - - 1.683056
+ - 0.291668
+ - -0.881322
+ - - 1.179783
+ - -1.197322
+ - 0.00011
+ - - 1.683094
+ - 0.291864
+ - 0.881189
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.0789835672317456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1647236343
+ - -0.0982583775
+ - 1.8977e-06
+ - - -0.2472651951
+ - 0.4321836987
+ - 3.81e-06
+ - - -1.2538437061
+ - -0.174105128
+ - -8.602e-07
+ - - 1.6785343483
+ - 0.2895026399
+ - -0.8783372227
+ - - 1.1688260985
+ - -1.189918213
+ - 0.0001213027
+ - - 1.6786385671
+ - 0.2897046704
+ - 0.8781885552
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.48498360388741246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163009
+ - -0.099256
+ - -1.2e-05
+ - - -0.247042
+ - 0.430243
+ - -3.9e-05
+ - - -1.256469
+ - -0.170179
+ - 5.1e-05
+ - - 1.677784
+ - 0.289765
+ - -0.878744
+ - - 1.17451
+ - -1.191423
+ - 0.000109
+ - - 1.677822
+ - 0.28996
+ - 0.878612
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Acetylene.yml b/input/reference_sets/main/Acetylene.yml
index 187cf8300c..71afeab324 100644
--- a/input/reference_sets/main/Acetylene.yml
+++ b/input/reference_sets/main/Acetylene.yml
@@ -11,7 +11,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 55.450668696434924
+ value: 55.45066869643488
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.53749621816304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.601271
+ - - 0.0
+ - 0.0
+ - -0.601271
+ - - 0.0
+ - 0.0
+ - 1.663226
+ - - 0.0
+ - 0.0
+ - -1.663226
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.34126924143592
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.598393
+ - - 0.0
+ - -0.0
+ - -0.598393
+ - - 0.0
+ - -0.0
+ - 1.661066
+ - - 0.0
+ - -0.0
+ - -1.661066
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.31676088785494
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.602448
+ - - 0.0
+ - 0.0
+ - -0.602448
+ - - 0.0
+ - 0.0
+ - 1.669292
+ - - 0.0
+ - 0.0
+ - -1.669292
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.645253024796396
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.603929
+ - - 0.0
+ - 0.0
+ - -0.603929
+ - - 0.0
+ - 0.0
+ - 1.67511
+ - - 0.0
+ - 0.0
+ - -1.67511
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.267571035153836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.595898
+ - - 0.0
+ - 0.0
+ - -0.595898
+ - - 0.0
+ - 0.0
+ - 1.659067
+ - - 0.0
+ - 0.0
+ - -1.659067
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.43552711875177
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.599071
+ - - 0.0
+ - -0.0
+ - -0.599071
+ - - 0.0
+ - -0.0
+ - 1.661919
+ - - 0.0
+ - -0.0
+ - -1.661919
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.14442053774604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 3.0e-06
+ - 0.597758
+ - - -0.0
+ - -3.0e-06
+ - -0.597758
+ - - -0.0
+ - -7.0e-06
+ - 1.661189
+ - - 0.0
+ - 7.0e-06
+ - -1.661189
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.52840608618102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 3.0e-06
+ - 0.597758
+ - - -0.0
+ - -3.0e-06
+ - -0.597758
+ - - -0.0
+ - -7.0e-06
+ - 1.661189
+ - - 0.0
+ - 7.0e-06
+ - -1.661189
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.707412759875815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 3.0e-06
+ - 0.597758
+ - - -0.0
+ - -3.0e-06
+ - -0.597758
+ - - -0.0
+ - -7.0e-06
+ - 1.661189
+ - - 0.0
+ - 7.0e-06
+ - -1.661189
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.126921136620744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.599453
+ - - 0.0
+ - 0.0
+ - -0.599453
+ - - 0.0
+ - 0.0
+ - 1.661627
+ - - 0.0
+ - 0.0
+ - -1.661627
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.28417723102964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.597237
+ - - 0.0
+ - 0.0
+ - -0.597237
+ - - 0.0
+ - 0.0
+ - 1.661171
+ - - 0.0
+ - 0.0
+ - -1.661171
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.25960637829606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.598506
+ - - 0.0
+ - 0.0
+ - -0.598506
+ - - 0.0
+ - 0.0
+ - 1.663248
+ - - 0.0
+ - 0.0
+ - -1.663248
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.73792854501123
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.60161
+ - - 0.0
+ - 0.0
+ - -0.60161
+ - - 0.0
+ - 0.0
+ - 1.667607
+ - - 0.0
+ - 0.0
+ - -1.667607
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.638334429312664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 3.3443e-06
+ - 0.597758051
+ - - -0.0
+ - -3.3443e-06
+ - -0.597758051
+ - - -1.0e-10
+ - -7.2204e-06
+ - 1.6611893439
+ - - 1.0e-10
+ - 7.2204e-06
+ - -1.6611893439
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.69269760242669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.59732
+ - - 0.0
+ - -0.0
+ - -0.59732
+ - - 0.0
+ - -0.0
+ - 1.661335
+ - - 0.0
+ - -0.0
+ - -1.661335
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Adamantane.yml b/input/reference_sets/main/Adamantane.yml
index 8e54b13fb1..0cdebe2a98 100644
--- a/input/reference_sets/main/Adamantane.yml
+++ b/input/reference_sets/main/Adamantane.yml
@@ -459,6 +459,726 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.533253888523741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.923276
+ - 0.624809
+ - 1.37138
+ - - 0.402292
+ - 1.201483
+ - 0.864962
+ - - 1.488044
+ - 0.124037
+ - 0.945388
+ - - 1.089239
+ - -1.077087
+ - 0.082552
+ - - -0.237875
+ - -1.648568
+ - 0.590805
+ - - -1.327634
+ - -0.575243
+ - 0.50963
+ - - -1.488072
+ - -0.12405
+ - -0.945308
+ - - -0.16384
+ - 0.45098
+ - -1.457088
+ - - 0.23794
+ - 1.648603
+ - -0.590804
+ - - 0.923294
+ - -0.624665
+ - -1.371393
+ - - -1.70291
+ - 1.390916
+ - 1.336195
+ - - -0.823747
+ - 0.318859
+ - 2.416592
+ - - 0.688886
+ - 2.057315
+ - 1.481111
+ - - 1.627631
+ - -0.190328
+ - 1.983503
+ - - 2.444425
+ - 0.529687
+ - 0.60368
+ - - 1.865176
+ - -1.844346
+ - 0.141383
+ - - -0.524138
+ - -2.518935
+ - -0.006269
+ - - -0.126893
+ - -1.992458
+ - 1.622991
+ - - -2.273424
+ - -0.985025
+ - 0.872658
+ - - -1.795062
+ - -0.969086
+ - -1.567932
+ - - -2.277119
+ - 0.629582
+ - -1.01902
+ - - -0.280527
+ - 0.772213
+ - -2.495077
+ - - -0.522274
+ - 2.431841
+ - -0.658605
+ - - 1.173491
+ - 2.0796
+ - -0.958198
+ - - 0.656462
+ - -1.478014
+ - -2.001137
+ - - 1.870219
+ - -0.231389
+ - -1.751729
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.12392778114887
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.146217
+ - 1.353889
+ - 0.147763
+ - - -0.419305
+ - 0.943269
+ - -1.149609
+ - - 1.105267
+ - 1.037562
+ - -0.933146
+ - - 1.526994
+ - 0.096661
+ - 0.214475
+ - - 0.795778
+ - 0.50918
+ - 1.508789
+ - - -0.729459
+ - 0.413539
+ - 1.297628
+ - - -1.105192
+ - -1.037664
+ - 0.933149
+ - - -0.378237
+ - -1.453504
+ - -0.362503
+ - - -0.79592
+ - -0.509069
+ - -1.508675
+ - - 1.146265
+ - -1.353822
+ - -0.147763
+ - - -2.231777
+ - 1.309557
+ - 0.000603
+ - - -0.901815
+ - 2.391654
+ - 0.403448
+ - - -0.716684
+ - 1.612138
+ - -1.964732
+ - - 1.388229
+ - 2.069953
+ - -0.696166
+ - - 1.633323
+ - 0.766387
+ - -1.854934
+ - - 2.609792
+ - 0.165147
+ - 0.366486
+ - - 1.10224
+ - -0.140466
+ - 2.337115
+ - - 1.073273
+ - 1.53259
+ - 1.787534
+ - - -1.246734
+ - 0.706837
+ - 2.217768
+ - - -0.831225
+ - -1.713854
+ - 1.751551
+ - - -2.190061
+ - -1.122912
+ - 0.799505
+ - - -0.646382
+ - -2.484153
+ - -0.619609
+ - - -1.875524
+ - -0.585134
+ - -1.684014
+ - - -0.300447
+ - -0.806563
+ - -2.440379
+ - - 1.45861
+ - -2.035512
+ - 0.652112
+ - - 1.675074
+ - -1.66555
+ - -1.056206
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.585424591568295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.923836
+ - 0.624741
+ - 1.371741
+ - - 0.402335
+ - 1.202076
+ - 0.865316
+ - - 1.488879
+ - 0.124414
+ - 0.945643
+ - - 1.089912
+ - -1.07741
+ - 0.082656
+ - - -0.237878
+ - -1.649234
+ - 0.591085
+ - - -1.3285
+ - -0.575683
+ - 0.509609
+ - - -1.489002
+ - -0.12411
+ - -0.945636
+ - - -0.163874
+ - 0.450937
+ - -1.457706
+ - - 0.237966
+ - 1.649239
+ - -0.591065
+ - - 0.923938
+ - -0.625116
+ - -1.371697
+ - - -1.703993
+ - 1.391677
+ - 1.334
+ - - -0.822903
+ - 0.317091
+ - 2.41739
+ - - 0.689137
+ - 2.058373
+ - 1.48194
+ - - 1.626715
+ - -0.191241
+ - 1.984638
+ - - 2.445153
+ - 0.530854
+ - 0.601211
+ - - 1.866402
+ - -1.845109
+ - 0.141645
+ - - -0.524312
+ - -2.519037
+ - -0.008617
+ - - -0.126124
+ - -1.991122
+ - 1.62492
+ - - -2.274919
+ - -0.98566
+ - 0.873035
+ - - -1.795527
+ - -0.970398
+ - -1.568457
+ - - -2.276757
+ - 0.632571
+ - -1.017
+ - - -0.280645
+ - 0.772391
+ - -2.496341
+ - - -0.52454
+ - 2.431683
+ - -0.658332
+ - - 1.175894
+ - 2.077907
+ - -0.958137
+ - - 0.655004
+ - -1.479451
+ - -2.000965
+ - - 1.871786
+ - -0.22965
+ - -1.75061
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.15084572620066
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.923836
+ - 0.624741
+ - 1.371741
+ - - 0.402335
+ - 1.202076
+ - 0.865316
+ - - 1.488879
+ - 0.124414
+ - 0.945643
+ - - 1.089912
+ - -1.07741
+ - 0.082656
+ - - -0.237878
+ - -1.649234
+ - 0.591085
+ - - -1.3285
+ - -0.575683
+ - 0.509609
+ - - -1.489002
+ - -0.12411
+ - -0.945636
+ - - -0.163874
+ - 0.450937
+ - -1.457706
+ - - 0.237966
+ - 1.649239
+ - -0.591065
+ - - 0.923938
+ - -0.625116
+ - -1.371697
+ - - -1.703993
+ - 1.391677
+ - 1.334
+ - - -0.822903
+ - 0.317091
+ - 2.41739
+ - - 0.689137
+ - 2.058373
+ - 1.48194
+ - - 1.626715
+ - -0.191241
+ - 1.984638
+ - - 2.445153
+ - 0.530854
+ - 0.601211
+ - - 1.866402
+ - -1.845109
+ - 0.141645
+ - - -0.524312
+ - -2.519037
+ - -0.008617
+ - - -0.126124
+ - -1.991122
+ - 1.62492
+ - - -2.274919
+ - -0.98566
+ - 0.873035
+ - - -1.795527
+ - -0.970398
+ - -1.568457
+ - - -2.276757
+ - 0.632571
+ - -1.017
+ - - -0.280645
+ - 0.772391
+ - -2.496341
+ - - -0.52454
+ - 2.431683
+ - -0.658332
+ - - 1.175894
+ - 2.077907
+ - -0.958137
+ - - 0.655004
+ - -1.479451
+ - -2.000965
+ - - 1.871786
+ - -0.22965
+ - -1.75061
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.954930439395536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.678015
+ - 0.593272
+ - 0.014269
+ - - 1.259873
+ - -0.890175
+ - 0.073974
+ - - 0.386772
+ - -1.125535
+ - 1.32348
+ - - -0.872348
+ - -0.237669
+ - 1.251948
+ - - -0.450222
+ - 1.244555
+ - 1.190081
+ - - 0.421398
+ - 1.484524
+ - -0.059575
+ - - -0.386688
+ - 1.125652
+ - -1.323404
+ - - -0.808808
+ - -0.356766
+ - -1.266373
+ - - 0.450087
+ - -1.244602
+ - -1.190047
+ - - -1.678006
+ - -0.593294
+ - -0.014335
+ - - 2.316855
+ - 0.76964
+ - -0.860534
+ - - 2.272657
+ - 0.853046
+ - 0.899369
+ - - 2.154176
+ - -1.522071
+ - 0.126367
+ - - 0.95877
+ - -0.895698
+ - 2.231494
+ - - 0.099092
+ - -2.182661
+ - 1.388382
+ - - -1.491645
+ - -0.406348
+ - 2.140685
+ - - -1.338563
+ - 1.88829
+ - 1.159099
+ - - 0.107032
+ - 1.515729
+ - 2.095864
+ - - 0.72053
+ - 2.538354
+ - -0.101921
+ - - -1.273861
+ - 1.767381
+ - -1.398118
+ - - 0.216253
+ - 1.311377
+ - -2.221431
+ - - -1.382956
+ - -0.610044
+ - -2.165274
+ - - 1.067625
+ - -1.100401
+ - -2.085791
+ - - 0.163393
+ - -2.303785
+ - -1.16908
+ - - -2.587738
+ - 0.018422
+ - -0.066116
+ - - -2.001761
+ - -1.641133
+ - 0.027036
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -603,6 +1323,150 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.602575671113133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.9238364201
+ - 0.6247407366
+ - 1.3717405972
+ - - 0.4023352875
+ - 1.2020758465
+ - 0.8653163642
+ - - 1.4888792703
+ - 0.1244140634
+ - 0.9456426131
+ - - 1.089911566
+ - -1.0774100034
+ - 0.0826558573
+ - - -0.2378783635
+ - -1.649234067
+ - 0.5910851003
+ - - -1.3285000619
+ - -0.5756832378
+ - 0.509608987
+ - - -1.4890024984
+ - -0.1241100439
+ - -0.9456358856
+ - - -0.1638741242
+ - 0.4509370371
+ - -1.4577059334
+ - - 0.2379656444
+ - 1.6492387707
+ - -0.5910647534
+ - - 0.9239380459
+ - -0.6251156669
+ - -1.3716965794
+ - - -1.7039927857
+ - 1.3916772295
+ - 1.3340003938
+ - - -0.8229032605
+ - 0.3170906343
+ - 2.4173905
+ - - 0.6891369173
+ - 2.0583734516
+ - 1.4819399916
+ - - 1.6267145444
+ - -0.191241488
+ - 1.9846383079
+ - - 2.4451532162
+ - 0.5308543106
+ - 0.6012113437
+ - - 1.8664024684
+ - -1.845109178
+ - 0.1416448964
+ - - -0.5243124398
+ - -2.519037047
+ - -0.0086168467
+ - - -0.1261239052
+ - -1.99112226
+ - 1.6249201605
+ - - -2.2749192923
+ - -0.9856599185
+ - 0.8730354748
+ - - -1.7955272247
+ - -0.9703981053
+ - -1.568457116
+ - - -2.2767572077
+ - 0.6325714135
+ - -1.0170004169
+ - - -0.2806447505
+ - 0.7723911304
+ - -2.4963408799
+ - - -0.524540027
+ - 2.4316831607
+ - -0.6583316494
+ - - 1.1758936214
+ - 2.0779071288
+ - -0.9581368101
+ - - 0.6550040828
+ - -1.4794507929
+ - -2.0009654113
+ - - 1.8717859653
+ - -0.2296502818
+ - -1.7506101427
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Allene.yml b/input/reference_sets/main/Allene.yml
index 3f7df80434..3d955012b5 100644
--- a/input/reference_sets/main/Allene.yml
+++ b/input/reference_sets/main/Allene.yml
@@ -106,6 +106,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.90190947617525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.303407
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.303407
+ - - 0.926648
+ - 2.0e-06
+ - 1.863066
+ - - -0.926655
+ - -2.0e-06
+ - 1.863064
+ - - 2.0e-06
+ - -0.926654
+ - -1.863065
+ - - -2.0e-06
+ - 0.926649
+ - -1.863066
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.441451102923075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.30014
+ - - -1.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.30014
+ - - 0.926247
+ - 2.0e-06
+ - 1.863181
+ - - -0.926253
+ - -2.0e-06
+ - 1.863179
+ - - 2.0e-06
+ - -0.926253
+ - -1.86318
+ - - -2.0e-06
+ - 0.926248
+ - -1.863181
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -155,6 +253,545 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.55613123695306
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.306333
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.306333
+ - - 0.929614
+ - 2.0e-06
+ - 1.873263
+ - - -0.92962
+ - -2.0e-06
+ - 1.873262
+ - - 2.0e-06
+ - -0.92962
+ - -1.873262
+ - - -2.0e-06
+ - 0.929614
+ - -1.873263
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.32134983689148
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.308908
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.308908
+ - - 0.933453
+ - 2.0e-06
+ - 1.877843
+ - - -0.933459
+ - -2.0e-06
+ - 1.877841
+ - - 2.0e-06
+ - -0.933459
+ - -1.877841
+ - - -2.0e-06
+ - 0.933453
+ - -1.877843
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.36398301418107
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.296423
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.296423
+ - - 0.926798
+ - 2.0e-06
+ - 1.856113
+ - - -0.926804
+ - -2.0e-06
+ - 1.856111
+ - - 2.0e-06
+ - -0.926804
+ - -1.856111
+ - - -2.0e-06
+ - 0.926799
+ - -1.856113
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.55545143288428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.302447
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.302447
+ - - 0.927217
+ - 2.0e-06
+ - 1.866944
+ - - -0.927223
+ - -2.0e-06
+ - 1.866943
+ - - 2.0e-06
+ - -0.927223
+ - -1.866943
+ - - -2.0e-06
+ - 0.927218
+ - -1.866944
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.78352135890401
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0e-06
+ - -0.0
+ - 1.300179
+ - - 3.0e-06
+ - 3.0e-06
+ - 0.0
+ - - -0.0
+ - -1.0e-06
+ - -1.300179
+ - - 0.928544
+ - -0.0
+ - 1.856636
+ - - -0.928552
+ - -4.0e-06
+ - 1.856626
+ - - -0.0
+ - -0.928551
+ - -1.856627
+ - - -4.0e-06
+ - 0.928545
+ - -1.856635
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.64862061369542
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0e-06
+ - -0.0
+ - 1.300179
+ - - 3.0e-06
+ - 3.0e-06
+ - 0.0
+ - - -0.0
+ - -1.0e-06
+ - -1.300179
+ - - 0.928544
+ - -0.0
+ - 1.856636
+ - - -0.928552
+ - -4.0e-06
+ - 1.856626
+ - - -0.0
+ - -0.928551
+ - -1.856627
+ - - -4.0e-06
+ - 0.928545
+ - -1.856635
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.61766490796781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0e-06
+ - -0.0
+ - 1.300179
+ - - 3.0e-06
+ - 3.0e-06
+ - 0.0
+ - - -0.0
+ - -1.0e-06
+ - -1.300179
+ - - 0.928544
+ - -0.0
+ - 1.856636
+ - - -0.928552
+ - -4.0e-06
+ - 1.856626
+ - - -0.0
+ - -0.928551
+ - -1.856627
+ - - -4.0e-06
+ - 0.928545
+ - -1.856635
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.991553029022064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - 0.0
+ - 1.301399
+ - - -2.0e-06
+ - -1.0e-06
+ - 0.0
+ - - 0.0
+ - -2.0e-06
+ - -1.301399
+ - - 0.92581
+ - 2.0e-06
+ - 1.869432
+ - - -0.925817
+ - -2.0e-06
+ - 1.869431
+ - - 2.0e-06
+ - -0.925816
+ - -1.869431
+ - - -2.0e-06
+ - 0.925811
+ - -1.869432
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.145733160621354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.299638
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.299638
+ - - 0.928481
+ - 2.0e-06
+ - 1.856847
+ - - -0.928487
+ - -2.0e-06
+ - 1.856846
+ - - 2.0e-06
+ - -0.928486
+ - -1.856846
+ - - -2.0e-06
+ - 0.928481
+ - -1.856847
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.65757390145854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.299427
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.299427
+ - - 0.928523
+ - 2.0e-06
+ - 1.860705
+ - - -0.928529
+ - -2.0e-06
+ - 1.860703
+ - - 2.0e-06
+ - -0.928529
+ - -1.860703
+ - - -2.0e-06
+ - 0.928524
+ - -1.860705
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.394937409797485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.306361
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.306361
+ - - 0.928736
+ - 2.0e-06
+ - 1.87283
+ - - -0.928742
+ - -2.0e-06
+ - 1.872829
+ - - 2.0e-06
+ - -0.928742
+ - -1.872829
+ - - -2.0e-06
+ - 0.928737
+ - -1.87283
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.88711149179227
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -7.624e-07
+ - -1.829e-07
+ - 1.3001794078
+ - - 3.1791e-06
+ - 2.5926e-06
+ - 6.7e-09
+ - - -2.966e-07
+ - -6.324e-07
+ - -1.3001793955
+ - - 0.9285438195
+ - -0.0
+ - 1.8566360397
+ - - -0.9285518216
+ - -4.1375e-06
+ - 1.8566255608
+ - - -2.205e-07
+ - -0.9285510353
+ - -1.8566265804
+ - - -4.4979e-06
+ - 0.9285445086
+ - -1.8566351338
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.61681580904381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-06
+ - -0.0
+ - 1.298664
+ - - -2.0e-06
+ - -1.0e-06
+ - -0.0
+ - - -0.0
+ - -2.0e-06
+ - -1.298664
+ - - 0.928441
+ - 2.0e-06
+ - 1.857057
+ - - -0.928447
+ - -2.0e-06
+ - 1.857055
+ - - 2.0e-06
+ - -0.928446
+ - -1.857055
+ - - -2.0e-06
+ - 0.928441
+ - -1.857057
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Allyl.yml b/input/reference_sets/main/Allyl.yml
index 7b99c34db6..0f2ce170ec 100644
--- a/input/reference_sets/main/Allyl.yml
+++ b/input/reference_sets/main/Allyl.yml
@@ -118,42 +118,744 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.071778976838736
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.221363
+ - -0.0
+ - 0.196947
+ - - 0.0
+ - 0.0
+ - -0.443426
+ - - -1.221363
+ - -0.0
+ - 0.196947
+ - - 1.281433
+ - -0.0
+ - 1.277075
+ - - 2.148059
+ - 0.0
+ - -0.356614
+ - - 0.0
+ - 0.0
+ - -1.528472
+ - - -2.148059
+ - 0.0
+ - -0.356614
+ - - -1.281433
+ - -0.0
+ - 1.277075
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.59624401477967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223652
+ - -0.0
+ - 0.196857
+ - - 0.0
+ - 0.0
+ - -0.440484
+ - - -1.223652
+ - -0.0
+ - 0.196857
+ - - 1.289289
+ - -0.0
+ - 1.277846
+ - - 2.15008
+ - 0.0
+ - -0.359506
+ - - 0.0
+ - 0.0
+ - -1.526995
+ - - -2.15008
+ - 0.0
+ - -0.359506
+ - - -1.289289
+ - -0.0
+ - 1.277846
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 58.055965194755224
+ value: 58.05596519475518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.23544114
+ - 0.0
+ - 0.1976656065
+ - - 0.0
+ - 0.0
+ - -0.4471985835
+ - - -1.23544114
+ - 0.0
+ - 0.1976656065
+ - - 1.29899274
+ - 0.0
+ - 1.2875748765
+ - - 2.17120297
+ - 0.0
+ - -0.3607571335
+ - - 0.0
+ - 0.0
+ - -1.5424312635
+ - - -2.17120297
+ - 0.0
+ - -0.3607571335
+ - - -1.29899274
+ - 0.0
+ - 1.2875748765
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.0329951581789
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.229317
+ - -0.0
+ - 0.197537
+ - - 0.0
+ - 0.0
+ - -0.440806
+ - - -1.229317
+ - -0.0
+ - 0.197537
+ - - 1.296407
+ - -0.0
+ - 1.283006
+ - - 2.158879
+ - 0.0
+ - -0.362548
+ - - 0.0
+ - 0.0
+ - -1.53227
+ - - -2.158879
+ - 0.0
+ - -0.362548
+ - - -1.296407
+ - -0.0
+ - 1.283006
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.21873012417725
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.231411
+ - -0.0
+ - 0.197689
+ - - 0.0
+ - 0.0
+ - -0.441366
+ - - -1.231411
+ - -0.0
+ - 0.197689
+ - - 1.299992
+ - -0.0
+ - 1.287738
+ - - 2.164885
+ - 0.0
+ - -0.364587
+ - - 0.0
+ - 0.0
+ - -1.537397
+ - - -2.164885
+ - 0.0
+ - -0.364587
+ - - -1.299992
+ - -0.0
+ - 1.287738
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.9635066353571
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218553
+ - -0.0
+ - 0.19639
+ - - 0.0
+ - 0.0
+ - -0.441997
+ - - -1.218553
+ - -0.0
+ - 0.19639
+ - - 1.279903
+ - -0.0
+ - 1.277071
+ - - 2.146116
+ - 0.0
+ - -0.357188
+ - - 0.0
+ - 0.0
+ - -1.527633
+ - - -2.146116
+ - 0.0
+ - -0.357188
+ - - -1.279903
+ - -0.0
+ - 1.277071
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.461535577965606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.227455
+ - -0.0
+ - 0.197233
+ - - 0.0
+ - 0.0
+ - -0.440043
+ - - -1.227455
+ - -0.0
+ - 0.197233
+ - - 1.29608
+ - -0.0
+ - 1.279694
+ - - 2.154657
+ - 0.0
+ - -0.361299
+ - - 0.0
+ - 0.0
+ - -1.528297
+ - - -2.154657
+ - 0.0
+ - -0.361299
+ - - -1.29608
+ - -0.0
+ - 1.279694
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.13127017660074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218453
+ - 0.0
+ - 0.196889
+ - - 0.0
+ - 0.0
+ - -0.44636
+ - - -1.218453
+ - -0.0
+ - 0.196889
+ - - 1.273368
+ - 0.0
+ - 1.278095
+ - - 2.147338
+ - 0.0
+ - -0.354246
+ - - 0.0
+ - 0.0
+ - -1.532199
+ - - -2.147338
+ - 0.0
+ - -0.354246
+ - - -1.273368
+ - -0.0
+ - 1.278095
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.37420319961808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218453
+ - 0.0
+ - 0.196888
+ - - 0.0
+ - 0.0
+ - -0.44636
+ - - -1.218453
+ - -0.0
+ - 0.196888
+ - - 1.273368
+ - 0.0
+ - 1.278095
+ - - 2.147338
+ - 0.0
+ - -0.354246
+ - - 0.0
+ - 0.0
+ - -1.532199
+ - - -2.147338
+ - 0.0
+ - -0.354246
+ - - -1.273368
+ - -0.0
+ - 1.278095
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.412908808430934
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.23544114
+ - - 1.218453
- 0.0
- - 0.1976656065
+ - 0.196888
- - 0.0
- 0.0
- - -0.4471985835
- - - -1.23544114
+ - -0.44636
+ - - -1.218453
+ - -0.0
+ - 0.196888
+ - - 1.273368
- 0.0
- - 0.1976656065
- - - 1.29899274
+ - 1.278095
+ - - 2.147338
- 0.0
- - 1.2875748765
- - - 2.17120297
+ - -0.354246
+ - - 0.0
- 0.0
- - -0.3607571335
+ - -1.532199
+ - - -2.147338
+ - 0.0
+ - -0.354246
+ - - -1.273368
+ - -0.0
+ - 1.278095
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.67301550594782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.227539
+ - 0.0
+ - 0.19627
- - 0.0
- 0.0
- - -1.5424312635
- - - -2.17120297
+ - -0.439531
+ - - -1.227539
- 0.0
- - -0.3607571335
- - - -1.29899274
+ - 0.19627
+ - - 1.297426
- 0.0
- - 1.2875748765
+ - 1.279444
+ - - 2.156815
+ - 0.0
+ - -0.360147
+ - - 0.0
+ - 0.0
+ - -1.528687
+ - - -2.156815
+ - 0.0
+ - -0.360147
+ - - -1.297426
+ - 0.0
+ - 1.279444
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.367657060656114
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218562
+ - -0.0
+ - 0.196509
+ - - 0.0
+ - 0.0
+ - -0.446683
+ - - -1.218562
+ - -0.0
+ - 0.196509
+ - - 1.27371
+ - -0.0
+ - 1.277314
+ - - 2.14804
+ - 0.0
+ - -0.352981
+ - - 0.0
+ - 0.0
+ - -1.532085
+ - - -2.14804
+ - 0.0
+ - -0.352981
+ - - -1.27371
+ - -0.0
+ - 1.277314
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.895867378745365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.221335
+ - -0.0
+ - 0.19675
+ - - 0.0
+ - 0.0
+ - -0.441656
+ - - -1.221335
+ - -0.0
+ - 0.19675
+ - - 1.28411
+ - -0.0
+ - 1.279327
+ - - 2.149812
+ - 0.0
+ - -0.35905
+ - - 0.0
+ - 0.0
+ - -1.529482
+ - - -2.149812
+ - 0.0
+ - -0.35905
+ - - -1.28411
+ - -0.0
+ - 1.279327
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.57864300885952
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.229618
+ - -0.0
+ - 0.197629
+ - - 0.0
+ - 0.0
+ - -0.441796
+ - - -1.229618
+ - -0.0
+ - 0.197629
+ - - 1.298056
+ - -0.0
+ - 1.282617
+ - - 2.159242
+ - 0.0
+ - -0.361793
+ - - 0.0
+ - 0.0
+ - -1.532193
+ - - -2.159242
+ - 0.0
+ - -0.361793
+ - - -1.298056
+ - -0.0
+ - 1.282617
isotopes:
- 12
- 12
@@ -226,6 +928,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.139283142864045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2184530511
+ - 0.0
+ - 0.1968885009
+ - - 0.0
+ - 0.0
+ - -0.4463600507
+ - - -1.2184530511
+ - -1.89e-08
+ - 0.1968885009
+ - - 1.2733676725
+ - 0.0
+ - 1.2780953597
+ - - 2.1473381663
+ - 0.0
+ - -0.3542461414
+ - - 0.0
+ - 0.0
+ - -1.5321994746
+ - - -2.1473381663
+ - 2.619e-07
+ - -0.3542461414
+ - - -1.2733676725
+ - -2.094e-07
+ - 1.2780953597
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.347119828432874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.220323
+ - -0.0
+ - 0.196892
+ - - 0.0
+ - 0.0
+ - -0.442433
+ - - -1.220323
+ - -0.0
+ - 0.196892
+ - - 1.28193
+ - -0.0
+ - 1.278541
+ - - 2.147951
+ - 0.0
+ - -0.358379
+ - - 0.0
+ - 0.0
+ - -1.528759
+ - - -2.147951
+ - 0.0
+ - -0.358379
+ - - -1.28193
+ - -0.0
+ - 1.278541
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Amidogen.yml b/input/reference_sets/main/Amidogen.yml
index b4d85ada54..3ff3b318c3 100644
--- a/input/reference_sets/main/Amidogen.yml
+++ b/input/reference_sets/main/Amidogen.yml
@@ -40,7 +40,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 44.44491671858235
+ value: 44.444916718582306
class: ThermoData
xyz_dict:
coords:
@@ -63,6 +63,64 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.89696169386269
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.141132
+ - - -0.804818
+ - 0.0
+ - -0.494398
+ - - 0.804818
+ - -0.0
+ - -0.494398
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.385798365010395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.143062
+ - - -0.806222
+ - 0.0
+ - -0.495363
+ - - 0.806222
+ - -0.0
+ - -0.495363
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.852107824488826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.149356
+ - - -0.805513
+ - 0.0
+ - -0.49851
+ - - 0.805513
+ - -0.0
+ - -0.49851
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.46056435928126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.151906
+ - - -0.809397
+ - 0.0
+ - -0.499785
+ - - 0.809397
+ - -0.0
+ - -0.499785
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.05259112393622
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.139846
+ - - -0.806978
+ - 0.0
+ - -0.493755
+ - - 0.806978
+ - -0.0
+ - -0.493755
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.26779325273604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.149312
+ - - -0.801984
+ - 0.0
+ - -0.498488
+ - - 0.801984
+ - -0.0
+ - -0.498488
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.65116792937885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.141277
+ - - -0.804194
+ - -0.0
+ - -0.49447
+ - - 0.804194
+ - 0.0
+ - -0.49447
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.182994788452945
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.141277
+ - - -0.804194
+ - -0.0
+ - -0.49447
+ - - 0.804194
+ - 0.0
+ - -0.49447
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.13979990023989
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.141277
+ - - -0.804194
+ - -0.0
+ - -0.49447
+ - - 0.804194
+ - 0.0
+ - -0.49447
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.64952432229398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.150493
+ - - -0.800994
+ - 0.0
+ - -0.499078
+ - - 0.800994
+ - 0.0
+ - -0.499078
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.34301274162828
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.14033
+ - - -0.805522
+ - 0.0
+ - -0.493997
+ - - 0.805522
+ - -0.0
+ - -0.493997
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.69053764367667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.143128
+ - - -0.804177
+ - 0.0
+ - -0.495396
+ - - 0.804177
+ - -0.0
+ - -0.495396
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.98308010068633
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.14923
+ - - -0.808329
+ - -0.0
+ - -0.498447
+ - - 0.808329
+ - -0.0
+ - -0.498447
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.68059203116381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1412772202
+ - - -0.8041943049
+ - -0.0
+ - -0.4944702708
+ - - 0.8041943049
+ - 0.0
+ - -0.4944702708
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.10313107063312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.140766
+ - - -0.80499
+ - 0.0
+ - -0.494214
+ - - 0.80499
+ - -0.0
+ - -0.494214
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Aminomethyl.yml b/input/reference_sets/main/Aminomethyl.yml
index c46c0d9437..3388dd4087 100644
--- a/input/reference_sets/main/Aminomethyl.yml
+++ b/input/reference_sets/main/Aminomethyl.yml
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.393146454922324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.726264
+ - 0.090494
+ - -0.0
+ - - 0.653126
+ - -0.098341
+ - 0.0
+ - - -1.240148
+ - -0.106169
+ - 0.928122
+ - - -1.240148
+ - -0.106169
+ - -0.928122
+ - - 1.130247
+ - 0.2092
+ - -0.832932
+ - - 1.130247
+ - 0.2092
+ - 0.832932
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.34321592633738
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.727271
+ - 0.086575
+ - -0.0
+ - - 0.652532
+ - -0.092733
+ - 0.0
+ - - -1.242718
+ - -0.105602
+ - 0.929699
+ - - -1.242718
+ - -0.105602
+ - -0.929699
+ - - 1.133617
+ - 0.207788
+ - -0.834327
+ - - 1.133617
+ - 0.207788
+ - 0.834327
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.935597349628342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.728576
+ - 0.095574
+ - -0.0
+ - - 0.656043
+ - -0.105705
+ - 0.0
+ - - -1.245198
+ - -0.107952
+ - 0.932472
+ - - -1.245198
+ - -0.107952
+ - -0.932472
+ - - 1.134994
+ - 0.212125
+ - -0.834006
+ - - 1.134994
+ - 0.212125
+ - 0.834006
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.411125551853665
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.729244
+ - 0.088172
+ - 0.0
+ - - 0.655993
+ - -0.101739
+ - -0.0
+ - - -1.249134
+ - -0.105991
+ - 0.937107
+ - - -1.249134
+ - -0.105991
+ - -0.937107
+ - - 1.13929
+ - 0.211882
+ - -0.83934
+ - - 1.13929
+ - 0.211882
+ - 0.83934
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.614958527591316
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725436
+ - 0.080065
+ - -0.0
+ - - 0.650345
+ - -0.084315
+ - 0.0
+ - - -1.241179
+ - -0.10379
+ - 0.930158
+ - - -1.241179
+ - -0.10379
+ - -0.930158
+ - - 1.132254
+ - 0.205022
+ - -0.83563
+ - - 1.132254
+ - 0.205022
+ - 0.83563
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.38069971192221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.727809
+ - 0.100385
+ - -0.0
+ - - 0.654592
+ - -0.104263
+ - 0.0
+ - - -1.243566
+ - -0.109837
+ - 0.928649
+ - - -1.243566
+ - -0.109837
+ - -0.928649
+ - - 1.133705
+ - 0.210883
+ - -0.832802
+ - - 1.133705
+ - 0.210883
+ - 0.832802
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.28685958307528
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725254
+ - 0.069505
+ - 0.0
+ - - 0.653202
+ - -0.090956
+ - 0.0
+ - - -1.242191
+ - -0.098936
+ - 0.931551
+ - - -1.242191
+ - -0.098936
+ - -0.931551
+ - - 1.131747
+ - 0.208768
+ - -0.834342
+ - - 1.131747
+ - 0.208768
+ - 0.834342
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.76492401972913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725254
+ - 0.069505
+ - 0.0
+ - - 0.653202
+ - -0.090956
+ - 0.0
+ - - -1.242191
+ - -0.098936
+ - 0.931551
+ - - -1.242191
+ - -0.098936
+ - -0.931551
+ - - 1.131747
+ - 0.208768
+ - -0.834342
+ - - 1.131747
+ - 0.208768
+ - 0.834342
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.915390122543826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725254
+ - 0.069505
+ - 0.0
+ - - 0.653202
+ - -0.090956
+ - 0.0
+ - - -1.242191
+ - -0.098936
+ - 0.931551
+ - - -1.242191
+ - -0.098936
+ - -0.931551
+ - - 1.131747
+ - 0.208768
+ - -0.834342
+ - - 1.131747
+ - 0.208768
+ - 0.834342
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.36986883719014
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.726538
+ - 0.10853
+ - 0.0
+ - - 0.653836
+ - -0.112838
+ - 0.0
+ - - -1.242027
+ - -0.111975
+ - 0.928387
+ - - -1.242027
+ - -0.111975
+ - -0.928387
+ - - 1.131908
+ - 0.213236
+ - -0.829539
+ - - 1.131908
+ - 0.213236
+ - 0.829539
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.20528118729376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725738
+ - 0.091406
+ - -0.0
+ - - 0.651304
+ - -0.094271
+ - 0.0
+ - - -1.240178
+ - -0.107041
+ - 0.927971
+ - - -1.240178
+ - -0.107041
+ - -0.927971
+ - - 1.130925
+ - 0.20758
+ - -0.833873
+ - - 1.130925
+ - 0.20758
+ - 0.833873
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.03394954820874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.722406
+ - 0.085923
+ - -0.0
+ - - 0.651343
+ - -0.09732
+ - 0.0
+ - - -1.240461
+ - -0.104527
+ - 0.93015
+ - - -1.240461
+ - -0.104527
+ - -0.93015
+ - - 1.129522
+ - 0.209332
+ - -0.832645
+ - - 1.129522
+ - 0.209332
+ - 0.832645
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.500980086047946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.730683
+ - 0.103599
+ - -0.0
+ - - 0.654905
+ - -0.106897
+ - 0.0
+ - - -1.244474
+ - -0.111005
+ - 0.931592
+ - - -1.244474
+ - -0.111005
+ - -0.931592
+ - - 1.135892
+ - 0.211761
+ - -0.834958
+ - - 1.135892
+ - 0.211761
+ - 0.834958
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.79649962012317
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.7252541279
+ - 0.0695045682
+ - 0.0
+ - - 0.6532017699
+ - -0.090956344
+ - 0.0
+ - - -1.2421913338
+ - -0.0989357727
+ - 0.9315507448
+ - - -1.2421913338
+ - -0.0989357727
+ - -0.9315507448
+ - - 1.1317473038
+ - 0.2087684883
+ - -0.8343420245
+ - - 1.1317473038
+ - 0.2087684883
+ - 0.8343420245
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.22182565989603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.724854
+ - 0.087658
+ - -0.0
+ - - 0.65163
+ - -0.091586
+ - 0.0
+ - - -1.24046
+ - -0.105836
+ - 0.929965
+ - - -1.24046
+ - -0.105836
+ - -0.929965
+ - - 1.130601
+ - 0.206907
+ - -0.833553
+ - - 1.130601
+ - 0.206907
+ - 0.833553
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Aminomethylium.yml b/input/reference_sets/main/Aminomethylium.yml
index ff344e50e5..d4656a1bcf 100644
--- a/input/reference_sets/main/Aminomethylium.yml
+++ b/input/reference_sets/main/Aminomethylium.yml
@@ -95,6 +95,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.0717852661067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.674027
+ - - 0.0
+ - -0.0
+ - -0.599398
+ - - 0.941527
+ - 0.0
+ - 1.208866
+ - - -0.941527
+ - -0.0
+ - 1.208866
+ - - -0.865899
+ - -0.0
+ - -1.133184
+ - - 0.865899
+ - 0.0
+ - -1.133184
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 179.0967220956836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.672982
+ - - 0.0
+ - -0.0
+ - -0.598301
+ - - 0.941816
+ - 0.0
+ - 1.210952
+ - - -0.941816
+ - -0.0
+ - 1.210952
+ - - -0.865371
+ - -0.0
+ - -1.135295
+ - - 0.865371
+ - 0.0
+ - -1.135295
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 176.06956279998397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.676259
+ - - 0.0
+ - -0.0
+ - -0.601014
+ - - 0.946201
+ - 0.0
+ - 1.214758
+ - - -0.946201
+ - -0.0
+ - 1.214758
+ - - -0.867629
+ - -0.0
+ - -1.139384
+ - - 0.867629
+ - 0.0
+ - -1.139384
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.9538028378898
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.678062
+ - - 0.0
+ - -0.0
+ - -0.601866
+ - - 0.950487
+ - 0.0
+ - 1.218833
+ - - -0.950487
+ - -0.0
+ - 1.218833
+ - - -0.8724
+ - -0.0
+ - -1.143935
+ - - 0.8724
+ - 0.0
+ - -1.143935
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.55555804187847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.67042
+ - - 0.0
+ - -0.0
+ - -0.596453
+ - - 0.94176
+ - 0.0
+ - 1.2084
+ - - -0.94176
+ - -0.0
+ - 1.2084
+ - - -0.865437
+ - -0.0
+ - -1.132387
+ - - 0.865437
+ - 0.0
+ - -1.132387
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 179.43947396677132
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.674918
+ - - 0.0
+ - -0.0
+ - -0.600086
+ - - 0.94295
+ - 0.0
+ - 1.213617
+ - - -0.94295
+ - -0.0
+ - 1.213617
+ - - -0.866705
+ - -0.0
+ - -1.138036
+ - - 0.866705
+ - 0.0
+ - -1.138036
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.61901664924144
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.672114
+ - - 0.0
+ - 0.0
+ - -0.59776
+ - - 0.942158
+ - 0.0
+ - 1.207847
+ - - -0.942158
+ - -0.0
+ - 1.207847
+ - - -0.865415
+ - 0.0
+ - -1.132027
+ - - 0.865415
+ - -0.0
+ - -1.132027
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 180.0215042383842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.672114
+ - - 0.0
+ - 0.0
+ - -0.59776
+ - - 0.942158
+ - 0.0
+ - 1.207847
+ - - -0.942158
+ - -0.0
+ - 1.207847
+ - - -0.865415
+ - 0.0
+ - -1.132027
+ - - 0.865415
+ - -0.0
+ - -1.132027
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 179.98423116146392
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.672114
+ - - 0.0
+ - 0.0
+ - -0.59776
+ - - 0.942158
+ - 0.0
+ - 1.207847
+ - - -0.942158
+ - -0.0
+ - 1.207847
+ - - -0.865415
+ - 0.0
+ - -1.132027
+ - - 0.865415
+ - -0.0
+ - -1.132027
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 180.3398600053848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.674918
+ - - 0.0
+ - 0.0
+ - -0.600157
+ - - 0.944163
+ - 0.0
+ - 1.214143
+ - - -0.944163
+ - 0.0
+ - 1.214143
+ - - -0.865663
+ - 0.0
+ - -1.138526
+ - - 0.865663
+ - 0.0
+ - -1.138526
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.28344785382694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.671774
+ - - 0.0
+ - -0.0
+ - -0.596289
+ - - 0.943172
+ - 0.0
+ - 1.207591
+ - - -0.943172
+ - -0.0
+ - 1.207591
+ - - -0.86614
+ - -0.0
+ - -1.132337
+ - - 0.86614
+ - 0.0
+ - -1.132337
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 176.14403443979782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.670744
+ - - 0.0
+ - -0.0
+ - -0.59723
+ - - 0.943443
+ - 0.0
+ - 1.209054
+ - - -0.943443
+ - -0.0
+ - 1.209054
+ - - -0.865168
+ - -0.0
+ - -1.132814
+ - - 0.865168
+ - 0.0
+ - -1.132814
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 178.14202508832938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.677614
+ - - 0.0
+ - -0.0
+ - -0.600504
+ - - 0.945719
+ - 0.0
+ - 1.214844
+ - - -0.945719
+ - -0.0
+ - 1.214844
+ - - -0.86878
+ - -0.0
+ - -1.140402
+ - - 0.86878
+ - 0.0
+ - -1.140402
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 177.28390206274878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.6721138574
+ - - 0.0
+ - 0.0
+ - -0.5977604391
+ - - 0.9421579054
+ - 0.0
+ - 1.2078466247
+ - - -0.9421579054
+ - -4.59e-08
+ - 1.2078466247
+ - - -0.8654154089
+ - 0.0
+ - -1.1320265498
+ - - 0.8654154089
+ - -6.05e-08
+ - -1.1320265498
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 176.51053802006692
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.670909
+ - - 0.0
+ - -0.0
+ - -0.597604
+ - - 0.942565
+ - 0.0
+ - 1.208229
+ - - -0.942565
+ - -0.0
+ - 1.208229
+ - - -0.864236
+ - -0.0
+ - -1.131884
+ - - 0.864236
+ - 0.0
+ - -1.131884
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ammonia.yml b/input/reference_sets/main/Ammonia.yml
index 5ffb919359..aa3167f259 100644
--- a/input/reference_sets/main/Ammonia.yml
+++ b/input/reference_sets/main/Ammonia.yml
@@ -73,13 +73,81 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.358707678246002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - -2.4e-05
+ - -0.110266
+ - - 0.171825
+ - -0.925308
+ - 0.262432
+ - - 0.715422
+ - 0.611355
+ - 0.262529
+ - - -0.887168
+ - 0.313793
+ - 0.262566
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.792613391673067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - -2.5e-05
+ - -0.109794
+ - - 0.172142
+ - -0.927021
+ - 0.262275
+ - - 0.716746
+ - 0.612488
+ - 0.262372
+ - - -0.88881
+ - 0.314375
+ - 0.262409
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -13.662805618557224
+ value: -13.662805618557222
class: ThermoData
xyz_dict:
coords:
@@ -107,6 +175,380 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.356432106161614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1e-05
+ - -2.4e-05
+ - -0.12067
+ - - 0.171914
+ - -0.925788
+ - 0.265899
+ - - 0.715792
+ - 0.611672
+ - 0.265997
+ - - -0.887627
+ - 0.313956
+ - 0.266034
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.728186244817126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1e-05
+ - -2.4e-05
+ - -0.122562
+ - - 0.172755
+ - -0.930317
+ - 0.26653
+ - - 0.719295
+ - 0.614665
+ - 0.266628
+ - - -0.891971
+ - 0.315492
+ - 0.266666
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.733287901040242
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - -2.6e-05
+ - -0.102367
+ - - 0.172435
+ - -0.928599
+ - 0.259799
+ - - 0.717965
+ - 0.613531
+ - 0.259896
+ - - -0.890323
+ - 0.31491
+ - 0.259933
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.93479197178244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - -2.4e-05
+ - -0.120277
+ - - 0.171543
+ - -0.923795
+ - 0.265769
+ - - 0.714251
+ - 0.610356
+ - 0.265866
+ - - -0.885716
+ - 0.313279
+ - 0.265904
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.785355190211876
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.5e-05
+ - 3.1e-05
+ - -0.112877
+ - - 0.171746
+ - -0.924579
+ - 0.263318
+ - - 0.715067
+ - 0.610843
+ - 0.263395
+ - - -0.886708
+ - 0.313521
+ - 0.263425
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.864941200752577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.5e-05
+ - 3.1e-05
+ - -0.112877
+ - - 0.171746
+ - -0.924579
+ - 0.263318
+ - - 0.715067
+ - 0.610843
+ - 0.263395
+ - - -0.886708
+ - 0.313521
+ - 0.263425
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.237204943708852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.5e-05
+ - 3.1e-05
+ - -0.112877
+ - - 0.171746
+ - -0.924579
+ - 0.263318
+ - - 0.715067
+ - 0.610843
+ - 0.263395
+ - - -0.886708
+ - 0.313521
+ - 0.263425
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.949468970538847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0e-06
+ - -2.0e-05
+ - -0.131959
+ - - 0.170641
+ - -0.918863
+ - 0.269665
+ - - 0.710448
+ - 0.607087
+ - 0.269763
+ - - -0.881002
+ - 0.311611
+ - 0.269793
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.342062724062604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 4.0e-06
+ - -1.8e-05
+ - -0.108753
+ - - 0.172005
+ - -0.926202
+ - 0.26193
+ - - 0.71611
+ - 0.611932
+ - 0.262025
+ - - -0.88803
+ - 0.314104
+ - 0.262059
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.135585501124972
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2e-05
+ - -2.4e-05
+ - -0.112393
+ - - 0.171679
+ - -0.924528
+ - 0.263141
+ - - 0.714818
+ - 0.61084
+ - 0.263238
+ - - -0.886419
+ - 0.313528
+ - 0.263275
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.9965323953838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0e-05
+ - -2.5e-05
+ - -0.122235
+ - - 0.172175
+ - -0.927182
+ - 0.266421
+ - - 0.71687
+ - 0.612592
+ - 0.26652
+ - - -0.888966
+ - 0.31443
+ - 0.266556
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.325800747543019
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.49741e-05
+ - 3.0676e-05
+ - -0.1128768872
+ - - 0.1717456763
+ - -0.9245787457
+ - 0.2633179809
+ - - 0.7150671173
+ - 0.6108431531
+ - 0.2633953695
+ - - -0.8867079749
+ - 0.3135208607
+ - 0.2634248597
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.61395201593577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 5.0e-06
+ - -3.0e-05
+ - -0.106867
+ - - 0.171969
+ - -0.926009
+ - 0.261298
+ - - 0.715955
+ - 0.61181
+ - 0.261398
+ - - -0.887839
+ - 0.314045
+ - 0.261432
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ammonium.yml b/input/reference_sets/main/Ammonium.yml
index 52a4805748..13ab686af4 100644
--- a/input/reference_sets/main/Ammonium.yml
+++ b/input/reference_sets/main/Ammonium.yml
@@ -84,6 +84,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 147.17599140281862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.769264
+ - -0.674904
+ - -0.012034
+ - - 0.325465
+ - 0.8811
+ - 0.406535
+ - - -0.324123
+ - 0.164957
+ - -0.956727
+ - - -0.77065
+ - -0.370958
+ - 0.562061
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 149.0360356898996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.770457
+ - -0.67595
+ - -0.012053
+ - - 0.325969
+ - 0.882465
+ - 0.407164
+ - - -0.324625
+ - 0.165213
+ - -0.958208
+ - - -0.771845
+ - -0.371532
+ - 0.562932
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 145.55341787435898
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0e-05
+ - 5.0e-05
+ - -4.2e-05
+ - - 0.771982
+ - -0.677289
+ - -0.012076
+ - - 0.326615
+ - 0.884213
+ - 0.407972
+ - - -0.325269
+ - 0.165539
+ - -0.960107
+ - - -0.773373
+ - -0.372268
+ - 0.564046
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 147.58696444525916
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 5.0e-05
+ - -4.2e-05
+ - - 0.776105
+ - -0.680907
+ - -0.012141
+ - - 0.32836
+ - 0.888937
+ - 0.410152
+ - - -0.327005
+ - 0.166424
+ - -0.965236
+ - - -0.777504
+ - -0.374258
+ - 0.567061
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 148.60115202870614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.77012
+ - -0.675654
+ - -0.012048
+ - - 0.325827
+ - 0.882079
+ - 0.406987
+ - - -0.324483
+ - 0.165141
+ - -0.957789
+ - - -0.771508
+ - -0.37137
+ - 0.562686
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 151.95082849207378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.771423
+ - -0.676798
+ - -0.012068
+ - - 0.326378
+ - 0.883572
+ - 0.407676
+ - - -0.325032
+ - 0.16542
+ - -0.95941
+ - - -0.772812
+ - -0.371998
+ - 0.563638
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 147.6381388397817
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 9.0e-06
+ - -4.1e-05
+ - 3.4e-05
+ - - 0.769664
+ - -0.674883
+ - -0.012052
+ - - 0.325632
+ - 0.881124
+ - 0.406476
+ - - -0.324299
+ - 0.16498
+ - -0.956651
+ - - -0.771061
+ - -0.370936
+ - 0.561987
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 151.19522329545998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 9.0e-06
+ - -4.1e-05
+ - 3.4e-05
+ - - 0.769664
+ - -0.674883
+ - -0.012052
+ - - 0.325632
+ - 0.881124
+ - 0.406476
+ - - -0.324299
+ - 0.16498
+ - -0.956651
+ - - -0.771061
+ - -0.370936
+ - 0.561987
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 151.54331899264162
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 9.0e-06
+ - -4.1e-05
+ - 3.4e-05
+ - - 0.769664
+ - -0.674883
+ - -0.012052
+ - - 0.325632
+ - 0.881124
+ - 0.406476
+ - - -0.324299
+ - 0.16498
+ - -0.956651
+ - - -0.771061
+ - -0.370936
+ - 0.561987
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 152.46575223505457
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.771691
+ - -0.677034
+ - -0.012072
+ - - 0.326493
+ - 0.883881
+ - 0.407818
+ - - -0.325146
+ - 0.165477
+ - -0.959745
+ - - -0.773082
+ - -0.372128
+ - 0.563835
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 149.05211086688158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.4e-05
+ - 5.0e-05
+ - -4.1e-05
+ - - 0.770269
+ - -0.675793
+ - -0.012054
+ - - 0.325878
+ - 0.882249
+ - 0.407064
+ - - -0.324539
+ - 0.165175
+ - -0.957974
+ - - -0.771649
+ - -0.371436
+ - 0.562799
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.76884547401892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1e-05
+ - 4.9e-05
+ - -4.1e-05
+ - - 0.769349
+ - -0.674979
+ - -0.012036
+ - - 0.325501
+ - 0.881197
+ - 0.40658
+ - - -0.324159
+ - 0.164975
+ - -0.956832
+ - - -0.770736
+ - -0.370999
+ - 0.562123
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 145.23475412906066
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.2e-05
+ - 4.8e-05
+ - -4.2e-05
+ - - 0.77343
+ - -0.678556
+ - -0.012098
+ - - 0.327228
+ - 0.885868
+ - 0.408735
+ - - -0.325877
+ - 0.165851
+ - -0.961906
+ - - -0.774823
+ - -0.372966
+ - 0.565105
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 149.25178165661944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 9.1337e-06
+ - -4.07975e-05
+ - 3.42847e-05
+ - - 0.7696641706
+ - -0.6748829163
+ - -0.0120518323
+ - - 0.3256316032
+ - 0.8811242048
+ - 0.4064760534
+ - - -0.3242986519
+ - 0.1649800647
+ - -0.956651205
+ - - -0.7710610579
+ - -0.3709357707
+ - 0.5619869908
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 146.17930877394164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.4e-05
+ - 4.4e-05
+ - -4.0e-05
+ - - 0.768439
+ - -0.674175
+ - -0.012019
+ - - 0.325115
+ - 0.880147
+ - 0.406094
+ - - -0.323776
+ - 0.164783
+ - -0.955695
+ - - -0.76982
+ - -0.370555
+ - 0.561454
+ isotopes:
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Aniline.yml b/input/reference_sets/main/Aniline.yml
index aa83a02123..4d92b854cb 100644
--- a/input/reference_sets/main/Aniline.yml
+++ b/input/reference_sets/main/Aniline.yml
@@ -183,60 +183,1068 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.84690970394722
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.328281
+ - -1.4e-05
+ - 0.077437
+ - - -0.934508
+ - -1.2e-05
+ - 0.007427
+ - - -0.221084
+ - -1.203173
+ - 0.004851
+ - - 1.167426
+ - -1.198492
+ - -0.003538
+ - - 1.874391
+ - -6.0e-06
+ - -0.007622
+ - - 1.167421
+ - 1.198477
+ - -0.003557
+ - - -0.221089
+ - 1.203152
+ - 0.004831
+ - - -2.768487
+ - 0.833999
+ - -0.277644
+ - - -2.768483
+ - -0.834034
+ - -0.277633
+ - - -0.76061
+ - -2.142724
+ - 0.013106
+ - - 1.699347
+ - -2.141019
+ - -0.007404
+ - - 2.955368
+ - -4.0e-06
+ - -0.014809
+ - - 1.699337
+ - 2.141006
+ - -0.007439
+ - - -0.760619
+ - 2.142701
+ - 0.01307
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.64465947633425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.325556
+ - -1.4e-05
+ - 0.068225
+ - - -0.933836
+ - -1.2e-05
+ - 0.004879
+ - - -0.219526
+ - -1.202808
+ - 0.002547
+ - - 1.167424
+ - -1.197449
+ - -0.003207
+ - - 1.874268
+ - -6.0e-06
+ - -0.00594
+ - - 1.167419
+ - 1.197434
+ - -0.003226
+ - - -0.219531
+ - 1.202787
+ - 0.002528
+ - - -2.774128
+ - 0.836525
+ - -0.269489
+ - - -2.774124
+ - -0.836561
+ - -0.269476
+ - - -0.758878
+ - -2.142873
+ - 0.00921
+ - - 1.699885
+ - -2.140297
+ - -0.006462
+ - - 2.955724
+ - -4.0e-06
+ - -0.011189
+ - - 1.699876
+ - 2.140284
+ - -0.006497
+ - - -0.758888
+ - 2.14285
+ - 0.009175
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 76.27294976400981
+ value: 76.27294976400981
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.3454695524
+ - -2.33449e-05
+ - 0.079616531
+ - - -0.94648004
+ - 0.0008740368
+ - 0.0084096538
+ - - -0.2230824953
+ - -1.214633983
+ - 0.0042634286
+ - - 1.1767906919
+ - -1.2096644319
+ - -0.003469805
+ - - 1.8915410632
+ - -0.0007031955
+ - -0.0069564725
+ - - 1.1777257034
+ - 1.2090266349
+ - -0.0034108917
+ - - -0.2223863664
+ - 1.2160706423
+ - 0.004369366
+ - - -2.7911217734
+ - 0.8377435926
+ - -0.2860296307
+ - - -2.7889688101
+ - -0.8413430804
+ - -0.280839506
+ - - -0.7673756365
+ - -2.1622792461
+ - 0.0103372636
+ - - 1.7112522493
+ - -2.161600562
+ - -0.008389125
+ - - 2.9818595903
+ - -0.0019134815
+ - -0.0144841178
+ - - 1.7138986857
+ - 2.1598241704
+ - -0.0080310507
+ - - -0.7659087791
+ - 2.1639137999
+ - 0.0108887746
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.97608644209621
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.334248
+ - -1.4e-05
+ - 0.075991
+ - - -0.939259
+ - -1.2e-05
+ - 0.005672
+ - - -0.221269
+ - -1.208212
+ - 0.002942
+ - - 1.171074
+ - -1.202567
+ - -0.003035
+ - - 1.880719
+ - -6.0e-06
+ - -0.005749
+ - - 1.171069
+ - 1.202552
+ - -0.003055
+ - - -0.221274
+ - 1.208192
+ - 0.002922
+ - - -2.779718
+ - 0.8374
+ - -0.273639
+ - - -2.779714
+ - -0.837437
+ - -0.273626
+ - - -0.762759
+ - -2.152411
+ - 0.009155
+ - - 1.705724
+ - -2.149607
+ - -0.00704
+ - - 2.966838
+ - -4.0e-06
+ - -0.011511
+ - - 1.705715
+ - 2.149594
+ - -0.007075
+ - - -0.762768
+ - 2.152388
+ - 0.00912
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.3608817352415
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.337982
+ - -1.4e-05
+ - 0.073353
+ - - -0.941438
+ - -1.2e-05
+ - 0.003852
+ - - -0.22116
+ - -1.210429
+ - 0.001776
+ - - 1.173902
+ - -1.204682
+ - -0.002886
+ - - 1.885262
+ - -6.0e-06
+ - -0.004938
+ - - 1.173897
+ - 1.204668
+ - -0.002905
+ - - -0.221165
+ - 1.210408
+ - 0.001756
+ - - -2.789744
+ - 0.843054
+ - -0.270881
+ - - -2.789741
+ - -0.843091
+ - -0.270867
+ - - -0.764442
+ - -2.159367
+ - 0.007645
+ - - 1.710539
+ - -2.15607
+ - -0.006364
+ - - 2.976121
+ - -4.0e-06
+ - -0.009676
+ - - 1.71053
+ - 2.156058
+ - -0.006399
+ - - -0.764451
+ - 2.159344
+ - 0.007609
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.36804650475041
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.318015
+ - -1.4e-05
+ - 0.060816
+ - - -0.929682
+ - -1.2e-05
+ - 0.004472
+ - - -0.218329
+ - -1.198035
+ - 0.002534
+ - - 1.163932
+ - -1.192762
+ - -0.003409
+ - - 1.868477
+ - -6.0e-06
+ - -0.006394
+ - - 1.163927
+ - 1.192747
+ - -0.003428
+ - - -0.218334
+ - 1.198014
+ - 0.002515
+ - - -2.769404
+ - 0.83757
+ - -0.26621
+ - - -2.769401
+ - -0.837606
+ - -0.266196
+ - - -0.757537
+ - -2.137799
+ - 0.009872
+ - - 1.696223
+ - -2.135356
+ - -0.005959
+ - - 2.949605
+ - -4.0e-06
+ - -0.011383
+ - - 1.696214
+ - 2.135343
+ - -0.005994
+ - - -0.757546
+ - 2.137776
+ - 0.009837
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.8360554847262
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.333084
+ - -1.4e-05
+ - 0.073679
+ - - -0.938183
+ - -1.2e-05
+ - 0.006044
+ - - -0.220135
+ - -1.205829
+ - 0.003532
+ - - 1.170237
+ - -1.200167
+ - -0.003265
+ - - 1.879051
+ - -6.0e-06
+ - -0.006886
+ - - 1.170232
+ - 1.200152
+ - -0.003285
+ - - -0.22014
+ - 1.205809
+ - 0.003512
+ - - -2.778887
+ - 0.836065
+ - -0.274518
+ - - -2.778883
+ - -0.836101
+ - -0.274504
+ - - -0.75957
+ - -2.147973
+ - 0.011654
+ - - 1.703348
+ - -2.144836
+ - -0.006776
+ - - 2.962385
+ - -4.0e-06
+ - -0.012922
+ - - 1.703339
+ - 2.144824
+ - -0.006811
+ - - -0.759579
+ - 2.14795
+ - 0.011619
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.074202559843634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.32521
+ - 2.5e-05
+ - 0.074461
+ - - -0.930063
+ - 6.0e-06
+ - 0.010299
+ - - -0.219998
+ - -1.200338
+ - 0.006583
+ - - 1.164995
+ - -1.195275
+ - -0.003849
+ - - 1.870274
+ - -8.0e-06
+ - -0.009354
+ - - 1.165005
+ - 1.195267
+ - -0.003843
+ - - -0.219986
+ - 1.200346
+ - 0.006597
+ - - -2.765136
+ - 0.833892
+ - -0.280367
+ - - -2.76513
+ - -0.834043
+ - -0.279902
+ - - -0.761197
+ - -2.139565
+ - 0.016725
+ - - 1.697922
+ - -2.137851
+ - -0.007773
+ - - 2.95189
+ - -1.3e-05
+ - -0.017547
+ - - 1.697942
+ - 2.137838
+ - -0.007745
+ - - -0.761178
+ - 2.139576
+ - 0.016788
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.970393612522987
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.32521
+ - 2.5e-05
+ - 0.074461
+ - - -0.930063
+ - 6.0e-06
+ - 0.010299
+ - - -0.219998
+ - -1.200338
+ - 0.006583
+ - - 1.164995
+ - -1.195275
+ - -0.003849
+ - - 1.870274
+ - -8.0e-06
+ - -0.009354
+ - - 1.165005
+ - 1.195267
+ - -0.003843
+ - - -0.219986
+ - 1.200346
+ - 0.006597
+ - - -2.765136
+ - 0.833892
+ - -0.280367
+ - - -2.76513
+ - -0.834043
+ - -0.279902
+ - - -0.761197
+ - -2.139565
+ - 0.016725
+ - - 1.697922
+ - -2.137851
+ - -0.007773
+ - - 2.95189
+ - -1.3e-05
+ - -0.017547
+ - - 1.697942
+ - 2.137838
+ - -0.007745
+ - - -0.761178
+ - 2.139576
+ - 0.016788
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.7115178696235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.332623
+ - -1.5e-05
+ - 0.082328
+ - - -0.936927
+ - -1.2e-05
+ - 0.011701
+ - - -0.220836
+ - -1.205252
+ - 0.005979
+ - - 1.169133
+ - -1.199918
+ - -0.002835
+ - - 1.877488
+ - -6.0e-06
+ - -0.007385
+ - - 1.169128
+ - 1.199903
+ - -0.002855
+ - - -0.220841
+ - 1.205231
+ - 0.005959
+ - - -2.772361
+ - 0.833092
+ - -0.281379
+ - - -2.772358
+ - -0.833127
+ - -0.28137
+ - - -0.76274
+ - -2.146785
+ - 0.012058
+ - - 1.702178
+ - -2.145524
+ - -0.008757
+ - - 2.96147
+ - -4.0e-06
+ - -0.0156
+ - - 1.702168
+ - 2.145511
+ - -0.008792
+ - - -0.762749
+ - 2.146762
+ - 0.012022
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.938487186490377
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.3454695524
- - -2.33449e-05
- - 0.079616531
- - - -0.94648004
- - 0.0008740368
- - 0.0084096538
- - - -0.2230824953
- - -1.214633983
- - 0.0042634286
- - - 1.1767906919
- - -1.2096644319
- - -0.003469805
- - - 1.8915410632
- - -0.0007031955
- - -0.0069564725
- - - 1.1777257034
- - 1.2090266349
- - -0.0034108917
- - - -0.2223863664
- - 1.2160706423
- - 0.004369366
- - - -2.7911217734
- - 0.8377435926
- - -0.2860296307
- - - -2.7889688101
- - -0.8413430804
- - -0.280839506
- - - -0.7673756365
- - -2.1622792461
- - 0.0103372636
- - - 1.7112522493
- - -2.161600562
- - -0.008389125
- - - 2.9818595903
- - -0.0019134815
- - -0.0144841178
- - - 1.7138986857
- - 2.1598241704
- - -0.0080310507
- - - -0.7659087791
- - 2.1639137999
- - 0.0108887746
+ - - -2.322695
+ - -1.4e-05
+ - 0.070886
+ - - -0.93109
+ - -1.2e-05
+ - 0.007218
+ - - -0.219736
+ - -1.20091
+ - 0.004463
+ - - 1.165382
+ - -1.195684
+ - -0.003499
+ - - 1.870989
+ - -6.0e-06
+ - -0.007586
+ - - 1.165377
+ - 1.195669
+ - -0.003519
+ - - -0.219741
+ - 1.200889
+ - 0.004444
+ - - -2.766648
+ - 0.836108
+ - -0.27411
+ - - -2.766645
+ - -0.836144
+ - -0.274097
+ - - -0.76138
+ - -2.139536
+ - 0.01265
+ - - 1.697746
+ - -2.13844
+ - -0.006974
+ - - 2.952223
+ - -4.0e-06
+ - -0.014409
+ - - 1.697737
+ - 2.138427
+ - -0.007009
+ - - -0.761389
+ - 2.139513
+ - 0.012615
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.45299579902498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.319431
+ - -1.4e-05
+ - 0.06818
+ - - -0.934314
+ - -1.2e-05
+ - 0.005442
+ - - -0.220064
+ - -1.199996
+ - 0.002948
+ - - 1.164214
+ - -1.194555
+ - -0.00329
+ - - 1.87043
+ - -6.0e-06
+ - -0.006295
+ - - 1.164208
+ - 1.19454
+ - -0.00331
+ - - -0.220069
+ - 1.199975
+ - 0.002928
+ - - -2.766578
+ - 0.836203
+ - -0.269799
+ - - -2.766574
+ - -0.836239
+ - -0.269785
+ - - -0.759454
+ - -2.142084
+ - 0.009744
+ - - 1.696852
+ - -2.139304
+ - -0.0067
+ - - 2.953529
+ - -4.0e-06
+ - -0.011964
+ - - 1.696843
+ - 2.139291
+ - -0.006735
+ - - -0.759463
+ - 2.142061
+ - 0.009709
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.308347552906795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.336378
+ - -1.4e-05
+ - 0.079416
+ - - -0.938083
+ - -1.2e-05
+ - 0.004709
+ - - -0.220707
+ - -1.208144
+ - 0.002366
+ - - 1.171887
+ - -1.20238
+ - -0.002952
+ - - 1.881797
+ - -6.0e-06
+ - -0.005286
+ - - 1.171882
+ - 1.202366
+ - -0.002971
+ - - -0.220712
+ - 1.208124
+ - 0.002346
+ - - -2.78286
+ - 0.83834
+ - -0.274026
+ - - -2.782857
+ - -0.838376
+ - -0.274013
+ - - -0.761526
+ - -2.152508
+ - 0.007919
+ - - 1.705816
+ - -2.149381
+ - -0.006844
+ - - 2.967599
+ - -4.0e-06
+ - -0.010595
+ - - 1.705807
+ - 2.149368
+ - -0.006879
+ - - -0.761535
+ - 2.152485
+ - 0.007884
isotopes:
- 14
- 12
@@ -351,6 +1359,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.245745090975877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.325210123
+ - 2.48282e-05
+ - 0.0744606366
+ - - -0.9300634138
+ - 6.4431e-06
+ - 0.010298761
+ - - -0.2199976225
+ - -1.2003380108
+ - 0.0065834819
+ - - 1.1649945108
+ - -1.1952748123
+ - -0.0038491878
+ - - 1.8702735899
+ - -7.7246e-06
+ - -0.0093539474
+ - - 1.1650048175
+ - 1.1952673482
+ - -0.003843332
+ - - -0.219985687
+ - 1.2003455381
+ - 0.0065967961
+ - - -2.7651358413
+ - 0.8338916945
+ - -0.2803669448
+ - - -2.765129928
+ - -0.8340428729
+ - -0.2799015799
+ - - -0.7611967391
+ - -2.1395654582
+ - 0.0167252217
+ - - 1.6979223806
+ - -2.137851114
+ - -0.0077725493
+ - - 2.9518896234
+ - -1.25757e-05
+ - -0.0175469951
+ - - 1.6979424614
+ - 2.1378382954
+ - -0.0077452158
+ - - -0.761178266
+ - 2.1395755433
+ - 0.0167881768
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.086706212080696
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.321333
+ - -1.4e-05
+ - 0.066573
+ - - -0.932136
+ - -1.2e-05
+ - 0.006434
+ - - -0.219548
+ - -1.199841
+ - 0.003871
+ - - 1.164472
+ - -1.194361
+ - -0.003511
+ - - 1.86973
+ - -6.0e-06
+ - -0.007262
+ - - 1.164467
+ - 1.194346
+ - -0.003531
+ - - -0.219553
+ - 1.19982
+ - 0.003851
+ - - -2.767677
+ - 0.835482
+ - -0.271107
+ - - -2.767673
+ - -0.835518
+ - -0.271095
+ - - -0.758062
+ - -2.140777
+ - 0.011722
+ - - 1.697026
+ - -2.137527
+ - -0.006579
+ - - 2.951472
+ - -4.0e-06
+ - -0.013365
+ - - 1.697017
+ - 2.137514
+ - -0.006614
+ - - -0.758072
+ - 2.140754
+ - 0.011686
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Anisole.yml b/input/reference_sets/main/Anisole.yml
index 8d61907bb0..f366febefe 100644
--- a/input/reference_sets/main/Anisole.yml
+++ b/input/reference_sets/main/Anisole.yml
@@ -117,7 +117,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -17.67558251459598
+ value: -17.675582514595973
class: ThermoData
xyz_dict:
coords:
@@ -205,66 +205,1194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0982867275786008
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.753701
+ - -0.328038
+ - 0.000233
+ - - 1.754418
+ - 0.677093
+ - 0.000188
+ - - 0.452853
+ - 0.275516
+ - 0.000127
+ - - 0.038949
+ - -1.055951
+ - 0.000117
+ - - -1.324543
+ - -1.349432
+ - 5.3e-05
+ - - -2.27274
+ - -0.336981
+ - -1.0e-06
+ - - -1.848338
+ - 0.991621
+ - 1.0e-05
+ - - -0.497976
+ - 1.299628
+ - 7.4e-05
+ - - 3.704589
+ - 0.196779
+ - 0.000271
+ - - 2.68555
+ - -0.956413
+ - 0.891484
+ - - 2.685623
+ - -0.956419
+ - -0.891018
+ - - 0.75565
+ - -1.862943
+ - 0.000158
+ - - -1.637916
+ - -2.385234
+ - 4.5e-05
+ - - -3.327393
+ - -0.574684
+ - -5.1e-05
+ - - -2.575419
+ - 1.792996
+ - -3.2e-05
+ - - -0.153051
+ - 2.324591
+ - 8.3e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.9522350916912168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.758743
+ - -0.326195
+ - 0.000233
+ - - 1.752613
+ - 0.670587
+ - 0.000196
+ - - 0.450191
+ - 0.27326
+ - 0.000131
+ - - 0.033972
+ - -1.056795
+ - 0.00012
+ - - -1.328242
+ - -1.348738
+ - 5.2e-05
+ - - -2.274447
+ - -0.335786
+ - -4.0e-06
+ - - -1.848673
+ - 0.9912
+ - 8.0e-06
+ - - -0.499195
+ - 1.297768
+ - 7.5e-05
+ - - 3.707647
+ - 0.204713
+ - 0.000266
+ - - 2.696424
+ - -0.95681
+ - 0.892101
+ - - 2.696487
+ - -0.956811
+ - -0.891638
+ - - 0.750885
+ - -1.864053
+ - 0.000163
+ - - -1.643233
+ - -2.384565
+ - 4.4e-05
+ - - -3.329945
+ - -0.572059
+ - -5.6e-05
+ - - -2.575493
+ - 1.793517
+ - -3.5e-05
+ - - -0.153776
+ - 2.322897
+ - 8.5e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 47.196397574114094
+ value: 47.196397574114094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.7797272154
+ - -0.3299688541
+ - 0.0007707407
+ - - 1.7701586241
+ - 0.6795771718
+ - -0.0005798145
+ - - 0.4608724381
+ - 0.2739292459
+ - -0.0004512476
+ - - 0.0343804627
+ - -1.0686986795
+ - -0.0005542839
+ - - -1.3415944421
+ - -1.3589025771
+ - -9.18817e-05
+ - - -2.2950362844
+ - -0.3332009955
+ - 0.0003912933
+ - - -1.8614903976
+ - 1.0052312771
+ - 0.0002800063
+ - - -0.4972771802
+ - 1.3105030487
+ - -0.0001527441
+ - - 3.7364923414
+ - 0.2051165904
+ - 0.0007817447
+ - - 2.7152252094
+ - -0.9664752679
+ - 0.8997627293
+ - - 2.7162180449
+ - -0.9680151003
+ - -0.8971935484
+ - - 0.752556359
+ - -1.8868583971
+ - -0.0010405603
+ - - -1.6624988342
+ - -2.402323314
+ - -7.81799e-05
+ - - -3.359764235
+ - -0.569636641
+ - 0.0008331882
+ - - -2.5918717389
+ - 1.8162440878
+ - 0.0005942158
+ - - -0.1451170115
+ - 2.3419758746
+ - -0.0001723719
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.65966262121727
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.768557
+ - -0.328007
+ - 0.000236
+ - - 1.760534
+ - 0.678171
+ - 0.000181
+ - - 0.453345
+ - 0.275301
+ - 0.000123
+ - - 0.034792
+ - -1.061114
+ - 0.000113
+ - - -1.332524
+ - -1.353927
+ - 5.1e-05
+ - - -2.283057
+ - -0.336648
+ - 0.0
+ - - -1.855786
+ - 0.995463
+ - 1.1e-05
+ - - -0.500774
+ - 1.304141
+ - 7.2e-05
+ - - 3.721382
+ - 0.205222
+ - 0.000278
+ - - 2.703179
+ - -0.960573
+ - 0.896271
+ - - 2.703265
+ - -0.960585
+ - -0.895797
+ - - 0.753927
+ - -1.872438
+ - 0.000151
+ - - -1.648458
+ - -2.394441
+ - 4.3e-05
+ - - -3.343048
+ - -0.574169
+ - -4.7e-05
+ - - -2.585516
+ - 1.801515
+ - -2.8e-05
+ - - -0.155859
+ - 2.334219
+ - 8.1e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.797097704560503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.770251
+ - -0.329147
+ - 0.000236
+ - - 1.764028
+ - 0.682568
+ - 0.000181
+ - - 0.454085
+ - 0.277692
+ - 0.000123
+ - - 0.036427
+ - -1.061721
+ - 0.000113
+ - - -1.333454
+ - -1.356097
+ - 5.2e-05
+ - - -2.286452
+ - -0.337408
+ - 0.0
+ - - -1.859388
+ - 0.997696
+ - 1.1e-05
+ - - -0.50211
+ - 1.308159
+ - 7.2e-05
+ - - 3.728753
+ - 0.203315
+ - 0.000277
+ - - 2.704903
+ - -0.964537
+ - 0.900108
+ - - 2.704989
+ - -0.964551
+ - -0.899633
+ - - 0.761264
+ - -1.875332
+ - 0.000152
+ - - -1.650257
+ - -2.40134
+ - 4.4e-05
+ - - -3.350902
+ - -0.576794
+ - -4.7e-05
+ - - -2.592945
+ - 1.806728
+ - -2.8e-05
+ - - -0.155234
+ - 2.342901
+ - 8.1e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.634957228461278
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.74975
+ - -0.323781
+ - 0.000235
+ - - 1.746115
+ - 0.665236
+ - 0.000182
+ - - 0.448139
+ - 0.270733
+ - 0.000124
+ - - 0.033604
+ - -1.053592
+ - 0.000113
+ - - -1.324641
+ - -1.343875
+ - 5.1e-05
+ - - -2.266938
+ - -0.335025
+ - 1.0e-06
+ - - -1.841937
+ - 0.987446
+ - 1.2e-05
+ - - -0.497617
+ - 1.29206
+ - 7.3e-05
+ - - 3.698207
+ - 0.206665
+ - 0.000276
+ - - 2.690257
+ - -0.954295
+ - 0.891318
+ - - 2.69034
+ - -0.954307
+ - -0.890845
+ - - 0.750021
+ - -1.861039
+ - 0.000152
+ - - -1.640096
+ - -2.379231
+ - 4.3e-05
+ - - -3.322181
+ - -0.570934
+ - -4.7e-05
+ - - -2.568405
+ - 1.789671
+ - -2.7e-05
+ - - -0.150661
+ - 2.316397
+ - 8.2e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.23880787494753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.768993
+ - -0.32347
+ - 0.000236
+ - - 1.754952
+ - 0.670173
+ - 0.000184
+ - - 0.450572
+ - 0.269121
+ - 0.000125
+ - - 0.029302
+ - -1.06327
+ - 0.000113
+ - - -1.337131
+ - -1.352675
+ - 5.0e-05
+ - - -2.283394
+ - -0.335146
+ - -1.0e-06
+ - - -1.85346
+ - 0.994239
+ - 1.1e-05
+ - - -0.500102
+ - 1.297988
+ - 7.3e-05
+ - - 3.714509
+ - 0.216546
+ - 0.000277
+ - - 2.714285
+ - -0.95523
+ - 0.894109
+ - - 2.714367
+ - -0.95524
+ - -0.893634
+ - - 0.744955
+ - -1.874327
+ - 0.000152
+ - - -1.654903
+ - -2.389586
+ - 4.1e-05
+ - - -3.341236
+ - -0.569428
+ - -5.0e-05
+ - - -2.579392
+ - 1.799829
+ - -2.8e-05
+ - - -0.148358
+ - 2.322605
+ - 8.4e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.696131887450585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.745086
+ - -0.327948
+ - 0.000386
+ - - 1.751313
+ - 0.677425
+ - -0.00036
+ - - 0.450504
+ - 0.276152
+ - -0.000214
+ - - 0.041434
+ - -1.051607
+ - -0.000229
+ - - -1.319342
+ - -1.345055
+ - -5.6e-05
+ - - -2.26596
+ - -0.33717
+ - 0.000153
+ - - -1.84419
+ - 0.989179
+ - 0.000155
+ - - -0.498162
+ - 1.297628
+ - -3.9e-05
+ - - 3.699657
+ - 0.190955
+ - 0.000477
+ - - 2.675799
+ - -0.956567
+ - 0.892238
+ - - 2.676438
+ - -0.957376
+ - -0.890943
+ - - 0.76028
+ - -1.857765
+ - -0.000387
+ - - -1.632835
+ - -2.381487
+ - -7.9e-05
+ - - -3.32079
+ - -0.576874
+ - 0.000321
+ - - -2.572936
+ - 1.789679
+ - 0.000335
+ - - -0.152338
+ - 2.322959
+ - -1.7e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.272760156127362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.745086
+ - -0.327948
+ - 0.000386
+ - - 1.751313
+ - 0.677425
+ - -0.00036
+ - - 0.450504
+ - 0.276152
+ - -0.000214
+ - - 0.041434
+ - -1.051607
+ - -0.000229
+ - - -1.319342
+ - -1.345055
+ - -5.6e-05
+ - - -2.26596
+ - -0.33717
+ - 0.000153
+ - - -1.84419
+ - 0.989179
+ - 0.000155
+ - - -0.498162
+ - 1.297628
+ - -3.9e-05
+ - - 3.699657
+ - 0.190955
+ - 0.000477
+ - - 2.675799
+ - -0.956567
+ - 0.892238
+ - - 2.676438
+ - -0.957376
+ - -0.890943
+ - - 0.76028
+ - -1.857765
+ - -0.000387
+ - - -1.632835
+ - -2.381487
+ - -7.9e-05
+ - - -3.32079
+ - -0.576874
+ - 0.000321
+ - - -2.572936
+ - 1.789679
+ - 0.000335
+ - - -0.152338
+ - 2.322959
+ - -1.7e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.19761704192139
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.759511
+ - -0.321281
+ - 0.000236
+ - - 1.753757
+ - 0.672266
+ - 0.000181
+ - - 0.452648
+ - 0.271092
+ - 0.000123
+ - - 0.033333
+ - -1.061404
+ - 0.000112
+ - - -1.33216
+ - -1.351781
+ - 5.0e-05
+ - - -2.279676
+ - -0.33567
+ - 0.0
+ - - -1.851498
+ - 0.993413
+ - 1.2e-05
+ - - -0.498688
+ - 1.298405
+ - 7.3e-05
+ - - 3.712462
+ - 0.21062
+ - 0.000277
+ - - 2.702672
+ - -0.95726
+ - 0.893301
+ - - 2.702757
+ - -0.957273
+ - -0.892825
+ - - 0.75138
+ - -1.87107
+ - 0.00015
+ - - -1.648413
+ - -2.390058
+ - 4.2e-05
+ - - -3.337894
+ - -0.571415
+ - -4.7e-05
+ - - -2.578275
+ - 1.799377
+ - -2.7e-05
+ - - -0.147958
+ - 2.324172
+ - 8.3e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.59054959115286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.743355
+ - -0.32585
+ - 0.000234
+ - - 1.750623
+ - 0.673593
+ - 0.000179
+ - - 0.452918
+ - 0.275898
+ - 0.000122
+ - - 0.041766
+ - -1.052617
+ - 0.000113
+ - - -1.318955
+ - -1.346083
+ - 5.2e-05
+ - - -2.265515
+ - -0.337367
+ - 2.0e-06
+ - - -1.843133
+ - 0.989273
+ - 1.3e-05
+ - - -0.496924
+ - 1.297681
+ - 7.2e-05
+ - - 3.698123
+ - 0.193053
+ - 0.000275
+ - - 2.67228
+ - -0.955017
+ - 0.89176
+ - - 2.672364
+ - -0.955033
+ - -0.891287
+ - - 0.760199
+ - -1.859179
+ - 0.000151
+ - - -1.631796
+ - -2.382431
+ - 4.5e-05
+ - - -3.320249
+ - -0.576057
+ - -4.5e-05
+ - - -2.571547
+ - 1.790004
+ - -2.6e-05
+ - - -0.149552
+ - 2.322262
+ - 8.1e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.4920436848256005
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.7797272154
- - -0.3299688541
- - 0.0007707407
- - - 1.7701586241
- - 0.6795771718
- - -0.0005798145
- - - 0.4608724381
- - 0.2739292459
- - -0.0004512476
- - - 0.0343804627
- - -1.0686986795
- - -0.0005542839
- - - -1.3415944421
- - -1.3589025771
- - -9.18817e-05
- - - -2.2950362844
- - -0.3332009955
- - 0.0003912933
- - - -1.8614903976
- - 1.0052312771
- - 0.0002800063
- - - -0.4972771802
- - 1.3105030487
- - -0.0001527441
- - - 3.7364923414
- - 0.2051165904
- - 0.0007817447
- - - 2.7152252094
- - -0.9664752679
- - 0.8997627293
- - - 2.7162180449
- - -0.9680151003
- - -0.8971935484
- - - 0.752556359
- - -1.8868583971
- - -0.0010405603
- - - -1.6624988342
- - -2.402323314
- - -7.81799e-05
- - - -3.359764235
- - -0.569636641
- - 0.0008331882
- - - -2.5918717389
- - 1.8162440878
- - 0.0005942158
- - - -0.1451170115
- - 2.3419758746
- - -0.0001723719
+ - - 2.742013
+ - -0.324319
+ - 0.000234
+ - - 1.7484
+ - 0.670336
+ - 0.00018
+ - - 0.453858
+ - 0.274823
+ - 0.000123
+ - - 0.039091
+ - -1.053002
+ - 0.000113
+ - - -1.320199
+ - -1.345601
+ - 5.2e-05
+ - - -2.266208
+ - -0.336237
+ - 2.0e-06
+ - - -1.842224
+ - 0.988372
+ - 1.2e-05
+ - - -0.495815
+ - 1.295961
+ - 7.2e-05
+ - - 3.69676
+ - 0.199154
+ - 0.000275
+ - - 2.67929
+ - -0.956703
+ - 0.89275
+ - - 2.679374
+ - -0.956716
+ - -0.892278
+ - - 0.758596
+ - -1.860957
+ - 0.000152
+ - - -1.634268
+ - -2.383543
+ - 4.5e-05
+ - - -3.323011
+ - -0.574269
+ - -4.6e-05
+ - - -2.570646
+ - 1.791593
+ - -2.7e-05
+ - - -0.151052
+ - 2.323237
+ - 8.1e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.459737893373582
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.766695
+ - -0.334076
+ - 0.000236
+ - - 1.762959
+ - 0.683651
+ - 0.00018
+ - - 0.45225
+ - 0.279136
+ - 0.000123
+ - - 0.038506
+ - -1.057998
+ - 0.000113
+ - - -1.328495
+ - -1.353495
+ - 5.2e-05
+ - - -2.280801
+ - -0.337788
+ - 1.0e-06
+ - - -1.856076
+ - 0.995312
+ - 1.1e-05
+ - - -0.501632
+ - 1.307175
+ - 7.1e-05
+ - - 3.719883
+ - 0.196375
+ - 0.000277
+ - - 2.693226
+ - -0.962752
+ - 0.896976
+ - - 2.693311
+ - -0.962766
+ - -0.896502
+ - - 0.761756
+ - -1.866264
+ - 0.000153
+ - - -1.642285
+ - -2.39426
+ - 4.6e-05
+ - - -3.340027
+ - -0.577189
+ - -4.6e-05
+ - - -2.587178
+ - 1.799617
+ - -2.9e-05
+ - - -0.158132
+ - 2.337453
+ - 7.9e-05
isotopes:
- 12
- 16
@@ -393,6 +1521,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.69178220191475
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.745085574
+ - -0.3279475169
+ - 0.0003857131
+ - - 1.7513132051
+ - 0.6774248241
+ - -0.0003604182
+ - - 0.4505041413
+ - 0.2761522751
+ - -0.0002138113
+ - - 0.0414341758
+ - -1.0516073324
+ - -0.000229136
+ - - -1.3193416135
+ - -1.3450552264
+ - -5.62966e-05
+ - - -2.265960291
+ - -0.3371699061
+ - 0.0001530983
+ - - -1.8441899267
+ - 0.9891786987
+ - 0.0001553142
+ - - -0.4981621755
+ - 1.2976283013
+ - -3.85994e-05
+ - - 3.699657414
+ - 0.1909552967
+ - 0.0004770431
+ - - 2.6757992119
+ - -0.9565666442
+ - 0.8922382841
+ - - 2.6764376067
+ - -0.957375659
+ - -0.8909427748
+ - - 0.7602800967
+ - -1.8577649664
+ - -0.0003872943
+ - - -1.6328349551
+ - -2.3814865533
+ - -7.89965e-05
+ - - -3.320790151
+ - -0.5768744027
+ - 0.0003214469
+ - - -2.5729362295
+ - 1.7896792862
+ - 0.0003348748
+ - - -0.1523379413
+ - 2.3229592901
+ - -1.69304e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.47122050563042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.747382
+ - -0.32273
+ - 0.000235
+ - - 1.747268
+ - 0.666697
+ - 0.000181
+ - - 0.451881
+ - 0.271394
+ - 0.000124
+ - - 0.035596
+ - -1.055164
+ - 0.000113
+ - - -1.324143
+ - -1.345557
+ - 5.1e-05
+ - - -2.267795
+ - -0.335437
+ - 1.0e-06
+ - - -1.842055
+ - 0.988425
+ - 1.2e-05
+ - - -0.496006
+ - 1.293825
+ - 7.3e-05
+ - - 3.697738
+ - 0.206203
+ - 0.000274
+ - - 2.687848
+ - -0.954263
+ - 0.892409
+ - - 2.68793
+ - -0.954277
+ - -0.891934
+ - - 0.751109
+ - -1.864896
+ - 0.000152
+ - - -1.639414
+ - -2.381634
+ - 4.3e-05
+ - - -3.323624
+ - -0.571452
+ - -4.7e-05
+ - - -2.568616
+ - 1.791426
+ - -2.7e-05
+ - - -0.15114
+ - 2.31957
+ - 8.3e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Azanide.yml b/input/reference_sets/main/Azanide.yml
index de9f3629ed..66ef9f5cb7 100644
--- a/input/reference_sets/main/Azanide.yml
+++ b/input/reference_sets/main/Azanide.yml
@@ -62,6 +62,64 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.35654297523683
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.153772
+ - - -0.794307
+ - -0.0
+ - -0.507522
+ - - 0.794307
+ - -0.0
+ - -0.507522
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.37976615429874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.154607
+ - - -0.795545
+ - 0.0
+ - -0.507939
+ - - 0.795545
+ - -0.0
+ - -0.507939
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.37216195322712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.160233
+ - - -0.796219
+ - 0.0
+ - -0.510752
+ - - 0.796219
+ - -0.0
+ - -0.510752
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.79745744642362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.163008
+ - - -0.799168
+ - 0.0
+ - -0.512139
+ - - 0.799168
+ - -0.0
+ - -0.512139
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.465444835611905
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.150719
+ - - -0.795207
+ - 0.0
+ - -0.505995
+ - - 0.795207
+ - -0.0
+ - -0.505995
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.9411656168559
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.17331
+ - - -0.787151
+ - 0.0
+ - -0.517291
+ - - 0.787151
+ - -0.0
+ - -0.517291
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.120659952197514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.143545
+ - - -0.797471
+ - -0.0
+ - -0.502408
+ - - 0.797471
+ - 0.0
+ - -0.502408
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.039518967753402
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.143545
+ - - -0.797471
+ - -0.0
+ - -0.502408
+ - - 0.797471
+ - 0.0
+ - -0.502408
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.370393039439602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.143545
+ - - -0.797471
+ - -0.0
+ - -0.502408
+ - - 0.797471
+ - 0.0
+ - -0.502408
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.893417423461457
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.172601
+ - - -0.783643
+ - 0.0
+ - -0.516936
+ - - 0.783643
+ - 0.0
+ - -0.516936
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.29521338796225
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.150407
+ - - -0.794291
+ - 0.0
+ - -0.505839
+ - - 0.794291
+ - -0.0
+ - -0.505839
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.31831133831856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.153931
+ - - -0.793085
+ - 0.0
+ - -0.507601
+ - - 0.793085
+ - -0.0
+ - -0.507601
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.04558446998529
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.161135
+ - - -0.797883
+ - 0.0
+ - -0.511203
+ - - 0.797883
+ - -0.0
+ - -0.511203
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.736432172477315
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1435451957
+ - - -0.7974709983
+ - -0.0
+ - -0.5024081849
+ - - 0.7974709983
+ - 0.0
+ - -0.5024081849
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.05524977341599
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.152089
+ - - -0.794056
+ - 0.0
+ - -0.50668
+ - - 0.794056
+ - -0.0
+ - -0.50668
+ isotopes:
+ - 14
+ - 1
+ - 1
+ symbols:
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Benzaldehyde.yml b/input/reference_sets/main/Benzaldehyde.yml
index 591e5a7eeb..d64431c63e 100644
--- a/input/reference_sets/main/Benzaldehyde.yml
+++ b/input/reference_sets/main/Benzaldehyde.yml
@@ -183,59 +183,1151 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.371107581340151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.209042
+ - 0.243628
+ - -0.0
+ - - 1.325702
+ - 1.323844
+ - 0.0
+ - - -0.042271
+ - 1.101727
+ - 0.0
+ - - -0.532525
+ - -0.207028
+ - 0.0
+ - - 0.353067
+ - -1.284546
+ - -0.0
+ - - 1.724757
+ - -1.060475
+ - -0.0
+ - - -1.986672
+ - -0.465456
+ - 0.0
+ - - -2.842369
+ - 0.392747
+ - 0.0
+ - - 3.276341
+ - 0.421495
+ - -0.0
+ - - 1.710656
+ - 2.334743
+ - 0.0
+ - - -0.748106
+ - 1.921345
+ - 0.0
+ - - -0.037157
+ - -2.295448
+ - -0.0
+ - - 2.41263
+ - -1.89507
+ - -0.0
+ - - -2.263726
+ - -1.538198
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.493659750221571
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.207756
+ - 0.243298
+ - -0.0
+ - - 1.325606
+ - 1.323099
+ - 0.0
+ - - -0.040767
+ - 1.101427
+ - 0.0
+ - - -0.533253
+ - -0.20621
+ - 0.0
+ - - 0.353091
+ - -1.28262
+ - -0.0
+ - - 1.723326
+ - -1.059533
+ - -0.0
+ - - -1.986876
+ - -0.464097
+ - 0.0
+ - - -2.842101
+ - 0.389179
+ - 0.0
+ - - 3.275603
+ - 0.420814
+ - -0.0
+ - - 1.711049
+ - 2.334331
+ - 0.0
+ - - -0.746063
+ - 1.921761
+ - 0.0
+ - - -0.037295
+ - -2.293761
+ - -0.0
+ - - 2.411068
+ - -1.894847
+ - -0.0
+ - - -2.261775
+ - -1.539536
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 60.942240933022
+ value: 60.942240933022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2286904351
+ - 0.253438069
+ - 0.0
+ - - 1.3321514198
+ - 1.3392679201
+ - 0.0
+ - - -0.0461170268
+ - 1.1057220211
+ - 0.0
+ - - -0.5378136648
+ - -0.2166956044
+ - -0.0
+ - - 0.3637327628
+ - -1.2993437834
+ - -0.0
+ - - 1.7455701517
+ - -1.0653133658
+ - -0.0
+ - - -2.0022343071
+ - -0.471566517
+ - -0.0
+ - - -2.8625637504
+ - 0.3984863121
+ - 0.0
+ - - 3.3044080104
+ - 0.4367710241
+ - 0.0
+ - - 1.7142202186
+ - 2.3609814412
+ - 0.0
+ - - -0.7657184216
+ - 1.9251569565
+ - 0.0
+ - - -0.0229857801
+ - -2.3216338581
+ - -0.0
+ - - 2.4435823262
+ - -1.9036629722
+ - -0.0
+ - - -2.2768749747
+ - -1.5585555262
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.159531397650346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.215528
+ - 0.244233
+ - -0.0
+ - - 1.330539
+ - 1.329119
+ - 0.0
+ - - -0.041399
+ - 1.108255
+ - 0.0
+ - - -0.538762
+ - -0.204584
+ - 0.0
+ - - 0.352118
+ - -1.286385
+ - -0.0
+ - - 1.727475
+ - -1.063809
+ - -0.0
+ - - -1.995536
+ - -0.465226
+ - 0.0
+ - - -2.861271
+ - 0.387814
+ - 0.0
+ - - 3.288182
+ - 0.421453
+ - -0.0
+ - - 1.718834
+ - 2.344335
+ - 0.0
+ - - -0.748587
+ - 1.932921
+ - 0.0
+ - - -0.041838
+ - -2.301229
+ - -0.0
+ - - 2.417625
+ - -1.903275
+ - -0.0
+ - - -2.26354
+ - -1.550316
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.333291763199473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.218772
+ - 0.244935
+ - -0.0
+ - - 1.331988
+ - 1.331865
+ - 0.0
+ - - -0.042579
+ - 1.110064
+ - 0.0
+ - - -0.539794
+ - -0.20547
+ - 0.0
+ - - 0.352556
+ - -1.289369
+ - -0.0
+ - - 1.730584
+ - -1.065946
+ - -0.0
+ - - -1.998602
+ - -0.465711
+ - 0.0
+ - - -2.865041
+ - 0.393048
+ - 0.0
+ - - 3.296153
+ - 0.4233
+ - -0.0
+ - - 1.721936
+ - 2.351642
+ - 0.0
+ - - -0.755613
+ - 1.936926
+ - 0.0
+ - - -0.044212
+ - -2.30875
+ - -0.0
+ - - 2.424346
+ - -1.908705
+ - -0.0
+ - - -2.271126
+ - -1.554521
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.861902399797744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.201489
+ - 0.242647
+ - -0.0
+ - - 1.322251
+ - 1.318019
+ - 0.0
+ - - -0.039604
+ - 1.095685
+ - 0.0
+ - - -0.527853
+ - -0.206886
+ - -0.0
+ - - 0.353997
+ - -1.278584
+ - -0.0
+ - - 1.71999
+ - -1.055477
+ - -0.0
+ - - -1.981828
+ - -0.462907
+ - 0.0
+ - - -2.828328
+ - 0.390868
+ - 0.0
+ - - 3.268959
+ - 0.420738
+ - -0.0
+ - - 1.706598
+ - 2.329291
+ - 0.0
+ - - -0.745783
+ - 1.915127
+ - 0.0
+ - - -0.035061
+ - -2.290019
+ - -0.0
+ - - 2.407851
+ - -1.890257
+ - -0.0
+ - - -2.26331
+ - -1.534939
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.561048988255369
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.212716
+ - 0.244971
+ - -0.0
+ - - 1.326801
+ - 1.325945
+ - 0.0
+ - - -0.042589
+ - 1.100543
+ - 0.0
+ - - -0.534735
+ - -0.210942
+ - 0.0
+ - - 0.355586
+ - -1.28878
+ - -0.0
+ - - 1.728878
+ - -1.06205
+ - -0.0
+ - - -1.994871
+ - -0.461414
+ - 0.0
+ - - -2.843722
+ - 0.399713
+ - 0.0
+ - - 3.282139
+ - 0.424165
+ - -0.0
+ - - 1.710753
+ - 2.339694
+ - 0.0
+ - - -0.752578
+ - 1.919159
+ - 0.0
+ - - -0.032049
+ - -2.303
+ - -0.0
+ - - 2.419425
+ - -1.897445
+ - -0.0
+ - - -2.276383
+ - -1.537253
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.544831731215021
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.204397
+ - 0.243203
+ - 0.0
+ - - 1.323783
+ - 1.320728
+ - 0.0
+ - - -0.041037
+ - 1.097755
+ - 0.0
+ - - -0.52684
+ - -0.207341
+ - 0.0
+ - - 0.354227
+ - -1.281475
+ - 0.0
+ - - 1.723217
+ - -1.057599
+ - 0.0
+ - - -1.986004
+ - -0.464837
+ - 0.0
+ - - -2.831154
+ - 0.393503
+ - 0.0
+ - - 3.272184
+ - 0.422084
+ - 0.0
+ - - 1.708845
+ - 2.332077
+ - 0.0
+ - - -0.748406
+ - 1.916737
+ - 0.0
+ - - -0.037048
+ - -2.292768
+ - 0.0
+ - - 2.411919
+ - -1.891967
+ - 0.0
+ - - -2.268712
+ - -1.536794
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.9604559613945634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.204397
+ - 0.243203
+ - 0.0
+ - - 1.323783
+ - 1.320728
+ - 0.0
+ - - -0.041037
+ - 1.097755
+ - 0.0
+ - - -0.52684
+ - -0.207341
+ - 0.0
+ - - 0.354227
+ - -1.281475
+ - 0.0
+ - - 1.723217
+ - -1.057599
+ - 0.0
+ - - -1.986004
+ - -0.464837
+ - 0.0
+ - - -2.831154
+ - 0.393503
+ - 0.0
+ - - 3.272184
+ - 0.422084
+ - 0.0
+ - - 1.708845
+ - 2.332077
+ - 0.0
+ - - -0.748406
+ - 1.916737
+ - 0.0
+ - - -0.037048
+ - -2.292768
+ - 0.0
+ - - 2.411919
+ - -1.891967
+ - 0.0
+ - - -2.268712
+ - -1.536794
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.43005370500856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.204397
+ - 0.243203
+ - 0.0
+ - - 1.323783
+ - 1.320728
+ - 0.0
+ - - -0.041037
+ - 1.097755
+ - 0.0
+ - - -0.52684
+ - -0.207341
+ - 0.0
+ - - 0.354227
+ - -1.281475
+ - 0.0
+ - - 1.723217
+ - -1.057599
+ - 0.0
+ - - -1.986004
+ - -0.464837
+ - 0.0
+ - - -2.831154
+ - 0.393503
+ - 0.0
+ - - 3.272184
+ - 0.422084
+ - 0.0
+ - - 1.708845
+ - 2.332077
+ - 0.0
+ - - -0.748406
+ - 1.916737
+ - 0.0
+ - - -0.037048
+ - -2.292768
+ - 0.0
+ - - 2.411919
+ - -1.891967
+ - 0.0
+ - - -2.268712
+ - -1.536794
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.490560345197323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.211486
+ - 0.244733
+ - 0.0
+ - - 1.326428
+ - 1.325871
+ - 0.0
+ - - -0.042623
+ - 1.100898
+ - 0.0
+ - - -0.534569
+ - -0.210353
+ - 0.0
+ - - 0.354857
+ - -1.288042
+ - 0.0
+ - - 1.72763
+ - -1.062045
+ - 0.0
+ - - -1.992622
+ - -0.460835
+ - 0.0
+ - - -2.841918
+ - 0.399785
+ - 0.0
+ - - 3.281775
+ - 0.423896
+ - 0.0
+ - - 1.711096
+ - 2.340222
+ - 0.0
+ - - -0.754132
+ - 1.91912
+ - 0.0
+ - - -0.035725
+ - -2.302001
+ - 0.0
+ - - 2.418151
+ - -1.898487
+ - 0.0
+ - - -2.270465
+ - -1.539455
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.4328867884342846
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.204713
+ - 0.243501
+ - -0.0
+ - - 1.323081
+ - 1.321172
+ - 0.0
+ - - -0.041807
+ - 1.097398
+ - 0.0
+ - - -0.526906
+ - -0.208653
+ - -0.0
+ - - 0.354683
+ - -1.283021
+ - -0.0
+ - - 1.723864
+ - -1.058194
+ - -0.0
+ - - -1.98607
+ - -0.463618
+ - 0.0
+ - - -2.826067
+ - 0.395475
+ - 0.0
+ - - 3.272319
+ - 0.422401
+ - -0.0
+ - - 1.707318
+ - 2.332724
+ - 0.0
+ - - -0.751471
+ - 1.914908
+ - 0.0
+ - - -0.035729
+ - -2.294654
+ - -0.0
+ - - 2.412998
+ - -1.892177
+ - -0.0
+ - - -2.271557
+ - -1.533955
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.370689402151505
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2286904351
- - 0.253438069
+ - - 2.203449
+ - 0.242686
+ - -0.0
+ - - 1.323566
+ - 1.320781
- 0.0
- - - 1.3321514198
- - 1.3392679201
+ - - -0.040518
+ - 1.099363
- 0.0
- - - -0.0461170268
- - 1.1057220211
+ - - -0.530612
+ - -0.2056
- 0.0
- - - -0.5378136648
- - -0.2166956044
+ - - 0.352666
+ - -1.280318
- -0.0
- - - 0.3637327628
- - -1.2993437834
+ - - 1.720558
+ - -1.05792
- -0.0
- - - 1.7455701517
- - -1.0653133658
+ - - -1.982424
+ - -0.462461
+ - 0.0
+ - - -2.833179
+ - 0.38962
+ - 0.0
+ - - 3.27307
+ - 0.420452
- -0.0
- - - -2.0022343071
- - -0.471566517
+ - - 1.709949
+ - 2.333507
+ - 0.0
+ - - -0.748965
+ - 1.919807
+ - 0.0
+ - - -0.039865
+ - -2.292824
- -0.0
- - - -2.8625637504
- - 0.3984863121
+ - - 2.409694
+ - -1.894315
+ - -0.0
+ - - -2.258019
+ - -1.539471
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.639105836130135
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.215143
+ - 0.244459
+ - -0.0
+ - - 1.329602
+ - 1.329119
- 0.0
- - - 3.3044080104
- - 0.4367710241
+ - - -0.042327
+ - 1.107248
- 0.0
- - - 1.7142202186
- - 2.3609814412
+ - - -0.53766
+ - -0.206289
- 0.0
- - - -0.7657184216
- - 1.9251569565
+ - - 0.353399
+ - -1.287989
+ - -0.0
+ - - 1.728808
+ - -1.064287
+ - -0.0
+ - - -1.993861
+ - -0.466844
- 0.0
- - - -0.0229857801
- - -2.3216338581
+ - - -2.857447
+ - 0.393044
+ - 0.0
+ - - 3.287298
+ - 0.42262
- -0.0
- - - 2.4435823262
- - -1.9036629722
+ - - 1.717613
+ - 2.34407
+ - 0.0
+ - - -0.751473
+ - 1.930269
+ - 0.0
+ - - -0.040445
+ - -2.302772
- -0.0
- - - -2.2768749747
- - -1.5585555262
+ - - 2.41986
+ - -1.902568
+ - -0.0
+ - - -2.269142
+ - -1.546775
- -0.0
isotopes:
- 12
@@ -351,13 +1443,181 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.570541449700512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2043967139
+ - 0.2432026821
+ - 0.0
+ - - 1.3237828975
+ - 1.320728374
+ - 0.0
+ - - -0.0410373964
+ - 1.0977547723
+ - 0.0
+ - - -0.5268398654
+ - -0.2073409718
+ - 0.0
+ - - 0.3542268568
+ - -1.2814747954
+ - 0.0
+ - - 1.7232168717
+ - -1.0575988431
+ - 0.0
+ - - -1.9860041061
+ - -0.4648366271
+ - 0.0
+ - - -2.8311541888
+ - 0.3935029343
+ - 0.0
+ - - 3.2721838253
+ - 0.422083728
+ - 0.0
+ - - 1.7088450719
+ - 2.3320769045
+ - 0.0
+ - - -0.7484063599
+ - 1.9167368255
+ - 0.0
+ - - -0.0370479938
+ - -2.2927677022
+ - 0.0
+ - - 2.4119187454
+ - -1.8919670666
+ - 0.0
+ - - -2.2687116103
+ - -1.5367937094
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.48490455111899
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.204062
+ - 0.243009
+ - -0.0
+ - - 1.32431
+ - 1.319939
+ - 0.0
+ - - -0.039686
+ - 1.098018
+ - 0.0
+ - - -0.529224
+ - -0.205953
+ - 0.0
+ - - 0.353605
+ - -1.279479
+ - -0.0
+ - - 1.72138
+ - -1.056696
+ - -0.0
+ - - -1.986467
+ - -0.463675
+ - 0.0
+ - - -2.834758
+ - 0.388369
+ - 0.0
+ - - 3.272228
+ - 0.420736
+ - -0.0
+ - - 1.709054
+ - 2.331696
+ - 0.0
+ - - -0.744372
+ - 1.919882
+ - 0.0
+ - - -0.035192
+ - -2.29198
+ - -0.0
+ - - 2.409148
+ - -1.892331
+ - -0.0
+ - - -2.264716
+ - -1.538229
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 9.673332131450426
+ value: 9.67333213145042
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Benzene.yml b/input/reference_sets/main/Benzene.yml
index c654182c25..550b3a4d08 100644
--- a/input/reference_sets/main/Benzene.yml
+++ b/input/reference_sets/main/Benzene.yml
@@ -93,7 +93,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 19.222436218528834
+ value: 19.222436218528824
class: ThermoData
xyz_dict:
coords:
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.11863864697857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106787
+ - -1.387849
+ - -0.000251
+ - - -1.148136
+ - -0.786384
+ - -0.000169
+ - - -1.254714
+ - 0.601141
+ - -0.000102
+ - - -0.106365
+ - 1.387198
+ - -0.000116
+ - - 1.148558
+ - 0.785733
+ - -0.000198
+ - - 1.255136
+ - -0.601792
+ - -0.000266
+ - - 0.189646
+ - -2.466687
+ - -0.000304
+ - - -2.041006
+ - -1.397566
+ - -0.000158
+ - - -2.230445
+ - 1.068803
+ - -3.8e-05
+ - - -0.189224
+ - 2.466036
+ - -6.4e-05
+ - - 2.041428
+ - 1.396915
+ - -0.00021
+ - - 2.230867
+ - -1.069454
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.88474684113347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106699
+ - -1.386727
+ - -0.000251
+ - - -1.1472
+ - -0.785752
+ - -0.000169
+ - - -1.253686
+ - 0.600648
+ - -0.000102
+ - - -0.106277
+ - 1.386076
+ - -0.000116
+ - - 1.147622
+ - 0.785101
+ - -0.000198
+ - - 1.254108
+ - -0.601299
+ - -0.000266
+ - - 0.189603
+ - -2.466114
+ - -0.000304
+ - - -2.040531
+ - -1.397235
+ - -0.000158
+ - - -2.229913
+ - 1.068549
+ - -3.8e-05
+ - - -0.189181
+ - 2.465464
+ - -6.4e-05
+ - - 2.040953
+ - 1.396585
+ - -0.00021
+ - - 2.230336
+ - -1.069199
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 77.50196860250612
+ value: 77.50196860250612
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3747352949
+ - 0.2873653231
+ - -0.0
+ - - 0.4385026325
+ - 1.333953289
+ - 0.0
+ - - -0.9362940246
+ - 1.0468862274
+ - 0.0
+ - - -1.3747352949
+ - -0.2873653231
+ - 0.0
+ - - -0.4385026325
+ - -1.333953289
+ - -0.0
+ - - 0.9362940246
+ - -1.0468862274
+ - -0.0
+ - - 2.4429907923
+ - 0.5111613157
+ - 0.0
+ - - 0.7795301433
+ - 2.3707682436
+ - 0.0
+ - - -1.6638590142
+ - 1.8605227008
+ - 0.0
+ - - -2.4429907923
+ - -0.5111613157
+ - -0.0
+ - - -0.7795301433
+ - -2.3707682436
+ - -0.0
+ - - 1.6638590142
+ - -1.8605227008
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.90136221777493
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.107151
+ - -1.392398
+ - -0.000252
+ - - -1.151894
+ - -0.788964
+ - -0.000169
+ - - -1.258831
+ - 0.603113
+ - -0.000101
+ - - -0.106729
+ - 1.391747
+ - -0.000116
+ - - 1.152316
+ - 0.788313
+ - -0.000199
+ - - 1.259253
+ - -0.603764
+ - -0.000266
+ - - 0.190392
+ - -2.476501
+ - -0.000304
+ - - -2.049124
+ - -1.403117
+ - -0.000158
+ - - -2.239321
+ - 1.073056
+ - -3.7e-05
+ - - -0.18997
+ - 2.47585
+ - -6.3e-05
+ - - 2.049546
+ - 1.402466
+ - -0.00021
+ - - 2.239744
+ - -1.073707
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.24983811938062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.107325
+ - -1.395045
+ - -0.000252
+ - - -1.15408
+ - -0.790456
+ - -0.000169
+ - - -1.261177
+ - 0.604254
+ - -0.000101
+ - - -0.106903
+ - 1.394395
+ - -0.000116
+ - - 1.154502
+ - 0.789805
+ - -0.000199
+ - - 1.261599
+ - -0.604904
+ - -0.000266
+ - - 0.190987
+ - -2.483923
+ - -0.000305
+ - - -2.055268
+ - -1.407314
+ - -0.000158
+ - - -2.246002
+ - 1.076248
+ - -3.7e-05
+ - - -0.190565
+ - 2.483272
+ - -6.3e-05
+ - - 2.05569
+ - 1.406663
+ - -0.00021
+ - - 2.246424
+ - -1.076899
+ - -0.000331
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.42158200292341
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.10631
+ - -1.381663
+ - -0.000251
+ - - -1.143012
+ - -0.782876
+ - -0.000169
+ - - -1.249115
+ - 0.598461
+ - -0.000102
+ - - -0.105888
+ - 1.381013
+ - -0.000117
+ - - 1.143434
+ - 0.782225
+ - -0.000198
+ - - 1.249537
+ - -0.599112
+ - -0.000266
+ - - 0.189188
+ - -2.460716
+ - -0.000304
+ - - -2.036059
+ - -1.39418
+ - -0.000158
+ - - -2.225043
+ - 1.066211
+ - -3.8e-05
+ - - -0.188766
+ - 2.460065
+ - -6.4e-05
+ - - 2.036481
+ - 1.39353
+ - -0.00021
+ - - 2.225465
+ - -1.066862
+ - -0.000329
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.886073827272057
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106966
+ - -1.390159
+ - -0.000251
+ - - -1.150033
+ - -0.787684
+ - -0.000169
+ - - -1.2568
+ - 0.602146
+ - -0.000101
+ - - -0.106544
+ - 1.389508
+ - -0.000116
+ - - 1.150455
+ - 0.787033
+ - -0.000198
+ - - 1.257222
+ - -0.602797
+ - -0.000266
+ - - 0.19
+ - -2.471399
+ - -0.000304
+ - - -2.044888
+ - -1.400227
+ - -0.000158
+ - - -2.234706
+ - 1.070838
+ - -3.8e-05
+ - - -0.189578
+ - 2.470748
+ - -6.4e-05
+ - - 2.045311
+ - 1.399576
+ - -0.00021
+ - - 2.235128
+ - -1.071489
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.72427062292991
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106498
+ - -1.384076
+ - -0.000251
+ - - -1.145151
+ - -0.78421
+ - -0.000169
+ - - -1.251638
+ - 0.599595
+ - -0.000102
+ - - -0.106076
+ - 1.383426
+ - -0.000116
+ - - 1.145574
+ - 0.783559
+ - -0.000198
+ - - 1.252061
+ - -0.600245
+ - -0.000266
+ - - 0.189399
+ - -2.463606
+ - -0.000304
+ - - -2.03814
+ - -1.396083
+ - -0.000158
+ - - -2.227677
+ - 1.067876
+ - -3.8e-05
+ - - -0.188977
+ - 2.462955
+ - -6.4e-05
+ - - 2.038562
+ - 1.395432
+ - -0.00021
+ - - 2.228099
+ - -1.068528
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.814269534984994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106498
+ - -1.384076
+ - -0.000251
+ - - -1.145151
+ - -0.78421
+ - -0.000169
+ - - -1.251638
+ - 0.599595
+ - -0.000102
+ - - -0.106076
+ - 1.383426
+ - -0.000116
+ - - 1.145574
+ - 0.783559
+ - -0.000198
+ - - 1.252061
+ - -0.600245
+ - -0.000266
+ - - 0.189399
+ - -2.463606
+ - -0.000304
+ - - -2.03814
+ - -1.396083
+ - -0.000158
+ - - -2.227677
+ - 1.067876
+ - -3.8e-05
+ - - -0.188977
+ - 2.462955
+ - -6.4e-05
+ - - 2.038562
+ - 1.395432
+ - -0.00021
+ - - 2.228099
+ - -1.068528
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.64294537133818
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106498
+ - -1.384076
+ - -0.000251
+ - - -1.145151
+ - -0.78421
+ - -0.000169
+ - - -1.251638
+ - 0.599595
+ - -0.000102
+ - - -0.106076
+ - 1.383426
+ - -0.000116
+ - - 1.145574
+ - 0.783559
+ - -0.000198
+ - - 1.252061
+ - -0.600245
+ - -0.000266
+ - - 0.189399
+ - -2.463606
+ - -0.000304
+ - - -2.03814
+ - -1.396083
+ - -0.000158
+ - - -2.227677
+ - 1.067876
+ - -3.8e-05
+ - - -0.188977
+ - 2.462955
+ - -6.4e-05
+ - - 2.038562
+ - 1.395432
+ - -0.00021
+ - - 2.228099
+ - -1.068528
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.596449827818894
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.3747352949
- - 0.2873653231
- - -0.0
- - - 0.4385026325
- - 1.333953289
- - 0.0
- - - -0.9362940246
- - 1.0468862274
- - 0.0
- - - -1.3747352949
- - -0.2873653231
- - 0.0
- - - -0.4385026325
- - -1.333953289
- - -0.0
- - - 0.9362940246
- - -1.0468862274
- - -0.0
- - - 2.4429907923
- - 0.5111613157
- - 0.0
- - - 0.7795301433
- - 2.3707682436
- - 0.0
- - - -1.6638590142
- - 1.8605227008
- - 0.0
- - - -2.4429907923
- - -0.5111613157
- - -0.0
- - - -0.7795301433
- - -2.3707682436
- - -0.0
- - - 1.6638590142
- - -1.8605227008
- - -0.0
+ - - 0.106938
+ - -1.389801
+ - -0.000251
+ - - -1.149735
+ - -0.787478
+ - -0.000169
+ - - -1.256474
+ - 0.601993
+ - -0.000102
+ - - -0.106515
+ - 1.38915
+ - -0.000116
+ - - 1.150157
+ - 0.786827
+ - -0.000198
+ - - 1.256897
+ - -0.602644
+ - -0.000266
+ - - 0.190031
+ - -2.471804
+ - -0.000304
+ - - -2.045221
+ - -1.400456
+ - -0.000158
+ - - -2.235074
+ - 1.071012
+ - -3.7e-05
+ - - -0.189609
+ - 2.471153
+ - -6.4e-05
+ - - 2.045643
+ - 1.399805
+ - -0.00021
+ - - 2.235496
+ - -1.071663
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.194852778370045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.10654
+ - -1.384725
+ - -0.000251
+ - - -1.145527
+ - -0.784603
+ - -0.000169
+ - - -1.251863
+ - 0.599787
+ - -0.000102
+ - - -0.106117
+ - 1.384074
+ - -0.000116
+ - - 1.145949
+ - 0.783952
+ - -0.000198
+ - - 1.252285
+ - -0.600437
+ - -0.000266
+ - - 0.189427
+ - -2.463983
+ - -0.000304
+ - - -2.038726
+ - -1.396044
+ - -0.000158
+ - - -2.227972
+ - 1.067632
+ - -3.8e-05
+ - - -0.189005
+ - 2.463332
+ - -6.4e-05
+ - - 2.039148
+ - 1.395393
+ - -0.00021
+ - - 2.228394
+ - -1.068283
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.49969576191151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.10649
+ - -1.384
+ - -0.000251
+ - - -1.144934
+ - -0.784203
+ - -0.000169
+ - - -1.251215
+ - 0.599467
+ - -0.000102
+ - - -0.106068
+ - 1.383349
+ - -0.000116
+ - - 1.145356
+ - 0.783552
+ - -0.000198
+ - - 1.251637
+ - -0.600118
+ - -0.000266
+ - - 0.189524
+ - -2.465088
+ - -0.000304
+ - - -2.039671
+ - -1.396647
+ - -0.000158
+ - - -2.228981
+ - 1.068101
+ - -3.8e-05
+ - - -0.189102
+ - 2.464437
+ - -6.4e-05
+ - - 2.040093
+ - 1.395996
+ - -0.00021
+ - - 2.229404
+ - -1.068751
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.66841094112271
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.107136
+ - -1.392407
+ - -0.000252
+ - - -1.151886
+ - -0.788949
+ - -0.000169
+ - - -1.258823
+ - 0.603127
+ - -0.000101
+ - - -0.106713
+ - 1.391756
+ - -0.000116
+ - - 1.152309
+ - 0.788298
+ - -0.000199
+ - - 1.259246
+ - -0.603777
+ - -0.000266
+ - - 0.190372
+ - -2.476152
+ - -0.000304
+ - - -2.048814
+ - -1.402915
+ - -0.000158
+ - - -2.239002
+ - 1.072894
+ - -3.7e-05
+ - - -0.189949
+ - 2.475501
+ - -6.3e-05
+ - - 2.049236
+ - 1.402264
+ - -0.00021
+ - - 2.239424
+ - -1.073545
+ - -0.00033
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.02646063263702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.1064983175
+ - -1.3840764259
+ - -0.0002512383
+ - - -1.1451514841
+ - -0.7842096748
+ - -0.0001692298
+ - - -1.2516380517
+ - 0.5995946759
+ - -0.0001016588
+ - - -0.106075863
+ - 1.3834257734
+ - -0.0001163736
+ - - 1.1455739639
+ - 0.7835589097
+ - -0.0001984241
+ - - 1.2520605777
+ - -0.6002452013
+ - -0.0002659351
+ - - 0.189398676
+ - -2.46360599
+ - -0.0003035641
+ - - -2.0381395669
+ - -1.3960832211
+ - -0.0001579315
+ - - -2.2276772117
+ - 1.067876463
+ - -3.79547e-05
+ - - -0.188977309
+ - 2.462955344
+ - -6.40404e-05
+ - - 2.0385622319
+ - 1.395432237
+ - -0.0002098268
+ - - 2.2280990853
+ - -1.0685281768
+ - -0.0003295402
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.94205862131468
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.106475
+ - -1.383547
+ - -0.000251
+ - - -1.14451
+ - -0.783934
+ - -0.000169
+ - - -1.25078
+ - 0.599266
+ - -0.000102
+ - - -0.106053
+ - 1.382896
+ - -0.000117
+ - - 1.144933
+ - 0.783283
+ - -0.000198
+ - - 1.251202
+ - -0.599917
+ - -0.000266
+ - - 0.189346
+ - -2.463225
+ - -0.000304
+ - - -2.038091
+ - -1.395562
+ - -0.000158
+ - - -2.227281
+ - 1.067262
+ - -3.8e-05
+ - - -0.188924
+ - 2.462574
+ - -6.4e-05
+ - - 2.038513
+ - 1.394911
+ - -0.00021
+ - - 2.227703
+ - -1.067913
+ - -0.00033
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Benzenethiol.yml b/input/reference_sets/main/Benzenethiol.yml
index eab156b5c7..47bd0f78fc 100644
--- a/input/reference_sets/main/Benzenethiol.yml
+++ b/input/reference_sets/main/Benzenethiol.yml
@@ -172,57 +172,926 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.414111240934965
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.277386
+ - -0.083301
+ - 0.000279
+ - - 0.51014
+ - 0.000426
+ - 0.000151
+ - - -0.190984
+ - 1.206944
+ - 0.000106
+ - - -1.581027
+ - 1.203603
+ - 4.0e-06
+ - - -2.285345
+ - 0.004487
+ - -5.5e-05
+ - - -1.585036
+ - -1.19775
+ - -1.1e-05
+ - - -0.196047
+ - -1.204566
+ - 9.2e-05
+ - - 2.497302
+ - 1.237027
+ - 0.000336
+ - - 0.34439
+ - 2.147349
+ - 0.00015
+ - - -2.112848
+ - 2.145959
+ - -2.9e-05
+ - - -3.36659
+ - 0.006627
+ - -0.000135
+ - - -2.120248
+ - -2.138074
+ - -5.6e-05
+ - - 0.341187
+ - -2.144299
+ - 0.000128
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.454866362059526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.278613
+ - -0.082877
+ - 0.000299
+ - - 0.508953
+ - -0.000148
+ - 0.000159
+ - - -0.192075
+ - 1.20545
+ - 0.000114
+ - - -1.580583
+ - 1.202332
+ - 6.0e-06
+ - - -2.284768
+ - 0.004382
+ - -5.8e-05
+ - - -1.584951
+ - -1.196789
+ - -1.2e-05
+ - - -0.197356
+ - -1.204017
+ - 9.5e-05
+ - - 2.50131
+ - 1.240113
+ - 0.000299
+ - - 0.34343
+ - 2.145983
+ - 0.000164
+ - - -2.112508
+ - 2.145184
+ - -2.9e-05
+ - - -3.366472
+ - 0.006648
+ - -0.000142
+ - - -2.120521
+ - -2.137468
+ - -6.1e-05
+ - - 0.339207
+ - -2.144359
+ - 0.000128
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 89.2200114504477
+ value: 89.2200114504477
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2991946013
+ - -0.0837868577
+ - -3.93457e-05
+ - - 0.5145507366
+ - -7.0884e-06
+ - 1.4933e-05
+ - - -0.1948127234
+ - 1.2184696848
+ - -1.34378e-05
+ - - -1.596944945
+ - 1.2141891137
+ - -5.7378e-06
+ - - -2.3082650538
+ - 0.0045290565
+ - -7.366e-06
+ - - -1.6007284774
+ - -1.2080849965
+ - 1.8881e-06
+ - - -0.1998105946
+ - -1.2167206515
+ - 2.82299e-05
+ - - 2.518907818
+ - 1.2510502891
+ - 0.0004921245
+ - - 0.3436120996
+ - 2.1674123169
+ - -4.40233e-05
+ - - -2.1329443109
+ - 2.1647889209
+ - -9.5283e-06
+ - - -3.398936738
+ - 0.0058920103
+ - -8.9283e-06
+ - - -2.1400289421
+ - -2.1569025053
+ - 9.9361e-06
+ - - 0.3383427989
+ - -2.1659020201
+ - 7.88932e-05
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.12510652655453
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.285762
+ - -0.083609
+ - 0.000293
+ - - 0.515156
+ - -0.000599
+ - 0.000157
+ - - -0.189361
+ - 1.210775
+ - 0.000112
+ - - -1.583225
+ - 1.207089
+ - 5.0e-06
+ - - -2.290718
+ - 0.004317
+ - -5.7e-05
+ - - -1.587886
+ - -1.201771
+ - -1.2e-05
+ - - -0.194864
+ - -1.210196
+ - 9.4e-05
+ - - 2.504164
+ - 1.243449
+ - 0.00031
+ - - 0.348901
+ - 2.15505
+ - 0.000161
+ - - -2.116888
+ - 2.154382
+ - -2.9e-05
+ - - -3.377036
+ - 0.006742
+ - -0.000141
+ - - -2.125524
+ - -2.146691
+ - -6.0e-05
+ - - 0.343799
+ - -2.154504
+ - 0.000129
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.61670439812288
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.291653
+ - -0.087014
+ - 0.000292
+ - - 0.51779
+ - -0.000576
+ - 0.000157
+ - - -0.188558
+ - 1.212906
+ - 0.000112
+ - - -1.58523
+ - 1.209115
+ - 5.0e-06
+ - - -2.294103
+ - 0.004078
+ - -5.8e-05
+ - - -1.589712
+ - -1.20413
+ - -1.2e-05
+ - - -0.19386
+ - -1.212358
+ - 9.4e-05
+ - - 2.511504
+ - 1.248066
+ - 0.000312
+ - - 0.351693
+ - 2.161983
+ - 0.00016
+ - - -2.121091
+ - 2.16068
+ - -2.9e-05
+ - - -3.385211
+ - 0.006464
+ - -0.000141
+ - - -2.129346
+ - -2.153435
+ - -6.0e-05
+ - - 0.346753
+ - -2.161344
+ - 0.000128
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.15635581969243
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.26918
+ - -0.082329
+ - 0.000279
+ - - 0.505379
+ - 0.000301
+ - 0.000151
+ - - -0.193442
+ - 1.200422
+ - 0.000106
+ - - -1.57735
+ - 1.197965
+ - 5.0e-06
+ - - -2.278803
+ - 0.004555
+ - -5.5e-05
+ - - -1.581536
+ - -1.192046
+ - -1.1e-05
+ - - -0.198635
+ - -1.198178
+ - 9.2e-05
+ - - 2.494879
+ - 1.236141
+ - 0.000336
+ - - 0.341143
+ - 2.141296
+ - 0.00015
+ - - -2.109246
+ - 2.140422
+ - -2.9e-05
+ - - -3.360241
+ - 0.006764
+ - -0.000134
+ - - -2.116871
+ - -2.132465
+ - -5.6e-05
+ - - 0.337824
+ - -2.138413
+ - 0.000127
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.605038001827566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.292299
+ - -0.083592
+ - 0.000268
+ - - 0.509719
+ - 0.000701
+ - 0.000147
+ - - -0.192699
+ - 1.209268
+ - 0.000102
+ - - -1.584952
+ - 1.205158
+ - 3.0e-06
+ - - -2.290017
+ - 0.003886
+ - -5.4e-05
+ - - -1.588088
+ - -1.199937
+ - -1.0e-05
+ - - -0.196829
+ - -1.20658
+ - 9.1e-05
+ - - 2.516346
+ - 1.239624
+ - 0.000361
+ - - 0.342048
+ - 2.152159
+ - 0.000142
+ - - -2.118106
+ - 2.149358
+ - -3.0e-05
+ - - -3.373553
+ - 0.00563
+ - -0.000132
+ - - -2.12386
+ - -2.142548
+ - -5.3e-05
+ - - 0.339972
+ - -2.148693
+ - 0.000128
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.682224356815713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.272727
+ - -0.083086
+ - -7.2e-05
+ - - 0.505623
+ - -0.000112
+ - 1.5e-05
+ - - -0.191596
+ - 1.203098
+ - -2.8e-05
+ - - -1.578029
+ - 1.200713
+ - -1.6e-05
+ - - -2.280478
+ - 0.004657
+ - -6.0e-06
+ - - -1.582923
+ - -1.194716
+ - 1.5e-05
+ - - -0.197233
+ - -1.20127
+ - 4.6e-05
+ - - 2.489131
+ - 1.237656
+ - 0.00099
+ - - 0.346161
+ - 2.14283
+ - -8.5e-05
+ - - -2.110711
+ - 2.143069
+ - -3.3e-05
+ - - -3.362395
+ - 0.00717
+ - -1.1e-05
+ - - -2.119453
+ - -2.134789
+ - 3.4e-05
+ - - 0.341458
+ - -2.140786
+ - 0.000114
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.72825359368855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.272727
+ - -0.083086
+ - -7.2e-05
+ - - 0.505623
+ - -0.000112
+ - 1.5e-05
+ - - -0.191596
+ - 1.203098
+ - -2.8e-05
+ - - -1.578029
+ - 1.200713
+ - -1.6e-05
+ - - -2.280478
+ - 0.004657
+ - -6.0e-06
+ - - -1.582923
+ - -1.194716
+ - 1.5e-05
+ - - -0.197233
+ - -1.20127
+ - 4.6e-05
+ - - 2.489131
+ - 1.237656
+ - 0.00099
+ - - 0.346161
+ - 2.14283
+ - -8.5e-05
+ - - -2.110711
+ - 2.143069
+ - -3.3e-05
+ - - -3.362395
+ - 0.00717
+ - -1.1e-05
+ - - -2.119453
+ - -2.134789
+ - 3.4e-05
+ - - 0.341458
+ - -2.140786
+ - 0.000114
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.377436518275495
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2991946013
- - -0.0837868577
- - -3.93457e-05
- - - 0.5145507366
- - -7.0884e-06
- - 1.4933e-05
- - - -0.1948127234
- - 1.2184696848
- - -1.34378e-05
- - - -1.596944945
- - 1.2141891137
- - -5.7378e-06
- - - -2.3082650538
- - 0.0045290565
- - -7.366e-06
- - - -1.6007284774
- - -1.2080849965
- - 1.8881e-06
- - - -0.1998105946
- - -1.2167206515
- - 2.82299e-05
- - - 2.518907818
- - 1.2510502891
- - 0.0004921245
- - - 0.3436120996
- - 2.1674123169
- - -4.40233e-05
- - - -2.1329443109
- - 2.1647889209
- - -9.5283e-06
- - - -3.398936738
- - 0.0058920103
- - -8.9283e-06
- - - -2.1400289421
- - -2.1569025053
- - 9.9361e-06
- - - 0.3383427989
- - -2.1659020201
- - 7.88932e-05
+ - - 2.286575
+ - -0.08367
+ - 0.000297
+ - - 0.508661
+ - 0.000583
+ - 0.000159
+ - - -0.192487
+ - 1.209133
+ - 0.000113
+ - - -1.584473
+ - 1.204797
+ - 5.0e-06
+ - - -2.289207
+ - 0.003872
+ - -5.9e-05
+ - - -1.587792
+ - -1.199844
+ - -1.3e-05
+ - - -0.196927
+ - -1.206972
+ - 9.5e-05
+ - - 2.516602
+ - 1.241097
+ - 0.000305
+ - - 0.344462
+ - 2.151748
+ - 0.000163
+ - - -2.117593
+ - 2.149972
+ - -3.0e-05
+ - - -3.373484
+ - 0.005652
+ - -0.000143
+ - - -2.124013
+ - -2.14316
+ - -6.1e-05
+ - - 0.341955
+ - -2.148773
+ - 0.000129
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.54645460265565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.266843
+ - -0.084009
+ - 0.000287
+ - - 0.509005
+ - -0.000142
+ - 0.000155
+ - - -0.191163
+ - 1.203076
+ - 0.00011
+ - - -1.576993
+ - 1.200036
+ - 5.0e-06
+ - - -2.28032
+ - 0.004746
+ - -5.6e-05
+ - - -1.581767
+ - -1.193936
+ - -1.1e-05
+ - - -0.196794
+ - -1.201468
+ - 9.4e-05
+ - - 2.488451
+ - 1.238545
+ - 0.000317
+ - - 0.345265
+ - 2.145358
+ - 0.000157
+ - - -2.109249
+ - 2.144681
+ - -2.8e-05
+ - - -3.363715
+ - 0.007249
+ - -0.000138
+ - - -2.117924
+ - -2.136263
+ - -5.8e-05
+ - - 0.34064
+ - -2.143438
+ - 0.000128
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.43620759197505
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.28748
+ - -0.082502
+ - 0.000292
+ - - 0.514744
+ - -0.001443
+ - 0.000157
+ - - -0.18893
+ - 1.210238
+ - 0.000112
+ - - -1.583029
+ - 1.206955
+ - 6.0e-06
+ - - -2.290812
+ - 0.004375
+ - -5.7e-05
+ - - -1.58837
+ - -1.201874
+ - -1.2e-05
+ - - -0.195051
+ - -1.210755
+ - 9.4e-05
+ - - 2.502132
+ - 1.245612
+ - 0.00031
+ - - 0.349911
+ - 2.15406
+ - 0.000161
+ - - -2.115965
+ - 2.154233
+ - -2.8e-05
+ - - -3.376812
+ - 0.007145
+ - -0.00014
+ - - -2.125859
+ - -2.146449
+ - -6.0e-05
+ - - 0.342841
+ - -2.15516
+ - 0.000128
isotopes:
- 32
- 12
@@ -330,6 +1199,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.595581330653424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2727269911
+ - -0.0830858969
+ - -7.23133e-05
+ - - 0.50562284
+ - -0.0001116833
+ - 1.45376e-05
+ - - -0.1915962198
+ - 1.2030984746
+ - -2.77485e-05
+ - - -1.5780294136
+ - 1.2007131565
+ - -1.60466e-05
+ - - -2.2804775725
+ - 0.0046572811
+ - -6.3522e-06
+ - - -1.5829233938
+ - -1.1947159712
+ - 1.46363e-05
+ - - -0.1972332827
+ - -1.2012704902
+ - 4.55798e-05
+ - - 2.4891305189
+ - 1.2376563281
+ - 0.0009897552
+ - - 0.3461606456
+ - 2.142830126
+ - -8.47642e-05
+ - - -2.1107108994
+ - 2.1430693308
+ - -3.34832e-05
+ - - -3.3623949075
+ - 0.0071698401
+ - -1.08207e-05
+ - - -2.1194529319
+ - -2.1347894892
+ - 3.43144e-05
+ - - 0.3414579719
+ - -2.1407863902
+ - 0.0001143729
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.15095195142687
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.271376
+ - -0.082847
+ - 0.000256
+ - - 0.506828
+ - 0.000646
+ - 0.000142
+ - - -0.192957
+ - 1.202805
+ - 9.8e-05
+ - - -1.578609
+ - 1.199652
+ - 3.0e-06
+ - - -2.280501
+ - 0.004432
+ - -5.2e-05
+ - - -1.582361
+ - -1.193656
+ - -9.0e-06
+ - - -0.197603
+ - -1.2001
+ - 8.9e-05
+ - - 2.497979
+ - 1.235694
+ - 0.000379
+ - - 0.341117
+ - 2.144893
+ - 0.000135
+ - - -2.110996
+ - 2.142515
+ - -3.0e-05
+ - - -3.362546
+ - 0.006452
+ - -0.000127
+ - - -2.11787
+ - -2.134663
+ - -5.0e-05
+ - - 0.338424
+ - -2.141389
+ - 0.000127
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Benzyl.yml b/input/reference_sets/main/Benzyl.yml
index 980ec3fb39..ccbe9933d7 100644
--- a/input/reference_sets/main/Benzyl.yml
+++ b/input/reference_sets/main/Benzyl.yml
@@ -106,7 +106,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 49.537085884505444
+ value: 49.53708588450544
class: ThermoData
xyz_dict:
coords:
@@ -184,60 +184,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.90009691267517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.830235
+ - -0.00054
+ - 0.001005
+ - - 1.12868
+ - 1.204447
+ - 0.000813
+ - - -0.251174
+ - 1.209701
+ - 0.000684
+ - - -0.985444
+ - -0.000351
+ - 0.000744
+ - - -0.251337
+ - -1.210502
+ - 0.00094
+ - - 1.128517
+ - -1.205433
+ - 0.001066
+ - - -2.393288
+ - -0.000256
+ - 0.000614
+ - - 2.911612
+ - -0.000613
+ - 0.001105
+ - - 1.669018
+ - 2.142017
+ - 0.000766
+ - - -0.79105
+ - 2.148266
+ - 0.000536
+ - - -0.791339
+ - -2.148993
+ - 0.000988
+ - - 1.668729
+ - -2.143076
+ - 0.001214
+ - - -2.948503
+ - -0.926617
+ - 0.00067
+ - - -2.948378
+ - 0.92618
+ - 0.000456
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.31279410673062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.830838
+ - -0.00054
+ - 0.001005
+ - - 1.128146
+ - 1.206479
+ - 0.000812
+ - - -0.250971
+ - 1.213058
+ - 0.000684
+ - - -0.991173
+ - -0.00035
+ - 0.000744
+ - - -0.251134
+ - -1.213858
+ - 0.00094
+ - - 1.127983
+ - -1.207465
+ - 0.001067
+ - - -2.390931
+ - -0.000256
+ - 0.000614
+ - - 2.912701
+ - -0.000613
+ - 0.001105
+ - - 1.669823
+ - 2.143945
+ - 0.000763
+ - - -0.790674
+ - 2.152035
+ - 0.000535
+ - - -0.790964
+ - -2.152763
+ - 0.00099
+ - - 1.669534
+ - -2.145004
+ - 0.001216
+ - - -2.948513
+ - -0.926347
+ - 0.000661
+ - - -2.948388
+ - 0.92591
+ - 0.000465
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 114.10934196542748
+ value: 114.10934196542748
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8491124684
+ - -0.0013705489
+ - 0.0
+ - - 1.1404239244
+ - 1.2184024619
+ - 0.0
+ - - -0.2527155648
+ - 1.2261054577
+ - 0.0
+ - - -1.000967206
+ - 0.0013584498
+ - 0.0
+ - - -0.2549011349
+ - -1.2243053039
+ - 0.0
+ - - 1.1380011673
+ - -1.2196119483
+ - 0.0
+ - - -2.4124707063
+ - 0.0002426179
+ - 0.0
+ - - 2.9398682598
+ - -0.0031668294
+ - 0.0
+ - - 1.686468193
+ - 2.1633731687
+ - 0.0
+ - - -0.7964493072
+ - 2.1729826708
+ - 0.0
+ - - -0.8001236584
+ - -2.17052966
+ - 0.0
+ - - 1.6815687782
+ - -2.1661990906
+ - 0.0
+ - - -2.9737288125
+ - -0.9343602849
+ - 0.0
+ - - -2.9765011413
+ - 0.9329729085
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.71470485126822
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.838336
+ - -0.000541
+ - 0.001005
+ - - 1.132591
+ - 1.211368
+ - 0.000812
+ - - -0.251815
+ - 1.218211
+ - 0.000683
+ - - -0.996075
+ - -0.00035
+ - 0.000743
+ - - -0.251979
+ - -1.219011
+ - 0.000941
+ - - 1.132427
+ - -1.212355
+ - 0.001068
+ - - -2.399047
+ - -0.000255
+ - 0.000614
+ - - 2.924862
+ - -0.000614
+ - 0.001106
+ - - 1.676694
+ - 2.152912
+ - 0.000763
+ - - -0.794103
+ - 2.161067
+ - 0.000533
+ - - -0.794394
+ - -2.161794
+ - 0.00099
+ - - 1.676403
+ - -2.153972
+ - 0.001218
+ - - -2.958874
+ - -0.930322
+ - 0.00066
+ - - -2.958749
+ - 0.929887
+ - 0.000464
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.58174441399971
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.842395
+ - -0.000541
+ - 0.001006
+ - - 1.135225
+ - 1.213555
+ - 0.000812
+ - - -0.251993
+ - 1.220119
+ - 0.000683
+ - - -0.997999
+ - -0.00035
+ - 0.000743
+ - - -0.252158
+ - -1.220919
+ - 0.000941
+ - - 1.135062
+ - -1.214542
+ - 0.001069
+ - - -2.40369
+ - -0.000255
+ - 0.000613
+ - - 2.933727
+ - -0.000615
+ - 0.001107
+ - - 1.681409
+ - 2.15942
+ - 0.000763
+ - - -0.796558
+ - 2.167508
+ - 0.000533
+ - - -0.79685
+ - -2.168235
+ - 0.000991
+ - - 1.681118
+ - -2.160481
+ - 0.001219
+ - - -2.966768
+ - -0.933957
+ - 0.00066
+ - - -2.966642
+ - 0.933523
+ - 0.000463
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.80125720298034
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.824665
+ - -0.00054
+ - 0.001004
+ - - 1.124776
+ - 1.202364
+ - 0.000812
+ - - -0.250289
+ - 1.20857
+ - 0.000684
+ - - -0.987001
+ - -0.000351
+ - 0.000744
+ - - -0.250452
+ - -1.20937
+ - 0.00094
+ - - 1.124614
+ - -1.20335
+ - 0.001066
+ - - -2.384816
+ - -0.000256
+ - 0.000615
+ - - 2.906256
+ - -0.000613
+ - 0.001104
+ - - 1.666097
+ - 2.139603
+ - 0.000763
+ - - -0.789799
+ - 2.147372
+ - 0.000535
+ - - -0.790089
+ - -2.1481
+ - 0.000989
+ - - 1.665809
+ - -2.140662
+ - 0.001216
+ - - -2.941809
+ - -0.926259
+ - 0.000661
+ - - -2.941685
+ - 0.925821
+ - 0.000466
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.075968635253936
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.836227
+ - -0.000541
+ - 0.001005
+ - - 1.131653
+ - 1.209356
+ - 0.000812
+ - - -0.251155
+ - 1.216115
+ - 0.000684
+ - - -0.994065
+ - -0.00035
+ - 0.000743
+ - - -0.251318
+ - -1.216915
+ - 0.000941
+ - - 1.13149
+ - -1.210342
+ - 0.001068
+ - - -2.398039
+ - -0.000255
+ - 0.000614
+ - - 2.919946
+ - -0.000614
+ - 0.001105
+ - - 1.674146
+ - 2.148497
+ - 0.000763
+ - - -0.790836
+ - 2.157215
+ - 0.000534
+ - - -0.791126
+ - -2.157942
+ - 0.00099
+ - - 1.673857
+ - -2.149557
+ - 0.001217
+ - - -2.957313
+ - -0.927397
+ - 0.00066
+ - - -2.957188
+ - 0.926961
+ - 0.000464
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.23094142526163
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.826793
+ - -0.000543
+ - 0.001004
+ - - 1.1265
+ - 1.204597
+ - 0.000812
+ - - -0.251197
+ - 1.210813
+ - 0.000684
+ - - -0.986966
+ - -0.000329
+ - 0.000744
+ - - -0.251373
+ - -1.211581
+ - 0.00094
+ - - 1.126322
+ - -1.20558
+ - 0.001067
+ - - -2.387741
+ - -0.000262
+ - 0.000614
+ - - 2.908839
+ - -0.000624
+ - 0.001104
+ - - 1.668512
+ - 2.141756
+ - 0.000762
+ - - -0.792475
+ - 2.149214
+ - 0.000534
+ - - -0.7928
+ - -2.149897
+ - 0.00099
+ - - 1.668186
+ - -2.142825
+ - 0.001217
+ - - -2.943176
+ - -0.927221
+ - 0.000657
+ - - -2.943145
+ - 0.926713
+ - 0.00047
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.6703499183285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.826793
+ - -0.000543
+ - 0.001004
+ - - 1.1265
+ - 1.204597
+ - 0.000812
+ - - -0.251197
+ - 1.210813
+ - 0.000684
+ - - -0.986966
+ - -0.000329
+ - 0.000744
+ - - -0.251373
+ - -1.211581
+ - 0.00094
+ - - 1.126322
+ - -1.20558
+ - 0.001067
+ - - -2.387741
+ - -0.000262
+ - 0.000614
+ - - 2.908839
+ - -0.000624
+ - 0.001104
+ - - 1.668512
+ - 2.141756
+ - 0.000762
+ - - -0.792475
+ - 2.149214
+ - 0.000534
+ - - -0.7928
+ - -2.149897
+ - 0.00099
+ - - 1.668186
+ - -2.142825
+ - 0.001217
+ - - -2.943176
+ - -0.927221
+ - 0.000657
+ - - -2.943145
+ - 0.926713
+ - 0.00047
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.06596147222838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.826793
+ - -0.000543
+ - 0.001004
+ - - 1.1265
+ - 1.204597
+ - 0.000812
+ - - -0.251197
+ - 1.210813
+ - 0.000684
+ - - -0.986966
+ - -0.000329
+ - 0.000744
+ - - -0.251373
+ - -1.211581
+ - 0.00094
+ - - 1.126322
+ - -1.20558
+ - 0.001067
+ - - -2.387741
+ - -0.000262
+ - 0.000614
+ - - 2.908839
+ - -0.000624
+ - 0.001104
+ - - 1.668512
+ - 2.141756
+ - 0.000762
+ - - -0.792475
+ - 2.149214
+ - 0.000534
+ - - -0.7928
+ - -2.149897
+ - 0.00099
+ - - 1.668186
+ - -2.142825
+ - 0.001217
+ - - -2.943176
+ - -0.927221
+ - 0.000657
+ - - -2.943145
+ - 0.926713
+ - 0.00047
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.603760547383395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.835978
+ - -0.000541
+ - 0.001005
+ - - 1.131484
+ - 1.208819
+ - 0.000812
+ - - -0.250843
+ - 1.215232
+ - 0.000684
+ - - -0.993234
+ - -0.00035
+ - 0.000744
+ - - -0.251007
+ - -1.216032
+ - 0.000941
+ - - 1.131321
+ - -1.209805
+ - 0.001068
+ - - -2.395905
+ - -0.000256
+ - 0.000614
+ - - 2.920447
+ - -0.000614
+ - 0.001105
+ - - 1.673815
+ - 2.148995
+ - 0.000763
+ - - -0.79285
+ - 2.155989
+ - 0.000534
+ - - -0.793141
+ - -2.156716
+ - 0.00099
+ - - 1.673525
+ - -2.150054
+ - 0.001217
+ - - -2.956719
+ - -0.927398
+ - 0.00066
+ - - -2.956594
+ - 0.926962
+ - 0.000464
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.29736473048458
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.8491124684
- - -0.0013705489
- - 0.0
- - - 1.1404239244
- - 1.2184024619
- - 0.0
- - - -0.2527155648
- - 1.2261054577
- - 0.0
- - - -1.000967206
- - 0.0013584498
- - 0.0
- - - -0.2549011349
- - -1.2243053039
- - 0.0
- - - 1.1380011673
- - -1.2196119483
- - 0.0
- - - -2.4124707063
- - 0.0002426179
- - 0.0
- - - 2.9398682598
- - -0.0031668294
- - 0.0
- - - 1.686468193
- - 2.1633731687
- - 0.0
- - - -0.7964493072
- - 2.1729826708
- - 0.0
- - - -0.8001236584
- - -2.17052966
- - 0.0
- - - 1.6815687782
- - -2.1661990906
- - 0.0
- - - -2.9737288125
- - -0.9343602849
- - 0.0
- - - -2.9765011413
- - 0.9329729085
- - 0.0
+ - - 1.828511
+ - -0.00054
+ - 0.001005
+ - - 1.127798
+ - 1.204055
+ - 0.000813
+ - - -0.250965
+ - 1.209531
+ - 0.000684
+ - - -0.984844
+ - -0.000351
+ - 0.000744
+ - - -0.251128
+ - -1.210331
+ - 0.00094
+ - - 1.127636
+ - -1.205041
+ - 0.001067
+ - - -2.391027
+ - -0.000256
+ - 0.000614
+ - - 2.910287
+ - -0.000613
+ - 0.001105
+ - - 1.668689
+ - 2.141741
+ - 0.000764
+ - - -0.792293
+ - 2.147909
+ - 0.000534
+ - - -0.792583
+ - -2.148636
+ - 0.000989
+ - - 1.6684
+ - -2.1428
+ - 0.001217
+ - - -2.946165
+ - -0.926878
+ - 0.00066
+ - - -2.94604
+ - 0.926441
+ - 0.000467
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.57340205003064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.827908
+ - -0.00054
+ - 0.001004
+ - - 1.126711
+ - 1.203935
+ - 0.000812
+ - - -0.250819
+ - 1.209725
+ - 0.000684
+ - - -0.98773
+ - -0.00035
+ - 0.000744
+ - - -0.250982
+ - -1.210525
+ - 0.00094
+ - - 1.126549
+ - -1.204921
+ - 0.001067
+ - - -2.388256
+ - -0.000256
+ - 0.000615
+ - - 2.911512
+ - -0.000613
+ - 0.001105
+ - - 1.668597
+ - 2.143204
+ - 0.000763
+ - - -0.791783
+ - 2.150131
+ - 0.000535
+ - - -0.792073
+ - -2.150858
+ - 0.000989
+ - - 1.668308
+ - -2.144262
+ - 0.001216
+ - - -2.945895
+ - -0.928143
+ - 0.000661
+ - - -2.94577
+ - 0.927706
+ - 0.000465
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 89.59872526981997
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.83941
+ - -0.000541
+ - 0.001006
+ - - 1.133683
+ - 1.211211
+ - 0.000812
+ - - -0.251513
+ - 1.217477
+ - 0.000683
+ - - -0.994406
+ - -0.00035
+ - 0.000743
+ - - -0.251677
+ - -1.218277
+ - 0.000941
+ - - 1.133519
+ - -1.212198
+ - 0.001068
+ - - -2.401459
+ - -0.000255
+ - 0.000613
+ - - 2.925684
+ - -0.000614
+ - 0.001106
+ - - 1.677244
+ - 2.152628
+ - 0.000763
+ - - -0.793528
+ - 2.160381
+ - 0.000534
+ - - -0.793819
+ - -2.161109
+ - 0.00099
+ - - 1.676953
+ - -2.153688
+ - 0.001218
+ - - -2.961969
+ - -0.929959
+ - 0.00066
+ - - -2.961844
+ - 0.929524
+ - 0.000463
isotopes:
- 12
- 12
@@ -352,6 +1444,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.699924577783854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8267925952
+ - -0.0005433905
+ - 0.0010043358
+ - - 1.126500002
+ - 1.204596866
+ - 0.0008124843
+ - - -0.2511967141
+ - 1.2108128034
+ - 0.0006842787
+ - - -0.9869657491
+ - -0.0003294527
+ - 0.0007444536
+ - - -0.2513732874
+ - -1.2115808947
+ - 0.0009400581
+ - - 1.1263218294
+ - -1.2055801801
+ - 0.0010672313
+ - - -2.3877413727
+ - -0.0002624826
+ - 0.0006143087
+ - - 2.9088391262
+ - -0.0006243028
+ - 0.001104017
+ - - 1.6685115931
+ - 2.1417560871
+ - 0.0007624156
+ - - -0.7924749255
+ - 2.1492139398
+ - 0.000533887
+ - - -0.7927996986
+ - -2.1498965469
+ - 0.0009901314
+ - - 1.6681857974
+ - -2.1428247638
+ - 0.0012167172
+ - - -2.9431764325
+ - -0.9272206071
+ - 0.0006570269
+ - - -2.9431451734
+ - 0.9267134763
+ - 0.0004695179
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.94321938978842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.826711
+ - -0.00054
+ - 0.001004
+ - - 1.126394
+ - 1.203726
+ - 0.000812
+ - - -0.250698
+ - 1.21005
+ - 0.000684
+ - - -0.987774
+ - -0.000351
+ - 0.000744
+ - - -0.250861
+ - -1.210851
+ - 0.00094
+ - - 1.126231
+ - -1.204712
+ - 0.001067
+ - - -2.388027
+ - -0.000256
+ - 0.000615
+ - - 2.908954
+ - -0.000613
+ - 0.001105
+ - - 1.668008
+ - 2.141493
+ - 0.000763
+ - - -0.789981
+ - 2.149903
+ - 0.000535
+ - - -0.790271
+ - -2.150631
+ - 0.000989
+ - - 1.667719
+ - -2.142551
+ - 0.001216
+ - - -2.945126
+ - -0.927367
+ - 0.000661
+ - - -2.945001
+ - 0.92693
+ - 0.000465
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Benzylide.yml b/input/reference_sets/main/Benzylide.yml
index 7b9ecd7d02..862b6aa1a7 100644
--- a/input/reference_sets/main/Benzylide.yml
+++ b/input/reference_sets/main/Benzylide.yml
@@ -21,7 +21,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 31.015640303502867
+ value: 31.015640303502828
class: ThermoData
xyz_dict:
coords:
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.020679713493834
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.874442
+ - -1.2e-05
+ - -0.0
+ - - 1.136922
+ - 1.195329
+ - 0.0
+ - - -0.243188
+ - 1.207284
+ - 1.0e-06
+ - - -1.036157
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.243198
+ - -1.207292
+ - 1.0e-06
+ - - 1.136913
+ - -1.195348
+ - 0.0
+ - - -2.421034
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.956883
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.664363
+ - 2.146537
+ - 0.0
+ - - -0.765665
+ - 2.159916
+ - 1.0e-06
+ - - -0.765681
+ - -2.15992
+ - 1.0e-06
+ - - 1.664346
+ - -2.14656
+ - 0.0
+ - - -2.980646
+ - 0.927456
+ - 3.0e-06
+ - - -2.980654
+ - -0.927444
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.735090654545196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.872533
+ - -1.2e-05
+ - -0.0
+ - - 1.135549
+ - 1.195061
+ - 0.0
+ - - -0.242131
+ - 1.207905
+ - 1.0e-06
+ - - -1.03561
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.24214
+ - -1.207913
+ - 1.0e-06
+ - - 1.13554
+ - -1.19508
+ - 0.0
+ - - -2.419124
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.955411
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.664744
+ - 2.145972
+ - 0.0
+ - - -0.765367
+ - 2.160242
+ - 1.0e-06
+ - - -0.765383
+ - -2.160246
+ - 1.0e-06
+ - - 1.664727
+ - -2.145995
+ - 0.0
+ - - -2.980548
+ - 0.926927
+ - 3.0e-06
+ - - -2.980555
+ - -0.926915
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 104.31672513847427
+ value: 104.31672513847427
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8910599588
+ - -0.0012710101
+ - 4.303e-07
+ - - 1.1477874125
+ - 1.2067205321
+ - 8.34e-08
+ - - -0.2444895461
+ - 1.2202272023
+ - -5.085e-07
+ - - -1.0477795957
+ - 0.0012320022
+ - -1.726e-07
+ - - -0.2465011787
+ - -1.2185710481
+ - -4.974e-07
+ - - 1.1455044565
+ - -1.2077835665
+ - 8.46e-08
+ - - -2.4419004767
+ - 0.000216863
+ - -3.752e-07
+ - - 2.9838323761
+ - -0.003062193
+ - 9.072e-07
+ - - 1.6818077995
+ - 2.1662393812
+ - 1.901e-07
+ - - -0.7732771508
+ - 2.1806014995
+ - -8.492e-07
+ - - -0.7767312567
+ - -2.1783472044
+ - -1.0129e-06
+ - - 1.6771749347
+ - -2.1687975172
+ - 2.062e-07
+ - - -3.0086948175
+ - 0.934938162
+ - 3.0319e-06
+ - - -3.0061980692
+ - -0.9361979785
+ - 3.2587e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.94340615854964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.880368
+ - -1.2e-05
+ - -0.0
+ - - 1.140988
+ - 1.200573
+ - 0.0
+ - - -0.243012
+ - 1.212083
+ - 1.0e-06
+ - - -1.038837
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.243021
+ - -1.212092
+ - 1.0e-06
+ - - 1.140979
+ - -1.200592
+ - 0.0
+ - - -2.429117
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.96832
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.672863
+ - 2.155954
+ - 0.0
+ - - -0.769485
+ - 2.168515
+ - 2.0e-06
+ - - -0.769502
+ - -2.168519
+ - 2.0e-06
+ - - 1.672846
+ - -2.155977
+ - 0.0
+ - - -2.992869
+ - 0.931239
+ - 2.0e-06
+ - - -2.992876
+ - -0.931226
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.47590463175095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.885685
+ - -1.2e-05
+ - -0.0
+ - - 1.144097
+ - 1.202351
+ - 0.0
+ - - -0.243095
+ - 1.213331
+ - 1.0e-06
+ - - -1.041826
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.243104
+ - -1.213339
+ - 1.0e-06
+ - - 1.144088
+ - -1.20237
+ - 0.0
+ - - -2.434975
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.978125
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.676987
+ - 2.162272
+ - -0.0
+ - - -0.770997
+ - 2.174523
+ - 2.0e-06
+ - - -0.771013
+ - -2.174528
+ - 2.0e-06
+ - - 1.67697
+ - -2.162295
+ - -0.0
+ - - -3.001645
+ - 0.934562
+ - 2.0e-06
+ - - -3.001652
+ - -0.934549
+ - 2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.76272031390652
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.866311
+ - -1.2e-05
+ - -0.0
+ - - 1.131114
+ - 1.189733
+ - 0.0
+ - - -0.241372
+ - 1.204006
+ - 1.0e-06
+ - - -1.033715
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.241381
+ - -1.204014
+ - 1.0e-06
+ - - 1.131105
+ - -1.189752
+ - 0.0
+ - - -2.411314
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.948613
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.659534
+ - 2.140397
+ - 0.0
+ - - -0.763574
+ - 2.156182
+ - 1.0e-06
+ - - -0.76359
+ - -2.156187
+ - 1.0e-06
+ - - 1.659517
+ - -2.14042
+ - 0.0
+ - - -2.971797
+ - 0.92683
+ - 3.0e-06
+ - - -2.971804
+ - -0.926818
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.540565299722104
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.878333
+ - -1.2e-05
+ - -0.0
+ - - 1.138656
+ - 1.197211
+ - 0.0
+ - - -0.242117
+ - 1.211361
+ - 1.0e-06
+ - - -1.041244
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.242126
+ - -1.211369
+ - 1.0e-06
+ - - 1.138647
+ - -1.19723
+ - 0.0
+ - - -2.425118
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.963659
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.668944
+ - 2.150688
+ - 0.0
+ - - -0.765356
+ - 2.166503
+ - 1.0e-06
+ - - -0.765373
+ - -2.166508
+ - 1.0e-06
+ - - 1.668927
+ - -2.150711
+ - 0.0
+ - - -2.98909
+ - 0.928236
+ - 3.0e-06
+ - - -2.989097
+ - -0.928223
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.15108206455853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.869539
+ - -1.6e-05
+ - 3.0e-06
+ - - 1.132866
+ - 1.191786
+ - 0.0
+ - - -0.242383
+ - 1.206395
+ - -3.0e-06
+ - - -1.034924
+ - 2.3e-05
+ - -1.0e-06
+ - - -0.242401
+ - -1.206361
+ - -3.0e-06
+ - - 1.132843
+ - -1.191808
+ - 0.0
+ - - -2.415068
+ - -5.0e-06
+ - 1.0e-06
+ - - 2.952561
+ - -2.7e-05
+ - 5.0e-06
+ - - 1.661412
+ - 2.142906
+ - 1.0e-06
+ - - -0.764909
+ - 2.159224
+ - -4.0e-06
+ - - -0.764962
+ - -2.159171
+ - -4.0e-06
+ - - 1.661355
+ - -2.142948
+ - 1.0e-06
+ - - -2.974186
+ - 0.928773
+ - 9.0e-06
+ - - -2.974095
+ - -0.928839
+ - 1.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.325735079752576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.869539
+ - -1.6e-05
+ - 3.0e-06
+ - - 1.132866
+ - 1.191786
+ - 0.0
+ - - -0.242383
+ - 1.206395
+ - -3.0e-06
+ - - -1.034924
+ - 2.3e-05
+ - -1.0e-06
+ - - -0.242401
+ - -1.206361
+ - -3.0e-06
+ - - 1.132843
+ - -1.191808
+ - 0.0
+ - - -2.415068
+ - -5.0e-06
+ - 1.0e-06
+ - - 2.952561
+ - -2.7e-05
+ - 5.0e-06
+ - - 1.661412
+ - 2.142906
+ - 1.0e-06
+ - - -0.764909
+ - 2.159224
+ - -4.0e-06
+ - - -0.764962
+ - -2.159171
+ - -4.0e-06
+ - - 1.661355
+ - -2.142948
+ - 1.0e-06
+ - - -2.974186
+ - 0.928773
+ - 9.0e-06
+ - - -2.974095
+ - -0.928839
+ - 1.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.77187644721379
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.869539
+ - -1.6e-05
+ - 3.0e-06
+ - - 1.132866
+ - 1.191786
+ - 0.0
+ - - -0.242383
+ - 1.206395
+ - -3.0e-06
+ - - -1.034924
+ - 2.3e-05
+ - -1.0e-06
+ - - -0.242401
+ - -1.206361
+ - -3.0e-06
+ - - 1.132843
+ - -1.191808
+ - 0.0
+ - - -2.415068
+ - -5.0e-06
+ - 1.0e-06
+ - - 2.952561
+ - -2.7e-05
+ - 5.0e-06
+ - - 1.661412
+ - 2.142906
+ - 1.0e-06
+ - - -0.764909
+ - 2.159224
+ - -4.0e-06
+ - - -0.764962
+ - -2.159171
+ - -4.0e-06
+ - - 1.661355
+ - -2.142948
+ - 1.0e-06
+ - - -2.974186
+ - 0.928773
+ - 9.0e-06
+ - - -2.974095
+ - -0.928839
+ - 1.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.893423840493867
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.878398
+ - -1.2e-05
+ - 0.0
+ - - 1.137943
+ - 1.195451
+ - 0.0
+ - - -0.241711
+ - 1.209721
+ - 1.0e-06
+ - - -1.042746
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.24172
+ - -1.209729
+ - 1.0e-06
+ - - 1.137934
+ - -1.19547
+ - 0.0
+ - - -2.422209
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.963892
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.667544
+ - 2.150374
+ - 0.0
+ - - -0.765948
+ - 2.165257
+ - 1.0e-06
+ - - -0.765964
+ - -2.165261
+ - 1.0e-06
+ - - 1.667528
+ - -2.150397
+ - 0.0
+ - - -2.987644
+ - 0.927434
+ - 3.0e-06
+ - - -2.987651
+ - -0.927421
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.42540467724626
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.8910599588
- - -0.0012710101
- - 4.303e-07
- - - 1.1477874125
- - 1.2067205321
- - 8.34e-08
- - - -0.2444895461
- - 1.2202272023
- - -5.085e-07
- - - -1.0477795957
- - 0.0012320022
- - -1.726e-07
- - - -0.2465011787
- - -1.2185710481
- - -4.974e-07
- - - 1.1455044565
- - -1.2077835665
- - 8.46e-08
- - - -2.4419004767
- - 0.000216863
- - -3.752e-07
- - - 2.9838323761
- - -0.003062193
- - 9.072e-07
- - - 1.6818077995
- - 2.1662393812
- - 1.901e-07
- - - -0.7732771508
- - 2.1806014995
- - -8.492e-07
- - - -0.7767312567
- - -2.1783472044
- - -1.0129e-06
- - - 1.6771749347
- - -2.1687975172
- - 2.062e-07
- - - -3.0086948175
- - 0.934938162
- - 3.0319e-06
- - - -3.0061980692
- - -0.9361979785
- - 3.2587e-06
+ - - 1.870473
+ - -1.2e-05
+ - -0.0
+ - - 1.133132
+ - 1.192315
+ - 0.0
+ - - -0.242195
+ - 1.206535
+ - 1.0e-06
+ - - -1.035711
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.242204
+ - -1.206543
+ - 1.0e-06
+ - - 1.133123
+ - -1.192334
+ - 0.0
+ - - -2.414985
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.952447
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.661309
+ - 2.143161
+ - 0.0
+ - - -0.765878
+ - 2.158089
+ - 1.0e-06
+ - - -0.765895
+ - -2.158093
+ - 1.0e-06
+ - - 1.661293
+ - -2.143184
+ - 0.0
+ - - -2.973628
+ - 0.927794
+ - 3.0e-06
+ - - -2.973634
+ - -0.927782
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.77411651453675
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.870574
+ - -1.2e-05
+ - -0.0
+ - - 1.13367
+ - 1.191373
+ - 0.0
+ - - -0.241898
+ - 1.203842
+ - 1.0e-06
+ - - -1.03457
+ - -1.0e-06
+ - 1.0e-06
+ - - -0.241907
+ - -1.20385
+ - 1.0e-06
+ - - 1.133661
+ - -1.191392
+ - 0.0
+ - - -2.416007
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.954892
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.661808
+ - 2.144604
+ - 0.0
+ - - -0.765016
+ - 2.15809
+ - 1.0e-06
+ - - -0.765033
+ - -2.158094
+ - 1.0e-06
+ - - 1.661791
+ - -2.144627
+ - 0.0
+ - - -2.977157
+ - 0.928743
+ - 3.0e-06
+ - - -2.977164
+ - -0.92873
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.6627394349083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.882511
+ - -1.2e-05
+ - -0.0
+ - - 1.141741
+ - 1.199709
+ - 0.0
+ - - -0.242627
+ - 1.211151
+ - 1.0e-06
+ - - -1.040183
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.242636
+ - -1.21116
+ - 1.0e-06
+ - - 1.141732
+ - -1.199727
+ - 0.0
+ - - -2.431037
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.970216
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.671861
+ - 2.155504
+ - 0.0
+ - - -0.767062
+ - 2.168518
+ - 1.0e-06
+ - - -0.767078
+ - -2.168522
+ - 2.0e-06
+ - - 1.671844
+ - -2.155527
+ - 0.0
+ - - -2.995814
+ - 0.930352
+ - 2.0e-06
+ - - -2.995822
+ - -0.930339
+ - 2.0e-06
isotopes:
- 12
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.54073334165948
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.869538852
+ - -1.64311e-05
+ - 2.5363e-06
+ - - 1.1328657269
+ - 1.1917855197
+ - 2.053e-07
+ - - -0.2423827743
+ - 1.2063951492
+ - -2.6868e-06
+ - - -1.0349240267
+ - 2.3309e-05
+ - -1.4172e-06
+ - - -0.2424011499
+ - -1.2063610685
+ - -2.6865e-06
+ - - 1.1328426844
+ - -1.1918077941
+ - 2.037e-07
+ - - -2.4150684769
+ - -5.1539e-06
+ - 1.0869e-06
+ - - 2.9525606116
+ - -2.70786e-05
+ - 5.1223e-06
+ - - 1.6614119748
+ - 2.1429057346
+ - 6.644e-07
+ - - -0.764909059
+ - 2.1592243619
+ - -4.2896e-06
+ - - -0.7649616793
+ - -2.1591706644
+ - -4.4676e-06
+ - - 1.6613548745
+ - -2.1429475202
+ - 6.539e-07
+ - - -2.9741862561
+ - 0.9287730278
+ - 9.21e-06
+ - - -2.9740954798
+ - -0.9288390433
+ - 9.6555e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.12063001333541
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.868199
+ - -1.2e-05
+ - -0.0
+ - - 1.132811
+ - 1.191462
+ - 0.0
+ - - -0.241867
+ - 1.205748
+ - 1.0e-06
+ - - -1.034861
+ - -1.0e-06
+ - 2.0e-06
+ - - -0.241876
+ - -1.205756
+ - 1.0e-06
+ - - 1.132802
+ - -1.191481
+ - 0.0
+ - - -2.41449
+ - 4.0e-06
+ - 2.0e-06
+ - - 2.951296
+ - -1.6e-05
+ - -1.0e-06
+ - - 1.661929
+ - 2.142563
+ - 0.0
+ - - -0.764375
+ - 2.158785
+ - 1.0e-06
+ - - -0.764391
+ - -2.158789
+ - 1.0e-06
+ - - 1.661913
+ - -2.142586
+ - 0.0
+ - - -2.974718
+ - 0.92842
+ - 3.0e-06
+ - - -2.974725
+ - -0.928407
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bicyclo1.1.0butane.yml b/input/reference_sets/main/Bicyclo1.1.0butane.yml
index b9d1b90870..9c20fa4c46 100644
--- a/input/reference_sets/main/Bicyclo1.1.0butane.yml
+++ b/input/reference_sets/main/Bicyclo1.1.0butane.yml
@@ -81,7 +81,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 53.40382956327593
+ value: 53.403829563275885
class: ThermoData
xyz_dict:
coords:
@@ -139,48 +139,880 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.05846812321684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.313955
+ - -0.74517
+ - 0.0
+ - - 0.315248
+ - -6.0e-06
+ - -1.132357
+ - - -0.313955
+ - 0.745169
+ - 0.0
+ - - 0.315248
+ - -6.0e-06
+ - 1.132357
+ - - -1.153142
+ - -1.417356
+ - 0.0
+ - - 1.399509
+ - 3.0e-06
+ - -1.22481
+ - - -0.216737
+ - -1.0e-05
+ - -2.076515
+ - - -1.153123
+ - 1.417378
+ - 0.0
+ - - 1.399509
+ - 3.0e-06
+ - 1.22481
+ - - -0.216737
+ - -1.0e-05
+ - 2.076515
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.86479435809737
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.315548
+ - -0.742484
+ - -0.0
+ - - 0.314457
+ - -9.0e-06
+ - -1.133921
+ - - -0.315553
+ - 0.742482
+ - -0.0
+ - - 0.314457
+ - -9.0e-06
+ - 1.133921
+ - - -1.148144
+ - -1.424453
+ - -0.0
+ - - 1.399478
+ - 1.0e-05
+ - -1.232213
+ - - -0.219322
+ - -1.8e-05
+ - -2.07818
+ - - -1.148117
+ - 1.424486
+ - -0.0
+ - - 1.399478
+ - 1.0e-05
+ - 1.232213
+ - - -0.219322
+ - -1.8e-05
+ - 2.07818
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 83.91109125111892
+ value: 83.91109125111892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.3137772848
+ - -0.7481887664
+ - 0.0
+ - - 0.3121393214
+ - -7.37098e-05
+ - -1.14210698
+ - - -0.3134594961
+ - 0.7483937599
+ - 0.0
+ - - 0.3121393214
+ - -7.37098e-05
+ - 1.14210698
+ - - -1.1609312159
+ - -1.4282643717
+ - 0.0
+ - - 1.4056001272
+ - -0.0003518328
+ - -1.25526074
+ - - -0.2360559872
+ - -5.79636e-05
+ - -2.0893232
+ - - -1.1604082357
+ - 1.4287385214
+ - 0.0
+ - - 1.4056001272
+ - -0.0003518328
+ - 1.25526074
+ - - -0.2360559872
+ - -5.79636e-05
+ - 2.0893232
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.750405564617594
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.310281
+ - -0.744498
+ - 0.0
+ - - 0.315614
+ - -1.0e-05
+ - -1.136903
+ - - -0.310285
+ - 0.744498
+ - 0.0
+ - - 0.315614
+ - -1.0e-05
+ - 1.136903
+ - - -1.15377
+ - -1.420323
+ - 0.0
+ - - 1.40503
+ - 6.0e-06
+ - -1.240827
+ - - -0.22567
+ - -1.3e-05
+ - -2.08222
+ - - -1.153749
+ - 1.420351
+ - 0.0
+ - - 1.40503
+ - 6.0e-06
+ - 1.240827
+ - - -0.22567
+ - -1.3e-05
+ - 2.08222
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.87202329230712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.313475
+ - -0.74936
+ - 0.0
+ - - 0.316535
+ - -1.0e-05
+ - -1.139689
+ - - -0.313482
+ - 0.749357
+ - 0.0
+ - - 0.316535
+ - -1.0e-05
+ - 1.139689
+ - - -1.16019
+ - -1.428567
+ - 0.0
+ - - 1.410959
+ - 1.1e-05
+ - -1.239334
+ - - -0.222908
+ - -2.0e-05
+ - -2.091238
+ - - -1.160162
+ - 1.428603
+ - 0.0
+ - - 1.410959
+ - 1.1e-05
+ - 1.239334
+ - - -0.222908
+ - -2.0e-05
+ - 2.091238
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.85923124337588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.321498
+ - -0.736116
+ - 0.0
+ - - 0.313808
+ - -7.0e-06
+ - -1.128311
+ - - -0.321498
+ - 0.736117
+ - 0.0
+ - - 0.313808
+ - -7.0e-06
+ - 1.128311
+ - - -1.145444
+ - -1.427334
+ - 0.0
+ - - 1.398431
+ - 5.0e-06
+ - -1.218562
+ - - -0.214376
+ - -1.2e-05
+ - -2.074867
+ - - -1.145423
+ - 1.427358
+ - 0.0
+ - - 1.398431
+ - 5.0e-06
+ - 1.218562
+ - - -0.214376
+ - -1.2e-05
+ - 2.074867
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.82392300038318
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.316843
+ - -0.7453
+ - 0.0
+ - - 0.315209
+ - -8.0e-06
+ - -1.13679
+ - - -0.316847
+ - 0.745296
+ - 0.0
+ - - 0.315209
+ - -8.0e-06
+ - 1.13679
+ - - -1.149574
+ - -1.430179
+ - 0.0
+ - - 1.401925
+ - 8.0e-06
+ - -1.237452
+ - - -0.219795
+ - -1.5e-05
+ - -2.082694
+ - - -1.149549
+ - 1.430209
+ - 0.0
+ - - 1.401925
+ - 8.0e-06
+ - 1.237452
+ - - -0.219795
+ - -1.5e-05
+ - 2.082694
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.39470272888497
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.321776
+ - -0.74047
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - -1.130079
+ - - -0.321771
+ - 0.740473
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - 1.130079
+ - - -1.151504
+ - -1.424604
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - -1.213853
+ - - -0.212413
+ - 1.0e-06
+ - -2.076851
+ - - -1.151496
+ - 1.424609
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - 1.213853
+ - - -0.212413
+ - 1.0e-06
+ - 2.076851
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.86907921769032
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.321776
+ - -0.74047
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - -1.130079
+ - - -0.321771
+ - 0.740473
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - 1.130079
+ - - -1.151504
+ - -1.424604
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - -1.213853
+ - - -0.212413
+ - 1.0e-06
+ - -2.076851
+ - - -1.151496
+ - 1.424609
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - 1.213853
+ - - -0.212413
+ - 1.0e-06
+ - 2.076851
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.58461283033889
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.321776
+ - -0.74047
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - -1.130079
+ - - -0.321771
+ - 0.740473
+ - 0.0
+ - - 0.315587
+ - -1.0e-06
+ - 1.130079
+ - - -1.151504
+ - -1.424604
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - -1.213853
+ - - -0.212413
+ - 1.0e-06
+ - -2.076851
+ - - -1.151496
+ - 1.424609
+ - 0.0
+ - - 1.401031
+ - -6.0e-06
+ - 1.213853
+ - - -0.212413
+ - 1.0e-06
+ - 2.076851
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.514176031374475
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.3137772848
- - -0.7481887664
+ - - -0.321836
+ - -0.743198
- 0.0
- - - 0.3121393214
- - -7.37098e-05
- - -1.14210698
- - - -0.3134594961
- - 0.7483937599
+ - - 0.314036
+ - -8.0e-06
+ - -1.13537
+ - - -0.321838
+ - 0.743197
- 0.0
- - - 0.3121393214
- - -7.37098e-05
- - 1.14210698
- - - -1.1609312159
- - -1.4282643717
+ - - 0.314036
+ - -8.0e-06
+ - 1.13537
+ - - -1.143698
+ - -1.440713
- 0.0
- - - 1.4056001272
- - -0.0003518328
- - -1.25526074
- - - -0.2360559872
- - -5.79636e-05
- - -2.0893232
- - - -1.1604082357
- - 1.4287385214
+ - - 1.401675
+ - 1.0e-05
+ - -1.236902
+ - - -0.219259
+ - -1.9e-05
+ - -2.083448
+ - - -1.14367
+ - 1.440745
- 0.0
- - - 1.4056001272
- - -0.0003518328
- - 1.25526074
- - - -0.2360559872
- - -5.79636e-05
- - 2.0893232
+ - - 1.401675
+ - 1.0e-05
+ - 1.236902
+ - - -0.219259
+ - -1.9e-05
+ - 2.083448
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.64705507959669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.323462
+ - -0.736167
+ - 0.0
+ - - 0.31485
+ - -1.0e-05
+ - -1.127005
+ - - -0.323465
+ - 0.736177
+ - 0.0
+ - - 0.31485
+ - -1.0e-05
+ - 1.127005
+ - - -1.149417
+ - -1.424712
+ - 0.0
+ - - 1.400128
+ - -1.0e-05
+ - -1.20658
+ - - -0.211168
+ - 1.3e-05
+ - -2.074298
+ - - -1.149414
+ - 1.42471
+ - 0.0
+ - - 1.400128
+ - -1.0e-05
+ - 1.20658
+ - - -0.211168
+ - 1.3e-05
+ - 2.074298
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.27708125807451
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.320195
+ - -0.738794
+ - 0.0
+ - - 0.314004
+ - -9.0e-06
+ - -1.127107
+ - - -0.320198
+ - 0.738793
+ - 0.0
+ - - 0.314004
+ - -9.0e-06
+ - 1.127107
+ - - -1.149037
+ - -1.427482
+ - 0.0
+ - - 1.401252
+ - 1.0e-05
+ - -1.215998
+ - - -0.215105
+ - -1.9e-05
+ - -2.075622
+ - - -1.149011
+ - 1.427515
+ - 0.0
+ - - 1.401252
+ - 1.0e-05
+ - 1.215998
+ - - -0.215105
+ - -1.9e-05
+ - 2.075622
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.90555958547806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.317681
+ - -0.747046
+ - 0.0
+ - - 0.315755
+ - -1.0e-05
+ - -1.135103
+ - - -0.317684
+ - 0.747046
+ - 0.0
+ - - 0.315755
+ - -1.0e-05
+ - 1.135103
+ - - -1.155097
+ - -1.429402
+ - 0.0
+ - - 1.405196
+ - 8.0e-06
+ - -1.229023
+ - - -0.21725
+ - -1.5e-05
+ - -2.084282
+ - - -1.155075
+ - 1.429431
+ - 0.0
+ - - 1.405196
+ - 8.0e-06
+ - 1.229023
+ - - -0.21725
+ - -1.5e-05
+ - 2.084282
isotopes:
- 12
- 12
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.916185186728775
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.321775784
+ - -0.7404700639
+ - 0.0
+ - - 0.3155869124
+ - -1.0372e-06
+ - -1.1300790012
+ - - -0.3217706212
+ - 0.7404729343
+ - 0.0
+ - - 0.3155869124
+ - -1.0372e-06
+ - 1.1300790012
+ - - -1.1515043965
+ - -1.4246035724
+ - 0.0
+ - - 1.4010307468
+ - -6.3239e-06
+ - -1.2138525401
+ - - -0.2124125732
+ - 1.1884e-06
+ - -2.0768513308
+ - - -1.151496422
+ - 1.4246094067
+ - 0.0
+ - - 1.4010307468
+ - -6.3239e-06
+ - 1.2138525401
+ - - -0.2124125732
+ - 1.1884e-06
+ - 2.0768513308
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.84005366504842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.318867
+ - -0.739109
+ - 0.0
+ - - 0.314957
+ - -3.0e-06
+ - -1.130815
+ - - -0.31886
+ - 0.739109
+ - -0.0
+ - - 0.314957
+ - -3.0e-06
+ - 1.130815
+ - - -1.147735
+ - -1.425376
+ - 0.0
+ - - 1.400278
+ - -6.0e-06
+ - -1.224269
+ - - -0.217709
+ - 5.0e-06
+ - -2.075739
+ - - -1.147726
+ - 1.42538
+ - -0.0
+ - - 1.400278
+ - -6.0e-06
+ - 1.224269
+ - - -0.217709
+ - 5.0e-06
+ - 2.075739
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromine monochloride.yml b/input/reference_sets/main/Bromine monochloride.yml
index 663e788f42..c3580a6dbd 100644
--- a/input/reference_sets/main/Bromine monochloride.yml
+++ b/input/reference_sets/main/Bromine monochloride.yml
@@ -3,13 +3,61 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 Cl u0 p3 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.6804983908679676
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.706577
+ - - 0.0
+ - 0.0
+ - -1.445508
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.201195930858685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.713157
+ - - 0.0
+ - 0.0
+ - -1.452088
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.9051058881001293
+ value: 0.9051058881001288
class: ThermoData
xyz_dict:
coords:
@@ -27,6 +75,222 @@ calculated_data:
symbols:
- Br
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.341585797541435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.716569
+ - - 0.0
+ - 0.0
+ - -1.4555
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.2193657190692389
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.71468
+ - - 0.0
+ - 0.0
+ - -1.453611
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.7392087896695718
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.702144
+ - - 0.0
+ - 0.0
+ - -1.441075
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.8727829642415048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.724296
+ - - 0.0
+ - 0.0
+ - -1.463227
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.9828841822849996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.697879
+ - - 0.0
+ - 0.0
+ - -1.436811
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3684071314020465
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.71377
+ - - 0.0
+ - 0.0
+ - -1.452702
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.7367130557640504
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.69898
+ - - 0.0
+ - 0.0
+ - -1.437912
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.7328884058377125
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.696932
+ - - 0.0
+ - 0.0
+ - -1.435863
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0748774779414787
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.711014
+ - - 0.0
+ - 0.0
+ - -1.449945
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -51,6 +315,54 @@ calculated_data:
symbols:
- Br
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.8223313930444232
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.6978794532
+ - - 0.0
+ - 0.0
+ - -1.436810639
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.6807072265039347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.698099
+ - - 0.0
+ - 0.0
+ - -1.43703
+ isotopes:
+ - 79
+ - 35
+ symbols:
+ - Br
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromine monofluoride.yml b/input/reference_sets/main/Bromine monofluoride.yml
index acccea3836..a300ba3be5 100644
--- a/input/reference_sets/main/Bromine monofluoride.yml
+++ b/input/reference_sets/main/Bromine monofluoride.yml
@@ -3,6 +3,54 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 F u0 p3 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.211389982062546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.365694
+ - - 0.0
+ - 0.0
+ - -1.402953
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.50046748280117
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.368658
+ - - 0.0
+ - 0.0
+ - -1.405917
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -27,6 +75,222 @@ calculated_data:
symbols:
- Br
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.108930979780485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.373661
+ - - 0.0
+ - 0.0
+ - -1.41092
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.949346445469848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.376216
+ - - 0.0
+ - 0.0
+ - -1.413475
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.629191032210905
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.360131
+ - - 0.0
+ - 0.0
+ - -1.39739
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.10288556755542
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.385096
+ - - 0.0
+ - 0.0
+ - -1.422355
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.693713649414889
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.359051
+ - - 0.0
+ - 0.0
+ - -1.39631
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.732328724258565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.365625
+ - - 0.0
+ - 0.0
+ - -1.402884
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.331322428799634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.356034
+ - - 0.0
+ - 0.0
+ - -1.393293
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.57710841812754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.358163
+ - - 0.0
+ - 0.0
+ - -1.395422
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.186335991608964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.372489
+ - - 0.0
+ - 0.0
+ - -1.409748
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -51,6 +315,54 @@ calculated_data:
symbols:
- Br
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.08216983853609
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.3590512199
+ - - 0.0
+ - 0.0
+ - -1.3963102998
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.647842677461682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.358811
+ - - 0.0
+ - 0.0
+ - -1.396071
+ isotopes:
+ - 79
+ - 19
+ symbols:
+ - Br
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromine monoxide.yml b/input/reference_sets/main/Bromine monoxide.yml
index a62b5a7557..4324c1144d 100644
--- a/input/reference_sets/main/Bromine monoxide.yml
+++ b/input/reference_sets/main/Bromine monoxide.yml
@@ -4,6 +4,54 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 O u1 p2 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.89657103809229
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.322829
+ - - 0.0
+ - 0.0
+ - -1.394753
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.394398206713095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.329036
+ - - 0.0
+ - 0.0
+ - -1.40096
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -28,6 +76,222 @@ calculated_data:
symbols:
- Br
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.136696078671996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.331122
+ - - 0.0
+ - 0.0
+ - -1.403046
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.0625352589951
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.332621
+ - - 0.0
+ - 0.0
+ - -1.404545
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.822151781837285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.320656
+ - - 0.0
+ - 0.0
+ - -1.39258
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.877285032567812
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.342151
+ - - 0.0
+ - 0.0
+ - -1.414075
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.130171413841545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.317607
+ - - 0.0
+ - 0.0
+ - -1.389531
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.548633301312655
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.331403
+ - - 0.0
+ - 0.0
+ - -1.403327
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.642632323022074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.31959
+ - - 0.0
+ - 0.0
+ - -1.391514
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.292055253999358
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.319638
+ - - 0.0
+ - 0.0
+ - -1.391562
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.828247173284502
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.33272
+ - - 0.0
+ - 0.0
+ - -1.404644
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -52,6 +316,54 @@ calculated_data:
symbols:
- Br
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.421798763275774
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.3176071044
+ - - 0.0
+ - 0.0
+ - -1.3895310818
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.540641607317855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.317067
+ - - 0.0
+ - 0.0
+ - -1.388991
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromodifluoromethane.yml b/input/reference_sets/main/Bromodifluoromethane.yml
index 8cc42da99c..8a64650731 100644
--- a/input/reference_sets/main/Bromodifluoromethane.yml
+++ b/input/reference_sets/main/Bromodifluoromethane.yml
@@ -6,6 +6,84 @@ adjacency_list: |
4 C u0 p0 c0 {1,S} {2,S} {3,S} {5,S}
5 H u0 p0 c0 {4,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -102.54337362767495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.930846
+ - -0.373463
+ - -0.0
+ - - 1.504203
+ - 0.161464
+ - -1.086728
+ - - 1.504203
+ - 0.161464
+ - 1.086728
+ - - -0.971069
+ - 0.02097
+ - 0.0
+ - - 1.05987
+ - -1.451781
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -101.00874817195462
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.935036
+ - -0.373304
+ - 0.0
+ - - 1.507472
+ - 0.161981
+ - -1.088026
+ - - 1.507472
+ - 0.161981
+ - 1.088026
+ - - -0.981749
+ - 0.021519
+ - -0.0
+ - - 1.059823
+ - -1.453523
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -45,6 +123,357 @@ calculated_data:
- F
- Br
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -98.62583528056922
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.939881
+ - -0.371837
+ - 0.0
+ - - 1.513009
+ - 0.163767
+ - -1.095001
+ - - 1.513009
+ - 0.163767
+ - 1.095001
+ - - -0.996167
+ - 0.021283
+ - -0.0
+ - - 1.058323
+ - -1.458324
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -98.50881989331914
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.936576
+ - -0.372778
+ - -0.0
+ - - 1.512485
+ - 0.16618
+ - -1.097497
+ - - 1.512485
+ - 0.16618
+ - 1.097497
+ - - -0.993094
+ - 0.022751
+ - 0.0
+ - - 1.059602
+ - -1.463678
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.19231078242436
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.92916
+ - -0.373023
+ - 0.0
+ - - 1.501156
+ - 0.160931
+ - -1.082778
+ - - 1.501156
+ - 0.160931
+ - 1.082778
+ - - -0.964765
+ - 0.021877
+ - -0.0
+ - - 1.061347
+ - -1.45206
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.87054238552558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.938669
+ - -0.374246
+ - -0.0
+ - - 1.506966
+ - 0.162642
+ - -1.089882
+ - - 1.506966
+ - 0.162642
+ - 1.089882
+ - - -0.984279
+ - 0.022587
+ - 0.0
+ - - 1.059733
+ - -1.45497
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.70799585451789
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.926468
+ - -0.374783
+ - 0.0
+ - - 1.500307
+ - 0.162145
+ - -1.086083
+ - - 1.500307
+ - 0.162145
+ - 1.086083
+ - - -0.960745
+ - 0.02238
+ - 0.0
+ - - 1.061717
+ - -1.453233
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -103.21385204971713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.946988
+ - -0.371908
+ - 0.0
+ - - 1.502041
+ - 0.162504
+ - -1.083674
+ - - 1.502041
+ - 0.162504
+ - 1.083674
+ - - -0.980982
+ - 0.023392
+ - 0.0
+ - - 1.057966
+ - -1.457836
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.64997822214463
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.931617
+ - -0.373442
+ - 0.0
+ - - 1.500444
+ - 0.161312
+ - -1.080183
+ - - 1.500444
+ - 0.161312
+ - 1.080183
+ - - -0.965214
+ - 0.022224
+ - -0.0
+ - - 1.060762
+ - -1.452751
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.11471325926547
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.932894
+ - -0.370235
+ - 0.0
+ - - 1.501438
+ - 0.161144
+ - -1.081269
+ - - 1.501438
+ - 0.161144
+ - 1.081269
+ - - -0.965119
+ - 0.0196
+ - -0.0
+ - - 1.057403
+ - -1.452999
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.31971951648384
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.934559
+ - -0.375275
+ - 0.0
+ - - 1.511287
+ - 0.16496
+ - -1.095095
+ - - 1.511287
+ - 0.16496
+ - 1.095095
+ - - -0.989078
+ - 0.02245
+ - -0.0
+ - - 1.06
+ - -1.45844
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -84,6 +513,84 @@ calculated_data:
- F
- Br
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.3594689591751
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.9264679602
+ - -0.3747830294
+ - 0.0
+ - - 1.5003072445
+ - 0.1621453712
+ - -1.0860832005
+ - - 1.5003072445
+ - 0.1621453712
+ - 1.0860832005
+ - - -0.9607453409
+ - 0.0223803167
+ - 0.0
+ - - 1.0617172932
+ - -1.4532328261
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.43936266234428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.932187
+ - -0.370778
+ - 0.0
+ - - 1.502007
+ - 0.160453
+ - -1.082276
+ - - 1.502007
+ - 0.160453
+ - 1.082276
+ - - -0.967655
+ - 0.020655
+ - -0.0
+ - - 1.059508
+ - -1.452126
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 79
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - Br
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromotrichloromethane.yml b/input/reference_sets/main/Bromotrichloromethane.yml
index 2d830ac303..0f220b3d6b 100644
--- a/input/reference_sets/main/Bromotrichloromethane.yml
+++ b/input/reference_sets/main/Bromotrichloromethane.yml
@@ -6,13 +6,91 @@ adjacency_list: |
4 Cl u0 p3 c0 {5,S}
5 C u0 p0 c0 {1,S} {2,S} {3,S} {4,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.234593478631831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.41535
+ - 5.2e-05
+ - 0.000501
+ - - -1.00354
+ - -0.066294
+ - -1.668225
+ - - -0.999489
+ - 1.479281
+ - 0.778735
+ - - -0.999692
+ - -1.412625
+ - 0.893751
+ - - 1.538267
+ - -0.000205
+ - -0.002579
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.45692237295315
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.418268
+ - 8.9e-05
+ - 0.0005
+ - - -1.006162
+ - -0.066491
+ - -1.673055
+ - - -1.002102
+ - 1.483564
+ - 0.780988
+ - - -1.002275
+ - -1.41672
+ - 0.896334
+ - - 1.549003
+ - -0.000232
+ - -0.002584
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.20271439112795167
+ value: 0.20271439112795162
class: ThermoData
xyz_dict:
coords:
@@ -45,6 +123,357 @@ calculated_data:
- Cl
- Cl
- Br
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.274837889610881
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.423928
+ - 8.5e-05
+ - 0.000527
+ - - -1.008799
+ - -0.066711
+ - -1.678562
+ - - -1.004738
+ - 1.488453
+ - 0.783556
+ - - -1.004936
+ - -1.421399
+ - 0.899286
+ - - 1.562597
+ - -0.000219
+ - -0.002624
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.300480256391378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.420455
+ - 4.8e-05
+ - 0.000499
+ - - -1.008604
+ - -0.066754
+ - -1.680149
+ - - -1.004486
+ - 1.489867
+ - 0.784277
+ - - -1.00468
+ - -1.42274
+ - 0.900133
+ - - 1.558423
+ - -0.000211
+ - -0.002577
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.8921874818060664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.414507
+ - 4.3e-05
+ - 0.000486
+ - - -1.001538
+ - -0.066026
+ - -1.661696
+ - - -0.9975
+ - 1.473485
+ - 0.775689
+ - - -0.997708
+ - -1.407094
+ - 0.890267
+ - - 1.53145
+ - -0.000199
+ - -0.002564
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.171767185489745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.415635
+ - 5.1e-05
+ - 0.000484
+ - - -1.009575
+ - -0.066756
+ - -1.68008
+ - - -1.005502
+ - 1.489795
+ - 0.784268
+ - - -1.005685
+ - -1.422662
+ - 0.900109
+ - - 1.556593
+ - -0.000219
+ - -0.002598
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.660211224018765
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.411017
+ - 8.9e-05
+ - 0.000585
+ - - -1.001167
+ - -0.066056
+ - -1.660681
+ - - -0.995775
+ - 1.473323
+ - 0.77475
+ - - -0.996037
+ - -1.407004
+ - 0.889233
+ - - 1.524193
+ - -0.000143
+ - -0.001704
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.834167702224244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.415185
+ - 1.7e-05
+ - 0.000461
+ - - -1.00754
+ - -0.06666
+ - -1.677713
+ - - -1.003419
+ - 1.487694
+ - 0.783159
+ - - -1.003645
+ - -1.420657
+ - 0.89884
+ - - 1.549986
+ - -0.000185
+ - -0.002565
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.873314376853541
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.414372
+ - 0.00022
+ - 0.000543
+ - - -1.001693
+ - -0.066013
+ - -1.660137
+ - - -0.997628
+ - 1.472028
+ - 0.774936
+ - - -0.997624
+ - -1.405671
+ - 0.889323
+ - - 1.531514
+ - -0.000356
+ - -0.002481
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.15818134912558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.416745
+ - 5.5e-05
+ - 0.000483
+ - - -0.99981
+ - -0.065888
+ - -1.658255
+ - - -0.9958
+ - 1.470465
+ - 0.774088
+ - - -0.995986
+ - -1.404209
+ - 0.88843
+ - - 1.528538
+ - -0.000214
+ - -0.002564
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.07405984779436463
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.419076
+ - 6.8e-05
+ - 0.000488
+ - - -1.007604
+ - -0.066683
+ - -1.677471
+ - - -1.003508
+ - 1.487494
+ - 0.783063
+ - - -1.003737
+ - -1.420474
+ - 0.898695
+ - - 1.554122
+ - -0.000196
+ - -0.002591
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -84,6 +513,84 @@ calculated_data:
- Cl
- Cl
- Br
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.266868121469676
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4110165666
+ - 8.93485e-05
+ - 0.0005848823
+ - - -1.0011668866
+ - -0.0660555193
+ - -1.6606806883
+ - - -0.9957753079
+ - 1.4733228847
+ - 0.7747500069
+ - - -0.9960368188
+ - -1.4070042413
+ - 0.8892329706
+ - - 1.5241926464
+ - -0.00014312
+ - -0.0017042346
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.514454173386021
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.412535
+ - 3.4e-05
+ - 0.000504
+ - - -1.002233
+ - -0.066128
+ - -1.664238
+ - - -0.998167
+ - 1.47575
+ - 0.776862
+ - - -0.998365
+ - -1.409246
+ - 0.891607
+ - - 1.531497
+ - -0.000201
+ - -0.002552
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 79
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - Br
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Bromotrifluoromethane.yml b/input/reference_sets/main/Bromotrifluoromethane.yml
index df57568a52..d420734366 100644
--- a/input/reference_sets/main/Bromotrifluoromethane.yml
+++ b/input/reference_sets/main/Bromotrifluoromethane.yml
@@ -6,6 +6,84 @@ adjacency_list: |
4 F u0 p3 c0 {5,S}
5 C u0 p0 c0 {1,S} {2,S} {3,S} {4,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -156.02093298709184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.809151
+ - -0.000179
+ - 6.0e-05
+ - - -1.268536
+ - -0.506073
+ - -1.137921
+ - - -1.268123
+ - -0.733131
+ - 1.007081
+ - - -1.269168
+ - 1.238021
+ - 0.131215
+ - - 1.12543
+ - 0.000737
+ - -0.000238
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -153.3261233865716
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.812647
+ - -0.000186
+ - 6.0e-05
+ - - -1.270948
+ - -0.507017
+ - -1.140047
+ - - -1.270532
+ - -0.734499
+ - 1.008962
+ - - -1.271576
+ - 1.240333
+ - 0.131459
+ - - 1.136154
+ - 0.000743
+ - -0.000238
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -45,6 +123,318 @@ calculated_data:
- F
- F
- Br
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -148.78605282503761
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.81671
+ - -0.000179
+ - 5.6e-05
+ - - -1.27388
+ - -0.510479
+ - -1.147819
+ - - -1.273452
+ - -0.739503
+ - 1.015835
+ - - -1.274521
+ - 1.248795
+ - 0.132361
+ - - 1.149014
+ - 0.00074
+ - -0.000236
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -149.26211171151994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.813594
+ - -0.000151
+ - 6.0e-05
+ - - -1.274227
+ - -0.511838
+ - -1.150855
+ - - -1.273796
+ - -0.741475
+ - 1.01852
+ - - -1.274895
+ - 1.252116
+ - 0.132708
+ - - 1.146964
+ - 0.000722
+ - -0.000237
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -160.39966940733655
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.808038
+ - -0.000176
+ - 5.6e-05
+ - - -1.267092
+ - -0.504426
+ - -1.134213
+ - - -1.26667
+ - -0.730745
+ - 1.003799
+ - - -1.267726
+ - 1.233992
+ - 0.130787
+ - - 1.119977
+ - 0.000728
+ - -0.000233
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -160.47312825312042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.814297
+ - -0.000155
+ - 3.7e-05
+ - - -1.270384
+ - -0.507713
+ - -1.141557
+ - - -1.269942
+ - -0.735475
+ - 1.010289
+ - - -1.271016
+ - 1.24199
+ - 0.13165
+ - - 1.136092
+ - 0.000728
+ - -0.000223
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -154.06335496511898
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.805144
+ - 0.000108
+ - -3.7e-05
+ - - -1.266339
+ - -0.505782
+ - -1.13737
+ - - -1.2655
+ - -0.73274
+ - 1.006549
+ - - -1.267584
+ - 1.237558
+ - 0.131127
+ - - 1.115019
+ - 0.000229
+ - -7.2e-05
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -157.57521991117605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.822201
+ - -0.000183
+ - 5.8e-05
+ - - -1.266712
+ - -0.505539
+ - -1.136719
+ - - -1.266294
+ - -0.732353
+ - 1.006015
+ - - -1.267349
+ - 1.236717
+ - 0.131078
+ - - 1.133009
+ - 0.000732
+ - -0.000236
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -160.193241785507
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.811377
+ - -0.000184
+ - 5.1e-05
+ - - -1.265928
+ - -0.503969
+ - -1.133185
+ - - -1.265495
+ - -0.73008
+ - 1.002887
+ - - -1.266537
+ - 1.232869
+ - 0.130668
+ - - 1.119788
+ - 0.000738
+ - -0.000225
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -144.24073061927393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.811224
+ - -0.000162
+ - 7.0e-05
+ - - -1.273665
+ - -0.510631
+ - -1.148205
+ - - -1.273239
+ - -0.739751
+ - 1.016183
+ - - -1.274346
+ - 1.249202
+ - 0.13239
+ - - 1.142925
+ - 0.000716
+ - -0.000241
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -84,6 +474,84 @@ calculated_data:
- F
- F
- Br
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -162.18994761602158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.8051441402
+ - 0.0001080792
+ - -3.74584e-05
+ - - -1.2663389315
+ - -0.5057819793
+ - -1.1373701629
+ - - -1.2654998926
+ - -0.7327395187
+ - 1.006549406
+ - - -1.2675840216
+ - 1.237558173
+ - 0.1311269771
+ - - 1.1150191558
+ - 0.0002291843
+ - -7.23209e-05
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -159.08637239164077
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.811175
+ - -0.000173
+ - 5.2e-05
+ - - -1.266841
+ - -0.504215
+ - -1.133703
+ - - -1.266434
+ - -0.730409
+ - 1.00334
+ - - -1.267468
+ - 1.233435
+ - 0.130745
+ - - 1.122369
+ - 0.000735
+ - -0.000238
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 79
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Br
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Butanamide.yml b/input/reference_sets/main/Butanamide.yml
index 585ff41b05..1f1828e10c 100644
--- a/input/reference_sets/main/Butanamide.yml
+++ b/input/reference_sets/main/Butanamide.yml
@@ -194,63 +194,1220 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.7224264625434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.958573
+ - 0.204301
+ - 0.860526
+ - - -1.515002
+ - -0.147579
+ - -0.555159
+ - - -0.148741
+ - -0.826747
+ - -0.590212
+ - - 0.965299
+ - 0.114645
+ - -0.161867
+ - - 1.949645
+ - -0.447477
+ - 0.592958
+ - - 0.989675
+ - 1.289758
+ - -0.485331
+ - - -1.257014
+ - 0.896388
+ - 1.327539
+ - - -2.939772
+ - 0.679317
+ - 0.858339
+ - - -2.022632
+ - -0.688299
+ - 1.486859
+ - - -1.463246
+ - 0.75666
+ - -1.161953
+ - - -2.247745
+ - -0.809748
+ - -1.021137
+ - - -0.152072
+ - -1.727302
+ - 0.029433
+ - - 0.08707
+ - -1.141123
+ - -1.610584
+ - - 1.936993
+ - -1.416848
+ - 0.848212
+ - - 2.738041
+ - 0.120373
+ - 0.852283
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -58.357344700692586
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.974273
+ - 0.206761
+ - 0.858851
+ - - -1.516097
+ - -0.146506
+ - -0.553149
+ - - -0.147638
+ - -0.824507
+ - -0.580503
+ - - 0.972103
+ - 0.1162
+ - -0.156817
+ - - 1.969207
+ - -0.453186
+ - 0.57582
+ - - 0.991219
+ - 1.292084
+ - -0.467299
+ - - -1.2791
+ - 0.902631
+ - 1.33175
+ - - -2.957829
+ - 0.679001
+ - 0.846321
+ - - -2.04162
+ - -0.685143
+ - 1.487706
+ - - -1.462033
+ - 0.758049
+ - -1.160726
+ - - -2.244625
+ - -0.810107
+ - -1.025716
+ - - -0.151863
+ - -1.722992
+ - 0.043494
+ - - 0.089177
+ - -1.146757
+ - -1.599179
+ - - 1.956865
+ - -1.423061
+ - 0.832451
+ - - 2.758432
+ - 0.113855
+ - 0.836904
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -43.26153781741539
+ value: -43.26153781741539
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0291238068
+ - 0.3079497385
+ - 0.7951905672
+ - - -1.5228774552
+ - -0.2461136902
+ - -0.5460935869
+ - - -0.1391079718
+ - -0.906014373
+ - -0.4276043469
+ - - 0.965343268
+ - 0.1194449894
+ - -0.120017296
+ - - 2.0552566123
+ - -0.3922697394
+ - 0.5429966182
+ - - 0.8937810451
+ - 1.3015357225
+ - -0.4509264165
+ - - -1.3440798173
+ - 1.0814955494
+ - 1.1692742562
+ - - -3.0263106872
+ - 0.7592590909
+ - 0.6861457137
+ - - -2.0987678663
+ - -0.4899090401
+ - 1.5520205306
+ - - -1.4494922104
+ - 0.5723929011
+ - -1.2764301422
+ - - -2.2370409377
+ - -0.984179712
+ - -0.9441659382
+ - - -0.155300624
+ - -1.701077143
+ - 0.3373919866
+ - - 0.1278638056
+ - -1.3920715009
+ - -1.3818615798
+ - - 2.1453214115
+ - -1.3773272982
+ - 0.7619412355
+ - - 2.8553580744
+ - 0.2134195603
+ - 0.6932669184
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.175959526224126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.940512
+ - 0.190431
+ - 0.877991
+ - - -1.519137
+ - -0.145218
+ - -0.553714
+ - - -0.147039
+ - -0.825506
+ - -0.625691
+ - - 0.981918
+ - 0.114571
+ - -0.203194
+ - - 1.920165
+ - -0.431629
+ - 0.629275
+ - - 1.053673
+ - 1.272138
+ - -0.590968
+ - - -1.228631
+ - 0.880897
+ - 1.343946
+ - - -2.927261
+ - 0.66571
+ - 0.898387
+ - - -1.991412
+ - -0.713309
+ - 1.498853
+ - - -1.479158
+ - 0.770297
+ - -1.153877
+ - - -2.262889
+ - -0.805018
+ - -1.018081
+ - - -0.142968
+ - -1.742312
+ - -0.021128
+ - - 0.067683
+ - -1.122114
+ - -1.661056
+ - - 1.866886
+ - -1.385525
+ - 0.945967
+ - - 2.710609
+ - 0.132908
+ - 0.903197
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.424551238091915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.017564
+ - 0.206578
+ - 0.856965
+ - - -1.517998
+ - -0.139747
+ - -0.548842
+ - - -0.146531
+ - -0.826284
+ - -0.551629
+ - - 0.987456
+ - 0.121019
+ - -0.149067
+ - - 2.014242
+ - -0.458645
+ - 0.550234
+ - - 0.998282
+ - 1.311143
+ - -0.450942
+ - - -1.327915
+ - 0.899156
+ - 1.362336
+ - - -3.004464
+ - 0.690869
+ - 0.818768
+ - - -2.113446
+ - -0.695726
+ - 1.482564
+ - - -1.441274
+ - 0.777256
+ - -1.152959
+ - - -2.243386
+ - -0.799097
+ - -1.052598
+ - - -0.156154
+ - -1.719676
+ - 0.096409
+ - - 0.092893
+ - -1.178884
+ - -1.570202
+ - - 2.016372
+ - -1.441697
+ - 0.793182
+ - - 2.821412
+ - 0.110056
+ - 0.785685
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.91137342435408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.017052
+ - 0.219638
+ - 0.838791
+ - - -1.509974
+ - -0.144623
+ - -0.548399
+ - - -0.148034
+ - -0.822411
+ - -0.526607
+ - - 0.969634
+ - 0.116186
+ - -0.111174
+ - - 2.023285
+ - -0.471677
+ - 0.511757
+ - - 0.945353
+ - 1.305223
+ - -0.342407
+ - - -1.340295
+ - 0.919141
+ - 1.330316
+ - - -2.998252
+ - 0.691896
+ - 0.786096
+ - - -2.109685
+ - -0.665976
+ - 1.471732
+ - - -1.43561
+ - 0.75448
+ - -1.160362
+ - - -2.222697
+ - -0.810305
+ - -1.03982
+ - - -0.164282
+ - -1.700503
+ - 0.124553
+ - - 0.108487
+ - -1.179769
+ - -1.527968
+ - - 2.047357
+ - -1.454575
+ - 0.707457
+ - - 2.81369
+ - 0.099594
+ - 0.75594
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.9462841383104
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.071548
+ - 0.238543
+ - 0.825033
+ - - -1.512398
+ - -0.145686
+ - -0.547656
+ - - -0.144153
+ - -0.830097
+ - -0.478531
+ - - 0.979802
+ - 0.120952
+ - -0.063437
+ - - 2.079762
+ - -0.487519
+ - 0.473971
+ - - 0.916945
+ - 1.32684
+ - -0.214028
+ - - -1.413988
+ - 0.951663
+ - 1.327313
+ - - -3.055587
+ - 0.705149
+ - 0.729937
+ - - -2.182372
+ - -0.639468
+ - 1.470349
+ - - -1.414256
+ - 0.750517
+ - -1.165164
+ - - -2.212298
+ - -0.815341
+ - -1.058169
+ - - -0.175065
+ - -1.691014
+ - 0.199668
+ - - 0.126424
+ - -1.223561
+ - -1.466219
+ - - 2.156999
+ - -1.486948
+ - 0.551859
+ - - 2.883658
+ - 0.082292
+ - 0.684981
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.167605447423306
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.98669
+ - 0.216646
+ - 0.843844
+ - - -1.5144
+ - -0.147495
+ - -0.558021
+ - - -0.151646
+ - -0.829243
+ - -0.551295
+ - - 0.956493
+ - 0.11668
+ - -0.121665
+ - - 1.991647
+ - -0.460982
+ - 0.547461
+ - - 0.938487
+ - 1.304662
+ - -0.374141
+ - - -1.289823
+ - 0.908347
+ - 1.319486
+ - - -2.964479
+ - 0.698189
+ - 0.818148
+ - - -2.069445
+ - -0.671684
+ - 1.475092
+ - - -1.446272
+ - 0.751145
+ - -1.170817
+ - - -2.237853
+ - -0.812938
+ - -1.035397
+ - - -0.164476
+ - -1.713193
+ - 0.092973
+ - - 0.107642
+ - -1.171558
+ - -1.557321
+ - - 2.013105
+ - -1.443592
+ - 0.744935
+ - - 2.779635
+ - 0.111337
+ - 0.796626
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.502883111762884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.98669
+ - 0.216646
+ - 0.843844
+ - - -1.5144
+ - -0.147495
+ - -0.558021
+ - - -0.151646
+ - -0.829243
+ - -0.551295
+ - - 0.956493
+ - 0.11668
+ - -0.121665
+ - - 1.991647
+ - -0.460982
+ - 0.547461
+ - - 0.938487
+ - 1.304662
+ - -0.374141
+ - - -1.289823
+ - 0.908347
+ - 1.319486
+ - - -2.964479
+ - 0.698189
+ - 0.818148
+ - - -2.069445
+ - -0.671684
+ - 1.475092
+ - - -1.446272
+ - 0.751145
+ - -1.170817
+ - - -2.237853
+ - -0.812938
+ - -1.035397
+ - - -0.164476
+ - -1.713193
+ - 0.092973
+ - - 0.107642
+ - -1.171558
+ - -1.557321
+ - - 2.013105
+ - -1.443592
+ - 0.744934
+ - - 2.779635
+ - 0.111337
+ - 0.796626
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.69481846692359
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.98669
+ - 0.216646
+ - 0.843844
+ - - -1.5144
+ - -0.147495
+ - -0.558021
+ - - -0.151646
+ - -0.829243
+ - -0.551295
+ - - 0.956493
+ - 0.11668
+ - -0.121665
+ - - 1.991647
+ - -0.460982
+ - 0.547461
+ - - 0.938487
+ - 1.304662
+ - -0.374141
+ - - -1.289823
+ - 0.908347
+ - 1.319486
+ - - -2.964479
+ - 0.698189
+ - 0.818148
+ - - -2.069445
+ - -0.671684
+ - 1.475092
+ - - -1.446272
+ - 0.751145
+ - -1.170817
+ - - -2.237853
+ - -0.812938
+ - -1.035397
+ - - -0.164476
+ - -1.713193
+ - 0.092973
+ - - 0.107642
+ - -1.171558
+ - -1.557321
+ - - 2.013105
+ - -1.443592
+ - 0.744934
+ - - 2.779635
+ - 0.111337
+ - 0.796626
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.98175659361502
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.079889
+ - 0.246209
+ - 0.816688
+ - - -1.510956
+ - -0.148416
+ - -0.54908
+ - - -0.144854
+ - -0.835317
+ - -0.461022
+ - - 0.972881
+ - 0.120678
+ - -0.040065
+ - - 2.085945
+ - -0.488936
+ - 0.467773
+ - - 0.893407
+ - 1.328837
+ - -0.154334
+ - - -1.418054
+ - 0.955733
+ - 1.320923
+ - - -3.060603
+ - 0.720195
+ - 0.71128
+ - - -2.202626
+ - -0.628893
+ - 1.465795
+ - - -1.402869
+ - 0.745138
+ - -1.171244
+ - - -2.208305
+ - -0.819824
+ - -1.0631
+ - - -0.179719
+ - -1.690992
+ - 0.225625
+ - - 0.136421
+ - -1.2411
+ - -1.442306
+ - - 2.188131
+ - -1.488348
+ - 0.482129
+ - - 2.893014
+ - 0.081358
+ - 0.660845
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -67.12581261623994
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.0291238068
- - 0.3079497385
- - 0.7951905672
- - - -1.5228774552
- - -0.2461136902
- - -0.5460935869
- - - -0.1391079718
- - -0.906014373
- - -0.4276043469
- - - 0.965343268
- - 0.1194449894
- - -0.120017296
- - - 2.0552566123
- - -0.3922697394
- - 0.5429966182
- - - 0.8937810451
- - 1.3015357225
- - -0.4509264165
- - - -1.3440798173
- - 1.0814955494
- - 1.1692742562
- - - -3.0263106872
- - 0.7592590909
- - 0.6861457137
- - - -2.0987678663
- - -0.4899090401
- - 1.5520205306
- - - -1.4494922104
- - 0.5723929011
- - -1.2764301422
- - - -2.2370409377
- - -0.984179712
- - -0.9441659382
- - - -0.155300624
- - -1.701077143
- - 0.3373919866
- - - 0.1278638056
- - -1.3920715009
- - -1.3818615798
- - - 2.1453214115
- - -1.3773272982
- - 0.7619412355
- - - 2.8553580744
- - 0.2134195603
- - 0.6932669184
+ - - -2.003924
+ - 0.229448
+ - 0.831629
+ - - -1.51444
+ - -0.151152
+ - -0.559873
+ - - -0.153444
+ - -0.833049
+ - -0.524966
+ - - 0.948934
+ - 0.117471
+ - -0.087639
+ - - 2.018122
+ - -0.470957
+ - 0.5135
+ - - 0.897904
+ - 1.312098
+ - -0.280103
+ - - -1.310627
+ - 0.92653
+ - 1.303924
+ - - -2.981728
+ - 0.708994
+ - 0.788148
+ - - -2.092156
+ - -0.652512
+ - 1.470164
+ - - -1.434534
+ - 0.742489
+ - -1.179702
+ - - -2.231753
+ - -0.819613
+ - -1.039921
+ - - -0.174834
+ - -1.707636
+ - 0.1311
+ - - 0.123182
+ - -1.1889
+ - -1.52176
+ - - 2.0671
+ - -1.461799
+ - 0.661613
+ - - 2.804124
+ - 0.104908
+ - 0.763792
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.42384453899046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.011029
+ - 0.214927
+ - 0.8408
+ - - -1.508602
+ - -0.144573
+ - -0.547296
+ - - -0.148403
+ - -0.822857
+ - -0.529737
+ - - 0.968339
+ - 0.118694
+ - -0.118611
+ - - 2.011257
+ - -0.465913
+ - 0.523259
+ - - 0.950265
+ - 1.305695
+ - -0.368005
+ - - -1.328588
+ - 0.910256
+ - 1.335097
+ - - -2.991821
+ - 0.69303
+ - 0.793348
+ - - -2.106271
+ - -0.673998
+ - 1.471978
+ - - -1.431204
+ - 0.75897
+ - -1.156889
+ - - -2.224738
+ - -0.80693
+ - -1.042998
+ - - -0.162519
+ - -1.704649
+ - 0.120282
+ - - 0.106911
+ - -1.179057
+ - -1.534561
+ - - 2.031659
+ - -1.448306
+ - 0.722286
+ - - 2.806671
+ - 0.101031
+ - 0.760955
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.81994038349918
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.006056
+ - 0.207281
+ - 0.85919
+ - - -1.518225
+ - -0.141236
+ - -0.551142
+ - - -0.146566
+ - -0.829817
+ - -0.560069
+ - - 0.981439
+ - 0.119134
+ - -0.151591
+ - - 1.998548
+ - -0.453652
+ - 0.563585
+ - - 0.993292
+ - 1.306216
+ - -0.45746
+ - - -1.312296
+ - 0.895332
+ - 1.354089
+ - - -2.987947
+ - 0.69114
+ - 0.824861
+ - - -2.097936
+ - -0.691944
+ - 1.48115
+ - - -1.443649
+ - 0.770964
+ - -1.152553
+ - - -2.243668
+ - -0.800317
+ - -1.043747
+ - - -0.153747
+ - -1.720737
+ - 0.082209
+ - - 0.089489
+ - -1.171769
+ - -1.577153
+ - - 2.006046
+ - -1.435266
+ - 0.797283
+ - - 2.803201
+ - 0.110991
+ - 0.801255
isotopes:
- 12
- 12
@@ -372,6 +1529,184 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -68.6338324117947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.9866897153
+ - 0.2166459128
+ - 0.8438442579
+ - - -1.5144001505
+ - -0.1474951114
+ - -0.5580213976
+ - - -0.151646205
+ - -0.8292433863
+ - -0.5512953806
+ - - 0.9564934638
+ - 0.1166801551
+ - -0.1216646788
+ - - 1.9916469241
+ - -0.4609815698
+ - 0.5474613142
+ - - 0.9384865519
+ - 1.304661557
+ - -0.3741412243
+ - - -1.2898228023
+ - 0.9083472264
+ - 1.3194855992
+ - - -2.9644792433
+ - 0.698189138
+ - 0.8181476762
+ - - -2.0694447062
+ - -0.6716839066
+ - 1.4750916827
+ - - -1.4462716667
+ - 0.7511448134
+ - -1.1708166133
+ - - -2.2378527394
+ - -0.812938486
+ - -1.0353973362
+ - - -0.1644762549
+ - -1.7131930185
+ - 0.0929729428
+ - - 0.1076422719
+ - -1.1715576692
+ - -1.5573208135
+ - - 2.013105059
+ - -1.4435915736
+ - 0.7449345037
+ - - 2.7796348402
+ - 0.1113365873
+ - 0.7966261479
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.84992866735102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.986492
+ - 0.211938
+ - 0.850897
+ - - -1.514166
+ - -0.146085
+ - -0.552116
+ - - -0.148544
+ - -0.82228
+ - -0.561882
+ - - 0.969753
+ - 0.11687
+ - -0.138271
+ - - 1.985708
+ - -0.460658
+ - 0.555522
+ - - 0.974446
+ - 1.295787
+ - -0.419887
+ - - -1.298618
+ - 0.913978
+ - 1.325635
+ - - -2.971729
+ - 0.679319
+ - 0.825408
+ - - -2.055486
+ - -0.677352
+ - 1.48296
+ - - -1.456381
+ - 0.75596
+ - -1.16305
+ - - -2.236763
+ - -0.813206
+ - -1.02805
+ - - -0.159379
+ - -1.714949
+ - 0.07048
+ - - 0.09799
+ - -1.154213
+ - -1.574874
+ - - 1.986756
+ - -1.434963
+ - 0.787446
+ - - 2.774832
+ - 0.106175
+ - 0.80969
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - N
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Carbon dioxide.yml b/input/reference_sets/main/Carbon dioxide.yml
index 696dca5458..dcba57afb4 100644
--- a/input/reference_sets/main/Carbon dioxide.yml
+++ b/input/reference_sets/main/Carbon dioxide.yml
@@ -10,7 +10,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -94.20787283946292
+ value: -94.20787283946282
class: ThermoData
xyz_dict:
coords:
@@ -62,6 +62,64 @@ calculated_data:
- C
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -90.58548279453036
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.163642
+ - - 0.0
+ - -0.0
+ - -1.163642
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.02551921097528
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.1597
+ - - 0.0
+ - -0.0
+ - -1.1597
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- C
- O
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.72127043151883
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.167562
+ - - 0.0
+ - -0.0
+ - -1.167562
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.36378915529795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.171901
+ - - 0.0
+ - -0.0
+ - -1.171901
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.62011059744312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.155031
+ - - 0.0
+ - -0.0
+ - -1.155031
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.11488904300876
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.0
+ - - -0.0
+ - -0.0
+ - 1.160435
+ - - -0.0
+ - -0.0
+ - -1.160435
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.71560778185308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - -0.0
+ - -0.0
+ - 1.158361
+ - - -0.0
+ - -0.0
+ - -1.158361
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.57214384380106
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - -0.0
+ - -0.0
+ - 1.158361
+ - - -0.0
+ - -0.0
+ - -1.158361
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.35461871809727
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - -0.0
+ - -0.0
+ - 1.158361
+ - - -0.0
+ - -0.0
+ - -1.158361
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -94.91583165084354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - 0.0
+ - 0.0
+ - 1.162879
+ - - 0.0
+ - 0.0
+ - -1.162879
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.02934244819087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.15458
+ - - 0.0
+ - -0.0
+ - -1.15458
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.72511368588509
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.156797
+ - - 0.0
+ - -0.0
+ - -1.156797
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.06376578579788
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.169066
+ - - 0.0
+ - -0.0
+ - -1.169066
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,13 +497,71 @@ calculated_data:
- C
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.22303306793702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.19e-08
+ - 1.8e-09
+ - 1.6e-09
+ - - -8.2e-09
+ - -7.0e-10
+ - 1.1583612371
+ - - -8.2e-09
+ - -7.0e-10
+ - -1.1583612383
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.79147414452784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.0
+ - - 0.0
+ - -0.0
+ - 1.15582
+ - - 0.0
+ - -0.0
+ - -1.15582
+ isotopes:
+ - 12
+ - 16
+ - 16
+ symbols:
+ - C
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -88.72556027193083
+ value: -88.72556027193077
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Carbon disulfide.yml b/input/reference_sets/main/Carbon disulfide.yml
index cb7b4af6e8..6868c77b1b 100644
--- a/input/reference_sets/main/Carbon disulfide.yml
+++ b/input/reference_sets/main/Carbon disulfide.yml
@@ -62,6 +62,35 @@ calculated_data:
- S
- C
- S
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.653739698672577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.552718
+ - - 0.0
+ - 0.0
+ - -0.0
+ - - 0.0
+ - 0.0
+ - -1.552718
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +120,325 @@ calculated_data:
- S
- C
- S
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.45242583486936
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.558589
+ - - 0.0
+ - -0.0
+ - -0.0
+ - - 0.0
+ - -0.0
+ - -1.558589
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.671554289075456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.563213
+ - - 0.0
+ - -0.0
+ - -0.0
+ - - 0.0
+ - -0.0
+ - -1.563213
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.40328462397971
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.544806
+ - - 0.0
+ - -0.0
+ - -0.0
+ - - 0.0
+ - -0.0
+ - -1.544806
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.739119706210097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.557808
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - 0.0
+ - 0.0
+ - -1.557808
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.337961385292466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 6.0e-06
+ - 0.0
+ - 1.54775
+ - - -3.2e-05
+ - 0.0
+ - 0.0
+ - - 6.0e-06
+ - 0.0
+ - -1.54775
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.66352713448062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 6.0e-06
+ - 0.0
+ - 1.54775
+ - - -3.2e-05
+ - 0.0
+ - 0.0
+ - - 6.0e-06
+ - 0.0
+ - -1.54775
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.04561179429955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 6.0e-06
+ - 0.0
+ - 1.54775
+ - - -3.2e-05
+ - 0.0
+ - 0.0
+ - - 6.0e-06
+ - 0.0
+ - -1.54775
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.629325236375493
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.556055
+ - - 0.0
+ - 0.0
+ - 0.0
+ - - 0.0
+ - 0.0
+ - -1.556055
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.103335022485318
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.546602
+ - - 0.0
+ - 0.0
+ - -0.0
+ - - 0.0
+ - 0.0
+ - -1.546602
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.82294310620824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.548457
+ - - 0.0
+ - 0.0
+ - -0.0
+ - - 0.0
+ - 0.0
+ - -1.548457
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.205962792284616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.559564
+ - - 0.0
+ - -0.0
+ - -0.0
+ - - 0.0
+ - -0.0
+ - -1.559564
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +468,64 @@ calculated_data:
- S
- C
- S
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.315434399097096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 5.9456e-06
+ - 0.0
+ - 1.5477499352
+ - - -3.17097e-05
+ - 0.0
+ - 1.41e-08
+ - - 5.9456e-06
+ - 0.0
+ - -1.5477499405
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.68448837800094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.547032
+ - - 0.0
+ - 0.0
+ - -0.0
+ - - 0.0
+ - 0.0
+ - -1.547032
+ isotopes:
+ - 32
+ - 12
+ - 32
+ symbols:
+ - S
+ - C
+ - S
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Carbon monoxide.yml b/input/reference_sets/main/Carbon monoxide.yml
index 64cacbdcc3..634aafdbeb 100644
--- a/input/reference_sets/main/Carbon monoxide.yml
+++ b/input/reference_sets/main/Carbon monoxide.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- C
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.858106768385454
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.645347
+ - - 0.0
+ - 0.0
+ - -0.484737
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.081365722764843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.64275
+ - - 0.0
+ - 0.0
+ - -0.48214
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- C
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.19428611219726
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.647247
+ - - 0.0
+ - 0.0
+ - -0.486638
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.089500684336654
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.648787
+ - - 0.0
+ - 0.0
+ - -0.488177
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.443237427784464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.640518
+ - - 0.0
+ - 0.0
+ - -0.479908
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.56012628487641
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.643784
+ - - 0.0
+ - 0.0
+ - -0.483174
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.09194776452635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.64244
+ - - 0.0
+ - 0.0
+ - -0.48183
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.11616381078179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.64244
+ - - 0.0
+ - 0.0
+ - -0.48183
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.588257709492186
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.64244
+ - - 0.0
+ - 0.0
+ - -0.48183
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.21779653431295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.645761
+ - - 0.0
+ - 0.0
+ - -0.485151
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.79447003829331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.640386
+ - - 0.0
+ - 0.0
+ - -0.479776
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.814601681637232
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.641998
+ - - 0.0
+ - 0.0
+ - -0.481388
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.923161008943287
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.647581
+ - - 0.0
+ - 0.0
+ - -0.486971
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- C
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.25532269097384
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.642439562
+ - - 0.0
+ - 0.0
+ - -0.4818296715
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.42980105703179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.641775
+ - - 0.0
+ - 0.0
+ - -0.481165
+ isotopes:
+ - 12
+ - 16
+ symbols:
+ - C
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Carbonic acid.yml b/input/reference_sets/main/Carbonic acid.yml
index 704b40cbfa..bf55abc590 100644
--- a/input/reference_sets/main/Carbonic acid.yml
+++ b/input/reference_sets/main/Carbonic acid.yml
@@ -95,6 +95,94 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -138.62691927123566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086476
+ - -0.0
+ - 0.679238
+ - - 0.0
+ - -0.0
+ - -0.101653
+ - - 0.0
+ - 0.0
+ - -1.305983
+ - - -1.086476
+ - -0.0
+ - 0.679238
+ - - 1.84833
+ - -0.0
+ - 0.083686
+ - - -1.84833
+ - -0.0
+ - 0.083686
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -136.7075591841382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.087705
+ - 0.0
+ - 0.677136
+ - - 0.0
+ - -0.0
+ - -0.103024
+ - - 0.0
+ - 0.0
+ - -1.305494
+ - - -1.087705
+ - -0.0
+ - 0.677136
+ - - 1.853524
+ - 0.0
+ - 0.086229
+ - - -1.853524
+ - -0.0
+ - 0.086229
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -130.913218719952
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.09305
+ - 0.0
+ - 0.685339
+ - - -0.0
+ - -0.0
+ - -0.104963
+ - - 0.0
+ - 0.0
+ - -1.313975
+ - - -1.09305
+ - -0.0
+ - 0.685339
+ - - 1.854107
+ - 0.0
+ - 0.083236
+ - - -1.854107
+ - -0.0
+ - 0.083236
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -135.425652680422
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.095065
+ - -0.0
+ - 0.68937
+ - - 0.0
+ - -0.0
+ - -0.103122
+ - - 0.0
+ - 0.0
+ - -1.316961
+ - - -1.095065
+ - -0.0
+ - 0.68937
+ - - 1.858898
+ - 0.0
+ - 0.079777
+ - - -1.858898
+ - -0.0
+ - 0.079777
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -140.46093646879544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083895
+ - -0.0
+ - 0.673143
+ - - -0.0
+ - -0.0
+ - -0.099247
+ - - -0.0
+ - 0.0
+ - -1.297565
+ - - -1.083895
+ - -0.0
+ - 0.673143
+ - - 1.849739
+ - 0.0
+ - 0.084369
+ - - -1.849739
+ - -0.0
+ - 0.084369
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -147.77108326122365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.088524
+ - -0.0
+ - 0.679501
+ - - -0.0
+ - -0.0
+ - -0.102455
+ - - -0.0
+ - 0.0
+ - -1.305322
+ - - -1.088524
+ - -0.0
+ - 0.679501
+ - - 1.848347
+ - 0.0
+ - 0.083493
+ - - -1.848347
+ - -0.0
+ - 0.083493
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -139.91883462346516
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086127
+ - -0.0
+ - 0.677194
+ - - 0.0
+ - 0.0
+ - -0.099154
+ - - 0.0
+ - 0.0
+ - -1.300449
+ - - -1.086127
+ - 0.0
+ - 0.677194
+ - - 1.847024
+ - -0.0
+ - 0.081714
+ - - -1.847024
+ - 0.0
+ - 0.081714
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -142.78844066033525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086127
+ - -0.0
+ - 0.677194
+ - - 0.0
+ - 0.0
+ - -0.099154
+ - - 0.0
+ - 0.0
+ - -1.300449
+ - - -1.086127
+ - 0.0
+ - 0.677194
+ - - 1.847024
+ - -0.0
+ - 0.081714
+ - - -1.847024
+ - 0.0
+ - 0.081714
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.27006153814548
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086127
+ - -0.0
+ - 0.677194
+ - - 0.0
+ - 0.0
+ - -0.099154
+ - - 0.0
+ - 0.0
+ - -1.300449
+ - - -1.086127
+ - 0.0
+ - 0.677194
+ - - 1.847024
+ - -0.0
+ - 0.081714
+ - - -1.847024
+ - 0.0
+ - 0.081714
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -146.27439072565977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086785
+ - 0.0
+ - 0.680897
+ - - 0.0
+ - 0.0
+ - -0.10367
+ - - 0.0
+ - 0.0
+ - -1.306903
+ - - -1.086785
+ - 0.0
+ - 0.680897
+ - - 1.845953
+ - 0.0
+ - 0.083495
+ - - -1.845953
+ - 0.0
+ - 0.083495
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -147.07888595851435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.08393
+ - 0.0
+ - 0.673925
+ - - 0.0
+ - -0.0
+ - -0.099186
+ - - 0.0
+ - 0.0
+ - -1.297145
+ - - -1.08393
+ - -0.0
+ - 0.673925
+ - - 1.847908
+ - 0.0
+ - 0.083346
+ - - -1.847908
+ - -0.0
+ - 0.083346
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -139.08834143178888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.08243
+ - -0.0
+ - 0.676326
+ - - 0.0
+ - -0.0
+ - -0.097711
+ - - 0.0
+ - 0.0
+ - -1.297934
+ - - -1.08243
+ - -0.0
+ - 0.676326
+ - - 1.841183
+ - -0.0
+ - 0.080602
+ - - -1.841183
+ - -0.0
+ - 0.080602
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -128.1755767630725
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.092286
+ - -0.0
+ - 0.68664
+ - - -0.0
+ - -0.0
+ - -0.105691
+ - - -0.0
+ - 0.0
+ - -1.316831
+ - - -1.092286
+ - -0.0
+ - 0.68664
+ - - 1.857194
+ - 0.0
+ - 0.083727
+ - - -1.857194
+ - -0.0
+ - 0.083727
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.05032881317484
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086126738
+ - -0.0
+ - 0.6771937554
+ - - 0.0
+ - 0.0
+ - -0.0991542633
+ - - 0.0
+ - 0.0
+ - -1.3004492162
+ - - -1.086126738
+ - 0.0
+ - 0.6771937554
+ - - 1.8470236196
+ - -0.0
+ - 0.0817136218
+ - - -1.8470236196
+ - 0.0
+ - 0.0817136218
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -140.1306034759728
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.082917
+ - 0.0
+ - 0.673697
+ - - 0.0
+ - -0.0
+ - -0.099123
+ - - 0.0
+ - 0.0
+ - -1.298811
+ - - -1.082917
+ - -0.0
+ - 0.673697
+ - - 1.843821
+ - 0.0
+ - 0.084376
+ - - -1.843821
+ - -0.0
+ - 0.084376
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Carbonoxidesulfide.yml b/input/reference_sets/main/Carbonoxidesulfide.yml
index c58369abbb..bd155250e8 100644
--- a/input/reference_sets/main/Carbonoxidesulfide.yml
+++ b/input/reference_sets/main/Carbonoxidesulfide.yml
@@ -62,6 +62,35 @@ calculated_data:
- O
- C
- S
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.89717643912151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.680042
+ - - 0.0
+ - 0.0
+ - -0.524587
+ - - 0.0
+ - 0.0
+ - 1.037586
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +120,325 @@ calculated_data:
- O
- C
- S
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.130595563939938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.687356
+ - - 0.0
+ - 0.0
+ - -0.522064
+ - - 0.0
+ - 0.0
+ - 1.042377
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.66337393777943
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.691582
+ - - 0.0
+ - 0.0
+ - -0.522276
+ - - 0.0
+ - 0.0
+ - 1.046815
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.105432108252312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.673924
+ - - 0.0
+ - 0.0
+ - -0.524851
+ - - 0.0
+ - 0.0
+ - 1.031733
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.245576560823395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.682504
+ - - 0.0
+ - 0.0
+ - -0.526305
+ - - 0.0
+ - 0.0
+ - 1.041767
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.17497826390645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.676917
+ - - 0.0
+ - -0.0
+ - -0.525735
+ - - 0.0
+ - 0.0
+ - 1.035609
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.365377575732964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.676917
+ - - 0.0
+ - -0.0
+ - -0.525735
+ - - 0.0
+ - 0.0
+ - 1.035609
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.762940589321225
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.676917
+ - - 0.0
+ - -0.0
+ - -0.525735
+ - - 0.0
+ - 0.0
+ - 1.035609
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.72450936632624
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.683122
+ - - 0.0
+ - 0.0
+ - -0.525474
+ - - 0.0
+ - 0.0
+ - 1.041554
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.13455658371725
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.674456
+ - - 0.0
+ - 0.0
+ - -0.52657
+ - - 0.0
+ - 0.0
+ - 1.033983
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.25666728469565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.676446
+ - - 0.0
+ - 0.0
+ - -0.5241
+ - - 0.0
+ - 0.0
+ - 1.033504
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.43747853464765
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - -1.688426
+ - - -0.0
+ - 0.0
+ - -0.522333
+ - - -0.0
+ - 0.0
+ - 1.043716
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +468,64 @@ calculated_data:
- O
- C
- S
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.77816340612585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 6.4e-09
+ - -1.6769167162
+ - - 0.0
+ - -1.49e-08
+ - -0.5257349885
+ - - 0.0
+ - 2.4e-09
+ - 1.0356089788
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.569749007420562
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.675178
+ - - 0.0
+ - 0.0
+ - -0.525485
+ - - 0.0
+ - 0.0
+ - 1.03362
+ isotopes:
+ - 16
+ - 12
+ - 32
+ symbols:
+ - O
+ - C
+ - S
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chlorine fluoride.yml b/input/reference_sets/main/Chlorine fluoride.yml
index 194d22b15f..0b4dafc14c 100644
--- a/input/reference_sets/main/Chlorine fluoride.yml
+++ b/input/reference_sets/main/Chlorine fluoride.yml
@@ -9,7 +9,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -13.964591912435631
+ value: -13.964591912435623
class: ThermoData
xyz_dict:
coords:
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- Cl
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.20058622883935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.568556
+ - - 0.0
+ - 0.0
+ - -1.068371
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.686304242803002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.570563
+ - - 0.0
+ - 0.0
+ - -1.070379
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- Cl
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.314810794063487
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.574398
+ - - 0.0
+ - 0.0
+ - -1.074214
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.235260545781344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.577861
+ - - 0.0
+ - 0.0
+ - -1.077676
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.613160684734092
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.562632
+ - - 0.0
+ - 0.0
+ - -1.062447
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.289888254986035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.590631
+ - - 0.0
+ - 0.0
+ - -1.090447
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.993366211207416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.562293
+ - - 0.0
+ - 0.0
+ - -1.062109
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.909069279576975
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.562293
+ - - 0.0
+ - 0.0
+ - -1.062109
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.675032396953544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.562293
+ - - 0.0
+ - 0.0
+ - -1.062109
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.032157837358161
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.571469
+ - - 0.0
+ - 0.0
+ - -1.071285
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.452913516367696
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.557066
+ - - 0.0
+ - 0.0
+ - -1.056881
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.014291319588347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.559936
+ - - 0.0
+ - 0.0
+ - -1.059751
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.639513276812002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.575875
+ - - 0.0
+ - 0.0
+ - -1.075691
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- Cl
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.895866670349756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5622927484
+ - - 0.0
+ - 0.0
+ - -1.0621085248
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.258234490467574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.560538
+ - - 0.0
+ - 0.0
+ - -1.060354
+ isotopes:
+ - 35
+ - 19
+ symbols:
+ - Cl
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chlorine monoxide.yml b/input/reference_sets/main/Chlorine monoxide.yml
index 95ecd9df91..b55c76dde5 100644
--- a/input/reference_sets/main/Chlorine monoxide.yml
+++ b/input/reference_sets/main/Chlorine monoxide.yml
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- Cl
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.706563026480755
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.504272
+ - - 0.0
+ - 0.0
+ - -1.067041
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.227224448367
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.508487
+ - - 0.0
+ - 0.0
+ - -1.071257
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,270 @@ calculated_data:
symbols:
- Cl
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.327246988596666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.509564
+ - - 0.0
+ - 0.0
+ - -1.072334
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.370920340914044
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.512504
+ - - 0.0
+ - 0.0
+ - -1.075274
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.149297584813723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.50089
+ - - 0.0
+ - 0.0
+ - -1.06366
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.136509385357506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.51522
+ - - 0.0
+ - 0.0
+ - -1.094843
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.861930096381457
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.50024
+ - - 0.0
+ - 0.0
+ - -1.06301
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.510434851616008
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.50024
+ - - 0.0
+ - 0.0
+ - -1.06301
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.632573252108667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.50024
+ - - 0.0
+ - 0.0
+ - -1.06301
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.103446735568365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.514936
+ - - 0.0
+ - 0.0
+ - -1.077706
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.54172139356705
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.498132
+ - - 0.0
+ - 0.0
+ - -1.060902
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.450493099155356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.499503
+ - - 0.0
+ - 0.0
+ - -1.062273
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.068583716281804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.513879
+ - - 0.0
+ - 0.0
+ - -1.076649
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +412,54 @@ calculated_data:
symbols:
- Cl
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.110230222112264
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5002397687
+ - - 0.0
+ - 0.0
+ - -1.0630095085
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.358780692997616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.498795
+ - - 0.0
+ - 0.0
+ - -1.061565
+ isotopes:
+ - 35
+ - 16
+ symbols:
+ - Cl
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloro hypochlorite.yml b/input/reference_sets/main/Chloro hypochlorite.yml
index aadce322a7..bd38a72e01 100644
--- a/input/reference_sets/main/Chloro hypochlorite.yml
+++ b/input/reference_sets/main/Chloro hypochlorite.yml
@@ -62,6 +62,64 @@ calculated_data:
- Cl
- O
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.033140753929164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.411998
+ - 0.0
+ - 0.184129
+ - - -0.0
+ - 0.0
+ - -0.773236
+ - - -1.411998
+ - -0.0
+ - 0.184129
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.07249393494675
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.421243
+ - 0.0
+ - 0.18056
+ - - -0.0
+ - 0.0
+ - -0.766097
+ - - -1.421243
+ - -0.0
+ - 0.18056
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- Cl
- O
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.877184008735664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.437874
+ - 0.0
+ - 0.181162
+ - - -0.0
+ - 0.0
+ - -0.767301
+ - - -1.437874
+ - -0.0
+ - 0.181162
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.371578626835447
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.439345
+ - 0.0
+ - 0.182903
+ - - -0.0
+ - 0.0
+ - -0.770784
+ - - -1.439345
+ - -0.0
+ - 0.182903
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.470595121273075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.400996
+ - 0.0
+ - 0.17776
+ - - 0.0
+ - 0.0
+ - -0.760498
+ - - -1.400996
+ - -0.0
+ - 0.17776
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.190255845096416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.443539
+ - 0.0
+ - 0.18743
+ - - 0.0
+ - 0.0
+ - -0.779838
+ - - -1.443539
+ - -0.0
+ - 0.18743
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.2568410252893
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394912
+ - -0.0
+ - 0.179991
+ - - 0.0
+ - 0.0
+ - -0.764959
+ - - -1.394912
+ - 0.0
+ - 0.179991
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.98846983639697
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394912
+ - -0.0
+ - 0.179991
+ - - 0.0
+ - 0.0
+ - -0.764959
+ - - -1.394912
+ - 0.0
+ - 0.179991
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.994453536201025
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.394912
+ - -0.0
+ - 0.179991
+ - - 0.0
+ - 0.0
+ - -0.764959
+ - - -1.394912
+ - 0.0
+ - 0.179991
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.477351317320228
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.425348
+ - 0.0
+ - 0.182415
+ - - 0.0
+ - 0.0
+ - -0.769808
+ - - -1.425348
+ - 0.0
+ - 0.182415
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.77872921653046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.390857
+ - 0.0
+ - 0.176966
+ - - -0.0
+ - 0.0
+ - -0.758909
+ - - -1.390857
+ - -0.0
+ - 0.176966
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.570328106556023
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.399022
+ - 0.0
+ - 0.176833
+ - - 0.0
+ - 0.0
+ - -0.758643
+ - - -1.399022
+ - -0.0
+ - 0.176833
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.047308165724031
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.435415
+ - 0.0
+ - 0.183561
+ - - -0.0
+ - 0.0
+ - -0.772099
+ - - -1.435415
+ - -0.0
+ - 0.183561
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- Cl
- O
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.88519327046958
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3949116087
+ - -0.0
+ - 0.1799906798
+ - - 0.0
+ - 0.0
+ - -0.764959103
+ - - -1.3949116087
+ - 0.0
+ - 0.1799906798
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.69525111915113
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.398394
+ - 0.0
+ - 0.177305
+ - - 0.0
+ - 0.0
+ - -0.759587
+ - - -1.398394
+ - -0.0
+ - 0.177305
+ isotopes:
+ - 35
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloroacetylene.yml b/input/reference_sets/main/Chloroacetylene.yml
index d9c9d6a3a8..71a8e912d9 100644
--- a/input/reference_sets/main/Chloroacetylene.yml
+++ b/input/reference_sets/main/Chloroacetylene.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.24934420966741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.814146
+ - - -0.0
+ - 0.0
+ - 0.610091
+ - - -0.0
+ - 0.0
+ - -1.025774
+ - - -0.0
+ - 0.0
+ - 2.875444
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.11692693278675
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.811318
+ - - -0.0
+ - 0.0
+ - 0.612731
+ - - -0.0
+ - 0.0
+ - -1.023253
+ - - -0.0
+ - 0.0
+ - 2.87311
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.75315486562575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.813886
+ - - -0.0
+ - 0.0
+ - 0.6061
+ - - -0.0
+ - 0.0
+ - -1.025699
+ - - -0.0
+ - 0.0
+ - 2.879619
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.47552279161607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.815744
+ - - -0.0
+ - 0.0
+ - 0.604477
+ - - -0.0
+ - 0.0
+ - -1.032246
+ - - -0.0
+ - 0.0
+ - 2.885931
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.096573844831724
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.807839
+ - - -0.0
+ - 0.0
+ - 0.615186
+ - - -0.0
+ - 0.0
+ - -1.019347
+ - - -0.0
+ - 0.0
+ - 2.870228
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.00172494663609
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.814397
+ - - -0.0
+ - -0.0
+ - 0.614596
+ - - -0.0
+ - -0.0
+ - -1.031427
+ - - -0.0
+ - -0.0
+ - 2.87634
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.578822334545116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -2.2e-05
+ - 1.810727
+ - - -0.0
+ - 9.0e-05
+ - 0.614947
+ - - 0.0
+ - -1.6e-05
+ - -1.025142
+ - - -0.0
+ - -0.000133
+ - 2.873375
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.28814946887595
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -2.2e-05
+ - 1.810727
+ - - -0.0
+ - 9.0e-05
+ - 0.614947
+ - - 0.0
+ - -1.6e-05
+ - -1.025142
+ - - -0.0
+ - -0.000133
+ - 2.873375
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.684098036697186
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -2.2e-05
+ - 1.810727
+ - - -0.0
+ - 9.0e-05
+ - 0.614947
+ - - 0.0
+ - -1.6e-05
+ - -1.025142
+ - - -0.0
+ - -0.000133
+ - 2.873375
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.33029584327663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.814584
+ - - 0.0
+ - 0.0
+ - 0.613745
+ - - 0.0
+ - 0.0
+ - -1.026243
+ - - 0.0
+ - 0.0
+ - 2.876151
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.00329983505826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.809213
+ - - -0.0
+ - 0.0
+ - 0.613695
+ - - -0.0
+ - 0.0
+ - -1.021363
+ - - -0.0
+ - 0.0
+ - 2.872361
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.00649185371533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.808556
+ - - -0.0
+ - 0.0
+ - 0.609701
+ - - -0.0
+ - 0.0
+ - -1.016748
+ - - -0.0
+ - 0.0
+ - 2.872397
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.84651495752713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.81414
+ - - -0.0
+ - 0.0
+ - 0.607612
+ - - -0.0
+ - 0.0
+ - -1.027124
+ - - -0.0
+ - 0.0
+ - 2.879279
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.64856461847713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 6.84e-08
+ - -2.15332e-05
+ - 1.8107265552
+ - - -3.51e-08
+ - 8.99441e-05
+ - 0.6149468496
+ - - 6.0e-10
+ - -1.63184e-05
+ - -1.0251420719
+ - - -2.101e-07
+ - -0.0001330519
+ - 2.8733747944
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.19087592955832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.808953
+ - - -0.0
+ - 0.0
+ - 0.613508
+ - - -0.0
+ - 0.0
+ - -1.020642
+ - - -0.0
+ - 0.0
+ - 2.872087
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chlorobenzene.yml b/input/reference_sets/main/Chlorobenzene.yml
index 53556a9bc2..74a7f91927 100644
--- a/input/reference_sets/main/Chlorobenzene.yml
+++ b/input/reference_sets/main/Chlorobenzene.yml
@@ -13,6 +13,894 @@ adjacency_list: |
11 H u0 p0 c0 {6,S}
12 H u0 p0 c0 {7,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.73110273652727
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.271256
+ - -0.003847
+ - 7.4e-05
+ - - 1.575595
+ - 1.200811
+ - 3.6e-05
+ - - 0.184886
+ - 1.211581
+ - -3.9e-05
+ - - -0.499095
+ - 0.002161
+ - -7.6e-05
+ - - 0.179634
+ - -1.210214
+ - -4.0e-05
+ - - 1.570376
+ - -1.205476
+ - 3.5e-05
+ - - -2.240065
+ - 0.005937
+ - -0.00017
+ - - 3.352575
+ - -0.006192
+ - 0.000132
+ - - 2.113405
+ - 2.139396
+ - 6.6e-05
+ - - -0.36523
+ - 2.141581
+ - -6.8e-05
+ - - -0.374511
+ - -2.137819
+ - -7.0e-05
+ - - 2.104111
+ - -2.146385
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.08477874147152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.270397
+ - -0.003845
+ - 7.4e-05
+ - - 1.575279
+ - 1.199755
+ - 3.6e-05
+ - - 0.185784
+ - 1.21043
+ - -3.9e-05
+ - - -0.497761
+ - 0.002158
+ - -7.6e-05
+ - - 0.180537
+ - -1.209067
+ - -4.0e-05
+ - - 1.570065
+ - -1.204419
+ - 3.5e-05
+ - - -2.243765
+ - 0.005945
+ - -0.00017
+ - - 3.352215
+ - -0.006191
+ - 0.000132
+ - - 2.113259
+ - 2.138803
+ - 6.6e-05
+ - - -0.363881
+ - 2.140957
+ - -6.8e-05
+ - - -0.373159
+ - -2.137201
+ - -7.0e-05
+ - - 2.103967
+ - -2.145791
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.36740243038314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.276136
+ - -0.003858
+ - 7.4e-05
+ - - 1.57793
+ - 1.20451
+ - 3.6e-05
+ - - 0.18281
+ - 1.216099
+ - -3.9e-05
+ - - -0.503994
+ - 0.002172
+ - -7.6e-05
+ - - 0.177539
+ - -1.214723
+ - -4.0e-05
+ - - 1.572695
+ - -1.209185
+ - 3.6e-05
+ - - -2.251439
+ - 0.005961
+ - -0.000171
+ - - 3.362573
+ - -0.006214
+ - 0.000133
+ - - 2.11773
+ - 2.147944
+ - 6.6e-05
+ - - -0.369062
+ - 2.150514
+ - -6.9e-05
+ - - -0.378381
+ - -2.146736
+ - -7.0e-05
+ - - 2.108399
+ - -2.154952
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.10237583109387
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.27875
+ - -0.003863
+ - 7.4e-05
+ - - 1.579215
+ - 1.206783
+ - 3.6e-05
+ - - 0.181348
+ - 1.218338
+ - -3.9e-05
+ - - -0.506624
+ - 0.002177
+ - -7.7e-05
+ - - 0.176066
+ - -1.216956
+ - -4.0e-05
+ - - 1.573971
+ - -1.211463
+ - 3.6e-05
+ - - -2.257226
+ - 0.005974
+ - -0.000171
+ - - 3.370001
+ - -0.00623
+ - 0.000133
+ - - 2.121284
+ - 2.154479
+ - 6.6e-05
+ - - -0.373212
+ - 2.157064
+ - -6.9e-05
+ - - -0.38256
+ - -2.153268
+ - -7.0e-05
+ - - 2.111924
+ - -2.161502
+ - 6.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.287762572362997
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.26474
+ - -0.003833
+ - 7.3e-05
+ - - 1.572214
+ - 1.195372
+ - 3.6e-05
+ - - 0.187753
+ - 1.205238
+ - -3.9e-05
+ - - -0.494273
+ - 0.002151
+ - -7.6e-05
+ - - 0.182528
+ - -1.203884
+ - -4.0e-05
+ - - 1.567019
+ - -1.200022
+ - 3.5e-05
+ - - -2.231315
+ - 0.005918
+ - -0.00017
+ - - 3.346289
+ - -0.006178
+ - 0.000132
+ - - 2.110262
+ - 2.133987
+ - 6.5e-05
+ - - -0.362008
+ - 2.135602
+ - -6.8e-05
+ - - -0.371263
+ - -2.131854
+ - -7.0e-05
+ - - 2.100991
+ - -2.140962
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.6456268180193785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.274101
+ - -0.003853
+ - 7.4e-05
+ - - 1.577695
+ - 1.202936
+ - 3.6e-05
+ - - 0.184529
+ - 1.214129
+ - -3.9e-05
+ - - -0.498402
+ - 0.002159
+ - -7.6e-05
+ - - 0.179266
+ - -1.212761
+ - -4.0e-05
+ - - 1.572467
+ - -1.207611
+ - 3.6e-05
+ - - -2.256779
+ - 0.005973
+ - -0.000171
+ - - 3.35771
+ - -0.006203
+ - 0.000132
+ - - 2.116507
+ - 2.143508
+ - 6.6e-05
+ - - -0.366026
+ - 2.145931
+ - -6.9e-05
+ - - -0.375326
+ - -2.142166
+ - -7.0e-05
+ - - 2.107195
+ - -2.15051
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.58787173611434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.266812
+ - -0.003838
+ - 7.4e-05
+ - - 1.573516
+ - 1.197963
+ - 3.5e-05
+ - - 0.186508
+ - 1.20823
+ - -4.2e-05
+ - - -0.494253
+ - 0.00217
+ - -7.8e-05
+ - - 0.181271
+ - -1.206829
+ - -4.2e-05
+ - - 1.5683
+ - -1.202619
+ - 3.4e-05
+ - - -2.233782
+ - 0.005856
+ - -0.000162
+ - - 3.348819
+ - -0.006196
+ - 0.000137
+ - - 2.112503
+ - 2.136356
+ - 6.6e-05
+ - - -0.365348
+ - 2.137499
+ - -7.1e-05
+ - - -0.374596
+ - -2.133701
+ - -7.2e-05
+ - - 2.103185
+ - -2.143358
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.524442693388895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.266812
+ - -0.003838
+ - 7.4e-05
+ - - 1.573516
+ - 1.197963
+ - 3.5e-05
+ - - 0.186508
+ - 1.20823
+ - -4.2e-05
+ - - -0.494253
+ - 0.00217
+ - -7.8e-05
+ - - 0.181271
+ - -1.206829
+ - -4.2e-05
+ - - 1.5683
+ - -1.202619
+ - 3.4e-05
+ - - -2.233782
+ - 0.005856
+ - -0.000162
+ - - 3.348819
+ - -0.006196
+ - 0.000137
+ - - 2.112503
+ - 2.136356
+ - 6.6e-05
+ - - -0.365348
+ - 2.137499
+ - -7.1e-05
+ - - -0.374596
+ - -2.133701
+ - -7.2e-05
+ - - 2.103185
+ - -2.143358
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.099848529035356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.273243
+ - -0.003851
+ - 7.4e-05
+ - - 1.577186
+ - 1.202757
+ - 3.6e-05
+ - - 0.184371
+ - 1.214465
+ - -3.9e-05
+ - - -0.498125
+ - 0.002159
+ - -7.6e-05
+ - - 0.179106
+ - -1.213096
+ - -4.0e-05
+ - - 1.571959
+ - -1.207429
+ - 3.6e-05
+ - - -2.251463
+ - 0.005961
+ - -0.000171
+ - - 3.357645
+ - -0.006203
+ - 0.000132
+ - - 2.116451
+ - 2.144056
+ - 6.6e-05
+ - - -0.367636
+ - 2.146291
+ - -6.9e-05
+ - - -0.376937
+ - -2.142519
+ - -7.0e-05
+ - - 2.107136
+ - -2.151058
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.573954804416097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.267494
+ - -0.003839
+ - 7.4e-05
+ - - 1.573746
+ - 1.198229
+ - 3.6e-05
+ - - 0.186343
+ - 1.208606
+ - -3.9e-05
+ - - -0.495951
+ - 0.002154
+ - -7.6e-05
+ - - 0.181104
+ - -1.207246
+ - -4.0e-05
+ - - 1.568539
+ - -1.202886
+ - 3.5e-05
+ - - -2.23042
+ - 0.005916
+ - -0.000169
+ - - 3.349232
+ - -0.006185
+ - 0.000132
+ - - 2.111923
+ - 2.137034
+ - 6.6e-05
+ - - -0.366224
+ - 2.137913
+ - -6.9e-05
+ - - -0.375489
+ - -2.134147
+ - -7.1e-05
+ - - 2.102639
+ - -2.144016
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.057131954090693
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.266685
+ - -0.003837
+ - 7.3e-05
+ - - 1.572717
+ - 1.19726
+ - 3.6e-05
+ - - 0.186079
+ - 1.207959
+ - -3.9e-05
+ - - -0.49766
+ - 0.002158
+ - -7.6e-05
+ - - 0.180842
+ - -1.206598
+ - -4.0e-05
+ - - 1.567514
+ - -1.201913
+ - 3.5e-05
+ - - -2.227371
+ - 0.005909
+ - -0.00017
+ - - 3.35022
+ - -0.006187
+ - 0.000132
+ - - 2.111397
+ - 2.137918
+ - 6.5e-05
+ - - -0.365161
+ - 2.139824
+ - -6.9e-05
+ - - -0.374434
+ - -2.136062
+ - -7.0e-05
+ - - 2.102109
+ - -2.144898
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.58391973146395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.275996
+ - -0.003857
+ - 7.4e-05
+ - - 1.578067
+ - 1.204688
+ - 3.6e-05
+ - - 0.182759
+ - 1.216556
+ - -3.9e-05
+ - - -0.502118
+ - 0.002168
+ - -7.6e-05
+ - - 0.177485
+ - -1.21518
+ - -4.0e-05
+ - - 1.572832
+ - -1.209364
+ - 3.6e-05
+ - - -2.252412
+ - 0.005963
+ - -0.000171
+ - - 3.362104
+ - -0.006213
+ - 0.000133
+ - - 2.11778
+ - 2.147749
+ - 6.6e-05
+ - - -0.369343
+ - 2.150475
+ - -6.9e-05
+ - - -0.378662
+ - -2.146695
+ - -7.0e-05
+ - - 2.108449
+ - -2.154757
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -87,6 +975,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.31380642990715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2668120981
+ - -0.0038379933
+ - 7.42466e-05
+ - - 1.5735160414
+ - 1.19796298
+ - 3.51527e-05
+ - - 0.1865081457
+ - 1.2082302858
+ - -4.17133e-05
+ - - -0.4942528507
+ - 0.0021701918
+ - -7.76064e-05
+ - - 0.1812711562
+ - -1.2068285873
+ - -4.23828e-05
+ - - 1.568300193
+ - -1.2026192372
+ - 3.42245e-05
+ - - -2.2337820036
+ - 0.0058557515
+ - -0.0001622425
+ - - 3.3488189883
+ - -0.0061956132
+ - 0.0001367427
+ - - 2.1125029686
+ - 2.1363555048
+ - 6.59694e-05
+ - - -0.3653477336
+ - 2.137498558
+ - -7.09971e-05
+ - - -0.3745955276
+ - -2.1337011167
+ - -7.21465e-05
+ - - 2.1031852515
+ - -2.1433582048
+ - 6.40521e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.326859505728404
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.26625
+ - -0.003836
+ - 7.3e-05
+ - - 1.57299
+ - 1.196997
+ - 3.6e-05
+ - - 0.186741
+ - 1.207521
+ - -3.9e-05
+ - - -0.4958
+ - 0.002154
+ - -7.6e-05
+ - - 0.181506
+ - -1.206162
+ - -4.0e-05
+ - - 1.567789
+ - -1.201651
+ - 3.5e-05
+ - - -2.234363
+ - 0.005924
+ - -0.00017
+ - - 3.348393
+ - -0.006183
+ - 0.000132
+ - - 2.111317
+ - 2.136142
+ - 6.5e-05
+ - - -0.362326
+ - 2.139148
+ - -6.8e-05
+ - - -0.371596
+ - -2.135399
+ - -7.0e-05
+ - - 2.102037
+ - -2.143122
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/Chlorodioxidanyl.yml b/input/reference_sets/main/Chlorodioxidanyl.yml
index 77d5662815..5502136220 100644
--- a/input/reference_sets/main/Chlorodioxidanyl.yml
+++ b/input/reference_sets/main/Chlorodioxidanyl.yml
@@ -5,6 +5,64 @@ adjacency_list: |
2 O u0 p2 c0 {1,S} {3,S}
3 O u1 p2 c0 {2,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.12710395905961
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.218598
+ - -0.050344
+ - 0.0
+ - - -0.957189
+ - 0.514255
+ - -0.0
+ - - -1.749871
+ - -0.396284
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.96679180610765
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.225659
+ - -0.051193
+ - 0.0
+ - - -0.965799
+ - 0.510471
+ - -0.0
+ - - -1.74832
+ - -0.391651
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -34,6 +92,296 @@ calculated_data:
- Cl
- O
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.74417680814723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.093738
+ - -0.039903
+ - 0.0
+ - - -0.885795
+ - 0.502522
+ - -0.0
+ - - -1.696403
+ - -0.394992
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.893225456710168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.063874
+ - -0.03699
+ - 0.0
+ - - -0.864277
+ - 0.503589
+ - -0.0
+ - - -1.688058
+ - -0.398972
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.680486804363664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.353467
+ - -0.058884
+ - 0.0
+ - - -1.03498
+ - 0.515107
+ - -0.0
+ - - -1.806948
+ - -0.388596
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.96241091104523
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.272911
+ - -0.052856
+ - 0.0
+ - - -0.990693
+ - 0.512069
+ - -0.0
+ - - -1.770679
+ - -0.391587
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.245476732285375
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.323076
+ - -0.060113
+ - 0.0
+ - - -1.023836
+ - 0.520209
+ - -0.0
+ - - -1.787701
+ - -0.39247
+ - 0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.945846922989684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.323076
+ - -0.060113
+ - 0.0
+ - - -1.023836
+ - 0.520209
+ - -0.0
+ - - -1.787701
+ - -0.39247
+ - 0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.864363152657806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.201457
+ - -0.050134
+ - 0.0
+ - - -0.953969
+ - 0.511687
+ - 0.0
+ - - -1.735949
+ - -0.393926
+ - 0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.86899376824302
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.408214
+ - -0.081276
+ - 0.0
+ - - -1.101328
+ - 0.550335
+ - -0.0
+ - - -1.795346
+ - -0.401432
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.66302661588605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.223984
+ - -0.050448
+ - 0.0
+ - - -0.969946
+ - 0.507091
+ - -0.0
+ - - -1.742499
+ - -0.389016
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.71971651312587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.060342
+ - -0.037566
+ - 0.0
+ - - -0.86318
+ - 0.504074
+ - -0.0
+ - - -1.685623
+ - -0.398882
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -63,6 +411,64 @@ calculated_data:
- Cl
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.88929471902992
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3230764104
+ - -0.0601127549
+ - 0.0
+ - - -1.0238363263
+ - 0.5202092348
+ - -0.0
+ - - -1.7877010458
+ - -0.3924696305
+ - 0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.92041067472714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.350569
+ - -0.05928
+ - 0.0
+ - - -1.034905
+ - 0.515523
+ - -0.0
+ - - -1.804125
+ - -0.388616
+ - -0.0
+ isotopes:
+ - 35
+ - 16
+ - 16
+ symbols:
+ - Cl
+ - O
+ - O
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/Chloroethane.yml b/input/reference_sets/main/Chloroethane.yml
index 423f7d9bfc..6775a30d72 100644
--- a/input/reference_sets/main/Chloroethane.yml
+++ b/input/reference_sets/main/Chloroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.07625604516186
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.600486
+ - -0.356124
+ - -8.0e-06
+ - - 0.478801
+ - 0.657965
+ - -3.3e-05
+ - - -1.131535
+ - -0.150307
+ - 0.000285
+ - - 2.561019
+ - 0.163154
+ - -0.000204
+ - - 1.551365
+ - -0.990495
+ - 0.883538
+ - - 1.551155
+ - -0.990771
+ - -0.883345
+ - - 0.500593
+ - 1.288694
+ - 0.88457
+ - - 0.500382
+ - 1.288417
+ - -0.884838
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.447167749849832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.601582
+ - -0.35657
+ - -9.0e-06
+ - - 0.480314
+ - 0.658137
+ - -3.5e-05
+ - - -1.140574
+ - -0.148656
+ - 0.000305
+ - - 2.563109
+ - 0.163684
+ - -0.000182
+ - - 1.554182
+ - -0.991894
+ - 0.884311
+ - - 1.553997
+ - -0.992146
+ - -0.884137
+ - - 0.499941
+ - 1.289137
+ - 0.885333
+ - - 0.499715
+ - 1.28884
+ - -0.88562
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.702254795457147
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.603322
+ - -0.358668
+ - -8.0e-06
+ - - 0.479383
+ - 0.658794
+ - -3.6e-05
+ - - -1.147796
+ - -0.147671
+ - 0.000309
+ - - 2.567705
+ - 0.165788
+ - -0.00018
+ - - 1.556611
+ - -0.995969
+ - 0.888031
+ - - 1.55643
+ - -0.996218
+ - -0.88786
+ - - 0.49842
+ - 1.292389
+ - 0.889484
+ - - 0.498191
+ - 1.292088
+ - -0.889774
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.649701299045816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.603034
+ - -0.359011
+ - -8.0e-06
+ - - 0.47771
+ - 0.658492
+ - -3.3e-05
+ - - -1.149806
+ - -0.147072
+ - 0.000287
+ - - 2.572064
+ - 0.166212
+ - -0.000206
+ - - 1.558387
+ - -0.999785
+ - 0.891323
+ - - 1.558175
+ - -1.000064
+ - -0.891127
+ - - 0.496458
+ - 1.29602
+ - 0.892595
+ - - 0.496245
+ - 1.295741
+ - -0.892865
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.9567869116473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.598458
+ - -0.35474
+ - -8.0e-06
+ - - 0.477283
+ - 0.654539
+ - -3.2e-05
+ - - -1.128226
+ - -0.146903
+ - 0.000283
+ - - 2.558642
+ - 0.165048
+ - -0.000206
+ - - 1.551715
+ - -0.990185
+ - 0.883252
+ - - 1.551502
+ - -0.990463
+ - -0.883057
+ - - 0.501552
+ - 1.286755
+ - 0.883465
+ - - 0.501342
+ - 1.28648
+ - -0.883732
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.439886550326587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.604262
+ - -0.358697
+ - -8.0e-06
+ - - 0.481476
+ - 0.660134
+ - -3.4e-05
+ - - -1.153226
+ - -0.145464
+ - 0.000288
+ - - 2.56669
+ - 0.163624
+ - -0.000202
+ - - 1.55929
+ - -0.994982
+ - 0.885656
+ - - 1.559083
+ - -0.995257
+ - -0.885464
+ - - 0.497452
+ - 1.290727
+ - 0.887275
+ - - 0.49724
+ - 1.290448
+ - -0.887545
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.259087403593853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.599553
+ - -0.355585
+ - 3.0e-06
+ - - 0.477633
+ - 0.657245
+ - 4.0e-06
+ - - -1.124888
+ - -0.151177
+ - 0.0
+ - - 2.560207
+ - 0.163244
+ - -0.000505
+ - - 1.549714
+ - -0.990425
+ - 0.883698
+ - - 1.549122
+ - -0.991028
+ - -0.883224
+ - - 0.500463
+ - 1.289143
+ - 0.883974
+ - - 0.500462
+ - 1.289115
+ - -0.883984
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.05362832161809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.599553
+ - -0.355585
+ - 3.0e-06
+ - - 0.477633
+ - 0.657245
+ - 4.0e-06
+ - - -1.124888
+ - -0.151177
+ - 0.0
+ - - 2.560207
+ - 0.163244
+ - -0.000505
+ - - 1.549714
+ - -0.990425
+ - 0.883698
+ - - 1.549122
+ - -0.991028
+ - -0.883224
+ - - 0.500463
+ - 1.289143
+ - 0.883974
+ - - 0.500462
+ - 1.289115
+ - -0.883984
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.82115391845784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.599553
+ - -0.355585
+ - 3.0e-06
+ - - 0.477633
+ - 0.657245
+ - 4.0e-06
+ - - -1.124888
+ - -0.151177
+ - 0.0
+ - - 2.560207
+ - 0.163244
+ - -0.000505
+ - - 1.549714
+ - -0.990425
+ - 0.883698
+ - - 1.549122
+ - -0.991028
+ - -0.883224
+ - - 0.500463
+ - 1.289143
+ - 0.883974
+ - - 0.500462
+ - 1.289115
+ - -0.883984
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.27779298060171
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.603972
+ - -0.359113
+ - -8.0e-06
+ - - 0.478941
+ - 0.659456
+ - -3.6e-05
+ - - -1.148384
+ - -0.146609
+ - 0.00031
+ - - 2.567052
+ - 0.1643
+ - -0.000178
+ - - 1.558088
+ - -0.996279
+ - 0.886612
+ - - 1.557909
+ - -0.996526
+ - -0.886442
+ - - 0.497459
+ - 1.292802
+ - 0.887522
+ - - 0.49723
+ - 1.2925
+ - -0.887813
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.05365428991669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.599902
+ - -0.355087
+ - -9.0e-06
+ - - 0.477782
+ - 0.65777
+ - -3.2e-05
+ - - -1.119294
+ - -0.15304
+ - 0.000285
+ - - 2.561128
+ - 0.162077
+ - -0.000205
+ - - 1.546503
+ - -0.989228
+ - 0.883852
+ - - 1.546291
+ - -0.989505
+ - -0.883658
+ - - 0.500083
+ - 1.28891
+ - 0.884681
+ - - 0.499871
+ - 1.288634
+ - -0.884947
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.50603325571429
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.597087
+ - -0.354888
+ - -8.0e-06
+ - - 0.476549
+ - 0.652991
+ - -3.2e-05
+ - - -1.123401
+ - -0.145637
+ - 0.000285
+ - - 2.558794
+ - 0.166429
+ - -0.000205
+ - - 1.55122
+ - -0.991525
+ - 0.884778
+ - - 1.551008
+ - -0.991802
+ - -0.884584
+ - - 0.50061
+ - 1.28762
+ - 0.885148
+ - - 0.500399
+ - 1.287343
+ - -0.885417
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.419668615969517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.604372
+ - -0.359677
+ - -9.0e-06
+ - - 0.481425
+ - 0.661702
+ - -3.6e-05
+ - - -1.145636
+ - -0.148433
+ - 0.000307
+ - - 2.568843
+ - 0.163866
+ - -0.000182
+ - - 1.555734
+ - -0.995733
+ - 0.888105
+ - - 1.55555
+ - -0.995985
+ - -0.887931
+ - - 0.496103
+ - 1.292546
+ - 0.890064
+ - - 0.495875
+ - 1.292246
+ - -0.890352
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.064758007860164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.59955331
+ - -0.3555850321
+ - 3.1365e-06
+ - - 0.477633466
+ - 0.6572447006
+ - 3.5395e-06
+ - - -1.1248875305
+ - -0.1511768975
+ - 4.36e-08
+ - - 2.5602066307
+ - 0.1632436729
+ - -0.0005045688
+ - - 1.549713741
+ - -0.9904246328
+ - 0.8836975314
+ - - 1.5491218371
+ - -0.9910277271
+ - -0.8832239414
+ - - 0.5004629098
+ - 1.2891426876
+ - 0.8839741768
+ - - 0.5004622444
+ - 1.2891152461
+ - -0.8839839945
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.86215671562385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.599441
+ - -0.35651
+ - -8.0e-06
+ - - 0.476303
+ - 0.654565
+ - -3.2e-05
+ - - -1.131733
+ - -0.144435
+ - 0.000284
+ - - 2.558325
+ - 0.167017
+ - -0.000205
+ - - 1.553719
+ - -0.991531
+ - 0.884584
+ - - 1.553506
+ - -0.991809
+ - -0.884389
+ - - 0.501458
+ - 1.286756
+ - 0.884753
+ - - 0.501248
+ - 1.28648
+ - -0.885021
+ isotopes:
+ - 12
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloroform.yml b/input/reference_sets/main/Chloroform.yml
index 82c209ae34..714d95e198 100644
--- a/input/reference_sets/main/Chloroform.yml
+++ b/input/reference_sets/main/Chloroform.yml
@@ -84,6 +84,84 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.458270995304154
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000386
+ - -5.6e-05
+ - 0.457859
+ - - 1.665813
+ - -0.256172
+ - -0.083659
+ - - -1.054418
+ - -1.314438
+ - -0.082843
+ - - -0.610792
+ - 1.570465
+ - -0.082969
+ - - 0.000695
+ - -5.4e-05
+ - 1.539375
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.992485597324592
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000364
+ - -5.7e-05
+ - 0.457023
+ - - 1.672331
+ - -0.25716
+ - -0.083099
+ - - -1.058545
+ - -1.319572
+ - -0.08228
+ - - -0.613168
+ - 1.576597
+ - -0.082416
+ - - 0.000702
+ - -6.2e-05
+ - 1.538534
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,396 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.89975223193113
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000375
+ - -5.7e-05
+ - 0.454918
+ - - 1.679072
+ - -0.2582
+ - -0.083397
+ - - -1.062818
+ - -1.32492
+ - -0.082575
+ - - -0.615643
+ - 1.582987
+ - -0.082715
+ - - 0.000699
+ - -6.5e-05
+ - 1.541531
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.19770959242191
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.00036
+ - -4.0e-05
+ - 0.455654
+ - - 1.679759
+ - -0.258321
+ - -0.08563
+ - - -1.063237
+ - -1.325462
+ - -0.084801
+ - - -0.615897
+ - 1.583633
+ - -0.084936
+ - - 0.000699
+ - -6.4e-05
+ - 1.547475
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.36891311635632
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000365
+ - -5.2e-05
+ - 0.455636
+ - - 1.660069
+ - -0.255284
+ - -0.082045
+ - - -1.050775
+ - -1.30991
+ - -0.081227
+ - - -0.608675
+ - 1.565059
+ - -0.081366
+ - - 0.000701
+ - -6.6e-05
+ - 1.536763
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.244658980439503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000387
+ - -4.0e-05
+ - 0.457279
+ - - 1.679607
+ - -0.258307
+ - -0.083535
+ - - -1.063141
+ - -1.325333
+ - -0.082711
+ - - -0.615854
+ - 1.58348
+ - -0.082834
+ - - 0.000686
+ - -5.5e-05
+ - 1.539564
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.931414296552347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.001031
+ - -0.000749
+ - 0.459075
+ - - 1.658436
+ - -0.254744
+ - -0.084357
+ - - -1.050307
+ - -1.307646
+ - -0.084194
+ - - -0.608556
+ - 1.56264
+ - -0.084144
+ - - 0.001081
+ - 0.000245
+ - 1.541383
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.88911433908432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.001031
+ - -0.000749
+ - 0.459075
+ - - 1.658436
+ - -0.254744
+ - -0.084357
+ - - -1.050307
+ - -1.307646
+ - -0.084194
+ - - -0.608556
+ - 1.56264
+ - -0.084144
+ - - 0.001081
+ - 0.000245
+ - 1.541383
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.144559676972474
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.001031
+ - -0.000749
+ - 0.459075
+ - - 1.658436
+ - -0.254744
+ - -0.084357
+ - - -1.050307
+ - -1.307646
+ - -0.084194
+ - - -0.608556
+ - 1.56264
+ - -0.084144
+ - - 0.001081
+ - 0.000245
+ - 1.541383
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.407643160139923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000351
+ - -5.8e-05
+ - 0.457052
+ - - 1.677228
+ - -0.257923
+ - -0.084139
+ - - -1.061632
+ - -1.323464
+ - -0.083308
+ - - -0.614957
+ - 1.581243
+ - -0.083437
+ - - 0.000694
+ - -5.3e-05
+ - 1.541594
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.019712852256596
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000362
+ - -3.7e-05
+ - 0.453808
+ - - 1.656739
+ - -0.254782
+ - -0.081985
+ - - -1.04866
+ - -1.307281
+ - -0.081169
+ - - -0.607455
+ - 1.561907
+ - -0.081298
+ - - 0.000699
+ - -6.0e-05
+ - 1.538406
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.836515891725362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000354
+ - -7.9e-05
+ - 0.457772
+ - - 1.677341
+ - -0.257929
+ - -0.084725
+ - - -1.061714
+ - -1.323533
+ - -0.083904
+ - - -0.615004
+ - 1.58134
+ - -0.084039
+ - - 0.000708
+ - -5.4e-05
+ - 1.542658
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +630,84 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.404768317312655
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.001031249
+ - -0.0007485688
+ - 0.4590745316
+ - - 1.6584356545
+ - -0.2547437245
+ - -0.0843574687
+ - - -1.0503071738
+ - -1.3076461783
+ - -0.0841943646
+ - - -0.6085560383
+ - 1.5626397071
+ - -0.0841440781
+ - - 0.0010809841
+ - 0.0002447397
+ - 1.5413833034
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.325845029872028
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000334
+ - -4.2e-05
+ - 0.455952
+ - - 1.662303
+ - -0.255635
+ - -0.082821
+ - - -1.05216
+ - -1.311666
+ - -0.081976
+ - - -0.609479
+ - 1.567156
+ - -0.082117
+ - - 0.000686
+ - -6.7e-05
+ - 1.538723
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloroformyl.yml b/input/reference_sets/main/Chloroformyl.yml
index 3fb0d17945..98f41094f4 100644
--- a/input/reference_sets/main/Chloroformyl.yml
+++ b/input/reference_sets/main/Chloroformyl.yml
@@ -63,13 +63,71 @@ calculated_data:
- Cl
- C
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.383624240661679
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.030009
+ - -0.053358
+ - 0.0
+ - - -0.700175
+ - 0.443137
+ - -0.0
+ - - -1.655672
+ - -0.215288
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.0585959799533735
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.035706
+ - -0.054158
+ - 0.0
+ - - -0.705623
+ - 0.442542
+ - -0.0
+ - - -1.655921
+ - -0.213892
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 1.876166846005578
+ value: 1.8761668460055778
class: ThermoData
xyz_dict:
coords:
@@ -92,6 +150,325 @@ calculated_data:
- Cl
- C
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.6307761701500265
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.043769
+ - -0.053795
+ - 0.0
+ - - -0.704769
+ - 0.443496
+ - -0.0
+ - - -1.664839
+ - -0.215209
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.0980542723742115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.037037
+ - -0.052669
+ - 0.0
+ - - -0.698663
+ - 0.44345
+ - -0.0
+ - - -1.664212
+ - -0.21629
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.5701530938997212
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.019253
+ - -0.053362
+ - 0.0
+ - - -0.699428
+ - 0.441838
+ - -0.0
+ - - -1.645663
+ - -0.213985
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.245641712192831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.05973
+ - -0.058635
+ - 0.0
+ - - -0.721424
+ - 0.448183
+ - -0.0
+ - - -1.664144
+ - -0.215056
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.124534298069587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.022404
+ - -0.05577
+ - -0.0
+ - - -0.702534
+ - 0.447002
+ - 0.0
+ - - -1.645707
+ - -0.216741
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.0951390632693885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.022404
+ - -0.05577
+ - -0.0
+ - - -0.702534
+ - 0.447002
+ - 0.0
+ - - -1.645707
+ - -0.216741
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.4844159645614585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.022404
+ - -0.05577
+ - -0.0
+ - - -0.702534
+ - 0.447002
+ - 0.0
+ - - -1.645707
+ - -0.216741
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.7657886095432955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.046452
+ - -0.056417
+ - 0.0
+ - - -0.711316
+ - 0.446761
+ - 0.0
+ - - -1.660974
+ - -0.215853
+ - 0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.030593603932435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.022797
+ - -0.055953
+ - 0.0
+ - - -0.704515
+ - 0.446194
+ - -0.0
+ - - -1.644121
+ - -0.215749
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.3697360393693405
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.009266
+ - -0.050251
+ - 0.0
+ - - -0.689891
+ - 0.438056
+ - -0.0
+ - - -1.645213
+ - -0.213314
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.2904807557847518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.035153
+ - -0.053388
+ - 0.0
+ - - -0.699642
+ - 0.444476
+ - -0.0
+ - - -1.66135
+ - -0.216596
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- Cl
- C
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.03271120033207
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0224038825
+ - -0.0557697815
+ - -0.0
+ - - -0.7025344419
+ - 0.4470017332
+ - 0.0
+ - - -1.6457074189
+ - -0.2167405142
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.459248420257382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.019766
+ - -0.05331
+ - 0.0
+ - - -0.698825
+ - 0.442204
+ - -0.0
+ - - -1.646779
+ - -0.214403
+ - -0.0
+ isotopes:
+ - 35
+ - 12
+ - 16
+ symbols:
+ - Cl
+ - C
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloromethane.yml b/input/reference_sets/main/Chloromethane.yml
index d7cbb66690..3cace103ca 100644
--- a/input/reference_sets/main/Chloromethane.yml
+++ b/input/reference_sets/main/Chloromethane.yml
@@ -84,6 +84,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.13827459642284
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.127395
+ - -6.2e-05
+ - 1.5e-05
+ - - 0.660206
+ - 0.000139
+ - -5.6e-05
+ - - -1.470268
+ - -0.515782
+ - -0.890574
+ - - -1.470195
+ - -0.513545
+ - 0.891924
+ - - -1.470404
+ - 1.029025
+ - -0.001263
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.726187720364443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.129388
+ - -6.3e-05
+ - 1.6e-05
+ - - 0.664984
+ - 0.000138
+ - -5.7e-05
+ - - -1.471195
+ - -0.516525
+ - -0.89186
+ - - -1.471123
+ - -0.514285
+ - 0.893213
+ - - -1.471334
+ - 1.03051
+ - -0.001265
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.20736412028329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.129194
+ - -6.2e-05
+ - 1.6e-05
+ - - 0.668319
+ - 0.000137
+ - -5.7e-05
+ - - -1.472369
+ - -0.518822
+ - -0.895826
+ - - -1.472298
+ - -0.516571
+ - 0.897185
+ - - -1.472514
+ - 1.035093
+ - -0.00127
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.485524710190703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.127524
+ - -6.3e-05
+ - 1.6e-05
+ - - 0.669702
+ - 0.000139
+ - -5.8e-05
+ - - -1.473387
+ - -0.520684
+ - -0.89904
+ - - -1.473317
+ - -0.518424
+ - 0.900403
+ - - -1.473529
+ - 1.038807
+ - -0.001274
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.105854042247255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124192
+ - -6.2e-05
+ - 1.5e-05
+ - - 0.655931
+ - 0.000139
+ - -5.7e-05
+ - - -1.46991
+ - -0.515458
+ - -0.890014
+ - - -1.469838
+ - -0.513222
+ - 0.891364
+ - - -1.470047
+ - 1.028379
+ - -0.001262
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.171297352503256
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.133065
+ - -6.2e-05
+ - 1.6e-05
+ - - 0.670858
+ - 0.00014
+ - -5.8e-05
+ - - -1.471927
+ - -0.517634
+ - -0.893771
+ - - -1.471856
+ - -0.515388
+ - 0.895126
+ - - -1.472065
+ - 1.032721
+ - -0.001267
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.181536004108928
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124777
+ - 9.0e-06
+ - 7.0e-06
+ - - 0.656371
+ - 1.1e-05
+ - -5.0e-06
+ - - -1.469841
+ - -0.515619
+ - -0.890102
+ - - -1.46965
+ - -0.513382
+ - 0.891422
+ - - -1.470158
+ - 1.028755
+ - -0.001277
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.54033504886888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124777
+ - 9.0e-06
+ - 7.0e-06
+ - - 0.656371
+ - 1.1e-05
+ - -5.0e-06
+ - - -1.469841
+ - -0.515619
+ - -0.890102
+ - - -1.46965
+ - -0.513382
+ - 0.891423
+ - - -1.470158
+ - 1.028755
+ - -0.001277
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.889230408147522
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124777
+ - 9.0e-06
+ - 7.0e-06
+ - - 0.656371
+ - 1.1e-05
+ - -5.0e-06
+ - - -1.469841
+ - -0.515619
+ - -0.890102
+ - - -1.46965
+ - -0.513382
+ - 0.891423
+ - - -1.470158
+ - 1.028755
+ - -0.001277
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.66086479305507
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.130162
+ - -6.3e-05
+ - 1.6e-05
+ - - 0.668662
+ - 0.000138
+ - -5.8e-05
+ - - -1.472161
+ - -0.518074
+ - -0.894537
+ - - -1.472091
+ - -0.515827
+ - 0.895893
+ - - -1.472303
+ - 1.033601
+ - -0.001269
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.352144354899057
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124998
+ - -6.2e-05
+ - 1.6e-05
+ - - 0.65293
+ - 0.000138
+ - -5.7e-05
+ - - -1.468639
+ - -0.515857
+ - -0.890728
+ - - -1.468569
+ - -0.51362
+ - 0.892079
+ - - -1.468779
+ - 1.029177
+ - -0.001263
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.580587485217542
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.121672
+ - -6.1e-05
+ - 1.5e-05
+ - - 0.651445
+ - 0.000138
+ - -5.7e-05
+ - - -1.469254
+ - -0.516423
+ - -0.891679
+ - - -1.469182
+ - -0.514183
+ - 0.893031
+ - - -1.469392
+ - 1.030303
+ - -0.001265
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.875374466459597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.132829
+ - -6.3e-05
+ - 1.7e-05
+ - - 0.666587
+ - 0.000139
+ - -5.9e-05
+ - - -1.47058
+ - -0.519054
+ - -0.896228
+ - - -1.470511
+ - -0.516804
+ - 0.897587
+ - - -1.470722
+ - 1.035558
+ - -0.001272
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.00734014904847
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1247767926
+ - 9.0653e-06
+ - 7.187e-06
+ - - 0.6563712109
+ - 1.1218e-05
+ - -5.1386e-06
+ - - -1.4698413586
+ - -0.5156188403
+ - -0.8901017492
+ - - -1.4696501443
+ - -0.5133817104
+ - 0.8914224997
+ - - -1.4701583268
+ - 1.0287554538
+ - -0.0012765167
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.735830329306538
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.124853
+ - -5.8e-05
+ - 1.5e-05
+ - - 0.656325
+ - 0.000129
+ - -5.7e-05
+ - - -1.469815
+ - -0.516185
+ - -0.89127
+ - - -1.469743
+ - -0.513945
+ - 0.892621
+ - - -1.46997
+ - 1.029834
+ - -0.001264
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloromethyl.yml b/input/reference_sets/main/Chloromethyl.yml
index a279e2f4a2..8df06a1bdd 100644
--- a/input/reference_sets/main/Chloromethyl.yml
+++ b/input/reference_sets/main/Chloromethyl.yml
@@ -12,7 +12,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 26.918959170866707
+ value: 26.918959170866685
class: ThermoData
xyz_dict:
coords:
@@ -74,6 +74,448 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.607790393041814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.110741
+ - 0.000352
+ - -0.0
+ - - 0.583768
+ - -0.00013
+ - -0.0
+ - - -1.613342
+ - 0.000496
+ - 0.950485
+ - - -1.613342
+ - 0.000496
+ - -0.950485
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.974935861540015
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.111188
+ - 0.000371
+ - -0.0
+ - - 0.586617
+ - -0.000135
+ - 0.0
+ - - -1.614542
+ - 0.000489
+ - 0.951871
+ - - -1.614542
+ - 0.000489
+ - -0.951871
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.020313191111317
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.110294
+ - 0.000373
+ - 0.0
+ - - 0.587609
+ - -0.000136
+ - -0.0
+ - - -1.615485
+ - 0.000489
+ - 0.95606
+ - - -1.615485
+ - 0.000489
+ - -0.95606
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.04025286326168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.10994
+ - 0.000354
+ - -0.0
+ - - 0.590586
+ - -0.000133
+ - 0.0
+ - - -1.617151
+ - 0.000497
+ - 0.96018
+ - - -1.617151
+ - 0.000497
+ - -0.96018
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.49991220259604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.108171
+ - 0.000366
+ - 0.0
+ - - 0.5806
+ - -0.000133
+ - -0.0
+ - - -1.613043
+ - 0.000491
+ - 0.950459
+ - - -1.613043
+ - 0.000491
+ - -0.950459
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.33000077691826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.11702
+ - 0.000298
+ - -0.0
+ - - 0.592692
+ - -0.000116
+ - 0.0
+ - - -1.614664
+ - 0.000516
+ - 0.955853
+ - - -1.614664
+ - 0.000516
+ - -0.955853
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.208798495461163
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.109751
+ - -0.000328
+ - 0.0
+ - - 0.581401
+ - 2.7e-05
+ - 0.0
+ - - -1.612653
+ - 0.000758
+ - 0.950974
+ - - -1.612653
+ - 0.000758
+ - -0.950974
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.117899006401707
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.109751
+ - -0.000328
+ - 0.0
+ - - 0.581401
+ - 2.7e-05
+ - 0.0
+ - - -1.612653
+ - 0.000758
+ - 0.950974
+ - - -1.612653
+ - 0.000758
+ - -0.950974
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.00573439790857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.109751
+ - -0.000328
+ - 0.0
+ - - 0.581401
+ - 2.7e-05
+ - 0.0
+ - - -1.612653
+ - 0.000758
+ - 0.950974
+ - - -1.612653
+ - 0.000758
+ - -0.950974
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.08455063083367
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.014177
+ - -1.119819
+ - 0.0
+ - - -0.002237
+ - 0.587362
+ - 0.0
+ - - -0.014502
+ - -1.621238
+ - 0.954959
+ - - -0.014502
+ - -1.621238
+ - -0.954959
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.608273591630795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.108649
+ - -0.041086
+ - -0.0
+ - - 0.582542
+ - 0.009322
+ - 0.0
+ - - -1.611212
+ - 0.016637
+ - 0.949345
+ - - -1.611212
+ - 0.016637
+ - -0.949345
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.899222064347956
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.106856
+ - 0.000356
+ - 0.0
+ - - 0.578497
+ - -0.000131
+ - -0.0
+ - - -1.612649
+ - 0.000495
+ - 0.952374
+ - - -1.612649
+ - 0.000495
+ - -0.952374
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.563386973721883
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.113029
+ - 0.000382
+ - 0.0
+ - - 0.590475
+ - -0.000137
+ - -0.0
+ - - -1.615551
+ - 0.000485
+ - 0.957014
+ - - -1.615551
+ - 0.000485
+ - -0.957014
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +550,74 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.199130159093922
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.1097509256
+ - -0.0003277862
+ - 0.0
+ - - 0.5814008327
+ - 2.65173e-05
+ - 0.0
+ - - -1.6126530631
+ - 0.0007579607
+ - 0.9509743351
+ - - -1.6126530631
+ - 0.0007579607
+ - -0.9509743351
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.89606870331528
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.109083
+ - 0.000347
+ - 0.0
+ - - 0.582048
+ - -0.000129
+ - -0.0
+ - - -1.613311
+ - 0.000498
+ - 0.951982
+ - - -1.613311
+ - 0.000498
+ - -0.951982
+ isotopes:
+ - 12
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chloromethylene.yml b/input/reference_sets/main/Chloromethylene.yml
index 1178872c4a..f4d4376631 100644
--- a/input/reference_sets/main/Chloromethylene.yml
+++ b/input/reference_sets/main/Chloromethylene.yml
@@ -63,6 +63,64 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 79.76682529657157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173851
+ - 0.175909
+ - -0.0
+ - - -0.507804
+ - -0.010408
+ - 0.0
+ - - 1.529876
+ - -0.871985
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 77.69277380689114
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.161347
+ - 0.159477
+ - -0.0
+ - - -0.5226
+ - 0.005207
+ - 0.0
+ - - 1.557176
+ - -0.871168
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 76.5567388389007
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.179824
+ - 0.184744
+ - -0.0
+ - - -0.51431
+ - -0.012287
+ - 0.0
+ - - 1.530409
+ - -0.878941
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.54999739494687
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.179927
+ - 0.187092
+ - -0.0
+ - - -0.514947
+ - -0.012482
+ - 0.0
+ - - 1.530944
+ - -0.881093
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.25156115582045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168013
+ - 0.173608
+ - -0.0
+ - - -0.502721
+ - -0.009145
+ - 0.0
+ - - 1.530632
+ - -0.870947
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.81305946337024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185122
+ - 0.182366
+ - -0.0
+ - - -0.517409
+ - -0.01329
+ - 0.0
+ - - 1.528211
+ - -0.875559
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 77.57316092647304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.170939
+ - 0.176314
+ - -0.0
+ - - -0.503163
+ - -0.010943
+ - 0.0
+ - - 1.528148
+ - -0.871855
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.98854852735919
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.170939
+ - 0.176314
+ - -0.0
+ - - -0.503163
+ - -0.010943
+ - 0.0
+ - - 1.528148
+ - -0.871855
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.85862148251442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.170939
+ - 0.176314
+ - -0.0
+ - - -0.503163
+ - -0.010943
+ - 0.0
+ - - 1.528148
+ - -0.871855
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.84011171528621
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185579
+ - 0.184938
+ - 0.0
+ - - -0.516711
+ - -0.014276
+ - 0.0
+ - - 1.527055
+ - -0.877146
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.81873898261652
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.171892
+ - 0.176459
+ - -0.0
+ - - -0.503167
+ - -0.011459
+ - 0.0
+ - - 1.527199
+ - -0.871484
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.59544633730434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.169348
+ - 0.178474
+ - -0.0
+ - - -0.501586
+ - -0.011171
+ - 0.0
+ - - 1.528161
+ - -0.873787
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 80.48791666440572
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.182127
+ - 0.183596
+ - -0.0
+ - - -0.515334
+ - -0.01284
+ - 0.0
+ - - 1.52913
+ - -0.877239
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- C
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 76.28350045010912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1709385492
+ - 0.1763143411
+ - -0.0
+ - - -0.5031634975
+ - -0.0109430036
+ - 0.0
+ - - 1.528148162
+ - -0.8718549847
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.53740931661827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.159945
+ - 0.162103
+ - -0.0
+ - - -0.515271
+ - 0.002364
+ - 0.0
+ - - 1.551249
+ - -0.870951
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chlorooxy hypochlorite.yml b/input/reference_sets/main/Chlorooxy hypochlorite.yml
index b464c817e5..ac6ce4b4f2 100644
--- a/input/reference_sets/main/Chlorooxy hypochlorite.yml
+++ b/input/reference_sets/main/Chlorooxy hypochlorite.yml
@@ -45,7 +45,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 31.116150082504433
+ value: 31.116150082504426
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- O
- O
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.53268863740966
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.685862
+ - -0.391397
+ - -0.065437
+ - - 0.552278
+ - 0.820105
+ - 0.423432
+ - - -0.552281
+ - 0.820099
+ - -0.42344
+ - - -1.685862
+ - -0.3914
+ - 0.065442
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.729826542953013
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.707116
+ - -0.392875
+ - -0.065414
+ - - 0.54251
+ - 0.821583
+ - 0.413323
+ - - -0.542512
+ - 0.821577
+ - -0.41333
+ - - -1.707116
+ - -0.392878
+ - 0.065419
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- O
- O
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.446587884008355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.84456
+ - -0.428516
+ - -0.072138
+ - - 0.49762
+ - 0.857224
+ - 0.383842
+ - - -0.497623
+ - 0.857219
+ - -0.383849
+ - - -1.84456
+ - -0.428519
+ - 0.072143
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.49077682271297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.831774
+ - -0.42113
+ - -0.071113
+ - - 0.506318
+ - 0.849837
+ - 0.388981
+ - - -0.506321
+ - 0.849832
+ - -0.388988
+ - - -1.831774
+ - -0.421133
+ - 0.071118
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.154268219451616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.675064
+ - -0.375864
+ - -0.066324
+ - - 0.544959
+ - 0.804572
+ - 0.421712
+ - - -0.544961
+ - 0.804566
+ - -0.42172
+ - - -1.675064
+ - -0.375867
+ - 0.066329
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.47966955976329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.779103
+ - -0.409739
+ - -0.071681
+ - - 0.515328
+ - 0.838446
+ - 0.40258
+ - - -0.51533
+ - 0.838441
+ - -0.402588
+ - - -1.779103
+ - -0.409742
+ - 0.071686
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.02433486962136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.656527
+ - -0.38107
+ - -0.066206
+ - - 0.547564
+ - 0.80978
+ - 0.425619
+ - - -0.547569
+ - 0.809767
+ - -0.425623
+ - - -1.656525
+ - -0.381069
+ - 0.066208
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.52752999621262
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.656527
+ - -0.38107
+ - -0.066206
+ - - 0.547564
+ - 0.80978
+ - 0.425619
+ - - -0.547569
+ - 0.809767
+ - -0.425623
+ - - -1.656525
+ - -0.381069
+ - 0.066208
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.953547516745175
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.656527
+ - -0.38107
+ - -0.066206
+ - - 0.547564
+ - 0.80978
+ - 0.425619
+ - - -0.547569
+ - 0.809767
+ - -0.425623
+ - - -1.656525
+ - -0.381069
+ - 0.066208
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.910746750306856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.734618
+ - -0.391569
+ - -0.069291
+ - - 0.528656
+ - 0.820277
+ - 0.41087
+ - - -0.528658
+ - 0.820271
+ - -0.410877
+ - - -1.734618
+ - -0.391572
+ - 0.069296
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.7585662945124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.636167
+ - -0.384
+ - -0.063031
+ - - 0.5487
+ - 0.812708
+ - 0.419363
+ - - -0.548702
+ - 0.812702
+ - -0.41937
+ - - -1.636166
+ - -0.384003
+ - 0.063036
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.27068462834521
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.676808
+ - -0.381482
+ - -0.064399
+ - - 0.539389
+ - 0.81019
+ - 0.411358
+ - - -0.539392
+ - 0.810184
+ - -0.411366
+ - - -1.676807
+ - -0.381485
+ - 0.064404
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.09788164626468
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.803338
+ - -0.411596
+ - -0.069697
+ - - 0.516514
+ - 0.840303
+ - 0.39574
+ - - -0.516517
+ - 0.840298
+ - -0.395748
+ - - -1.803337
+ - -0.411598
+ - 0.069702
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- O
- O
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.937393745820646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.6565274857
+ - -0.3810700097
+ - -0.0662056951
+ - - 0.5475642659
+ - 0.809779638
+ - 0.4256186799
+ - - -0.5475685844
+ - 0.8097667466
+ - -0.4256233518
+ - - -1.6565254535
+ - -0.3810694654
+ - 0.0662078936
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.75652098260874
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.674557
+ - -0.377639
+ - -0.065673
+ - - 0.541294
+ - 0.806347
+ - 0.416952
+ - - -0.541297
+ - 0.806341
+ - -0.41696
+ - - -1.674556
+ - -0.377642
+ - 0.065678
+ isotopes:
+ - 35
+ - 16
+ - 16
+ - 35
+ symbols:
+ - Cl
+ - O
+ - O
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Chlorotrifluoromethane.yml b/input/reference_sets/main/Chlorotrifluoromethane.yml
index 102cc6ca8c..f2ec8dbe59 100644
--- a/input/reference_sets/main/Chlorotrifluoromethane.yml
+++ b/input/reference_sets/main/Chlorotrifluoromethane.yml
@@ -51,7 +51,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -171.71807677033993
+ value: -171.71807677033976
class: ThermoData
xyz_dict:
coords:
@@ -84,6 +84,84 @@ calculated_data:
- F
- F
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -168.64779088291777
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.348704
+ - -1.4e-05
+ - -4.1e-05
+ - - 0.809905
+ - 1.169426
+ - 0.427509
+ - - 0.80946
+ - -0.214404
+ - -1.226761
+ - - 0.809873
+ - -0.955131
+ - 0.798804
+ - - -1.411681
+ - 8.5e-05
+ - 0.000343
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -165.90752174440158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.350771
+ - -1.4e-05
+ - -3.8e-05
+ - - 0.811665
+ - 1.171795
+ - 0.428375
+ - - 0.811221
+ - -0.214839
+ - -1.229245
+ - - 0.811635
+ - -0.957065
+ - 0.800419
+ - - -1.41903
+ - 8.6e-05
+ - 0.000344
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- F
- F
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -160.87995582165752
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.351986
+ - -9.0e-06
+ - -5.0e-05
+ - - 0.81399
+ - 1.179791
+ - 0.431308
+ - - 0.813547
+ - -0.216311
+ - -1.237639
+ - - 0.813959
+ - -0.963594
+ - 0.805885
+ - - -1.427221
+ - 8.6e-05
+ - 0.000351
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -161.32481681212062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.350743
+ - -1.4e-05
+ - -4.4e-05
+ - - 0.814977
+ - 1.182997
+ - 0.432473
+ - - 0.814528
+ - -0.216893
+ - -1.240998
+ - - 0.814953
+ - -0.966217
+ - 0.808078
+ - - -1.42894
+ - 9.0e-05
+ - 0.000345
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -173.44206003398406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.348018
+ - -1.3e-05
+ - -4.2e-05
+ - - 0.808492
+ - 1.165813
+ - 0.426187
+ - - 0.808052
+ - -0.213742
+ - -1.22297
+ - - 0.808459
+ - -0.95218
+ - 0.796334
+ - - -1.406759
+ - 8.4e-05
+ - 0.000344
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -172.91009316622365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.354669
+ - -1.6e-05
+ - -4.6e-05
+ - - 0.811631
+ - 1.173243
+ - 0.428907
+ - - 0.811194
+ - -0.215105
+ - -1.230767
+ - - 0.811612
+ - -0.958252
+ - 0.801415
+ - - -1.422845
+ - 9.2e-05
+ - 0.000346
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -166.62497027013345
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.347396
+ - 1.2e-05
+ - 6.6e-05
+ - - 0.808794
+ - 1.169016
+ - 0.427363
+ - - 0.8081
+ - -0.214323
+ - -1.22628
+ - - 0.808742
+ - -0.954789
+ - 0.798517
+ - - -1.406771
+ - 4.7e-05
+ - 0.000189
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -170.1985907542381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.347396
+ - 1.2e-05
+ - 6.6e-05
+ - - 0.808794
+ - 1.169016
+ - 0.427363
+ - - 0.8081
+ - -0.214323
+ - -1.22628
+ - - 0.808742
+ - -0.954789
+ - 0.798517
+ - - -1.406771
+ - 4.7e-05
+ - 0.000189
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -172.053828668897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.347396
+ - 1.2e-05
+ - 6.6e-05
+ - - 0.808794
+ - 1.169016
+ - 0.427363
+ - - 0.8081
+ - -0.214323
+ - -1.22628
+ - - 0.808742
+ - -0.954789
+ - 0.798517
+ - - -1.406771
+ - 4.7e-05
+ - 0.000189
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -170.03021226355546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.3628
+ - -1.2e-05
+ - -5.1e-05
+ - - 0.809238
+ - 1.167966
+ - 0.426978
+ - - 0.808797
+ - -0.214136
+ - -1.225233
+ - - 0.809201
+ - -0.953938
+ - 0.797811
+ - - -1.423774
+ - 8.2e-05
+ - 0.000349
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -179.62761184403118
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.349238
+ - -3.3e-05
+ - -5.8e-05
+ - - 0.80758
+ - 1.163509
+ - 0.425383
+ - - 0.807133
+ - -0.213329
+ - -1.220596
+ - - 0.807641
+ - -0.950312
+ - 0.794816
+ - - -1.40533
+ - 0.000128
+ - 0.000309
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -173.1114083309192
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.350146
+ - -6.0e-06
+ - -4.7e-05
+ - - 0.807358
+ - 1.164772
+ - 0.425809
+ - - 0.80691
+ - -0.213551
+ - -1.221879
+ - - 0.807311
+ - -0.951329
+ - 0.795626
+ - - -1.405464
+ - 7.6e-05
+ - 0.000345
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -156.5094186453158
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.349206
+ - -2.2e-05
+ - -4.7e-05
+ - - 0.814249
+ - 1.180223
+ - 0.431461
+ - - 0.813811
+ - -0.216386
+ - -1.238089
+ - - 0.814231
+ - -0.963947
+ - 0.80618
+ - - -1.425235
+ - 9.5e-05
+ - 0.000348
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- F
- F
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -174.6726774320611
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.347395845
+ - 1.15715e-05
+ - 6.60933e-05
+ - - 0.8087942708
+ - 1.1690164487
+ - 0.4273626978
+ - - 0.8080996402
+ - -0.2143234785
+ - -1.2262799169
+ - - 0.8087422732
+ - -0.9547886815
+ - 0.7985166065
+ - - -1.406770631
+ - 4.65866e-05
+ - 0.0001887619
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -171.78984232104565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.352332
+ - 1.0e-06
+ - -3.9e-05
+ - - 0.808416
+ - 1.165238
+ - 0.425976
+ - - 0.807957
+ - -0.213638
+ - -1.22236
+ - - 0.808364
+ - -0.951711
+ - 0.795937
+ - - -1.410807
+ - 7.1e-05
+ - 0.00034
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyanato.yml b/input/reference_sets/main/Cyanato.yml
index a3b5a6289a..b220df038a 100644
--- a/input/reference_sets/main/Cyanato.yml
+++ b/input/reference_sets/main/Cyanato.yml
@@ -40,7 +40,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 30.5351366599644
+ value: 30.53513665996437
class: ThermoData
xyz_dict:
coords:
@@ -63,6 +63,64 @@ calculated_data:
- N
- C
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.205955672446045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -1.266232
+ - - 0.0
+ - -0.0
+ - -0.038081
+ - - 0.0
+ - -0.0
+ - 1.137048
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.351993170770058
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - -1.261956
+ - - -0.0
+ - -0.0
+ - -0.040335
+ - - -0.0
+ - -0.0
+ - 1.135026
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- N
- C
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.884173634722703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - -1.27067
+ - - -0.0
+ - -0.0
+ - -0.040451
+ - - -0.0
+ - -0.0
+ - 1.143856
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.508748844669242
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -1.27425
+ - - 0.0
+ - -0.0
+ - -0.040987
+ - - 0.0
+ - -0.0
+ - 1.147973
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.434824020627563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - -1.257101
+ - - -0.0
+ - 0.0
+ - -0.039391
+ - - -0.0
+ - 0.0
+ - 1.129228
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.198246149427955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -1.263026
+ - - 0.0
+ - -0.0
+ - -0.04075
+ - - 0.0
+ - -0.0
+ - 1.136511
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.0885861381885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.0e-06
+ - -1.260944
+ - - 0.0
+ - 2.0e-06
+ - -0.038588
+ - - 0.0
+ - -1.0e-06
+ - 1.132267
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.887933990204754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.0e-06
+ - -1.260944
+ - - 0.0
+ - 2.0e-06
+ - -0.038588
+ - - 0.0
+ - -1.0e-06
+ - 1.132267
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.90784467683455
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -1.0e-06
+ - -1.260944
+ - - 0.0
+ - 2.0e-06
+ - -0.038588
+ - - 0.0
+ - -1.0e-06
+ - 1.132267
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.634817816421126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -1.265896
+ - - 0.0
+ - 0.0
+ - -0.040304
+ - - 0.0
+ - 0.0
+ - 1.138935
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.315648838456692
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -1.259626
+ - - 0.0
+ - -0.0
+ - -0.037273
+ - - 0.0
+ - -0.0
+ - 1.129634
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.066051484563044
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -1.260756
+ - - 0.0
+ - -0.0
+ - -0.038553
+ - - 0.0
+ - -0.0
+ - 1.132044
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.95307783115052
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - -1.271695
+ - - -0.0
+ - -0.0
+ - -0.040677
+ - - -0.0
+ - -0.0
+ - 1.145107
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- N
- C
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.437636658856324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -9.503e-07
+ - -1.2609440864
+ - - 0.0
+ - 2.2661e-06
+ - -0.0385877697
+ - - 0.0
+ - -8.681e-07
+ - 1.1322669029
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.47756044366585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - -1.259391
+ - - -0.0
+ - 0.0
+ - -0.038277
+ - - -0.0
+ - 0.0
+ - 1.130403
+ isotopes:
+ - 14
+ - 12
+ - 16
+ symbols:
+ - N
+ - C
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyanic acid.yml b/input/reference_sets/main/Cyanic acid.yml
index 4bb8251348..106c9790de 100644
--- a/input/reference_sets/main/Cyanic acid.yml
+++ b/input/reference_sets/main/Cyanic acid.yml
@@ -45,7 +45,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -3.321703902280895
+ value: -3.321703902280892
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6763929919347593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.114534
+ - 0.109629
+ - 0.0
+ - - -0.17972
+ - 0.005911
+ - 0.0
+ - - -1.339835
+ - -0.020018
+ - -0.0
+ - - 1.521283
+ - -0.769013
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4204768423372165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.109403
+ - 0.107154
+ - 0.0
+ - - -0.182724
+ - 0.005249
+ - -0.0
+ - - -1.335849
+ - -0.017917
+ - -0.0
+ - - 1.525432
+ - -0.767976
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.2340222253356368
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.115572
+ - 0.110603
+ - 0.0
+ - - -0.181415
+ - 0.002191
+ - 0.0
+ - - -1.345248
+ - -0.016376
+ - -0.0
+ - - 1.527353
+ - -0.769907
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.6787799500963289
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117383
+ - 0.113267
+ - 0.0
+ - - -0.182559
+ - 0.001906
+ - 0.0
+ - - -1.350452
+ - -0.015468
+ - -0.0
+ - - 1.531889
+ - -0.773195
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.8507533187483737
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.106055
+ - 0.105935
+ - 0.0
+ - - -0.182464
+ - 0.008091
+ - -0.0
+ - - -1.329287
+ - -0.020198
+ - -0.0
+ - - 1.521957
+ - -0.767318
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.8779711360417
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.11353
+ - 0.109805
+ - 0.0
+ - - -0.180163
+ - 0.007491
+ - 0.0
+ - - -1.33524
+ - -0.02176
+ - -0.0
+ - - 1.518135
+ - -0.769027
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3041236395797482
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.112478
+ - 0.109486
+ - -0.0
+ - - -0.182163
+ - 0.007207
+ - 0.0
+ - - -1.332132
+ - -0.021491
+ - 0.0
+ - - 1.518079
+ - -0.768692
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1790068378635263
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.112478
+ - 0.109486
+ - -0.0
+ - - -0.182163
+ - 0.007207
+ - 0.0
+ - - -1.332132
+ - -0.021491
+ - 0.0
+ - - 1.518079
+ - -0.768692
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.7070656287306454
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.112478
+ - 0.109486
+ - -0.0
+ - - -0.182163
+ - 0.007207
+ - 0.0
+ - - -1.332132
+ - -0.021491
+ - 0.0
+ - - 1.518079
+ - -0.768692
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.645513977259205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.114013
+ - 0.109097
+ - 0.0
+ - - -0.18017
+ - 0.006801
+ - 0.0
+ - - -1.33851
+ - -0.020537
+ - 0.0
+ - - 1.520929
+ - -0.768851
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.619739569335297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.110108
+ - 0.108729
+ - 0.0
+ - - -0.181293
+ - 0.010531
+ - -0.0
+ - - -1.32895
+ - -0.023707
+ - -0.0
+ - - 1.516397
+ - -0.769042
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.9791453808914252
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.107969
+ - 0.108176
+ - 0.0
+ - - -0.178215
+ - 0.006637
+ - -0.0
+ - - -1.330604
+ - -0.02105
+ - -0.0
+ - - 1.517112
+ - -0.767252
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.274357225252856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.116488
+ - 0.112341
+ - 0.0
+ - - -0.182843
+ - 0.000812
+ - 0.0
+ - - -1.347063
+ - -0.015219
+ - -0.0
+ - - 1.52968
+ - -0.771425
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.0055004905185196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1124777254
+ - 0.1094862136
+ - -0.0
+ - - -0.1821628158
+ - 0.0072068279
+ - 0.0
+ - - -1.332131963
+ - -0.021491239
+ - 0.0
+ - - 1.5180788334
+ - -0.7686920032
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9772498706823449
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1081
+ - 0.106703
+ - 0.0
+ - - -0.179148
+ - 0.007495
+ - -0.0
+ - - -1.328882
+ - -0.021591
+ - -0.0
+ - - 1.516192
+ - -0.766097
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 14
+ - 1
+ symbols:
+ - O
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyanic fluoride.yml b/input/reference_sets/main/Cyanic fluoride.yml
index 91674c1407..da9ed9f40a 100644
--- a/input/reference_sets/main/Cyanic fluoride.yml
+++ b/input/reference_sets/main/Cyanic fluoride.yml
@@ -62,6 +62,64 @@ calculated_data:
- F
- C
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.892705108183405
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.116888
+ - - 0.0
+ - 0.0
+ - -0.149263
+ - - 0.0
+ - 0.0
+ - -1.307452
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.952030521838184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.113986
+ - - 0.0
+ - 0.0
+ - -0.151596
+ - - 0.0
+ - 0.0
+ - -1.302218
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- F
- C
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.217025590936064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.121664
+ - - 0.0
+ - 0.0
+ - -0.14988
+ - - 0.0
+ - 0.0
+ - -1.311612
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.55934280193138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.125523
+ - - 0.0
+ - 0.0
+ - -0.149832
+ - - 0.0
+ - 0.0
+ - -1.315518
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.8674432765433484
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.10883
+ - - 0.0
+ - 0.0
+ - -0.152086
+ - - 0.0
+ - 0.0
+ - -1.296572
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.2491514662464993
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 1.115662
+ - - 0.0
+ - -0.0
+ - -0.151451
+ - - 0.0
+ - -0.0
+ - -1.304038
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.730099639481534
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -5.4e-05
+ - 1.113132
+ - - 0.0
+ - 0.000169
+ - -0.152526
+ - - -0.0
+ - -7.6e-05
+ - -1.300434
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.4119367194198977
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -5.4e-05
+ - 1.113132
+ - - 0.0
+ - 0.000169
+ - -0.152526
+ - - -0.0
+ - -7.6e-05
+ - -1.300434
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4956077315332572
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -5.4e-05
+ - 1.113132
+ - - 0.0
+ - 0.000169
+ - -0.152526
+ - - -0.0
+ - -7.6e-05
+ - -1.300434
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.1268915256595786
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.113054
+ - - 0.0
+ - 0.0
+ - -0.148833
+ - - 0.0
+ - 0.0
+ - -1.304048
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.10716445017983095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.109676
+ - - 0.0
+ - 0.0
+ - -0.152179
+ - - 0.0
+ - 0.0
+ - -1.297323
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.006397390713223
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.108863
+ - - 0.0
+ - 0.0
+ - -0.149408
+ - - 0.0
+ - 0.0
+ - -1.299282
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.173849004292586
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.123534
+ - - -0.0
+ - 0.0
+ - -0.15068
+ - - -0.0
+ - 0.0
+ - -1.312682
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- F
- C
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4248991557625705
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -5.36797e-05
+ - 1.1131323106
+ - - 0.0
+ - 0.0001692986
+ - -0.1525259784
+ - - -0.0
+ - -7.60963e-05
+ - -1.3004335606
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.8326910801899494
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.107877
+ - - 0.0
+ - 0.0
+ - -0.150125
+ - - 0.0
+ - 0.0
+ - -1.29758
+ isotopes:
+ - 19
+ - 12
+ - 14
+ symbols:
+ - F
+ - C
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyanide.yml b/input/reference_sets/main/Cyanide.yml
index d3ce4b3796..e097e97937 100644
--- a/input/reference_sets/main/Cyanide.yml
+++ b/input/reference_sets/main/Cyanide.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- C
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.35293389873217
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.633526
+ - - 0.0
+ - 0.0
+ - -0.54366
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.490444028368742
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.630063
+ - - 0.0
+ - 0.0
+ - -0.540198
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- C
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.29128659005538
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.634637
+ - - 0.0
+ - 0.0
+ - -0.544772
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.203249566191456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.636172
+ - - 0.0
+ - 0.0
+ - -0.546307
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.782575858076726
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.627175
+ - - 0.0
+ - 0.0
+ - -0.53731
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.042291732901024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.63141
+ - - 0.0
+ - 0.0
+ - -0.541545
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.94105758105563
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.629057
+ - - 0.0
+ - 0.0
+ - -0.539192
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.682748690097046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.629057
+ - - 0.0
+ - 0.0
+ - -0.539192
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.51286072546016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.629057
+ - - 0.0
+ - 0.0
+ - -0.539192
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.116689114859575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.633369
+ - - 0.0
+ - 0.0
+ - -0.543504
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.22552417602338
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.628307
+ - - 0.0
+ - 0.0
+ - -0.538442
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.75779957963777
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.629918
+ - - 0.0
+ - 0.0
+ - -0.540052
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.182027346021997
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.634798
+ - - 0.0
+ - 0.0
+ - -0.544933
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,13 +411,61 @@ calculated_data:
symbols:
- C
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.326071902602916
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.6290567936
+ - - 0.0
+ - 0.0
+ - -0.5391915374
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.6626197211017
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.629123
+ - - 0.0
+ - 0.0
+ - -0.539258
+ isotopes:
+ - 12
+ - 14
+ symbols:
+ - C
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 23.205888347215936
+ value: 23.205888347215932
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Cyanogen chloride.yml b/input/reference_sets/main/Cyanogen chloride.yml
index 512c80ea1b..3842d37c4c 100644
--- a/input/reference_sets/main/Cyanogen chloride.yml
+++ b/input/reference_sets/main/Cyanogen chloride.yml
@@ -62,6 +62,64 @@ calculated_data:
- Cl
- C
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.04538352443627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.977551
+ - - 0.0
+ - -0.0
+ - -0.65239
+ - - 0.0
+ - -0.0
+ - -1.813315
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.40151974450859
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.975525
+ - - 0.0
+ - -0.0
+ - -0.655316
+ - - 0.0
+ - -0.0
+ - -1.808363
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- Cl
- C
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.848795668896386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.977748
+ - - 0.0
+ - -0.0
+ - -0.650885
+ - - 0.0
+ - -0.0
+ - -1.815016
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.97296759209764
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.982617
+ - - 0.0
+ - -0.0
+ - -0.651372
+ - - 0.0
+ - -0.0
+ - -1.819399
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.860049028602596
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.971018
+ - - 0.0
+ - -0.0
+ - -0.656493
+ - - 0.0
+ - -0.0
+ - -1.802679
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.241085318030798
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.983135
+ - - 0.0
+ - 0.0
+ - -0.657901
+ - - 0.0
+ - 0.0
+ - -1.813388
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.85603566759984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -7.8e-05
+ - 0.975957
+ - - 0.0
+ - 0.000538
+ - -0.657512
+ - - -0.0
+ - -0.000271
+ - -1.806599
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.37868781240272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -7.8e-05
+ - 0.975957
+ - - 0.0
+ - 0.000538
+ - -0.657512
+ - - -0.0
+ - -0.000271
+ - -1.806599
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.906372748164856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -7.8e-05
+ - 0.975957
+ - - 0.0
+ - 0.000538
+ - -0.657512
+ - - -0.0
+ - -0.000271
+ - -1.806599
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.112106365919747
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.98009
+ - - 0.0
+ - 0.0
+ - -0.654642
+ - - 0.0
+ - 0.0
+ - -1.813602
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.38628909364202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.972505
+ - - 0.0
+ - -0.0
+ - -0.656537
+ - - 0.0
+ - -0.0
+ - -1.804122
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.380044497089926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.968954
+ - - 0.0
+ - -0.0
+ - -0.652326
+ - - 0.0
+ - -0.0
+ - -1.804783
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.282429683295106
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.97967
+ - - 0.0
+ - -0.0
+ - -0.651738
+ - - 0.0
+ - -0.0
+ - -1.816086
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- Cl
- C
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.2821178060536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -7.83649e-05
+ - 0.9759566357
+ - - 0.0
+ - 0.0005376626
+ - -0.6575117499
+ - - -0.0
+ - -0.0002705391
+ - -1.8065989011
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.03418802769314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.971884
+ - - -0.0
+ - -0.0
+ - -0.65543
+ - - -0.0
+ - -0.0
+ - -1.804608
+ isotopes:
+ - 35
+ - 12
+ - 14
+ symbols:
+ - Cl
+ - C
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyanogen.yml b/input/reference_sets/main/Cyanogen.yml
index d933f4f227..6a6fd1f8d3 100644
--- a/input/reference_sets/main/Cyanogen.yml
+++ b/input/reference_sets/main/Cyanogen.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.25082174524756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.849124
+ - - -0.0
+ - 0.0
+ - 0.688509
+ - - -0.0
+ - 0.0
+ - -0.688509
+ - - -0.0
+ - 0.0
+ - -1.849124
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 79.94525333201268
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.84028
+ - - -0.0
+ - 0.0
+ - 0.688009
+ - - -0.0
+ - 0.0
+ - -0.688009
+ - - -0.0
+ - 0.0
+ - -1.84028
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.1545143359733
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.851098
+ - - -0.0
+ - 0.0
+ - 0.687395
+ - - -0.0
+ - 0.0
+ - -0.687395
+ - - -0.0
+ - 0.0
+ - -1.851098
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.14816683129499
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.855336
+ - - -0.0
+ - 0.0
+ - 0.687918
+ - - -0.0
+ - 0.0
+ - -0.687918
+ - - -0.0
+ - 0.0
+ - -1.855336
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.94736861882187
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.835501
+ - - -0.0
+ - 0.0
+ - 0.690638
+ - - -0.0
+ - 0.0
+ - -0.690638
+ - - -0.0
+ - 0.0
+ - -1.835501
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.67798373929418
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.842668
+ - - 0.0
+ - 0.0
+ - 0.687584
+ - - 0.0
+ - 0.0
+ - -0.687584
+ - - 0.0
+ - 0.0
+ - -1.842668
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.45909502138669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 5.0e-06
+ - 3.0e-06
+ - 1.841737
+ - - -7.0e-06
+ - -3.5e-05
+ - 0.694283
+ - - -2.0e-06
+ - 6.5e-05
+ - -0.694283
+ - - 3.0e-06
+ - -2.9e-05
+ - -1.841737
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.6322665673313
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 5.0e-06
+ - 3.0e-06
+ - 1.841737
+ - - -7.0e-06
+ - -3.5e-05
+ - 0.694283
+ - - -2.0e-06
+ - 6.5e-05
+ - -0.694283
+ - - 3.0e-06
+ - -2.9e-05
+ - -1.841737
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 74.24906342784897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 5.0e-06
+ - 3.0e-06
+ - 1.841737
+ - - -7.0e-06
+ - -3.5e-05
+ - 0.694283
+ - - -2.0e-06
+ - 6.5e-05
+ - -0.694283
+ - - 3.0e-06
+ - -2.9e-05
+ - -1.841737
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.38829173440907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.845911
+ - - 0.0
+ - 0.0
+ - 0.687868
+ - - 0.0
+ - 0.0
+ - -0.687868
+ - - 0.0
+ - 0.0
+ - -1.845911
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.59621756657215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.839943
+ - - -0.0
+ - 0.0
+ - 0.693926
+ - - -0.0
+ - 0.0
+ - -0.693926
+ - - -0.0
+ - 0.0
+ - -1.839943
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.48415131631226
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.839689
+ - - -0.0
+ - 0.0
+ - 0.688321
+ - - -0.0
+ - 0.0
+ - -0.688321
+ - - -0.0
+ - 0.0
+ - -1.839689
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.63878060477478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.850615
+ - - -0.0
+ - 0.0
+ - 0.686864
+ - - -0.0
+ - 0.0
+ - -0.686864
+ - - -0.0
+ - 0.0
+ - -1.850615
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- C
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 76.63580851479662
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 4.7576e-06
+ - 3.2685e-06
+ - 1.8417372894
+ - - -6.9985e-06
+ - -3.4812e-05
+ - 0.6942834234
+ - - -2.3504e-06
+ - 6.46982e-05
+ - -0.6942834314
+ - - 3.2557e-06
+ - -2.88852e-05
+ - -1.8417372825
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.64807761875907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 1.838863
+ - - -0.0
+ - 0.0
+ - 0.691187
+ - - -0.0
+ - 0.0
+ - -0.691187
+ - - -0.0
+ - 0.0
+ - -1.838863
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ symbols:
+ - N
+ - C
+ - C
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclobutane.yml b/input/reference_sets/main/Cyclobutane.yml
index 1d50e48d06..b69dfb4969 100644
--- a/input/reference_sets/main/Cyclobutane.yml
+++ b/input/reference_sets/main/Cyclobutane.yml
@@ -161,6 +161,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.939572055867568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.077587
+ - 3.7e-05
+ - -0.135558
+ - - 3.7e-05
+ - -1.077587
+ - 0.135558
+ - - -1.077587
+ - -3.7e-05
+ - -0.135558
+ - - -3.7e-05
+ - 1.077587
+ - 0.135558
+ - - 1.381031
+ - 4.7e-05
+ - -1.182877
+ - - 1.97057
+ - 6.9e-05
+ - 0.487786
+ - - 6.9e-05
+ - -1.97057
+ - -0.487786
+ - - 4.7e-05
+ - -1.381031
+ - 1.182877
+ - - -1.97057
+ - -6.9e-05
+ - 0.487786
+ - - -1.381031
+ - -4.7e-05
+ - -1.182877
+ - - -4.7e-05
+ - 1.381031
+ - 1.182877
+ - - -6.9e-05
+ - 1.97057
+ - -0.487786
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.14509573289683
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.081351
+ - 3.7e-05
+ - -0.124754
+ - - 3.7e-05
+ - -1.081351
+ - 0.124754
+ - - -1.081351
+ - -3.7e-05
+ - -0.124754
+ - - -3.7e-05
+ - 1.081351
+ - 0.124754
+ - - 1.415691
+ - 4.8e-05
+ - -1.163337
+ - - 1.958611
+ - 6.7e-05
+ - 0.521984
+ - - 6.7e-05
+ - -1.958611
+ - -0.521984
+ - - 4.8e-05
+ - -1.415691
+ - 1.163337
+ - - -1.958611
+ - -6.7e-05
+ - 0.521984
+ - - -1.415691
+ - -4.8e-05
+ - -1.163337
+ - - -4.8e-05
+ - 1.415691
+ - 1.163337
+ - - -6.7e-05
+ - 1.958611
+ - -0.521984
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -235,54 +383,1016 @@ calculated_data:
- H
- H
- H
- LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 5.202497866353089
+ value: 16.840760048951157
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.0761767707
+ - - 1.083441
+ - 3.7e-05
+ - -0.127144
+ - - 3.7e-05
+ - -1.083441
+ - 0.127144
+ - - -1.083441
+ - -3.7e-05
+ - -0.127144
+ - - -3.7e-05
+ - 1.083441
+ - 0.127144
+ - - 1.412612
+ - 4.8e-05
+ - -1.172073
+ - - 1.967899
+ - 6.7e-05
+ - 0.517567
+ - - 6.7e-05
+ - -1.967899
+ - -0.517567
+ - - 4.8e-05
+ - -1.412612
+ - 1.172073
+ - - -1.967899
+ - -6.7e-05
+ - 0.517567
+ - - -1.412612
+ - -4.8e-05
+ - -1.172073
+ - - -4.8e-05
+ - 1.412612
+ - 1.172073
+ - - -6.7e-05
+ - 1.967899
+ - -0.517567
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.686577256529631
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084958
+ - 3.7e-05
+ - -0.128509
+ - - 3.7e-05
+ - -1.084958
+ - 0.128509
+ - - -1.084958
+ - -3.7e-05
+ - -0.128509
+ - - -3.7e-05
+ - 1.084958
+ - 0.128509
+ - - 1.413077
+ - 4.9e-05
+ - -1.178787
+ - - 1.976501
+ - 6.8e-05
+ - 0.51445
+ - - 6.8e-05
+ - -1.976501
+ - -0.51445
+ - - 4.9e-05
+ - -1.413077
+ - 1.178787
+ - - -1.976501
+ - -6.8e-05
+ - 0.51445
+ - - -1.413077
+ - -4.9e-05
+ - -1.178787
+ - - -4.9e-05
+ - 1.413077
+ - 1.178787
+ - - -6.8e-05
+ - 1.976501
+ - -0.51445
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.173975151200729
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.076651
+ - 3.7e-05
+ - -0.125615
+ - - 3.7e-05
+ - -1.076651
+ - 0.125615
+ - - -1.076651
+ - -3.7e-05
+ - -0.125615
+ - - -3.7e-05
+ - 1.076651
+ - 0.125615
+ - - 1.407202
+ - 4.8e-05
+ - -1.164533
+ - - 1.955593
+ - 6.7e-05
+ - 0.517332
+ - - 6.7e-05
+ - -1.955593
+ - -0.517332
+ - - 4.8e-05
+ - -1.407202
+ - 1.164533
+ - - -1.955593
+ - -6.7e-05
+ - 0.517332
+ - - -1.407202
+ - -4.8e-05
+ - -1.164533
+ - - -4.8e-05
+ - 1.407202
+ - 1.164533
+ - - -6.7e-05
+ - 1.955593
+ - -0.517332
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.3367602032718855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084988
+ - 3.7e-05
+ - -0.122465
+ - - 3.7e-05
+ - -1.084988
+ - 0.122465
+ - - -1.084988
+ - -3.7e-05
+ - -0.122465
+ - - -3.7e-05
+ - 1.084988
+ - 0.122465
+ - - 1.427017
+ - 4.9e-05
+ - -1.160632
+ - - 1.960281
+ - 6.7e-05
+ - 0.530312
+ - - 6.7e-05
+ - -1.960281
+ - -0.530312
+ - - 4.9e-05
+ - -1.427017
+ - 1.160632
+ - - -1.960281
+ - -6.7e-05
+ - 0.530312
+ - - -1.427017
+ - -4.9e-05
+ - -1.160632
+ - - -4.9e-05
+ - 1.427017
+ - 1.160632
+ - - -6.7e-05
+ - 1.960281
+ - -0.530312
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.665360792557067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.076177
- 0.0
- - -0.1334618025
+ - -0.133462
- - 0.0
- - -1.0761767707
- - 0.1334618025
- - - -1.0761767707
+ - -1.076177
+ - 0.133462
+ - - -1.076177
- -0.0
- - -0.1334618025
+ - -0.133462
- - -0.0
- - 1.0761767707
- - 0.1334618025
- - - 1.3840137051
- - -5.29574e-05
- - -1.1799675428
- - - 1.9666520022999998
- - 0.00015923169999999996
- - 0.493570737
- - - 0.00015923169999999996
- - -1.9666520022999998
- - -0.493570737
- - - -5.29574e-05
- - -1.3840137051
- - 1.1799675428
- - - -1.9666520022999998
- - -0.00015923169999999996
- - 0.493570737
- - - -1.3840137051
- - 5.29574e-05
- - -1.1799675428
- - - 5.29574e-05
- - 1.3840137051
- - 1.1799675428
- - - -0.00015923169999999996
- - 1.9666520022999998
- - -0.493570737
+ - 1.076177
+ - 0.133462
+ - - 1.384014
+ - -5.3e-05
+ - -1.179968
+ - - 1.966652
+ - 0.000159
+ - 0.493571
+ - - 0.000159
+ - -1.966652
+ - -0.493571
+ - - -5.3e-05
+ - -1.384014
+ - 1.179968
+ - - -1.966652
+ - -0.000159
+ - 0.493571
+ - - -1.384014
+ - 5.3e-05
+ - -1.179968
+ - - 5.3e-05
+ - 1.384014
+ - 1.179968
+ - - -0.000159
+ - 1.966652
+ - -0.493571
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.000090280172037
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.076177
+ - 0.0
+ - -0.133462
+ - - 0.0
+ - -1.076177
+ - 0.133462
+ - - -1.076177
+ - -0.0
+ - -0.133462
+ - - -0.0
+ - 1.076177
+ - 0.133462
+ - - 1.384014
+ - -5.3e-05
+ - -1.179968
+ - - 1.966652
+ - 0.000159
+ - 0.493571
+ - - 0.000159
+ - -1.966652
+ - -0.493571
+ - - -5.3e-05
+ - -1.384014
+ - 1.179968
+ - - -1.966652
+ - -0.000159
+ - 0.493571
+ - - -1.384014
+ - 5.3e-05
+ - -1.179968
+ - - 5.3e-05
+ - 1.384014
+ - 1.179968
+ - - -0.000159
+ - 1.966652
+ - -0.493571
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.21018997915128
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.076177
+ - 0.0
+ - -0.133462
+ - - 0.0
+ - -1.076177
+ - 0.133462
+ - - -1.076177
+ - -0.0
+ - -0.133462
+ - - -0.0
+ - 1.076177
+ - 0.133462
+ - - 1.384014
+ - -5.3e-05
+ - -1.179968
+ - - 1.966652
+ - 0.000159
+ - 0.493571
+ - - 0.000159
+ - -1.966652
+ - -0.493571
+ - - -5.3e-05
+ - -1.384014
+ - 1.179968
+ - - -1.966652
+ - -0.000159
+ - 0.493571
+ - - -1.384014
+ - 5.3e-05
+ - -1.179968
+ - - 5.3e-05
+ - 1.384014
+ - 1.179968
+ - - -0.000159
+ - 1.966652
+ - -0.493571
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.015356320713025
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.766797
+ - -0.766797
+ - 0.124705
+ - - 0.766797
+ - 0.766797
+ - -0.124705
+ - - -0.766797
+ - 0.766797
+ - 0.124705
+ - - -0.766797
+ - -0.766797
+ - -0.124705
+ - - 1.005211
+ - -1.005211
+ - 1.165689
+ - - 1.389569
+ - -1.389569
+ - -0.522329
+ - - 1.389569
+ - 1.389569
+ - 0.522329
+ - - 1.005211
+ - 1.005211
+ - -1.165689
+ - - -1.389569
+ - 1.389569
+ - -0.522329
+ - - -1.005211
+ - 1.005211
+ - 1.165689
+ - - -1.005211
+ - -1.005211
+ - -1.165689
+ - - -1.389569
+ - -1.389569
+ - 0.522329
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.079967847482274
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.073366
+ - 3.8e-05
+ - -0.14136
+ - - 3.8e-05
+ - -1.073366
+ - 0.14136
+ - - -1.073366
+ - -3.8e-05
+ - -0.14136
+ - - -3.8e-05
+ - 1.073366
+ - 0.14136
+ - - 1.35777
+ - 4.8e-05
+ - -1.19398
+ - - 1.974844
+ - 6.9e-05
+ - 0.469058
+ - - 6.9e-05
+ - -1.974844
+ - -0.469058
+ - - 4.8e-05
+ - -1.35777
+ - 1.19398
+ - - -1.974844
+ - -6.9e-05
+ - 0.469058
+ - - -1.35777
+ - -4.8e-05
+ - -1.19398
+ - - -4.8e-05
+ - 1.35777
+ - 1.19398
+ - - -6.9e-05
+ - 1.974844
+ - -0.469058
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.301437781529614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.073362
+ - 3.7e-05
+ - -0.133492
+ - - 3.7e-05
+ - -1.073362
+ - 0.133492
+ - - -1.073362
+ - -3.7e-05
+ - -0.133492
+ - - -3.7e-05
+ - 1.073362
+ - 0.133492
+ - - 1.38139
+ - 4.8e-05
+ - -1.181831
+ - - 1.968168
+ - 6.8e-05
+ - 0.491194
+ - - 6.8e-05
+ - -1.968168
+ - -0.491194
+ - - 4.8e-05
+ - -1.38139
+ - 1.181831
+ - - -1.968168
+ - -6.8e-05
+ - 0.491194
+ - - -1.38139
+ - -4.8e-05
+ - -1.181831
+ - - -4.8e-05
+ - 1.38139
+ - 1.181831
+ - - -6.8e-05
+ - 1.968168
+ - -0.491194
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.59333211348275
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.081289
+ - 3.8e-05
+ - -0.137444
+ - - 3.8e-05
+ - -1.081289
+ - 0.137444
+ - - -1.081289
+ - -3.8e-05
+ - -0.137444
+ - - -3.8e-05
+ - 1.081289
+ - 0.137444
+ - - 1.383604
+ - 4.8e-05
+ - -1.190115
+ - - 1.980658
+ - 6.9e-05
+ - 0.485828
+ - - 6.9e-05
+ - -1.980658
+ - -0.485828
+ - - 4.8e-05
+ - -1.383604
+ - 1.190115
+ - - -1.980658
+ - -6.9e-05
+ - 0.485828
+ - - -1.383604
+ - -4.8e-05
+ - -1.190115
+ - - -4.8e-05
+ - 1.383604
+ - 1.190115
+ - - -6.9e-05
+ - 1.980658
+ - -0.485828
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.202497866353089
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0761767707
+ - 0.0
+ - -0.1334618025
+ - - 0.0
+ - -1.0761767707
+ - 0.1334618025
+ - - -1.0761767707
+ - -0.0
+ - -0.1334618025
+ - - -0.0
+ - 1.0761767707
+ - 0.1334618025
+ - - 1.3840137051
+ - -5.29574e-05
+ - -1.1799675428
+ - - 1.9666520022999998
+ - 0.00015923169999999996
+ - 0.493570737
+ - - 0.00015923169999999996
+ - -1.9666520022999998
+ - -0.493570737
+ - - -5.29574e-05
+ - -1.3840137051
+ - 1.1799675428
+ - - -1.9666520022999998
+ - -0.00015923169999999996
+ - 0.493570737
+ - - -1.3840137051
+ - 5.29574e-05
+ - -1.1799675428
+ - - 5.29574e-05
+ - 1.3840137051
+ - 1.1799675428
+ - - -0.00015923169999999996
+ - 1.9666520022999998
+ - -0.493570737
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.970655734796844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0761767707
+ - 0.0
+ - -0.1334618025
+ - - 0.0
+ - -1.0761767707
+ - 0.1334618025
+ - - -1.0761767707
+ - -0.0
+ - -0.1334618025
+ - - -0.0
+ - 1.0761767707
+ - 0.1334618025
+ - - 1.3840137051
+ - -5.29574e-05
+ - -1.1799675428
+ - - 1.9666520023
+ - 0.0001592317
+ - 0.493570737
+ - - 0.0001592317
+ - -1.9666520023
+ - -0.493570737
+ - - -5.29574e-05
+ - -1.3840137051
+ - 1.1799675428
+ - - -1.9666520023
+ - -0.0001592317
+ - 0.493570737
+ - - -1.3840137051
+ - 5.29574e-05
+ - -1.1799675428
+ - - 5.29574e-05
+ - 1.3840137051
+ - 1.1799675428
+ - - -0.0001592317
+ - 1.9666520023
+ - -0.493570737
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.903870270693597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.077247
+ - 3.7e-05
+ - -0.127261
+ - - 3.7e-05
+ - -1.077247
+ - 0.127261
+ - - -1.077247
+ - -3.7e-05
+ - -0.127261
+ - - -3.7e-05
+ - 1.077247
+ - 0.127261
+ - - 1.402952
+ - 4.8e-05
+ - -1.168515
+ - - 1.958393
+ - 6.7e-05
+ - 0.513803
+ - - 6.7e-05
+ - -1.958393
+ - -0.513803
+ - - 4.8e-05
+ - -1.402952
+ - 1.168515
+ - - -1.958393
+ - -6.7e-05
+ - 0.513803
+ - - -1.402952
+ - -4.8e-05
+ - -1.168515
+ - - -4.8e-05
+ - 1.402952
+ - 1.168515
+ - - -6.7e-05
+ - 1.958393
+ - -0.513803
isotopes:
- 12
- 12
diff --git a/input/reference_sets/main/Cyclobutene.yml b/input/reference_sets/main/Cyclobutene.yml
index 392f1cb81d..fdb640c418 100644
--- a/input/reference_sets/main/Cyclobutene.yml
+++ b/input/reference_sets/main/Cyclobutene.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.72690882333311
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698126
+ - -0.783838
+ - -3.0e-06
+ - - -0.698209
+ - 0.783776
+ - 4.0e-06
+ - - 0.812219
+ - 0.669384
+ - 3.0e-06
+ - - 0.812289
+ - -0.669287
+ - -3.0e-06
+ - - -1.13938
+ - -1.240213
+ - -0.887297
+ - - -1.13938
+ - -1.24022
+ - 0.887289
+ - - -1.13951
+ - 1.240112
+ - -0.887288
+ - - -1.13951
+ - 1.240105
+ - 0.887299
+ - - 1.598184
+ - 1.412668
+ - 7.0e-06
+ - - 1.598333
+ - -1.412489
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.63920605789635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.697855
+ - -0.784751
+ - -3.0e-06
+ - - -0.697937
+ - 0.784689
+ - 4.0e-06
+ - - 0.812929
+ - 0.667575
+ - 3.0e-06
+ - - 0.812999
+ - -0.667478
+ - -2.0e-06
+ - - -1.140195
+ - -1.242495
+ - -0.887402
+ - - -1.140195
+ - -1.242503
+ - 0.887393
+ - - -1.140326
+ - 1.242395
+ - -0.887391
+ - - -1.140326
+ - 1.242387
+ - 0.887403
+ - - 1.598833
+ - 1.411897
+ - 6.0e-06
+ - - 1.598981
+ - -1.411718
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.56114559137061
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698314
+ - -0.78698
+ - -3.0e-06
+ - - -0.698397
+ - 0.786919
+ - 4.0e-06
+ - - 0.815312
+ - 0.671392
+ - 3.0e-06
+ - - 0.815383
+ - -0.671294
+ - -3.0e-06
+ - - -1.143506
+ - -1.246153
+ - -0.891119
+ - - -1.143505
+ - -1.24616
+ - 0.891111
+ - - -1.143636
+ - 1.246051
+ - -0.891109
+ - - -1.143636
+ - 1.246044
+ - 0.891121
+ - - 1.603529
+ - 1.420656
+ - 7.0e-06
+ - - 1.603678
+ - -1.420476
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.07170356373804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698385
+ - -0.787205
+ - -3.0e-06
+ - - -0.698468
+ - 0.787143
+ - 4.0e-06
+ - - 0.816421
+ - 0.673124
+ - 4.0e-06
+ - - 0.816491
+ - -0.673026
+ - -3.0e-06
+ - - -1.14644
+ - -1.249504
+ - -0.893879
+ - - -1.146439
+ - -1.249511
+ - 0.893872
+ - - -1.14657
+ - 1.249402
+ - -0.89387
+ - - -1.146571
+ - 1.249395
+ - 0.893881
+ - - 1.60836
+ - 1.425045
+ - 7.0e-06
+ - - 1.60851
+ - -1.424865
+ - -7.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.399649103150466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.696483
+ - -0.780598
+ - -3.0e-06
+ - - -0.696565
+ - 0.780536
+ - 4.0e-06
+ - - 0.809458
+ - 0.664394
+ - 3.0e-06
+ - - 0.809528
+ - -0.664297
+ - -2.0e-06
+ - - -1.137488
+ - -1.238424
+ - -0.886542
+ - - -1.137488
+ - -1.238432
+ - 0.886533
+ - - -1.137618
+ - 1.238324
+ - -0.886531
+ - - -1.137618
+ - 1.238317
+ - 0.886543
+ - - 1.595518
+ - 1.407534
+ - 6.0e-06
+ - - 1.595666
+ - -1.407355
+ - -5.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.15961971449668
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.699004
+ - -0.786413
+ - -3.0e-06
+ - - -0.699086
+ - 0.786351
+ - 4.0e-06
+ - - 0.815185
+ - 0.668696
+ - 3.0e-06
+ - - 0.815256
+ - -0.668599
+ - -2.0e-06
+ - - -1.142377
+ - -1.245702
+ - -0.888639
+ - - -1.142376
+ - -1.245709
+ - 0.88863
+ - - -1.142507
+ - 1.245601
+ - -0.888629
+ - - -1.142507
+ - 1.245594
+ - 0.88864
+ - - 1.602088
+ - 1.414524
+ - 6.0e-06
+ - - 1.602237
+ - -1.414344
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.13397446216324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698181
+ - -0.781478
+ - -3.0e-06
+ - - -0.698287
+ - 0.781407
+ - 3.0e-06
+ - - 0.811529
+ - 0.666027
+ - -5.0e-06
+ - - 0.811558
+ - -0.665955
+ - 4.0e-06
+ - - -1.138818
+ - -1.238357
+ - -0.887214
+ - - -1.138836
+ - -1.238374
+ - 0.887189
+ - - -1.138988
+ - 1.238279
+ - -0.887181
+ - - -1.138966
+ - 1.23826
+ - 0.887209
+ - - 1.597882
+ - 1.409071
+ - -9.0e-06
+ - - 1.598016
+ - -1.40888
+ - 1.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.442648645642116
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698181
+ - -0.781478
+ - -3.0e-06
+ - - -0.698287
+ - 0.781407
+ - 3.0e-06
+ - - 0.811529
+ - 0.666027
+ - -5.0e-06
+ - - 0.811558
+ - -0.665955
+ - 4.0e-06
+ - - -1.138818
+ - -1.238357
+ - -0.887214
+ - - -1.138836
+ - -1.238374
+ - 0.887189
+ - - -1.138988
+ - 1.238279
+ - -0.887181
+ - - -1.138966
+ - 1.23826
+ - 0.887209
+ - - 1.597882
+ - 1.409071
+ - -9.0e-06
+ - - 1.598016
+ - -1.40888
+ - 1.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.56520890671239
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.698181
+ - -0.781478
+ - -3.0e-06
+ - - -0.698287
+ - 0.781407
+ - 3.0e-06
+ - - 0.811529
+ - 0.666027
+ - -5.0e-06
+ - - 0.811558
+ - -0.665955
+ - 4.0e-06
+ - - -1.138818
+ - -1.238357
+ - -0.887214
+ - - -1.138836
+ - -1.238374
+ - 0.887189
+ - - -1.138988
+ - 1.238279
+ - -0.887181
+ - - -1.138966
+ - 1.23826
+ - 0.887209
+ - - 1.597882
+ - 1.409071
+ - -9.0e-06
+ - - 1.598016
+ - -1.40888
+ - 1.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.00616924587796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.697238
+ - -0.786084
+ - -3.0e-06
+ - - -0.697321
+ - 0.786023
+ - 4.0e-06
+ - - 0.816461
+ - 0.668868
+ - 3.0e-06
+ - - 0.816531
+ - -0.668771
+ - -2.0e-06
+ - - -1.142922
+ - -1.246609
+ - -0.888296
+ - - -1.142921
+ - -1.246616
+ - 0.888288
+ - - -1.143052
+ - 1.246508
+ - -0.888286
+ - - -1.143052
+ - 1.246501
+ - 0.888298
+ - - 1.600137
+ - 1.418142
+ - 6.0e-06
+ - - 1.600286
+ - -1.417962
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.073648595487974
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.697298
+ - -0.780645
+ - -3.0e-06
+ - - -0.69738
+ - 0.780584
+ - 4.0e-06
+ - - 0.810013
+ - 0.665639
+ - 3.0e-06
+ - - 0.810083
+ - -0.665543
+ - -2.0e-06
+ - - -1.137238
+ - -1.236491
+ - -0.887803
+ - - -1.137238
+ - -1.236498
+ - 0.887794
+ - - -1.137368
+ - 1.23639
+ - -0.887793
+ - - -1.137367
+ - 1.236383
+ - 0.887805
+ - - 1.595277
+ - 1.41033
+ - 6.0e-06
+ - - 1.595426
+ - -1.410151
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.67734276683752
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.694411
+ - -0.779219
+ - -3.0e-06
+ - - -0.694493
+ - 0.779158
+ - 4.0e-06
+ - - 0.808932
+ - 0.667032
+ - 3.0e-06
+ - - 0.809002
+ - -0.666936
+ - -2.0e-06
+ - - -1.13812
+ - -1.238123
+ - -0.887865
+ - - -1.138119
+ - -1.238131
+ - 0.887856
+ - - -1.13825
+ - 1.238023
+ - -0.887855
+ - - -1.138249
+ - 1.238016
+ - 0.887867
+ - - 1.595234
+ - 1.413433
+ - 6.0e-06
+ - - 1.595383
+ - -1.413254
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.56173444842491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.697909
+ - -0.786055
+ - -3.0e-06
+ - - -0.697991
+ - 0.785993
+ - 4.0e-06
+ - - 0.81506
+ - 0.670962
+ - 3.0e-06
+ - - 0.815131
+ - -0.670865
+ - -3.0e-06
+ - - -1.143259
+ - -1.245154
+ - -0.890552
+ - - -1.143258
+ - -1.245161
+ - 0.890544
+ - - -1.143389
+ - 1.245053
+ - -0.890543
+ - - -1.143389
+ - 1.245046
+ - 0.890554
+ - - 1.602882
+ - 1.42006
+ - 7.0e-06
+ - - 1.603031
+ - -1.419881
+ - -6.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.334985614551606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.6981813664
+ - -0.7814783156
+ - -3.3649e-06
+ - - -0.698287178
+ - 0.7814066309
+ - 3.3928e-06
+ - - 0.8115286641
+ - 0.6660271438
+ - -4.8296e-06
+ - - 0.8115581604
+ - -0.6659552255
+ - 3.6966e-06
+ - - -1.1388180128
+ - -1.2383574703
+ - -0.8872135606
+ - - -1.1388361028
+ - -1.2383738204
+ - 0.8871892372
+ - - -1.138988344
+ - 1.238278617
+ - -0.8871813028
+ - - -1.138965818
+ - 1.2382604377
+ - 0.8872088759
+ - - 1.5978822796
+ - 1.4090713072
+ - -9.397e-06
+ - - 1.5980163165
+ - -1.4088804726
+ - 1.27783e-05
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.31161932369408
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.696912
+ - -0.781016
+ - -3.0e-06
+ - - -0.696994
+ - 0.780955
+ - 4.0e-06
+ - - 0.810214
+ - 0.665644
+ - 3.0e-06
+ - - 0.810284
+ - -0.665547
+ - -2.0e-06
+ - - -1.137922
+ - -1.238451
+ - -0.887729
+ - - -1.137922
+ - -1.238459
+ - 0.88772
+ - - -1.138052
+ - 1.238351
+ - -0.887719
+ - - -1.138051
+ - 1.238343
+ - 0.887731
+ - - 1.596058
+ - 1.410158
+ - 6.0e-06
+ - - 1.596206
+ - -1.409979
+ - -5.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclobutylamine.yml b/input/reference_sets/main/Cyclobutylamine.yml
index 9b3b70c737..7ca9d5286e 100644
--- a/input/reference_sets/main/Cyclobutylamine.yml
+++ b/input/reference_sets/main/Cyclobutylamine.yml
@@ -183,60 +183,1152 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.280217122868837
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.884873
+ - 0.109293
+ - 0.093842
+ - - -0.528159
+ - 0.001463
+ - -0.394253
+ - - 0.470027
+ - -1.081769
+ - 0.106361
+ - - 1.581922
+ - -0.009879
+ - 0.024359
+ - - 0.476364
+ - 1.071605
+ - 0.076349
+ - - -2.466915
+ - -0.635865
+ - -0.269693
+ - - -1.90469
+ - 0.04287
+ - 1.105139
+ - - -0.562815
+ - -0.014324
+ - -1.485793
+ - - 0.580183
+ - -1.996358
+ - -0.476036
+ - - 0.252085
+ - -1.343469
+ - 1.14412
+ - - 2.337043
+ - -0.001023
+ - 0.807642
+ - - 2.080965
+ - -0.024411
+ - -0.944343
+ - - 0.260886
+ - 1.36088
+ - 1.107176
+ - - 0.587532
+ - 1.97163
+ - -0.52599
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.0610134553838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.883147
+ - 0.106933
+ - 0.109733
+ - - -0.532399
+ - 0.001341
+ - -0.395687
+ - - 0.471337
+ - -1.08536
+ - 0.094122
+ - - 1.582769
+ - -0.009552
+ - 0.036717
+ - - 0.476959
+ - 1.074335
+ - 0.065257
+ - - -2.474234
+ - -0.633723
+ - -0.249321
+ - - -1.895487
+ - 0.044079
+ - 1.1218
+ - - -0.58344
+ - -0.014019
+ - -1.487136
+ - - 0.589236
+ - -1.987712
+ - -0.506978
+ - - 0.24819
+ - -1.373222
+ - 1.124365
+ - - 2.31807
+ - -0.000277
+ - 0.839781
+ - - 2.110031
+ - -0.023355
+ - -0.917728
+ - - 0.256363
+ - 1.388491
+ - 1.08822
+ - - 0.595308
+ - 1.962685
+ - -0.554265
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 35.025928177648005
+ value: 35.025928177648005
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.8981994623
+ - 0.1107462816
+ - 0.099120464
+ - - -0.5355154787
+ - -0.0011406384
+ - -0.400524379
+ - - 0.4785238121
+ - -1.0910363514
+ - 0.1013262288
+ - - 1.5910027685
+ - -0.0045016112
+ - 0.030428254
+ - - 0.4748644193
+ - 1.0811133042
+ - 0.0712083663
+ - - -2.4561148499
+ - -0.6819282118
+ - -0.2321314401
+ - - -1.881061288
+ - 0.0341832926
+ - 1.1208712624
+ - - -0.5760760262
+ - -0.0173352101
+ - -1.5012721402
+ - - 0.6018940814
+ - -2.008389989
+ - -0.4931738028
+ - - 0.2553538695
+ - -1.3650253488
+ - 1.1450319147
+ - - 2.3432033863
+ - 0.008069835
+ - 0.8305959556
+ - - 2.105636331
+ - -0.0170852868
+ - -0.9410520002
+ - - 0.252561534
+ - 1.381907632
+ - 1.1073088547
+ - - 0.5887460707
+ - 1.9837710965
+ - -0.5446526736
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.48533282919296
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.892421
+ - 0.114411
+ - 0.104427
+ - - -0.535167
+ - 0.003348
+ - -0.396993
+ - - 0.471072
+ - -1.087465
+ - 0.096631
+ - - 1.585251
+ - -0.010001
+ - 0.034896
+ - - 0.47817
+ - 1.077566
+ - 0.067453
+ - - -2.473193
+ - -0.642018
+ - -0.250169
+ - - -1.897094
+ - 0.039794
+ - 1.119817
+ - - -0.582517
+ - -0.01294
+ - -1.493293
+ - - 0.587646
+ - -1.996465
+ - -0.503079
+ - - 0.246513
+ - -1.37046
+ - 1.132623
+ - - 2.327451
+ - -0.000839
+ - 0.837796
+ - - 2.109193
+ - -0.02442
+ - -0.926409
+ - - 0.257806
+ - 1.388029
+ - 1.096248
+ - - 0.596847
+ - 1.972104
+ - -0.551068
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.64828681543287
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.897985
+ - 0.116277
+ - 0.101295
+ - - -0.536146
+ - 0.001549
+ - -0.393601
+ - - 0.474906
+ - -1.089843
+ - 0.101435
+ - - 1.589464
+ - -0.009591
+ - 0.030597
+ - - 0.479532
+ - 1.078677
+ - 0.070089
+ - - -2.488532
+ - -0.633204
+ - -0.267617
+ - - -1.914153
+ - 0.034117
+ - 1.12178
+ - - -0.580595
+ - -0.015222
+ - -1.495183
+ - - 0.590264
+ - -2.007247
+ - -0.49455
+ - - 0.25458
+ - -1.369255
+ - 1.144648
+ - - 2.342766
+ - 0.000978
+ - 0.82954
+ - - 2.108812
+ - -0.024415
+ - -0.938661
+ - - 0.262056
+ - 1.386849
+ - 1.105581
+ - - 0.594589
+ - 1.980973
+ - -0.546473
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.04972455022717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.87502
+ - 0.101454
+ - 0.109075
+ - - -0.528076
+ - 0.000203
+ - -0.393068
+ - - 0.470639
+ - -1.080469
+ - 0.096277
+ - - 1.578073
+ - -0.009398
+ - 0.033851
+ - - 0.476042
+ - 1.069516
+ - 0.066844
+ - - -2.472439
+ - -0.627493
+ - -0.257946
+ - - -1.89607
+ - 0.044201
+ - 1.119529
+ - - -0.576648
+ - -0.01429
+ - -1.483892
+ - - 0.587483
+ - -1.985083
+ - -0.500105
+ - - 0.249459
+ - -1.363379
+ - 1.127533
+ - - 2.31756
+ - -0.00014
+ - 0.831936
+ - - 2.09981
+ - -0.023408
+ - -0.922739
+ - - 0.256357
+ - 1.379215
+ - 1.090576
+ - - 0.592387
+ - 1.959715
+ - -0.548991
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.7532567028877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.891157
+ - 0.113199
+ - 0.111466
+ - - -0.536914
+ - 0.002269
+ - -0.394469
+ - - 0.472347
+ - -1.088978
+ - 0.094761
+ - - 1.586203
+ - -0.009452
+ - 0.037997
+ - - 0.478382
+ - 1.078477
+ - 0.063929
+ - - -2.479107
+ - -0.630576
+ - -0.252465
+ - - -1.898986
+ - 0.030877
+ - 1.124238
+ - - -0.588831
+ - -0.013169
+ - -1.487934
+ - - 0.591605
+ - -1.992254
+ - -0.508615
+ - - 0.250092
+ - -1.380737
+ - 1.126409
+ - - 2.322236
+ - 0.00026
+ - 0.843198
+ - - 2.11655
+ - -0.024467
+ - -0.917084
+ - - 0.259115
+ - 1.399057
+ - 1.087418
+ - - 0.598021
+ - 1.966139
+ - -0.559969
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.275396268994108
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879363
+ - 0.105783
+ - 0.098854
+ - - -0.525344
+ - 0.001432
+ - -0.396146
+ - - 0.468579
+ - -1.079316
+ - 0.104049
+ - - 1.579734
+ - -0.009741
+ - 0.02633
+ - - 0.476354
+ - 1.070557
+ - 0.073367
+ - - -2.468081
+ - -0.632021
+ - -0.267186
+ - - -1.897163
+ - 0.037662
+ - 1.110113
+ - - -0.56245
+ - -0.013468
+ - -1.488085
+ - - 0.580237
+ - -1.993424
+ - -0.478967
+ - - 0.247163
+ - -1.341065
+ - 1.141706
+ - - 2.331944
+ - -0.001083
+ - 0.812467
+ - - 2.082202
+ - -0.02495
+ - -0.941063
+ - - 0.25625
+ - 1.360616
+ - 1.103684
+ - - 0.589493
+ - 1.969662
+ - -0.530241
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.680206566006229
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879363
+ - 0.105783
+ - 0.098854
+ - - -0.525343
+ - 0.001432
+ - -0.396146
+ - - 0.468579
+ - -1.079316
+ - 0.104049
+ - - 1.579734
+ - -0.009741
+ - 0.02633
+ - - 0.476354
+ - 1.070557
+ - 0.073367
+ - - -2.468081
+ - -0.632021
+ - -0.267186
+ - - -1.897163
+ - 0.037662
+ - 1.110113
+ - - -0.56245
+ - -0.013468
+ - -1.488085
+ - - 0.580237
+ - -1.993424
+ - -0.478967
+ - - 0.247163
+ - -1.341065
+ - 1.141706
+ - - 2.331944
+ - -0.001083
+ - 0.812467
+ - - 2.082202
+ - -0.02495
+ - -0.941063
+ - - 0.25625
+ - 1.360616
+ - 1.103684
+ - - 0.589493
+ - 1.969662
+ - -0.530241
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.948638615468035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879363
+ - 0.105783
+ - 0.098854
+ - - -0.525343
+ - 0.001432
+ - -0.396146
+ - - 0.468579
+ - -1.079316
+ - 0.104049
+ - - 1.579734
+ - -0.009741
+ - 0.02633
+ - - 0.476354
+ - 1.070557
+ - 0.073367
+ - - -2.468081
+ - -0.632021
+ - -0.267186
+ - - -1.897163
+ - 0.037662
+ - 1.110113
+ - - -0.56245
+ - -0.013468
+ - -1.488085
+ - - 0.580237
+ - -1.993424
+ - -0.478967
+ - - 0.247163
+ - -1.341065
+ - 1.141706
+ - - 2.331944
+ - -0.001083
+ - 0.812467
+ - - 2.082202
+ - -0.02495
+ - -0.941063
+ - - 0.25625
+ - 1.360616
+ - 1.103684
+ - - 0.589493
+ - 1.969662
+ - -0.530241
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.781163622030371
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.893175
+ - 0.116468
+ - 0.104114
+ - - -0.537364
+ - 0.004892
+ - -0.396689
+ - - 0.468284
+ - -1.087448
+ - 0.095288
+ - - 1.584159
+ - -0.010129
+ - 0.036348
+ - - 0.478182
+ - 1.07945
+ - 0.06619
+ - - -2.466611
+ - -0.646323
+ - -0.244984
+ - - -1.896023
+ - 0.035418
+ - 1.117651
+ - - -0.586137
+ - -0.01091
+ - -1.491628
+ - - 0.58634
+ - -1.994928
+ - -0.503424
+ - - 0.245987
+ - -1.375946
+ - 1.1291
+ - - 2.325066
+ - -0.002398
+ - 0.838398
+ - - 2.111826
+ - -0.025212
+ - -0.921557
+ - - 0.259082
+ - 1.39588
+ - 1.092196
+ - - 0.59994
+ - 1.971829
+ - -0.552123
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.569851586207921
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.8981994623
- - 0.1107462816
- - 0.099120464
- - - -0.5355154787
- - -0.0011406384
- - -0.400524379
- - - 0.4785238121
- - -1.0910363514
- - 0.1013262288
- - - 1.5910027685
- - -0.0045016112
- - 0.030428254
- - - 0.4748644193
- - 1.0811133042
- - 0.0712083663
- - - -2.4561148499
- - -0.6819282118
- - -0.2321314401
- - - -1.881061288
- - 0.0341832926
- - 1.1208712624
- - - -0.5760760262
- - -0.0173352101
- - -1.5012721402
- - - 0.6018940814
- - -2.008389989
- - -0.4931738028
- - - 0.2553538695
- - -1.3650253488
- - 1.1450319147
- - - 2.3432033863
- - 0.008069835
- - 0.8305959556
- - - 2.105636331
- - -0.0170852868
- - -0.9410520002
- - - 0.252561534
- - 1.381907632
- - 1.1073088547
- - - 0.5887460707
- - 1.9837710965
- - -0.5446526736
+ - - -1.879866
+ - 0.10687
+ - 0.085182
+ - - -0.523135
+ - 0.000804
+ - -0.39817
+ - - 0.467877
+ - -1.078523
+ - 0.108974
+ - - 1.578215
+ - -0.010401
+ - 0.019443
+ - - 0.474555
+ - 1.067555
+ - 0.081233
+ - - -2.459391
+ - -0.644896
+ - -0.268176
+ - - -1.899809
+ - 0.057492
+ - 1.097637
+ - - -0.548194
+ - -0.012228
+ - -1.489949
+ - - 0.577621
+ - -1.999413
+ - -0.462702
+ - - 0.24738
+ - -1.324103
+ - 1.150358
+ - - 2.341555
+ - -0.002569
+ - 0.794221
+ - - 2.063165
+ - -0.023941
+ - -0.956377
+ - - 0.255637
+ - 1.338834
+ - 1.116573
+ - - 0.583947
+ - 1.975162
+ - -0.509367
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.813594867155167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879284
+ - 0.107773
+ - 0.091801
+ - - -0.527697
+ - 0.001325
+ - -0.389096
+ - - 0.46919
+ - -1.077446
+ - 0.107201
+ - - 1.575704
+ - -0.010069
+ - 0.022932
+ - - 0.475875
+ - 1.067376
+ - 0.076779
+ - - -2.46227
+ - -0.634134
+ - -0.275341
+ - - -1.905843
+ - 0.042087
+ - 1.102624
+ - - -0.558444
+ - -0.013685
+ - -1.483451
+ - - 0.578706
+ - -1.996075
+ - -0.473163
+ - - 0.253842
+ - -1.339569
+ - 1.147758
+ - - 2.336639
+ - -0.001015
+ - 0.803666
+ - - 2.074213
+ - -0.024938
+ - -0.948633
+ - - 0.262986
+ - 1.357918
+ - 1.110151
+ - - 0.58594
+ - 1.971095
+ - -0.524347
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.780373228637448
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.900406
+ - 0.117041
+ - 0.088601
+ - - -0.530839
+ - 0.001793
+ - -0.392277
+ - - 0.474173
+ - -1.086136
+ - 0.112173
+ - - 1.588621
+ - -0.009868
+ - 0.020314
+ - - 0.479623
+ - 1.075889
+ - 0.080067
+ - - -2.480659
+ - -0.634521
+ - -0.283677
+ - - -1.925515
+ - 0.033309
+ - 1.105227
+ - - -0.564975
+ - -0.015339
+ - -1.488143
+ - - 0.583148
+ - -2.007835
+ - -0.468908
+ - - 0.261437
+ - -1.345182
+ - 1.156537
+ - - 2.353626
+ - 0.00034
+ - 0.801102
+ - - 2.082585
+ - -0.025368
+ - -0.956359
+ - - 0.269502
+ - 1.364576
+ - 1.117009
+ - - 0.589237
+ - 1.981944
+ - -0.522785
isotopes:
- 14
- 12
@@ -351,6 +1443,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.376361304396196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879362786
+ - 0.1057832682
+ - 0.0988535657
+ - - -0.5253435033
+ - 0.0014318452
+ - -0.3961462935
+ - - 0.4685792315
+ - -1.0793164881
+ - 0.1040490265
+ - - 1.5797342965
+ - -0.0097409648
+ - 0.0263301608
+ - - 0.4763539334
+ - 1.0705570025
+ - 0.0733667081
+ - - -2.4680806811
+ - -0.6320206584
+ - -0.2671860844
+ - - -1.8971627556
+ - 0.0376619735
+ - 1.1101133338
+ - - -0.5624495452
+ - -0.0134682774
+ - -1.488084835
+ - - 0.580237167
+ - -1.9934243221
+ - -0.4789671571
+ - - 0.2471627159
+ - -1.3410652582
+ - 1.1417058253
+ - - 2.3319435163
+ - -0.0010832275
+ - 0.8124667075
+ - - 2.0822024741
+ - -0.0249495522
+ - -0.9410634471
+ - - 0.256250228
+ - 1.3606158385
+ - 1.1036839698
+ - - 0.5894926344
+ - 1.9696622374
+ - -0.5302408842
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.949689289880286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.879147
+ - 0.104699
+ - 0.102036
+ - - -0.529503
+ - 0.002139
+ - -0.39507
+ - - 0.468065
+ - -1.080837
+ - 0.097735
+ - - 1.577205
+ - -0.010107
+ - 0.031813
+ - - 0.475515
+ - 1.070864
+ - 0.069862
+ - - -2.461808
+ - -0.642039
+ - -0.251976
+ - - -1.893497
+ - 0.051367
+ - 1.112715
+ - - -0.571226
+ - -0.011486
+ - -1.486953
+ - - 0.583627
+ - -1.987877
+ - -0.496318
+ - - 0.246903
+ - -1.358353
+ - 1.131487
+ - - 2.319945
+ - -0.002057
+ - 0.8278
+ - - 2.093472
+ - -0.024039
+ - -0.928613
+ - - 0.257532
+ - 1.374262
+ - 1.09684
+ - - 0.592472
+ - 1.964107
+ - -0.542476
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclohexane.yml b/input/reference_sets/main/Cyclohexane.yml
index 2b8d67a647..ab2e64fe8f 100644
--- a/input/reference_sets/main/Cyclohexane.yml
+++ b/input/reference_sets/main/Cyclohexane.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.869381196633084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139275
+ - -1.45062
+ - 0.231139
+ - - -1.325945
+ - -0.604657
+ - -0.230596
+ - - -1.186589
+ - 0.84605
+ - 0.23098
+ - - 0.139274
+ - 1.45062
+ - -0.231139
+ - - 1.325943
+ - 0.604657
+ - 0.230596
+ - - 1.186588
+ - -0.84605
+ - -0.23098
+ - - -0.144677
+ - -1.508755
+ - 1.324997
+ - - -0.237664
+ - -2.474383
+ - -0.136975
+ - - -1.379316
+ - -0.629079
+ - -1.32443
+ - - -2.261611
+ - -1.03135
+ - 0.137836
+ - - -2.024094
+ - 1.442944
+ - -0.137233
+ - - -1.234052
+ - 0.880183
+ - 1.32483
+ - - 0.237663
+ - 2.474383
+ - 0.136975
+ - - 0.144676
+ - 1.508755
+ - -1.324997
+ - - 2.26161
+ - 1.03135
+ - -0.137836
+ - - 1.379315
+ - 0.62908
+ - 1.32443
+ - - 2.024093
+ - -1.442944
+ - 0.137233
+ - - 1.234051
+ - -0.880183
+ - -1.32483
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.865841175255637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139525
+ - -1.453281
+ - 0.229472
+ - - -1.328339
+ - -0.605735
+ - -0.228906
+ - - -1.188752
+ - 0.847626
+ - 0.229305
+ - - 0.139523
+ - 1.453282
+ - -0.229471
+ - - 1.328337
+ - 0.605736
+ - 0.228906
+ - - 1.188751
+ - -0.847625
+ - -0.229305
+ - - -0.145426
+ - -1.516783
+ - 1.323702
+ - - -0.237846
+ - -2.47627
+ - -0.142607
+ - - -1.386564
+ - -0.63238
+ - -1.323109
+ - - -2.2633
+ - -1.032128
+ - 0.143459
+ - - -2.025656
+ - 1.444026
+ - -0.142864
+ - - -1.240576
+ - 0.884884
+ - 1.323525
+ - - 0.237845
+ - 2.47627
+ - 0.142607
+ - - 0.145425
+ - 1.516784
+ - -1.323702
+ - - 2.263299
+ - 1.032128
+ - -0.143459
+ - - 1.386563
+ - 0.63238
+ - 1.32311
+ - - 2.025655
+ - -1.444026
+ - 0.142864
+ - - 1.240574
+ - -0.884884
+ - -1.323525
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 10.324196663253701
+ value: 10.324196663253701
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.0054456602
+ - -1.0706408269
+ - 0.2352853497
+ - - -1.4302666879
+ - 0.3352020617
+ - -0.2350245073
+ - - -0.4247536304
+ - 1.4056071569
+ - 0.2349687048
+ - - 1.0057031335
+ - 1.0706539523
+ - -0.2349348867
+ - - 1.4303676271
+ - -0.3353828275
+ - 0.2352519241
+ - - 0.4247476094
+ - -1.4054254518
+ - -0.2353747012
+ - - -1.0377782756
+ - -1.1053469708
+ - 1.3386149636
+ - - -1.7166168705
+ - -1.8282395535
+ - -0.1312339134
+ - - -1.4773997867
+ - 0.3458466777
+ - -1.3382924554
+ - - -2.4417221086
+ - 0.5728420108
+ - 0.1319459172
+ - - -0.7249836088
+ - 2.4003510483
+ - -0.1315890224
+ - - -0.4387223316
+ - 1.4507328891
+ - 1.3382944056
+ - - 1.7167042791
+ - 1.8285070643
+ - 0.1313625893
+ - - 1.0377146511
+ - 1.1051378335
+ - -1.338253874
+ - - 2.4418474932
+ - -0.5731728278
+ - -0.1314835954
+ - - 1.4765118882
+ - -0.346549135
+ - 1.3385413563
+ - - 0.7248203163
+ - -2.4006784202
+ - 0.1298616736
+ - - 0.4375100051
+ - -1.449515004
+ - -1.3387993457
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.867569873114524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139825
+ - -1.456485
+ - 0.230656
+ - - -1.331236
+ - -0.607038
+ - -0.23007
+ - - -1.19136
+ - 0.849517
+ - 0.230487
+ - - 0.139823
+ - 1.456485
+ - -0.230656
+ - - 1.331235
+ - 0.607038
+ - 0.23007
+ - - 1.191359
+ - -0.849516
+ - -0.230487
+ - - -0.145398
+ - -1.516794
+ - 1.329434
+ - - -0.238635
+ - -2.484487
+ - -0.140647
+ - - -1.386502
+ - -0.63235
+ - -1.32882
+ - - -2.270781
+ - -1.03554
+ - 0.1415
+ - - -2.032391
+ - 1.448805
+ - -0.140911
+ - - -1.24056
+ - 0.884902
+ - 1.329253
+ - - 0.238634
+ - 2.484487
+ - 0.140647
+ - - 0.145397
+ - 1.516794
+ - -1.329434
+ - - 2.27078
+ - 1.03554
+ - -0.1415
+ - - 1.386501
+ - 0.632351
+ - 1.328821
+ - - 2.03239
+ - -1.448805
+ - 0.140911
+ - - 1.240559
+ - -0.884901
+ - -1.329253
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.230542965674474
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.140161
+ - -1.459982
+ - 0.22955
+ - - -1.33442
+ - -0.608494
+ - -0.228958
+ - - -1.194214
+ - 0.851559
+ - 0.229376
+ - - 0.14016
+ - 1.459982
+ - -0.22955
+ - - 1.334419
+ - 0.608495
+ - 0.228958
+ - - 1.194213
+ - -0.851559
+ - -0.229376
+ - - -0.146415
+ - -1.527394
+ - 1.333094
+ - - -0.239329
+ - -2.491689
+ - -0.145906
+ - - -1.39617
+ - -0.636759
+ - -1.332474
+ - - -2.277352
+ - -1.038545
+ - 0.146754
+ - - -2.038289
+ - 1.452997
+ - -0.146163
+ - - -1.249209
+ - 0.891098
+ - 1.332908
+ - - 0.239328
+ - 2.491689
+ - 0.145907
+ - - 0.146413
+ - 1.527395
+ - -1.333094
+ - - 2.277351
+ - 1.038545
+ - -0.146754
+ - - 1.396168
+ - 0.636759
+ - 1.332474
+ - - 2.038288
+ - -1.452996
+ - 0.146163
+ - - 1.249208
+ - -0.891097
+ - -1.332907
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.296669265115039
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139114
+ - -1.448822
+ - 0.228423
+ - - -1.324394
+ - -0.603952
+ - -0.227929
+ - - -1.185185
+ - 0.844996
+ - 0.228309
+ - - 0.139113
+ - 1.448822
+ - -0.228423
+ - - 1.324393
+ - 0.603952
+ - 0.227929
+ - - 1.185184
+ - -0.844996
+ - -0.228309
+ - - -0.14522
+ - -1.514099
+ - 1.321725
+ - - -0.237313
+ - -2.470779
+ - -0.143999
+ - - -1.384414
+ - -0.631344
+ - -1.321208
+ - - -2.258374
+ - -1.029903
+ - 0.14487
+ - - -2.021148
+ - 1.440889
+ - -0.144263
+ - - -1.238605
+ - 0.883355
+ - 1.321607
+ - - 0.237312
+ - 2.470779
+ - 0.143999
+ - - 0.145219
+ - 1.514099
+ - -1.321725
+ - - 2.258373
+ - 1.029903
+ - -0.14487
+ - - 1.384413
+ - 0.631344
+ - 1.321208
+ - - 2.021147
+ - -1.440889
+ - 0.144263
+ - - 1.238604
+ - -0.883355
+ - -1.321607
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.866652769381073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.14018
+ - -1.459961
+ - 0.228622
+ - - -1.334461
+ - -0.608543
+ - -0.228065
+ - - -1.194222
+ - 0.851497
+ - 0.228461
+ - - 0.140179
+ - 1.459961
+ - -0.228622
+ - - 1.33446
+ - 0.608543
+ - 0.228065
+ - - 1.194221
+ - -0.851497
+ - -0.22846
+ - - -0.146718
+ - -1.530076
+ - 1.324354
+ - - -0.238529
+ - -2.483304
+ - -0.148327
+ - - -1.398757
+ - -0.637948
+ - -1.323768
+ - - -2.269748
+ - -1.035062
+ - 0.149186
+ - - -2.031394
+ - 1.448132
+ - -0.148582
+ - - -1.251479
+ - 0.892624
+ - 1.324183
+ - - 0.238528
+ - 2.483304
+ - 0.148327
+ - - 0.146717
+ - 1.530076
+ - -1.324354
+ - - 2.269747
+ - 1.035062
+ - -0.149186
+ - - 1.398756
+ - 0.637948
+ - 1.323768
+ - - 2.031393
+ - -1.448131
+ - 0.148582
+ - - 1.251477
+ - -0.892623
+ - -1.324183
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.918812949371915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139161
+ - -1.447557
+ - 0.23231
+ - - -1.324002
+ - -0.603212
+ - -0.232363
+ - - -1.184443
+ - 0.844291
+ - 0.232467
+ - - 0.139166
+ - 1.447557
+ - -0.232309
+ - - 1.324001
+ - 0.603208
+ - 0.232373
+ - - 1.184442
+ - -0.844288
+ - -0.232479
+ - - -0.143888
+ - -1.498787
+ - 1.327312
+ - - -0.236963
+ - -2.473394
+ - -0.130421
+ - - -1.372252
+ - -0.625346
+ - -1.327291
+ - - -2.260952
+ - -1.030961
+ - 0.131607
+ - - -2.023144
+ - 1.442602
+ - -0.131076
+ - - -1.227031
+ - 0.874294
+ - 1.327406
+ - - 0.236964
+ - 2.473393
+ - 0.130425
+ - - 0.143906
+ - 1.498789
+ - -1.32731
+ - - 2.260957
+ - 1.030962
+ - -0.131574
+ - - 1.372231
+ - 0.625325
+ - 1.327303
+ - - 2.023148
+ - -1.442604
+ - 0.13104
+ - - 1.227011
+ - -0.87427
+ - -1.327419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.464893283559913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139161
+ - -1.447557
+ - 0.23231
+ - - -1.324002
+ - -0.603212
+ - -0.232363
+ - - -1.184443
+ - 0.844291
+ - 0.232467
+ - - 0.139166
+ - 1.447557
+ - -0.232309
+ - - 1.324001
+ - 0.603208
+ - 0.232373
+ - - 1.184442
+ - -0.844288
+ - -0.232479
+ - - -0.143888
+ - -1.498787
+ - 1.327312
+ - - -0.236963
+ - -2.473394
+ - -0.130421
+ - - -1.372252
+ - -0.625346
+ - -1.327291
+ - - -2.260952
+ - -1.030961
+ - 0.131607
+ - - -2.023144
+ - 1.442602
+ - -0.131076
+ - - -1.227031
+ - 0.874294
+ - 1.327406
+ - - 0.236964
+ - 2.473393
+ - 0.130425
+ - - 0.143906
+ - 1.498789
+ - -1.32731
+ - - 2.260957
+ - 1.030962
+ - -0.131574
+ - - 1.372231
+ - 0.625325
+ - 1.327303
+ - - 2.023148
+ - -1.442604
+ - 0.13104
+ - - 1.227011
+ - -0.87427
+ - -1.327419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.218424723655193
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139161
+ - -1.447557
+ - 0.23231
+ - - -1.324002
+ - -0.603212
+ - -0.232363
+ - - -1.184443
+ - 0.844291
+ - 0.232467
+ - - 0.139166
+ - 1.447557
+ - -0.232309
+ - - 1.324001
+ - 0.603208
+ - 0.232373
+ - - 1.184442
+ - -0.844288
+ - -0.232479
+ - - -0.143888
+ - -1.498787
+ - 1.327312
+ - - -0.236963
+ - -2.473394
+ - -0.130421
+ - - -1.372252
+ - -0.625346
+ - -1.327291
+ - - -2.260952
+ - -1.030961
+ - 0.131607
+ - - -2.023144
+ - 1.442602
+ - -0.131076
+ - - -1.227031
+ - 0.874294
+ - 1.327406
+ - - 0.236964
+ - 2.473393
+ - 0.130425
+ - - 0.143906
+ - 1.498789
+ - -1.32731
+ - - 2.260957
+ - 1.030962
+ - -0.131574
+ - - 1.372231
+ - 0.625325
+ - 1.327303
+ - - 2.023148
+ - -1.442604
+ - 0.13104
+ - - 1.227011
+ - -0.87427
+ - -1.327419
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.06530507707075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.14008
+ - -1.458952
+ - 0.230122
+ - - -1.333541
+ - -0.608118
+ - -0.229569
+ - - -1.193395
+ - 0.850915
+ - 0.229956
+ - - 0.140079
+ - 1.458952
+ - -0.230122
+ - - 1.33354
+ - 0.608118
+ - 0.229569
+ - - 1.193394
+ - -0.850915
+ - -0.229956
+ - - -0.14622
+ - -1.524798
+ - 1.327398
+ - - -0.238689
+ - -2.485089
+ - -0.142378
+ - - -1.393946
+ - -0.635748
+ - -1.326817
+ - - -2.271378
+ - -1.035809
+ - 0.143239
+ - - -2.032861
+ - 1.449172
+ - -0.142633
+ - - -1.247146
+ - 0.889545
+ - 1.327222
+ - - 0.238688
+ - 2.48509
+ - 0.142378
+ - - 0.146219
+ - 1.524798
+ - -1.327398
+ - - 2.271377
+ - 1.035809
+ - -0.143239
+ - - 1.393945
+ - 0.635749
+ - 1.326817
+ - - 2.03286
+ - -1.449172
+ - 0.142633
+ - - 1.247144
+ - -0.889545
+ - -1.327222
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.34202988227475
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.13903
+ - -1.448172
+ - 0.233145
+ - - -1.323659
+ - -0.603563
+ - -0.232551
+ - - -1.184565
+ - 0.844697
+ - 0.232992
+ - - 0.139029
+ - 1.448173
+ - -0.233145
+ - - 1.323658
+ - 0.603563
+ - 0.232551
+ - - 1.184564
+ - -0.844697
+ - -0.232992
+ - - -0.143459
+ - -1.497232
+ - 1.32765
+ - - -0.237564
+ - -2.473513
+ - -0.129261
+ - - -1.368634
+ - -0.624183
+ - -1.327037
+ - - -2.260758
+ - -1.030981
+ - 0.13011
+ - - -2.023396
+ - 1.442439
+ - -0.129574
+ - - -1.224589
+ - 0.873492
+ - 1.327491
+ - - 0.237563
+ - 2.473513
+ - 0.129261
+ - - 0.143457
+ - 1.497233
+ - -1.32765
+ - - 2.260757
+ - 1.030981
+ - -0.13011
+ - - 1.368633
+ - 0.624183
+ - 1.327037
+ - - 2.023395
+ - -1.442439
+ - 0.129574
+ - - 1.224588
+ - -0.873492
+ - -1.327491
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.116193088434745
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.0054456602
- - -1.0706408269
- - 0.2352853497
- - - -1.4302666879
- - 0.3352020617
- - -0.2350245073
- - - -0.4247536304
- - 1.4056071569
- - 0.2349687048
- - - 1.0057031335
- - 1.0706539523
- - -0.2349348867
- - - 1.4303676271
- - -0.3353828275
- - 0.2352519241
- - - 0.4247476094
- - -1.4054254518
- - -0.2353747012
- - - -1.0377782756
- - -1.1053469708
- - 1.3386149636
- - - -1.7166168705
- - -1.8282395535
- - -0.1312339134
- - - -1.4773997867
- - 0.3458466777
- - -1.3382924554
- - - -2.4417221086
- - 0.5728420108
- - 0.1319459172
- - - -0.7249836088
- - 2.4003510483
- - -0.1315890224
- - - -0.4387223316
- - 1.4507328891
- - 1.3382944056
- - - 1.7167042791
- - 1.8285070643
- - 0.1313625893
- - - 1.0377146511
- - 1.1051378335
- - -1.338253874
- - - 2.4418474932
- - -0.5731728278
- - -0.1314835954
- - - 1.4765118882
- - -0.346549135
- - 1.3385413563
- - - 0.7248203163
- - -2.4006784202
- - 0.1298616736
- - - 0.4375100051
- - -1.449515004
- - -1.3387993457
+ - - -0.138896
+ - -1.446806
+ - 0.228844
+ - - -1.322425
+ - -0.603032
+ - -0.22828
+ - - -1.183466
+ - 0.843857
+ - 0.228684
+ - - 0.138895
+ - 1.446806
+ - -0.228844
+ - - 1.322424
+ - 0.603032
+ - 0.22828
+ - - 1.183464
+ - -0.843857
+ - -0.228684
+ - - -0.144746
+ - -1.509854
+ - 1.324629
+ - - -0.237442
+ - -2.472006
+ - -0.141166
+ - - -1.38024
+ - -0.629487
+ - -1.324041
+ - - -2.259406
+ - -1.030357
+ - 0.142011
+ - - -2.02218
+ - 1.441546
+ - -0.141424
+ - - -1.234928
+ - 0.880863
+ - 1.32446
+ - - 0.237441
+ - 2.472006
+ - 0.141166
+ - - 0.144745
+ - 1.509854
+ - -1.324629
+ - - 2.259405
+ - 1.030358
+ - -0.142011
+ - - 1.380239
+ - 0.629487
+ - 1.324041
+ - - 2.022178
+ - -1.441546
+ - 0.141424
+ - - 1.234927
+ - -0.880863
+ - -1.32446
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.04012043875356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.140024
+ - -1.458607
+ - 0.231825
+ - - -1.333165
+ - -0.607911
+ - -0.231238
+ - - -1.193094
+ - 0.850778
+ - 0.231659
+ - - 0.140023
+ - 1.458608
+ - -0.231825
+ - - 1.333164
+ - 0.607911
+ - 0.231238
+ - - 1.193093
+ - -0.850778
+ - -0.231659
+ - - -0.145622
+ - -1.51927
+ - 1.330222
+ - - -0.23878
+ - -2.485931
+ - -0.140853
+ - - -1.388748
+ - -0.633368
+ - -1.32961
+ - - -2.272083
+ - -1.036152
+ - 0.141697
+ - - -2.03359
+ - 1.449644
+ - -0.14111
+ - - -1.242585
+ - 0.886377
+ - 1.330045
+ - - 0.238779
+ - 2.485931
+ - 0.140853
+ - - 0.14562
+ - 1.51927
+ - -1.330222
+ - - 2.272082
+ - 1.036152
+ - -0.141697
+ - - 1.388747
+ - 0.633368
+ - 1.32961
+ - - 2.033589
+ - -1.449644
+ - 0.14111
+ - - 1.242584
+ - -0.886377
+ - -1.330045
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.942883548861627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.1391609193
+ - -1.4475566302
+ - 0.2323100406
+ - - -1.3240022295
+ - -0.6032122479
+ - -0.2323626353
+ - - -1.1844430557
+ - 0.8442912708
+ - 0.2324673754
+ - - 0.1391658168
+ - 1.4475565756
+ - -0.2323088512
+ - - 1.3240007201
+ - 0.6032084098
+ - 0.2323728234
+ - - 1.1844416399
+ - -0.844287815
+ - -0.2324789559
+ - - -0.1438875702
+ - -1.4987868773
+ - 1.3273115591
+ - - -0.2369625666
+ - -2.4733941244
+ - -0.1304206757
+ - - -1.3722520469
+ - -0.6253459273
+ - -1.3272911989
+ - - -2.260951627
+ - -1.0309611566
+ - 0.1316068241
+ - - -2.0231436437
+ - 1.4426015119
+ - -0.1310760684
+ - - -1.2270309329
+ - 0.8742939006
+ - 1.3274057636
+ - - 0.2369642214
+ - 2.473393229
+ - 0.1304251653
+ - - 0.1439060216
+ - 1.4987892182
+ - -1.3273101635
+ - - 2.2609566082
+ - 1.0309623871
+ - -0.1315736417
+ - - 1.372230687
+ - 0.6253246184
+ - 1.3273026957
+ - - 2.0231484831
+ - -1.4426041556
+ - 0.1310396988
+ - - 1.2270105317
+ - -0.8742700021
+ - -1.3274187405
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.1425331482644
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.139212
+ - -1.449786
+ - 0.229848
+ - - -1.325193
+ - -0.604342
+ - -0.22932
+ - - -1.185889
+ - 0.845539
+ - 0.229639
+ - - 0.139211
+ - 1.449786
+ - -0.229848
+ - - 1.325192
+ - 0.604342
+ - 0.22932
+ - - 1.185888
+ - -0.845539
+ - -0.229639
+ - - -0.144874
+ - -1.510259
+ - 1.324169
+ - - -0.237488
+ - -2.472767
+ - -0.140957
+ - - -1.38071
+ - -0.629775
+ - -1.323615
+ - - -2.260156
+ - -1.03065
+ - 0.141821
+ - - -2.022764
+ - 1.44201
+ - -0.141159
+ - - -1.235226
+ - 0.880999
+ - 1.323958
+ - - 0.237487
+ - 2.472767
+ - 0.140957
+ - - 0.144873
+ - 1.510259
+ - -1.324169
+ - - 2.260155
+ - 1.030651
+ - -0.141821
+ - - 1.380709
+ - 0.629775
+ - 1.323616
+ - - 2.022763
+ - -1.442009
+ - 0.141159
+ - - 1.235225
+ - -0.880999
+ - -1.323958
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclohexanone.yml b/input/reference_sets/main/Cyclohexanone.yml
index 0931524bbb..e91c6af269 100644
--- a/input/reference_sets/main/Cyclohexanone.yml
+++ b/input/reference_sets/main/Cyclohexanone.yml
@@ -216,69 +216,1356 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.043797553612436
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.273029
+ - -3.3e-05
+ - 0.387192
+ - - -1.148707
+ - -1.9e-05
+ - -0.07006
+ - - -0.390505
+ - 1.276699
+ - -0.365805
+ - - 1.00024
+ - 1.258676
+ - 0.285373
+ - - 1.776903
+ - 1.7e-05
+ - -0.094476
+ - - 1.000271
+ - -1.258662
+ - 0.285369
+ - - -0.390474
+ - -1.276718
+ - -0.365808
+ - - -0.273315
+ - 1.348843
+ - -1.452809
+ - - -0.989027
+ - 2.123272
+ - -0.033058
+ - - 0.885308
+ - 1.297664
+ - 1.372634
+ - - 1.551901
+ - 2.154695
+ - -0.004071
+ - - 1.965116
+ - 2.1e-05
+ - -1.173289
+ - - 2.752776
+ - 2.8e-05
+ - 0.395015
+ - - 0.885339
+ - -1.297656
+ - 1.37263
+ - - 1.551954
+ - -2.154667
+ - -0.004077
+ - - -0.273283
+ - -1.348855
+ - -1.452813
+ - - -0.988975
+ - -2.123305
+ - -0.033063
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.99752670050612
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.284033
+ - -3.3e-05
+ - 0.357218
+ - - -1.154412
+ - -1.9e-05
+ - -0.075529
+ - - -0.392186
+ - 1.278886
+ - -0.36023
+ - - 1.002987
+ - 1.26049
+ - 0.284644
+ - - 1.779845
+ - 1.7e-05
+ - -0.093826
+ - - 1.003018
+ - -1.260476
+ - 0.284641
+ - - -0.392156
+ - -1.278904
+ - -0.360234
+ - - -0.280286
+ - 1.359322
+ - -1.448138
+ - - -0.990044
+ - 2.124074
+ - -0.021352
+ - - 0.8927
+ - 1.303544
+ - 1.372824
+ - - 1.554075
+ - 2.15616
+ - -0.009195
+ - - 1.970575
+ - 2.1e-05
+ - -1.172874
+ - - 2.755799
+ - 2.8e-05
+ - 0.396818
+ - - 0.892731
+ - -1.303536
+ - 1.37282
+ - - 1.554127
+ - -2.156132
+ - -0.009201
+ - - -0.280253
+ - -1.359335
+ - -1.448142
+ - - -0.989993
+ - -2.124108
+ - -0.021357
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -7.177925251890391
+ value: -7.177925251890391
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.3016549943
+ - -0.0002262388
+ - 0.3740397663
+ - - -1.1641836911
+ - -0.0001414026
+ - -0.0752054615
+ - - -0.3897769681
+ - 1.2857824387
+ - -0.3721905543
+ - - 1.0105515325
+ - 1.2681915644
+ - 0.2935822844
+ - - 1.794517589
+ - 0.0006332339
+ - -0.0951106806
+ - - 1.0116881305
+ - -1.2677961012
+ - 0.2930196943
+ - - -0.3893002655
+ - -1.2862051205
+ - -0.3715139028
+ - - -0.2552140711
+ - 1.3503150827
+ - -1.4671486872
+ - - -0.9898180915
+ - 2.1463291747
+ - -0.0478381735
+ - - 0.886859203
+ - 1.2954343463
+ - 1.3888234228
+ - - 1.5661288022
+ - 2.1744042989
+ - 0.0078131632
+ - - 1.9703279296
+ - 0.0007598288
+ - -1.1847887212
+ - - 2.7812876488
+ - 0.000877705
+ - 0.3933900815
+ - - 0.8890158128
+ - -1.296660376
+ - 1.3883166107
+ - - 1.5679117934
+ - -2.1732108527
+ - 0.0058638211
+ - - -0.2557382866
+ - -1.3523774327
+ - -1.4665417942
+ - - -0.9884987506
+ - -2.1468495403
+ - -0.0456961309
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.012747693450144
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.29127
+ - -3.3e-05
+ - 0.379238
+ - - -1.160938
+ - -1.9e-05
+ - -0.069831
+ - - -0.39446
+ - 1.28112
+ - -0.363524
+ - - 1.004104
+ - 1.263121
+ - 0.285656
+ - - 1.78284
+ - 1.7e-05
+ - -0.093528
+ - - 1.004135
+ - -1.263107
+ - 0.285653
+ - - -0.394429
+ - -1.281138
+ - -0.363527
+ - - -0.277218
+ - 1.352737
+ - -1.45588
+ - - -0.991856
+ - 2.134598
+ - -0.030881
+ - - 0.889873
+ - 1.304631
+ - 1.377758
+ - - 1.557401
+ - 2.163193
+ - -0.007574
+ - - 1.973011
+ - 2.1e-05
+ - -1.17701
+ - - 2.762931
+ - 2.8e-05
+ - 0.398931
+ - - 0.889905
+ - -1.304622
+ - 1.377754
+ - - 1.557454
+ - -2.163165
+ - -0.00758
+ - - -0.277185
+ - -1.35275
+ - -1.455883
+ - - -0.991804
+ - -2.134632
+ - -0.030887
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.722453293150004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.318438
+ - -3.3e-05
+ - 0.322214
+ - - -1.166463
+ - -1.9e-05
+ - -0.08355
+ - - -0.395646
+ - 1.286103
+ - -0.353937
+ - - 1.009013
+ - 1.265738
+ - 0.286596
+ - - 1.786827
+ - 1.7e-05
+ - -0.096123
+ - - 1.009044
+ - -1.265724
+ - 0.286593
+ - - -0.395615
+ - -1.286122
+ - -0.35394
+ - - -0.287094
+ - 1.378301
+ - -1.451204
+ - - -0.999722
+ - 2.135885
+ - -0.006814
+ - - 0.903897
+ - 1.311144
+ - 1.384627
+ - - 1.564101
+ - 2.169379
+ - -0.010987
+ - - 1.977886
+ - 2.1e-05
+ - -1.184744
+ - - 2.773352
+ - 2.8e-05
+ - 0.394554
+ - - 0.903929
+ - -1.311136
+ - 1.384623
+ - - 1.564153
+ - -2.169351
+ - -0.010993
+ - - -0.28706
+ - -1.378314
+ - -1.451208
+ - - -0.99967
+ - -2.135919
+ - -0.00682
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.64729934718717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.288054
+ - -3.3e-05
+ - 0.312973
+ - - -1.150365
+ - -1.9e-05
+ - -0.084767
+ - - -0.388797
+ - 1.27736
+ - -0.352464
+ - - 1.003078
+ - 1.256486
+ - 0.284693
+ - - 1.77598
+ - 1.7e-05
+ - -0.096707
+ - - 1.003108
+ - -1.256473
+ - 0.284689
+ - - -0.388766
+ - -1.277378
+ - -0.352467
+ - - -0.283785
+ - 1.370089
+ - -1.439181
+ - - -0.989066
+ - 2.116178
+ - -0.004225
+ - - 0.899186
+ - 1.298974
+ - 1.372815
+ - - 1.553693
+ - 2.151295
+ - -0.009431
+ - - 1.962566
+ - 2.0e-05
+ - -1.175732
+ - - 2.753524
+ - 2.8e-05
+ - 0.388732
+ - - 0.899217
+ - -1.298966
+ - 1.372812
+ - - 1.553745
+ - -2.151267
+ - -0.009437
+ - - -0.283752
+ - -1.370101
+ - -1.439185
+ - - -0.989014
+ - -2.116211
+ - -0.004231
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.596104444435035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.303538
+ - -3.3e-05
+ - 0.327252
+ - - -1.164449
+ - -1.9e-05
+ - -0.081562
+ - - -0.394943
+ - 1.285017
+ - -0.356395
+ - - 1.007524
+ - 1.266008
+ - 0.28493
+ - - 1.78671
+ - 1.7e-05
+ - -0.094428
+ - - 1.007555
+ - -1.265994
+ - 0.284926
+ - - -0.394912
+ - -1.285036
+ - -0.356398
+ - - -0.2885
+ - 1.377606
+ - -1.445867
+ - - -0.996516
+ - 2.126383
+ - -0.008394
+ - - 0.902175
+ - 1.312311
+ - 1.375384
+ - - 1.559651
+ - 2.162283
+ - -0.01246
+ - - 1.980853
+ - 2.1e-05
+ - -1.174816
+ - - 2.763907
+ - 2.8e-05
+ - 0.398069
+ - - 0.902206
+ - -1.312302
+ - 1.37538
+ - - 1.559703
+ - -2.162254
+ - -0.012466
+ - - -0.288467
+ - -1.377618
+ - -1.44587
+ - - -0.996464
+ - -2.126417
+ - -0.0084
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.49136739172677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.271915
+ - -9.0e-06
+ - 0.365186
+ - - -1.146182
+ - -9.0e-06
+ - -0.073725
+ - - -0.388135
+ - 1.27751
+ - -0.362134
+ - - 1.000309
+ - 1.256447
+ - 0.288011
+ - - 1.773941
+ - 2.8e-05
+ - -0.099068
+ - - 1.000363
+ - -1.256434
+ - 0.287975
+ - - -0.388113
+ - -1.27753
+ - -0.362096
+ - - -0.271664
+ - 1.350861
+ - -1.449796
+ - - -0.989519
+ - 2.121541
+ - -0.028044
+ - - 0.886549
+ - 1.288636
+ - 1.376284
+ - - 1.552873
+ - 2.15345
+ - 0.003531
+ - - 1.95121
+ - 5.2e-05
+ - -1.180507
+ - - 2.754372
+ - 3.3e-05
+ - 0.381298
+ - - 0.886662
+ - -1.288694
+ - 1.37625
+ - - 1.552936
+ - -2.153405
+ - 0.003411
+ - - -0.271713
+ - -1.350935
+ - -1.449762
+ - - -0.989479
+ - -2.121543
+ - -0.027929
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.49136164011297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.271915
+ - -9.0e-06
+ - 0.365186
+ - - -1.146182
+ - -9.0e-06
+ - -0.073725
+ - - -0.388135
+ - 1.27751
+ - -0.362134
+ - - 1.000309
+ - 1.256447
+ - 0.288011
+ - - 1.773941
+ - 2.8e-05
+ - -0.099068
+ - - 1.000363
+ - -1.256434
+ - 0.287975
+ - - -0.388113
+ - -1.27753
+ - -0.362096
+ - - -0.271664
+ - 1.350861
+ - -1.449796
+ - - -0.989519
+ - 2.121541
+ - -0.028044
+ - - 0.886549
+ - 1.288636
+ - 1.376284
+ - - 1.552873
+ - 2.15345
+ - 0.003531
+ - - 1.95121
+ - 5.2e-05
+ - -1.180507
+ - - 2.754372
+ - 3.3e-05
+ - 0.381298
+ - - 0.886662
+ - -1.288694
+ - 1.37625
+ - - 1.552936
+ - -2.153405
+ - 0.003411
+ - - -0.271713
+ - -1.350935
+ - -1.449762
+ - - -0.989479
+ - -2.121543
+ - -0.027929
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.17548338953913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.271915
+ - -9.0e-06
+ - 0.365186
+ - - -1.146182
+ - -9.0e-06
+ - -0.073725
+ - - -0.388135
+ - 1.27751
+ - -0.362134
+ - - 1.000309
+ - 1.256447
+ - 0.288011
+ - - 1.773941
+ - 2.8e-05
+ - -0.099068
+ - - 1.000363
+ - -1.256434
+ - 0.287975
+ - - -0.388113
+ - -1.27753
+ - -0.362096
+ - - -0.271664
+ - 1.350861
+ - -1.449796
+ - - -0.989519
+ - 2.121541
+ - -0.028044
+ - - 0.886549
+ - 1.288636
+ - 1.376284
+ - - 1.552873
+ - 2.15345
+ - 0.003531
+ - - 1.95121
+ - 5.2e-05
+ - -1.180507
+ - - 2.754372
+ - 3.3e-05
+ - 0.381298
+ - - 0.886662
+ - -1.288694
+ - 1.37625
+ - - 1.552936
+ - -2.153405
+ - 0.003411
+ - - -0.271713
+ - -1.350935
+ - -1.449762
+ - - -0.989479
+ - -2.121543
+ - -0.027929
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.90812095968294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.298806
+ - -3.3e-05
+ - 0.345895
+ - - -1.164859
+ - -1.9e-05
+ - -0.074144
+ - - -0.394958
+ - 1.28362
+ - -0.358821
+ - - 1.005972
+ - 1.265435
+ - 0.286403
+ - - 1.785162
+ - 1.7e-05
+ - -0.094901
+ - - 1.006003
+ - -1.265421
+ - 0.2864
+ - - -0.394927
+ - -1.283638
+ - -0.358824
+ - - -0.283268
+ - 1.36676
+ - -1.449763
+ - - -0.994668
+ - 2.131792
+ - -0.020202
+ - - 0.898308
+ - 1.309592
+ - 1.378085
+ - - 1.558476
+ - 2.163878
+ - -0.008261
+ - - 1.975788
+ - 2.1e-05
+ - -1.17721
+ - - 2.765255
+ - 2.8e-05
+ - 0.39439
+ - - 0.89834
+ - -1.309584
+ - 1.378082
+ - - 1.558529
+ - -2.16385
+ - -0.008267
+ - - -0.283235
+ - -1.366772
+ - -1.449767
+ - - -0.994617
+ - -2.131825
+ - -0.020208
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.32238065055908
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.259251
+ - -3.3e-05
+ - 0.389093
+ - - -1.144916
+ - -1.9e-05
+ - -0.068571
+ - - -0.388656
+ - 1.277036
+ - -0.366578
+ - - 0.99877
+ - 1.257122
+ - 0.287701
+ - - 1.773741
+ - 1.7e-05
+ - -0.097484
+ - - 0.9988
+ - -1.257108
+ - 0.287697
+ - - -0.388625
+ - -1.277054
+ - -0.366582
+ - - -0.267956
+ - 1.343371
+ - -1.45364
+ - - -0.989852
+ - 2.122486
+ - -0.036434
+ - - 0.880941
+ - 1.288339
+ - 1.374987
+ - - 1.551053
+ - 2.153981
+ - 0.003557
+ - - 1.951414
+ - 2.0e-05
+ - -1.178295
+ - - 2.752678
+ - 2.8e-05
+ - 0.384982
+ - - 0.880972
+ - -1.288331
+ - 1.374984
+ - - 1.551105
+ - -2.153953
+ - 0.003551
+ - - -0.267923
+ - -1.343383
+ - -1.453643
+ - - -0.9898
+ - -2.122519
+ - -0.03644
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.42876142555839
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.3016549943
- - -0.0002262388
- - 0.3740397663
- - - -1.1641836911
- - -0.0001414026
- - -0.0752054615
- - - -0.3897769681
- - 1.2857824387
- - -0.3721905543
- - - 1.0105515325
- - 1.2681915644
- - 0.2935822844
- - - 1.794517589
- - 0.0006332339
- - -0.0951106806
- - - 1.0116881305
- - -1.2677961012
- - 0.2930196943
- - - -0.3893002655
- - -1.2862051205
- - -0.3715139028
- - - -0.2552140711
- - 1.3503150827
- - -1.4671486872
- - - -0.9898180915
- - 2.1463291747
- - -0.0478381735
- - - 0.886859203
- - 1.2954343463
- - 1.3888234228
- - - 1.5661288022
- - 2.1744042989
- - 0.0078131632
- - - 1.9703279296
- - 0.0007598288
- - -1.1847887212
- - - 2.7812876488
- - 0.000877705
- - 0.3933900815
- - - 0.8890158128
- - -1.296660376
- - 1.3883166107
- - - 1.5679117934
- - -2.1732108527
- - 0.0058638211
- - - -0.2557382866
- - -1.3523774327
- - -1.4665417942
- - - -0.9884987506
- - -2.1468495403
- - -0.0456961309
+ - - -2.287396
+ - -3.3e-05
+ - 0.323791
+ - - -1.150696
+ - -1.9e-05
+ - -0.080804
+ - - -0.387986
+ - 1.275009
+ - -0.352746
+ - - 1.002266
+ - 1.254556
+ - 0.284856
+ - - 1.774066
+ - 1.7e-05
+ - -0.09702
+ - - 1.002297
+ - -1.254543
+ - 0.284852
+ - - -0.387955
+ - -1.275027
+ - -0.352749
+ - - -0.280097
+ - 1.361338
+ - -1.442227
+ - - -0.98881
+ - 2.118701
+ - -0.010466
+ - - 0.896804
+ - 1.296081
+ - 1.37513
+ - - 1.55375
+ - 2.152279
+ - -0.00755
+ - - 1.959764
+ - 2.0e-05
+ - -1.178502
+ - - 2.754673
+ - 2.8e-05
+ - 0.387451
+ - - 0.896835
+ - -1.296073
+ - 1.375127
+ - - 1.553802
+ - -2.152251
+ - -0.007556
+ - - -0.280064
+ - -1.361351
+ - -1.442231
+ - - -0.988759
+ - -2.118735
+ - -0.010471
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.717402269604232
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.292353
+ - -3.3e-05
+ - 0.378918
+ - - -1.159312
+ - -1.9e-05
+ - -0.072836
+ - - -0.396113
+ - 1.283771
+ - -0.36479
+ - - 1.00478
+ - 1.265828
+ - 0.286985
+ - - 1.784397
+ - 1.7e-05
+ - -0.093994
+ - - 1.004811
+ - -1.265814
+ - 0.286982
+ - - -0.396082
+ - -1.283789
+ - -0.364793
+ - - -0.277122
+ - 1.360311
+ - -1.456345
+ - - -0.995493
+ - 2.134098
+ - -0.028394
+ - - 0.89131
+ - 1.30872
+ - 1.378661
+ - - 1.557906
+ - 2.164743
+ - -0.009312
+ - - 1.975547
+ - 2.1e-05
+ - -1.176944
+ - - 2.763448
+ - 2.8e-05
+ - 0.400153
+ - - 0.891342
+ - -1.308711
+ - 1.378658
+ - - 1.557958
+ - -2.164714
+ - -0.009318
+ - - -0.277089
+ - -1.360323
+ - -1.456348
+ - - -0.995442
+ - -2.134131
+ - -0.0284
isotopes:
- 16
- 12
@@ -414,6 +1701,204 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.905950747633916
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.2719149433
+ - -8.6211e-06
+ - 0.3651858679
+ - - -1.1461820962
+ - -9.1438e-06
+ - -0.0737254463
+ - - -0.3881351934
+ - 1.2775098826
+ - -0.3621341646
+ - - 1.0003086079
+ - 1.2564469904
+ - 0.2880112674
+ - - 1.7739410991
+ - 2.81789e-05
+ - -0.099067696
+ - - 1.0003625677
+ - -1.2564339548
+ - 0.2879745459
+ - - -0.3881129061
+ - -1.2775298753
+ - -0.3620957354
+ - - -0.2716640488
+ - 1.3508614584
+ - -1.4497957124
+ - - -0.9895187131
+ - 2.1215406602
+ - -0.0280437532
+ - - 0.8865490241
+ - 1.2886356707
+ - 1.3762837991
+ - - 1.5528725559
+ - 2.153450203
+ - 0.0035305691
+ - - 1.951209728
+ - 5.24189e-05
+ - -1.1805069615
+ - - 2.7543723552
+ - 3.28721e-05
+ - 0.3812984415
+ - - 0.8866616369
+ - -1.2886938616
+ - 1.3762504841
+ - - 1.5529361194
+ - -2.1534048032
+ - 0.0034106541
+ - - -0.2717130324
+ - -1.3509347092
+ - -1.4497616026
+ - - -0.9894785517
+ - -2.1215434079
+ - -0.0279294884
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.30371003349863
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.284126
+ - -3.3e-05
+ - 0.338787
+ - - -1.152791
+ - -1.9e-05
+ - -0.076923
+ - - -0.389767
+ - 1.277635
+ - -0.356396
+ - - 1.002152
+ - 1.257774
+ - 0.285463
+ - - 1.776572
+ - 1.7e-05
+ - -0.095687
+ - - 1.002182
+ - -1.25776
+ - 0.28546
+ - - -0.389736
+ - -1.277653
+ - -0.356399
+ - - -0.279748
+ - 1.357806
+ - -1.444326
+ - - -0.986901
+ - 2.122754
+ - -0.016441
+ - - 0.894497
+ - 1.299104
+ - 1.373898
+ - - 1.55316
+ - 2.152863
+ - -0.008821
+ - - 1.962115
+ - 2.0e-05
+ - -1.175552
+ - - 2.753711
+ - 2.8e-05
+ - 0.391531
+ - - 0.894529
+ - -1.299096
+ - 1.373894
+ - - 1.553212
+ - -2.152835
+ - -0.008826
+ - - -0.279715
+ - -1.357818
+ - -1.44433
+ - - -0.986849
+ - -2.122787
+ - -0.016447
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopentadiene.yml b/input/reference_sets/main/Cyclopentadiene.yml
index dcd37e0945..77a07bda46 100644
--- a/input/reference_sets/main/Cyclopentadiene.yml
+++ b/input/reference_sets/main/Cyclopentadiene.yml
@@ -150,51 +150,948 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.2995349563079
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006041
+ - -1.213241
+ - -3.0e-06
+ - - -1.174554
+ - -0.28806
+ - -1.0e-06
+ - - -0.737239
+ - 0.985415
+ - 1.0e-06
+ - - 0.727109
+ - 0.992799
+ - 1.0e-06
+ - - 1.177244
+ - -0.276201
+ - -1.0e-06
+ - - 0.009357
+ - -1.870909
+ - -0.87635
+ - - 0.009357
+ - -1.870911
+ - 0.876343
+ - - -2.202084
+ - -0.617835
+ - -2.0e-06
+ - - -1.355638
+ - 1.871039
+ - 2.0e-06
+ - - 1.336547
+ - 1.884613
+ - 2.0e-06
+ - - 2.208049
+ - -0.595596
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.44389580257349
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006036
+ - -1.212395
+ - -3.0e-06
+ - - -1.175074
+ - -0.286337
+ - -1.0e-06
+ - - -0.7376
+ - 0.984158
+ - 1.0e-06
+ - - 0.727483
+ - 0.991545
+ - 1.0e-06
+ - - 1.177747
+ - -0.274473
+ - -1.0e-06
+ - - 0.009365
+ - -1.872541
+ - -0.875772
+ - - 0.009365
+ - -1.872544
+ - 0.875765
+ - - -2.202549
+ - -0.617527
+ - -2.0e-06
+ - - -1.354668
+ - 1.871473
+ - 2.0e-06
+ - - 1.335571
+ - 1.885038
+ - 2.0e-06
+ - - 2.20851
+ - -0.595284
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 79.49269633107332
+ value: 79.4926963310733
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1833589904
+ - -0.3006276534
+ - -3.82431e-05
+ - - 0.5683167706
+ - 1.0786333799
+ - 2.19113e-05
+ - - -0.7851715205
+ - 0.9586697807
+ - -1.84957e-05
+ - - -1.1477323348
+ - -0.467765565
+ - -1.83931e-05
+ - - -0.015773779
+ - -1.2199280529
+ - 2.23046e-05
+ - - 1.8291673361
+ - -0.462657948
+ - 0.8824717326
+ - - 1.8290617104
+ - -0.4626257287
+ - -0.8826463461
+ - - 1.1463500771
+ - 2.0007498498
+ - 0.0001801745
+ - - -1.5033020591
+ - 1.778469245
+ - 2.0586e-06
+ - - -2.171069202
+ - -0.8419963531
+ - 6.139e-07
+ - - 0.0518033773
+ - -2.3058304001
+ - 0.0001772628
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.84906654113355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006044
+ - -1.213858
+ - -3.0e-06
+ - - -1.179302
+ - -0.28874
+ - -1.0e-06
+ - - -0.738139
+ - 0.989286
+ - 1.0e-06
+ - - 0.727968
+ - 0.99668
+ - 1.0e-06
+ - - 1.182001
+ - -0.276832
+ - -1.0e-06
+ - - 0.009394
+ - -1.878467
+ - -0.87815
+ - - 0.009394
+ - -1.878469
+ - 0.878143
+ - - -2.210359
+ - -0.623118
+ - -2.0e-06
+ - - -1.357205
+ - 1.880919
+ - 2.0e-06
+ - - 1.338015
+ - 1.894509
+ - 2.0e-06
+ - - 2.216377
+ - -0.600795
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.05362067012226
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006046
+ - -1.2143
+ - -3.0e-06
+ - - -1.180148
+ - -0.28963
+ - -1.0e-06
+ - - -0.738504
+ - 0.991942
+ - 1.0e-06
+ - - 0.728309
+ - 0.999339
+ - 1.0e-06
+ - - 1.182853
+ - -0.277715
+ - -1.0e-06
+ - - 0.009424
+ - -1.884134
+ - -0.880502
+ - - 0.009424
+ - -1.884136
+ - 0.880495
+ - - -2.216148
+ - -0.624453
+ - -2.0e-06
+ - - -1.361794
+ - 1.886318
+ - 2.0e-06
+ - - 1.342547
+ - 1.899955
+ - 2.0e-06
+ - - 2.222178
+ - -0.602073
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.97404341843307
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006023
+ - -1.209701
+ - -3.0e-06
+ - - -1.170122
+ - -0.284836
+ - -1.0e-06
+ - - -0.736875
+ - 0.979677
+ - 1.0e-06
+ - - 0.726803
+ - 0.987058
+ - 1.0e-06
+ - - 1.17278
+ - -0.273022
+ - -1.0e-06
+ - - 0.009341
+ - -1.867706
+ - -0.875548
+ - - 0.009341
+ - -1.867709
+ - 0.87554
+ - - -2.197936
+ - -0.614642
+ - -2.0e-06
+ - - -1.355545
+ - 1.865432
+ - 2.0e-06
+ - - 1.336509
+ - 1.879007
+ - 2.0e-06
+ - - 2.203869
+ - -0.592446
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.976404264672254
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006049
+ - -1.215004
+ - -3.0e-06
+ - - -1.178079
+ - -0.286374
+ - -1.0e-06
+ - - -0.739424
+ - 0.986122
+ - 1.0e-06
+ - - 0.729287
+ - 0.993528
+ - 1.0e-06
+ - - 1.180752
+ - -0.27448
+ - -1.0e-06
+ - - 0.009385
+ - -1.876449
+ - -0.877132
+ - - 0.009385
+ - -1.876451
+ - 0.877124
+ - - -2.20728
+ - -0.618247
+ - -2.0e-06
+ - - -1.356817
+ - 1.875418
+ - 2.0e-06
+ - - 1.337681
+ - 1.889005
+ - 2.0e-06
+ - - 2.213248
+ - -0.595956
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.81455122866321
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006038
+ - -1.21196
+ - -1.0e-06
+ - - -1.171833
+ - -0.285443
+ - 2.0e-06
+ - - -0.738806
+ - 0.981782
+ - -0.0
+ - - 0.729051
+ - 0.989123
+ - -0.0
+ - - 1.174712
+ - -0.273724
+ - 2.0e-06
+ - - 0.009368
+ - -1.869042
+ - -0.876387
+ - - 0.009368
+ - -1.869059
+ - 0.876372
+ - - -2.200311
+ - -0.614818
+ - 4.0e-06
+ - - -1.359326
+ - 1.866673
+ - -1.0e-06
+ - - 1.339767
+ - 1.880638
+ - -2.0e-06
+ - - 2.206159
+ - -0.593056
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.08079708367072
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006038
+ - -1.21196
+ - -1.0e-06
+ - - -1.171833
+ - -0.285443
+ - 2.0e-06
+ - - -0.738806
+ - 0.981782
+ - -0.0
+ - - 0.729051
+ - 0.989123
+ - -0.0
+ - - 1.174712
+ - -0.273724
+ - 2.0e-06
+ - - 0.009368
+ - -1.869042
+ - -0.876387
+ - - 0.009368
+ - -1.869059
+ - 0.876372
+ - - -2.200311
+ - -0.614818
+ - 4.0e-06
+ - - -1.359326
+ - 1.866673
+ - -1.0e-06
+ - - 1.339767
+ - 1.880638
+ - -2.0e-06
+ - - 2.206159
+ - -0.593056
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.450707111167745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006038
+ - -1.21196
+ - -1.0e-06
+ - - -1.171833
+ - -0.285443
+ - 2.0e-06
+ - - -0.738806
+ - 0.981782
+ - -0.0
+ - - 0.729051
+ - 0.989123
+ - -0.0
+ - - 1.174712
+ - -0.273724
+ - 2.0e-06
+ - - 0.009368
+ - -1.869042
+ - -0.876387
+ - - 0.009368
+ - -1.869059
+ - 0.876372
+ - - -2.200311
+ - -0.614818
+ - 4.0e-06
+ - - -1.359326
+ - 1.866673
+ - -1.0e-06
+ - - 1.339767
+ - 1.880638
+ - -2.0e-06
+ - - 2.206159
+ - -0.593056
+ - 3.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.74269593876073
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.1833589904
- - -0.3006276534
- - -3.82431e-05
- - - 0.5683167706
- - 1.0786333799
- - 2.19113e-05
- - - -0.7851715205
- - 0.9586697807
- - -1.84957e-05
- - - -1.1477323348
- - -0.467765565
- - -1.83931e-05
- - - -0.015773779
- - -1.2199280529
- - 2.23046e-05
- - - 1.8291673361
- - -0.462657948
- - 0.8824717326
- - - 1.8290617104
- - -0.4626257287
- - -0.8826463461
- - - 1.1463500771
- - 2.0007498498
- - 0.0001801745
- - - -1.5033020591
- - 1.778469245
- - 2.0586e-06
- - - -2.171069202
- - -0.8419963531
- - 6.139e-07
- - - 0.0518033773
- - -2.3058304001
- - 0.0001772628
+ - - 0.006045
+ - -1.214179
+ - -3.0e-06
+ - - -1.178156
+ - -0.285167
+ - -1.0e-06
+ - - -0.739337
+ - 0.986773
+ - 1.0e-06
+ - - 0.729193
+ - 0.994178
+ - 1.0e-06
+ - - 1.180818
+ - -0.273272
+ - -1.0e-06
+ - - 0.009399
+ - -1.879269
+ - -0.875936
+ - - 0.009399
+ - -1.879271
+ - 0.875929
+ - - -2.206382
+ - -0.621001
+ - -2.0e-06
+ - - -1.353677
+ - 1.878742
+ - 2.0e-06
+ - - 1.334508
+ - 1.892297
+ - 2.0e-06
+ - - 2.212378
+ - -0.598719
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.407717098686646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006029
+ - -1.21155
+ - -3.0e-06
+ - - -1.172173
+ - -0.285682
+ - -1.0e-06
+ - - -0.738749
+ - 0.981679
+ - 1.0e-06
+ - - 0.728659
+ - 0.98906
+ - 1.0e-06
+ - - 1.174823
+ - -0.273856
+ - -1.0e-06
+ - - 0.009344
+ - -1.868279
+ - -0.876694
+ - - 0.009344
+ - -1.868282
+ - 0.876686
+ - - -2.199977
+ - -0.616541
+ - -2.0e-06
+ - - -1.357452
+ - 1.867637
+ - 2.0e-06
+ - - 1.33841
+ - 1.881202
+ - 2.0e-06
+ - - 2.205928
+ - -0.594276
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.585033908700254
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006007
+ - -1.206526
+ - -3.0e-06
+ - - -1.170261
+ - -0.2874
+ - -1.0e-06
+ - - -0.734955
+ - 0.982326
+ - 1.0e-06
+ - - 0.724857
+ - 0.989687
+ - 1.0e-06
+ - - 1.172945
+ - -0.275584
+ - -1.0e-06
+ - - 0.009347
+ - -1.868896
+ - -0.875798
+ - - 0.009347
+ - -1.868899
+ - 0.875791
+ - - -2.199398
+ - -0.619344
+ - -2.0e-06
+ - - -1.354991
+ - 1.869656
+ - 2.0e-06
+ - - 1.335912
+ - 1.883225
+ - 2.0e-06
+ - - 2.205378
+ - -0.597133
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.8023768949784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006048
+ - -1.214772
+ - -3.0e-06
+ - - -1.178469
+ - -0.288147
+ - -1.0e-06
+ - - -0.738252
+ - 0.98905
+ - 1.0e-06
+ - - 0.728084
+ - 0.996445
+ - 1.0e-06
+ - - 1.181161
+ - -0.276249
+ - -1.0e-06
+ - - 0.009395
+ - -1.878702
+ - -0.878256
+ - - 0.009395
+ - -1.878704
+ - 0.878249
+ - - -2.209513
+ - -0.622243
+ - -2.0e-06
+ - - -1.357171
+ - 1.880387
+ - 2.0e-06
+ - - 1.337986
+ - 1.893976
+ - 2.0e-06
+ - - 2.215523
+ - -0.599928
+ - -2.0e-06
isotopes:
- 12
- 12
@@ -288,6 +1185,144 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.260786459200915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0060379196
+ - -1.2119604518
+ - -1.0584e-06
+ - - -1.1718328072
+ - -0.2854427956
+ - 1.7667e-06
+ - - -0.7388055864
+ - 0.9817820124
+ - -4.279e-07
+ - - 0.7290505117
+ - 0.9891226986
+ - -4.694e-07
+ - - 1.174712455
+ - -0.2737241745
+ - 1.9953e-06
+ - - 0.0093683896
+ - -1.8690422617
+ - -0.8763867882
+ - - 0.0093679662
+ - -1.8690587182
+ - 0.8763718236
+ - - -2.2003111635
+ - -0.6148177953
+ - 3.5325e-06
+ - - -1.3593256359
+ - 1.866672966
+ - -1.1227e-06
+ - - 1.339766844
+ - 1.8806379615
+ - -1.758e-06
+ - - 2.2061586439
+ - -0.593055887
+ - 3.4752e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.452057321930376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.006028
+ - -1.210533
+ - -3.0e-06
+ - - -1.17099
+ - -0.285656
+ - -1.0e-06
+ - - -0.737131
+ - 0.980996
+ - 1.0e-06
+ - - 0.727047
+ - 0.988372
+ - 1.0e-06
+ - - 1.173651
+ - -0.27384
+ - -1.0e-06
+ - - 0.009347
+ - -1.867868
+ - -0.876701
+ - - 0.009347
+ - -1.867871
+ - 0.876694
+ - - -2.199144
+ - -0.616284
+ - -2.0e-06
+ - - -1.356303
+ - 1.867147
+ - 2.0e-06
+ - - 1.337249
+ - 1.880724
+ - 2.0e-06
+ - - 2.205089
+ - -0.594073
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopentanamine.yml b/input/reference_sets/main/Cyclopentanamine.yml
index 1c7a8afe5c..3a200977aa 100644
--- a/input/reference_sets/main/Cyclopentanamine.yml
+++ b/input/reference_sets/main/Cyclopentanamine.yml
@@ -216,69 +216,1356 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.47145469779237337
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.613143
+ - 0.000342
+ - 0.754796
+ - - -0.876371
+ - 0.000501
+ - -0.513272
+ - - 0.083442
+ - 1.190449
+ - -0.535575
+ - - 1.241837
+ - 0.774776
+ - 0.391254
+ - - 1.241291
+ - -0.775865
+ - 0.390742
+ - - 0.082602
+ - -1.190109
+ - -0.53636
+ - - -2.211884
+ - 0.815556
+ - 0.816581
+ - - -2.212459
+ - -0.814489
+ - 0.816044
+ - - -1.535205
+ - 0.001023
+ - -1.390881
+ - - 0.440826
+ - 1.335109
+ - -1.557707
+ - - -0.397476
+ - 2.119658
+ - -0.22458
+ - - 1.071216
+ - 1.148525
+ - 1.398986
+ - - 2.191503
+ - 1.186008
+ - 0.04935
+ - - 2.190666
+ - -1.18754
+ - 0.048566
+ - - 1.070406
+ - -1.150158
+ - 1.398227
+ - - 0.439884
+ - -1.334346
+ - -1.558587
+ - - -0.39897
+ - -2.119183
+ - -0.225978
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.1674480964899762
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.631467
+ - 0.000349
+ - 0.746024
+ - - -0.877115
+ - 0.000499
+ - -0.512462
+ - - 0.083048
+ - 1.193352
+ - -0.528674
+ - - 1.249363
+ - 0.775366
+ - 0.389399
+ - - 1.248815
+ - -0.776454
+ - 0.388892
+ - - 0.082211
+ - -1.193017
+ - -0.529459
+ - - -2.228822
+ - 0.816771
+ - 0.806332
+ - - -2.229395
+ - -0.815692
+ - 0.805795
+ - - -1.526592
+ - 0.001018
+ - -1.398322
+ - - 0.434797
+ - 1.348057
+ - -1.551801
+ - - -0.39884
+ - 2.119554
+ - -0.208822
+ - - 1.088139
+ - 1.149647
+ - 1.399232
+ - - 2.197005
+ - 1.186909
+ - 0.040335
+ - - 2.196169
+ - -1.188437
+ - 0.039564
+ - - 1.087322
+ - -1.15128
+ - 1.398479
+ - - 0.433854
+ - -1.347293
+ - -1.552687
+ - - -0.400327
+ - -2.119091
+ - -0.210219
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 20.928536395857375
+ value: 20.928536395857375
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.6116730284
+ - 8.51734e-05
+ - 0.7716678541
+ - - -0.8876747481
+ - 0.0003331306
+ - -0.5148259732
+ - - 0.0842679745
+ - 1.1983304783
+ - -0.5457900007
+ - - 1.2478269005
+ - 0.7817174392
+ - 0.3947454313
+ - - 1.2471736668
+ - -0.7823168768
+ - 0.394776541
+ - - 0.0838540779
+ - -1.1979131326
+ - -0.5463720751
+ - - -2.2268244729
+ - 0.8176713173
+ - 0.8083855275
+ - - -2.2257190644
+ - -0.8183478838
+ - 0.8086227025
+ - - -1.555206937
+ - 0.0004481621
+ - -1.4014667521
+ - - 0.4472751629
+ - 1.328610504
+ - -1.577706752
+ - - -0.3972964472
+ - 2.1409060221
+ - -0.2430214911
+ - - 1.0633547955
+ - 1.1576704199
+ - 1.4092104991
+ - - 2.206944872
+ - 1.1986985257
+ - 0.0558661702
+ - - 2.2061369422
+ - -1.2003954956
+ - 0.0567768297
+ - - 1.0614483636
+ - -1.1582003799
+ - 1.4090579434
+ - - 0.4469717728
+ - -1.3279760076
+ - -1.5783098785
+ - - -0.3980610185
+ - -2.1405876306
+ - -0.2442933174
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.744755173666861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.634415
+ - 0.000349
+ - 0.755984
+ - - -0.879989
+ - 0.000499
+ - -0.509652
+ - - 0.083465
+ - 1.196087
+ - -0.52816
+ - - 1.254105
+ - 0.777363
+ - 0.390204
+ - - 1.253559
+ - -0.778454
+ - 0.389693
+ - - 0.082625
+ - -1.195754
+ - -0.528943
+ - - -2.239747
+ - 0.816837
+ - 0.800575
+ - - -2.240321
+ - -0.815742
+ - 0.800041
+ - - -1.532426
+ - 0.001019
+ - -1.400066
+ - - 0.434211
+ - 1.348369
+ - -1.556663
+ - - -0.399083
+ - 2.126855
+ - -0.207903
+ - - 1.092648
+ - 1.152986
+ - 1.404185
+ - - 2.204921
+ - 1.190792
+ - 0.038254
+ - - 2.204085
+ - -1.192319
+ - 0.03747
+ - - 1.091841
+ - -1.154629
+ - 1.403428
+ - - 0.433263
+ - -1.347609
+ - -1.557546
+ - - -0.400577
+ - -2.126393
+ - -0.209295
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3845142542321371
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.641068
+ - 0.000352
+ - 0.754377
+ - - -0.881989
+ - 0.000499
+ - -0.511402
+ - - 0.083187
+ - 1.198714
+ - -0.526363
+ - - 1.258213
+ - 0.778474
+ - 0.39037
+ - - 1.257669
+ - -0.779566
+ - 0.389858
+ - - 0.082346
+ - -1.198383
+ - -0.527146
+ - - -2.25091
+ - 0.821032
+ - 0.799072
+ - - -2.251485
+ - -0.819929
+ - 0.798536
+ - - -1.533454
+ - 0.001021
+ - -1.408991
+ - - 0.432699
+ - 1.358643
+ - -1.559503
+ - - -0.402129
+ - 2.132557
+ - -0.201637
+ - - 1.101933
+ - 1.156891
+ - 1.409583
+ - - 2.212371
+ - 1.194423
+ - 0.035119
+ - - 2.211534
+ - -1.195948
+ - 0.034328
+ - - 1.10113
+ - -1.158545
+ - 1.408822
+ - - 0.431743
+ - -1.357884
+ - -1.56039
+ - - -0.403625
+ - -2.132096
+ - -0.203027
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.6628705657841487
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.629341
+ - 0.000352
+ - 0.738876
+ - - -0.874035
+ - 0.000497
+ - -0.51164
+ - - 0.083031
+ - 1.189159
+ - -0.527053
+ - - 1.245303
+ - 0.772497
+ - 0.387874
+ - - 1.244759
+ - -0.773581
+ - 0.387368
+ - - 0.082196
+ - -1.188825
+ - -0.527834
+ - - -2.222152
+ - 0.817399
+ - 0.807656
+ - - -2.222726
+ - -0.816324
+ - 0.807118
+ - - -1.522318
+ - 0.001016
+ - -1.397051
+ - - 0.434831
+ - 1.344938
+ - -1.54924
+ - - -0.398891
+ - 2.114703
+ - -0.207599
+ - - 1.08544
+ - 1.147108
+ - 1.397118
+ - - 2.192379
+ - 1.184377
+ - 0.03977
+ - - 2.191546
+ - -1.1859
+ - 0.038995
+ - - 1.084629
+ - -1.14874
+ - 1.396365
+ - - 0.433888
+ - -1.344178
+ - -1.550124
+ - - -0.400376
+ - -2.114241
+ - -0.208991
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.133863986663462
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.629157
+ - 0.000343
+ - 0.755464
+ - - -0.881907
+ - 0.0005
+ - -0.512248
+ - - 0.082896
+ - 1.196845
+ - -0.530945
+ - - 1.252468
+ - 0.777808
+ - 0.39068
+ - - 1.251914
+ - -0.778899
+ - 0.390178
+ - - 0.082059
+ - -1.196507
+ - -0.531735
+ - - -2.233236
+ - 0.81544
+ - 0.805543
+ - - -2.233807
+ - -0.814364
+ - 0.805004
+ - - -1.535281
+ - 0.001021
+ - -1.398399
+ - - 0.435632
+ - 1.350228
+ - -1.556265
+ - - -0.397855
+ - 2.126768
+ - -0.213018
+ - - 1.088059
+ - 1.15206
+ - 1.402062
+ - - 2.202328
+ - 1.191213
+ - 0.043152
+ - - 2.201485
+ - -1.192757
+ - 0.0424
+ - - 1.087218
+ - -1.153685
+ - 1.401315
+ - - 0.434696
+ - -1.349453
+ - -1.557153
+ - - -0.399345
+ - -2.126306
+ - -0.214429
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.2623104066505366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.609183
+ - -1.5e-05
+ - 0.753234
+ - - -0.874841
+ - 0.000478
+ - -0.51472
+ - - 0.083984
+ - 1.189019
+ - -0.536907
+ - - 1.239051
+ - 0.773229
+ - 0.390521
+ - - 1.237697
+ - -0.774341
+ - 0.390998
+ - - 0.083495
+ - -1.188419
+ - -0.538093
+ - - -2.206298
+ - 0.815321
+ - 0.821696
+ - - -2.206445
+ - -0.815309
+ - 0.820975
+ - - -1.536317
+ - 0.001067
+ - -1.390075
+ - - 0.442706
+ - 1.333682
+ - -1.559024
+ - - -0.3987
+ - 2.117833
+ - -0.226142
+ - - 1.068063
+ - 1.14951
+ - 1.398
+ - - 2.189577
+ - 1.18431
+ - 0.049768
+ - - 2.188111
+ - -1.187478
+ - 0.052435
+ - - 1.063863
+ - -1.149583
+ - 1.398378
+ - - 0.443114
+ - -1.331424
+ - -1.56014
+ - - -0.399711
+ - -2.117625
+ - -0.229297
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.001107197585428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.609183
+ - -1.5e-05
+ - 0.753234
+ - - -0.874841
+ - 0.000478
+ - -0.51472
+ - - 0.083984
+ - 1.189019
+ - -0.536907
+ - - 1.239051
+ - 0.773229
+ - 0.390521
+ - - 1.237697
+ - -0.774341
+ - 0.390998
+ - - 0.083495
+ - -1.188419
+ - -0.538093
+ - - -2.206298
+ - 0.815321
+ - 0.821696
+ - - -2.206445
+ - -0.815309
+ - 0.820975
+ - - -1.536317
+ - 0.001067
+ - -1.390075
+ - - 0.442706
+ - 1.333682
+ - -1.559024
+ - - -0.3987
+ - 2.117833
+ - -0.226142
+ - - 1.068063
+ - 1.14951
+ - 1.398
+ - - 2.189577
+ - 1.18431
+ - 0.049768
+ - - 2.188111
+ - -1.187478
+ - 0.052435
+ - - 1.063863
+ - -1.149583
+ - 1.398378
+ - - 0.443114
+ - -1.331424
+ - -1.56014
+ - - -0.399711
+ - -2.117625
+ - -0.229297
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.202823027365836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.609183
+ - -1.5e-05
+ - 0.753234
+ - - -0.874841
+ - 0.000478
+ - -0.51472
+ - - 0.083984
+ - 1.189019
+ - -0.536907
+ - - 1.239051
+ - 0.773229
+ - 0.390521
+ - - 1.237697
+ - -0.774341
+ - 0.390998
+ - - 0.083495
+ - -1.188419
+ - -0.538093
+ - - -2.206298
+ - 0.815321
+ - 0.821696
+ - - -2.206445
+ - -0.815309
+ - 0.820975
+ - - -1.536317
+ - 0.001067
+ - -1.390075
+ - - 0.442706
+ - 1.333682
+ - -1.559024
+ - - -0.3987
+ - 2.117833
+ - -0.226142
+ - - 1.068063
+ - 1.14951
+ - 1.398
+ - - 2.189577
+ - 1.18431
+ - 0.049768
+ - - 2.188111
+ - -1.187478
+ - 0.052435
+ - - 1.063863
+ - -1.149583
+ - 1.398378
+ - - 0.443114
+ - -1.331424
+ - -1.56014
+ - - -0.399711
+ - -2.117625
+ - -0.229297
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.416442657436702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.629477
+ - 0.000344
+ - 0.756786
+ - - -0.882402
+ - 0.000499
+ - -0.508824
+ - - 0.082614
+ - 1.196971
+ - -0.529148
+ - - 1.253744
+ - 0.777903
+ - 0.390632
+ - - 1.253192
+ - -0.778994
+ - 0.390129
+ - - 0.081775
+ - -1.196635
+ - -0.529935
+ - - -2.237402
+ - 0.813343
+ - 0.798854
+ - - -2.237972
+ - -0.812255
+ - 0.798319
+ - - -1.536147
+ - 0.00102
+ - -1.396326
+ - - 0.433144
+ - 1.350409
+ - -1.556366
+ - - -0.398153
+ - 2.128237
+ - -0.211612
+ - - 1.09321
+ - 1.154296
+ - 1.403375
+ - - 2.203972
+ - 1.192274
+ - 0.04206
+ - - 2.20313
+ - -1.193815
+ - 0.041302
+ - - 1.092376
+ - -1.155927
+ - 1.402626
+ - - 0.432205
+ - -1.349638
+ - -1.557252
+ - - -0.399645
+ - -2.127774
+ - -0.213018
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.77430055071761
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.595837
+ - 0.000336
+ - 0.75806
+ - - -0.875419
+ - 0.000503
+ - -0.516024
+ - - 0.084577
+ - 1.188538
+ - -0.543788
+ - - 1.233835
+ - 0.773941
+ - 0.391946
+ - - 1.233287
+ - -0.775027
+ - 0.391433
+ - - 0.083736
+ - -1.188192
+ - -0.544575
+ - - -2.191403
+ - 0.816532
+ - 0.833175
+ - - -2.191973
+ - -0.815492
+ - 0.832638
+ - - -1.543125
+ - 0.001028
+ - -1.385976
+ - - 0.447857
+ - 1.324225
+ - -1.564937
+ - - -0.397255
+ - 2.119431
+ - -0.239429
+ - - 1.050428
+ - 1.146244
+ - 1.398206
+ - - 2.186256
+ - 1.186483
+ - 0.060431
+ - - 2.185416
+ - -1.188023
+ - 0.059644
+ - - 1.049618
+ - -1.147867
+ - 1.397446
+ - - 0.44692
+ - -1.32346
+ - -1.565813
+ - - -0.398753
+ - -2.118945
+ - -0.240831
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.64835489875715
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.6116730284
- - 8.51734e-05
- - 0.7716678541
- - - -0.8876747481
- - 0.0003331306
- - -0.5148259732
- - - 0.0842679745
- - 1.1983304783
- - -0.5457900007
- - - 1.2478269005
- - 0.7817174392
- - 0.3947454313
- - - 1.2471736668
- - -0.7823168768
- - 0.394776541
- - - 0.0838540779
- - -1.1979131326
- - -0.5463720751
- - - -2.2268244729
- - 0.8176713173
- - 0.8083855275
- - - -2.2257190644
- - -0.8183478838
- - 0.8086227025
- - - -1.555206937
- - 0.0004481621
- - -1.4014667521
- - - 0.4472751629
- - 1.328610504
- - -1.577706752
- - - -0.3972964472
- - 2.1409060221
- - -0.2430214911
- - - 1.0633547955
- - 1.1576704199
- - 1.4092104991
- - - 2.206944872
- - 1.1986985257
- - 0.0558661702
- - - 2.2061369422
- - -1.2003954956
- - 0.0567768297
- - - 1.0614483636
- - -1.1582003799
- - 1.4090579434
- - - 0.4469717728
- - -1.3279760076
- - -1.5783098785
- - - -0.3980610185
- - -2.1405876306
- - -0.2442933174
+ - - -1.615917
+ - 0.000345
+ - 0.749164
+ - - -0.875605
+ - 0.000498
+ - -0.507451
+ - - 0.083534
+ - 1.186329
+ - -0.530185
+ - - 1.240874
+ - 0.771656
+ - 0.38864
+ - - 1.240329
+ - -0.772741
+ - 0.388133
+ - - 0.0827
+ - -1.185994
+ - -0.530966
+ - - -2.213968
+ - 0.815375
+ - 0.81055
+ - - -2.214546
+ - -0.814302
+ - 0.810012
+ - - -1.529723
+ - 0.001019
+ - -1.392451
+ - - 0.437274
+ - 1.332736
+ - -1.555437
+ - - -0.396433
+ - 2.118354
+ - -0.219007
+ - - 1.075232
+ - 1.146877
+ - 1.399202
+ - - 2.191209
+ - 1.185762
+ - 0.045224
+ - - 2.190372
+ - -1.187292
+ - 0.044447
+ - - 1.07442
+ - -1.148509
+ - 1.398448
+ - - 0.436337
+ - -1.331972
+ - -1.556314
+ - - -0.397924
+ - -2.117885
+ - -0.220404
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.489577275859283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.620397
+ - 0.000343
+ - 0.762519
+ - - -0.880837
+ - 0.000503
+ - -0.516649
+ - - 0.083814
+ - 1.196764
+ - -0.536184
+ - - 1.248928
+ - 0.778306
+ - 0.392911
+ - - 1.248382
+ - -0.779398
+ - 0.392394
+ - - 0.08297
+ - -1.196425
+ - -0.536971
+ - - -2.228007
+ - 0.81811
+ - 0.814774
+ - - -2.228583
+ - -0.81703
+ - 0.814237
+ - - -1.543071
+ - 0.001026
+ - -1.39838
+ - - 0.44126
+ - 1.344584
+ - -1.562909
+ - - -0.398746
+ - 2.129374
+ - -0.221251
+ - - 1.079781
+ - 1.153631
+ - 1.405434
+ - - 2.202234
+ - 1.190922
+ - 0.047125
+ - - 2.201397
+ - -1.192453
+ - 0.046328
+ - - 1.078979
+ - -1.155277
+ - 1.40467
+ - - 0.440309
+ - -1.343824
+ - -1.563794
+ - - -0.400247
+ - -2.1289
+ - -0.222648
isotopes:
- 14
- 12
@@ -414,6 +1701,204 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.393891700704826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.609183135
+ - -1.503e-05
+ - 0.7532339507
+ - - -0.8748406108
+ - 0.0004782277
+ - -0.5147200125
+ - - 0.0839844344
+ - 1.1890192734
+ - -0.5369072157
+ - - 1.2390506906
+ - 0.7732292198
+ - 0.3905205134
+ - - 1.2376974003
+ - -0.7743407786
+ - 0.390998126
+ - - 0.0834946771
+ - -1.1884191275
+ - -0.538093366
+ - - -2.2062984652
+ - 0.8153209484
+ - 0.8216960229
+ - - -2.2064452289
+ - -0.8153088332
+ - 0.8209751548
+ - - -1.5363172054
+ - 0.0010672391
+ - -1.3900750859
+ - - 0.4427059137
+ - 1.3336819568
+ - -1.5590236891
+ - - -0.3987004882
+ - 2.1178326128
+ - -0.2261417229
+ - - 1.0680631533
+ - 1.1495098827
+ - 1.3979996489
+ - - 2.1895772233
+ - 1.1843104031
+ - 0.0497683315
+ - - 2.1881111585
+ - -1.1874776733
+ - 0.0524345274
+ - - 1.0638629829
+ - -1.149582802
+ - 1.3983781933
+ - - 0.4431141455
+ - -1.3314242494
+ - -1.5601401045
+ - - -0.3997107931
+ - -2.117625165
+ - -0.2292972028
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.228247436555655
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.624552
+ - 0.000347
+ - 0.747219
+ - - -0.876117
+ - 0.000498
+ - -0.508002
+ - - 0.083864
+ - 1.189002
+ - -0.530118
+ - - 1.244582
+ - 0.773163
+ - 0.388834
+ - - 1.244038
+ - -0.774249
+ - 0.388325
+ - - 0.083027
+ - -1.188667
+ - -0.530901
+ - - -2.219916
+ - 0.815599
+ - 0.809087
+ - - -2.220497
+ - -0.814521
+ - 0.808545
+ - - -1.528733
+ - 0.001018
+ - -1.39112
+ - - 0.437028
+ - 1.336516
+ - -1.553871
+ - - -0.395641
+ - 2.118268
+ - -0.215665
+ - - 1.078897
+ - 1.147587
+ - 1.398127
+ - - 2.192988
+ - 1.185521
+ - 0.043182
+ - - 2.192153
+ - -1.187047
+ - 0.042402
+ - - 1.078089
+ - -1.149221
+ - 1.397372
+ - - 0.436088
+ - -1.335756
+ - -1.55475
+ - - -0.397132
+ - -2.117802
+ - -0.217059
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopentane.yml b/input/reference_sets/main/Cyclopentane.yml
index 8c2a3546b5..23317e7456 100644
--- a/input/reference_sets/main/Cyclopentane.yml
+++ b/input/reference_sets/main/Cyclopentane.yml
@@ -16,6 +16,95 @@ adjacency_list: |
14 H u0 p0 c0 {5,S}
15 H u0 p0 c0 {5,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.030208034919341
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.884383
+ - -0.953845
+ - 0.012393
+ - - -0.653972
+ - -1.107922
+ - 0.129249
+ - - -1.227848
+ - 0.265662
+ - -0.244806
+ - - -0.162762
+ - 1.239643
+ - 0.260315
+ - - 1.14745
+ - 0.561984
+ - -0.156452
+ - - 1.279417
+ - -1.515388
+ - -0.834005
+ - - 1.378701
+ - -1.341005
+ - 0.903433
+ - - -0.927995
+ - -1.347179
+ - 1.158489
+ - - -1.042517
+ - -1.909708
+ - -0.498271
+ - - -2.216182
+ - 0.442619
+ - 0.180301
+ - - -1.315954
+ - 0.354634
+ - -1.331222
+ - - -0.268755
+ - 2.2472
+ - -0.142869
+ - - -0.219477
+ - 1.312044
+ - 1.350261
+ - - 2.005897
+ - 0.905364
+ - 0.420602
+ - - 1.35273
+ - 0.790833
+ - -1.20438
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -105,6 +194,718 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.100958307982953
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.879527
+ - -0.95459
+ - -0.005113
+ - - -0.651256
+ - -1.104063
+ - 0.139628
+ - - -1.226569
+ - 0.261351
+ - -0.242587
+ - - -0.16515
+ - 1.239368
+ - 0.251386
+ - - 1.148494
+ - 0.560489
+ - -0.142185
+ - - 1.250605
+ - -1.49462
+ - -0.876061
+ - - 1.39347
+ - -1.37238
+ - 0.860447
+ - - -0.908519
+ - -1.328127
+ - 1.176725
+ - - -1.05242
+ - -1.915061
+ - -0.467767
+ - - -2.214159
+ - 0.441047
+ - 0.182889
+ - - -1.319695
+ - 0.340674
+ - -1.329333
+ - - -0.268736
+ - 2.240585
+ - -0.167528
+ - - -0.230863
+ - 1.331942
+ - 1.339086
+ - - 1.991944
+ - 0.892775
+ - 0.462594
+ - - 1.386442
+ - 0.805545
+ - -1.179145
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.359790779655494
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.89731
+ - -0.929536
+ - 0.131551
+ - - -0.639359
+ - -1.141218
+ - 0.004321
+ - - -1.25668
+ - 0.276603
+ - -0.154184
+ - - -0.136402
+ - 1.252326
+ - 0.251275
+ - - 1.139277
+ - 0.548259
+ - -0.234293
+ - - 1.468164
+ - -1.615755
+ - -0.498332
+ - - 1.215625
+ - -1.107523
+ - 1.163382
+ - - -1.034152
+ - -1.647433
+ - 0.88864
+ - - -0.886887
+ - -1.772654
+ - -0.852323
+ - - -2.165839
+ - 0.407223
+ - 0.437452
+ - - -1.529632
+ - 0.451335
+ - -1.199819
+ - - -0.2678
+ - 2.251734
+ - -0.171409
+ - - -0.105613
+ - 1.360108
+ - 1.341915
+ - - 2.053156
+ - 0.951775
+ - 0.209154
+ - - 1.227896
+ - 0.658954
+ - -1.321326
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.844571405514381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.887068
+ - -0.943852
+ - 0.057984
+ - - -0.653486
+ - -1.113825
+ - 0.085255
+ - - -1.229965
+ - 0.278028
+ - -0.218448
+ - - -0.145746
+ - 1.236767
+ - 0.271083
+ - - 1.139505
+ - 0.553895
+ - -0.196482
+ - - 1.355162
+ - -1.565583
+ - -0.705152
+ - - 1.318111
+ - -1.243627
+ - 1.014306
+ - - -0.978035
+ - -1.443048
+ - 1.073911
+ - - -1.000288
+ - -1.863968
+ - -0.625358
+ - - -2.200635
+ - 0.444859
+ - 0.249292
+ - - -1.361131
+ - 0.404721
+ - -1.296925
+ - - -0.258771
+ - 2.251291
+ - -0.112827
+ - - -0.164148
+ - 1.290763
+ - 1.364235
+ - - 2.032795
+ - 0.922484
+ - 0.308464
+ - - 1.27268
+ - 0.736032
+ - -1.266305
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.100759070005306
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.887068
+ - -0.943852
+ - 0.057984
+ - - -0.653486
+ - -1.113825
+ - 0.085255
+ - - -1.229965
+ - 0.278028
+ - -0.218448
+ - - -0.145746
+ - 1.236767
+ - 0.271083
+ - - 1.139505
+ - 0.553895
+ - -0.196482
+ - - 1.355162
+ - -1.565583
+ - -0.705152
+ - - 1.318111
+ - -1.243627
+ - 1.014306
+ - - -0.978035
+ - -1.443048
+ - 1.073911
+ - - -1.000288
+ - -1.863968
+ - -0.625358
+ - - -2.200635
+ - 0.444859
+ - 0.249292
+ - - -1.361131
+ - 0.404721
+ - -1.296925
+ - - -0.258771
+ - 2.251291
+ - -0.112827
+ - - -0.164148
+ - 1.290763
+ - 1.364235
+ - - 2.032795
+ - 0.922484
+ - 0.308464
+ - - 1.27268
+ - 0.736032
+ - -1.266305
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.845339218181214
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.097599
+ - 0.709601
+ - -0.006995
+ - - 0.356759
+ - 1.239811
+ - 0.142712
+ - - 1.261765
+ - 0.055039
+ - -0.244932
+ - - 0.474395
+ - -1.167511
+ - 0.249378
+ - - -0.979171
+ - -0.83594
+ - -0.139768
+ - - -1.590024
+ - 1.138329
+ - -0.884672
+ - - -1.706005
+ - 0.991668
+ - 0.857177
+ - - 0.548123
+ - 1.518831
+ - 1.185071
+ - - 0.544539
+ - 2.131641
+ - -0.461749
+ - - 2.266907
+ - 0.127549
+ - 0.181016
+ - - 1.37337
+ - 0.005064
+ - -1.335729
+ - - 0.825232
+ - -2.112849
+ - -0.17515
+ - - 0.565418
+ - -1.247265
+ - 1.340278
+ - - -1.712286
+ - -1.368667
+ - 0.472363
+ - - -1.156935
+ - -1.137233
+ - -1.178233
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.142665578422406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.886154
+ - -0.930183
+ - 0.130807
+ - - -0.645406
+ - -1.125964
+ - 0.011033
+ - - -1.240018
+ - 0.289734
+ - -0.164524
+ - - -0.120406
+ - 1.241084
+ - 0.26616
+ - - 1.13543
+ - 0.535879
+ - -0.243234
+ - - 1.447469
+ - -1.624152
+ - -0.493938
+ - - 1.203623
+ - -1.098352
+ - 1.161587
+ - - -1.042014
+ - -1.609187
+ - 0.903863
+ - - -0.902887
+ - -1.765769
+ - -0.832603
+ - - -2.161169
+ - 0.431901
+ - 0.399815
+ - - -1.474726
+ - 0.467558
+ - -1.216211
+ - - -0.242733
+ - 2.250885
+ - -0.125721
+ - - -0.083895
+ - 1.308292
+ - 1.357349
+ - - 2.059511
+ - 0.931
+ - 0.178706
+ - - 1.194183
+ - 0.642213
+ - -1.330054
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.08626709219548
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.879238
+ - -0.924256
+ - 0.164545
+ - - -0.635537
+ - -1.128345
+ - -0.030259
+ - - -1.245583
+ - 0.287781
+ - -0.126953
+ - - -0.111235
+ - 1.245736
+ - 0.243047
+ - - 1.13687
+ - 0.522909
+ - -0.248799
+ - - 1.477955
+ - -1.643073
+ - -0.398809
+ - - 1.14157
+ - -1.04955
+ - 1.219653
+ - - -1.065547
+ - -1.698252
+ - 0.796034
+ - - -0.840755
+ - -1.698682
+ - -0.938972
+ - - -2.122812
+ - 0.41155
+ - 0.51132
+ - - -1.572014
+ - 0.486093
+ - -1.151792
+ - - -0.237235
+ - 2.241744
+ - -0.187516
+ - - -0.057284
+ - 1.365698
+ - 1.330824
+ - - 2.06515
+ - 0.927562
+ - 0.161102
+ - - 1.200337
+ - 0.59802
+ - -1.34039
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.450759620857735
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.886418
+ - -0.960945
+ - -0.004311
+ - - -0.655853
+ - -1.111448
+ - 0.14214
+ - - -1.234402
+ - 0.262712
+ - -0.247995
+ - - -0.1675
+ - 1.247295
+ - 0.255551
+ - - 1.155675
+ - 0.565689
+ - -0.144272
+ - - 1.257905
+ - -1.503209
+ - -0.879808
+ - - 1.402271
+ - -1.377899
+ - 0.866661
+ - - -0.913251
+ - -1.331623
+ - 1.185146
+ - - -1.05753
+ - -1.9279
+ - -0.466512
+ - - -2.2283
+ - 0.442887
+ - 0.175354
+ - - -1.320644
+ - 0.341135
+ - -1.340173
+ - - -0.271849
+ - 2.254327
+ - -0.162203
+ - - -0.23385
+ - 1.333823
+ - 1.348506
+ - - 2.003732
+ - 0.899599
+ - 0.46211
+ - - 1.390295
+ - 0.810494
+ - -1.18716
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -194,6 +995,95 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.928159668673196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8870679272
+ - -0.9438520308
+ - 0.0579840349
+ - - -0.6534860252
+ - -1.1138252431
+ - 0.0852551229
+ - - -1.2299646729
+ - 0.278027623
+ - -0.2184475902
+ - - -0.1457458405
+ - 1.236767193
+ - 0.2710829919
+ - - 1.1395053614
+ - 0.5538951675
+ - -0.1964816425
+ - - 1.3551618741
+ - -1.5655826365
+ - -0.7051524849
+ - - 1.3181113269
+ - -1.2436271492
+ - 1.0143064034
+ - - -0.9780353793
+ - -1.4430476147
+ - 1.0739111576
+ - - -1.0002882324
+ - -1.8639681711
+ - -0.6253576685
+ - - -2.2006345092
+ - 0.4448589549
+ - 0.2492924122
+ - - -1.3611306157
+ - 0.4047206928
+ - -1.2969246963
+ - - -0.2587713566
+ - 2.2512911307
+ - -0.1128270786
+ - - -0.1641478913
+ - 1.2907627979
+ - 1.3642354487
+ - - 2.0327945062
+ - 0.9224837484
+ - 0.308463724
+ - - 1.2726797775
+ - 0.7360319889
+ - -1.2663047194
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/Cyclopentanethiol.yml b/input/reference_sets/main/Cyclopentanethiol.yml
index 4e58249158..2d57ea3458 100644
--- a/input/reference_sets/main/Cyclopentanethiol.yml
+++ b/input/reference_sets/main/Cyclopentanethiol.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.353736073580895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.133931
+ - -0.000836
+ - -0.031736
+ - - -0.35096
+ - -0.000307
+ - -0.382556
+ - - 0.433938
+ - 1.196004
+ - 0.156157
+ - - 1.904478
+ - 0.778096
+ - -0.017247
+ - - 1.904832
+ - -0.777953
+ - -0.017778
+ - - 0.434477
+ - -1.196653
+ - 0.155297
+ - - -2.019854
+ - -0.001297
+ - 1.304741
+ - - -0.306437
+ - 9.7e-05
+ - -1.475954
+ - - 0.181953
+ - 2.127005
+ - -0.349432
+ - - 0.194208
+ - 1.322599
+ - 1.215062
+ - - 2.295333
+ - 1.155239
+ - -0.962659
+ - - 2.534477
+ - 1.188383
+ - 0.771036
+ - - 2.295894
+ - -1.154276
+ - -0.96343
+ - - 2.53499
+ - -1.188488
+ - 0.77025
+ - - 0.182922
+ - -2.127399
+ - -0.350973
+ - - 0.194787
+ - -1.324129
+ - 1.214105
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.580327738639753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.139899
+ - -0.00083
+ - -0.020481
+ - - -0.353704
+ - -0.000308
+ - -0.380103
+ - - 0.434746
+ - 1.199176
+ - 0.15068
+ - - 1.906911
+ - 0.778679
+ - -0.015217
+ - - 1.907253
+ - -0.778555
+ - -0.015787
+ - - 0.435277
+ - -1.199817
+ - 0.149832
+ - - -2.024172
+ - -0.001277
+ - 1.319147
+ - - -0.319556
+ - 8.5e-05
+ - -1.473853
+ - - 0.185051
+ - 2.126258
+ - -0.363948
+ - - 0.192904
+ - 1.338346
+ - 1.207803
+ - - 2.304809
+ - 1.156082
+ - -0.958308
+ - - 2.533082
+ - 1.189088
+ - 0.776874
+ - - 2.305292
+ - -1.155091
+ - -0.959165
+ - - 2.533623
+ - -1.189271
+ - 0.775987
+ - - 0.185985
+ - -2.126649
+ - -0.365442
+ - - 0.193508
+ - -1.339832
+ - 1.206861
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 27.099421778681172
+ value: 27.099421778681172
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1534750204
+ - 0.0002864804
+ - -0.0314356487
+ - - -0.3462331131
+ - 0.0009900804
+ - -0.3944000701
+ - - 0.4394576766
+ - 1.2053822419
+ - 0.1586986614
+ - - 1.9221782129
+ - 0.7853956695
+ - -0.0184188112
+ - - 1.9228572243
+ - -0.7851246384
+ - -0.0135491853
+ - - 0.438737195
+ - -1.2061739291
+ - 0.1540169959
+ - - -2.0072282377
+ - -0.0048484804
+ - 1.3161740534
+ - - -0.2951647033
+ - 0.0032030161
+ - -1.4957970211
+ - - 0.1818579842
+ - 2.1456536106
+ - -0.3459405036
+ - - 0.1970265317
+ - 1.3202061691
+ - 1.2276705209
+ - - 2.3095488028
+ - 1.1620075985
+ - -0.9762405922
+ - - 2.5593750325
+ - 1.203424807
+ - 0.7731989244
+ - - 2.3203401214
+ - -1.168080803
+ - -0.9646262523
+ - - 2.5526472246
+ - -1.1970198528
+ - 0.787196566
+ - - 0.1835376065
+ - -2.1432547035
+ - -0.3577677098
+ - - 0.1916767902
+ - -1.3286915942
+ - 1.2210168497
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.363349999624415
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.146727
+ - -0.000796
+ - -0.024801
+ - - -0.355663
+ - -0.000269
+ - -0.381305
+ - - 0.434003
+ - 1.202195
+ - 0.152666
+ - - 1.909374
+ - 0.780993
+ - -0.015852
+ - - 1.909737
+ - -0.780853
+ - -0.016213
+ - - 0.434501
+ - -1.202848
+ - 0.151685
+ - - -2.024298
+ - -0.001339
+ - 1.317362
+ - - -0.318816
+ - 0.000197
+ - -1.479521
+ - - 0.181419
+ - 2.133546
+ - -0.361755
+ - - 0.191059
+ - 1.337575
+ - 1.214474
+ - - 2.306533
+ - 1.159465
+ - -0.963852
+ - - 2.539212
+ - 1.193161
+ - 0.778419
+ - - 2.307412
+ - -1.158719
+ - -0.964236
+ - - 2.539496
+ - -1.193068
+ - 0.778095
+ - - 0.182409
+ - -2.133846
+ - -0.363615
+ - - 0.191457
+ - -1.339312
+ - 1.21333
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.87233209314789
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.155214
+ - -0.000818
+ - -0.02401
+ - - -0.358974
+ - -0.000295
+ - -0.379834
+ - - 0.434432
+ - 1.205336
+ - 0.150877
+ - - 1.912463
+ - 0.78211
+ - -0.015684
+ - - 1.91281
+ - -0.781982
+ - -0.016194
+ - - 0.434952
+ - -1.20598
+ - 0.149981
+ - - -2.036931
+ - -0.0013
+ - 1.32685
+ - - -0.329332
+ - 0.000124
+ - -1.48378
+ - - 0.182406
+ - 2.140304
+ - -0.368255
+ - - 0.18977
+ - 1.348172
+ - 1.216799
+ - - 2.315602
+ - 1.163572
+ - -0.965685
+ - - 2.544394
+ - 1.196645
+ - 0.782518
+ - - 2.316206
+ - -1.162649
+ - -0.966405
+ - - 2.544857
+ - -1.196751
+ - 0.781795
+ - - 0.183356
+ - -2.140661
+ - -0.369875
+ - - 0.190311
+ - -1.349743
+ - 1.215783
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.604148093290533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.127869
+ - -0.000825
+ - -0.023361
+ - - -0.352407
+ - -0.000305
+ - -0.377437
+ - - 0.435194
+ - 1.194555
+ - 0.151545
+ - - 1.90222
+ - 0.775561
+ - -0.015733
+ - - 1.902563
+ - -0.775433
+ - -0.01628
+ - - 0.435722
+ - -1.195196
+ - 0.150689
+ - - -2.022234
+ - -0.001297
+ - 1.313239
+ - - -0.313523
+ - 9.5e-05
+ - -1.470441
+ - - 0.186016
+ - 2.122453
+ - -0.36088
+ - - 0.194742
+ - 1.333556
+ - 1.208466
+ - - 2.299063
+ - 1.153472
+ - -0.95827
+ - - 2.52962
+ - 1.18665
+ - 0.774074
+ - - 2.299584
+ - -1.152504
+ - -0.959079
+ - - 2.530137
+ - -1.1868
+ - 0.773244
+ - - 0.186956
+ - -2.122836
+ - -0.362404
+ - - 0.195326
+ - -1.335063
+ - 1.207509
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.848209761378053
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.15692
+ - -0.000821
+ - -0.01838
+ - - -0.356908
+ - -0.000302
+ - -0.377385
+ - - 0.435586
+ - 1.204816
+ - 0.150356
+ - - 1.912686
+ - 0.781079
+ - -0.015673
+ - - 1.913023
+ - -0.78096
+ - -0.016238
+ - - 0.436108
+ - -1.205456
+ - 0.14949
+ - - -2.047906
+ - -0.001284
+ - 1.322681
+ - - -0.328874
+ - 9.7e-05
+ - -1.472826
+ - - 0.186766
+ - 2.131521
+ - -0.369532
+ - - 0.19668
+ - 1.351691
+ - 1.209111
+ - - 2.313183
+ - 1.159627
+ - -0.959532
+ - - 2.539264
+ - 1.192183
+ - 0.778484
+ - - 2.31368
+ - -1.158652
+ - -0.960372
+ - - 2.539783
+ - -1.192367
+ - 0.777619
+ - - 0.187688
+ - -2.131895
+ - -0.371061
+ - - 0.197268
+ - -1.353192
+ - 1.208141
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1018752033736758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.12559
+ - 0.000148
+ - -0.033242
+ - - -0.349393
+ - 0.000814
+ - -0.384849
+ - - 0.433484
+ - 1.19332
+ - 0.158402
+ - - 1.901289
+ - 0.77661
+ - -0.019861
+ - - 1.902138
+ - -0.776182
+ - -0.014855
+ - - 0.43303
+ - -1.194223
+ - 0.153914
+ - - -2.007149
+ - -0.00282
+ - 1.303433
+ - - -0.299142
+ - 0.003204
+ - -1.478358
+ - - 0.179473
+ - 2.12758
+ - -0.340973
+ - - 0.193427
+ - 1.312143
+ - 1.219115
+ - - 2.286191
+ - 1.151155
+ - -0.969346
+ - - 2.536235
+ - 1.191592
+ - 0.762231
+ - - 2.297345
+ - -1.156913
+ - -0.957524
+ - - 2.529769
+ - -1.184601
+ - 0.776559
+ - - 0.181658
+ - -2.125431
+ - -0.352425
+ - - 0.188344
+ - -1.320313
+ - 1.212663
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.49165005605758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.12559
+ - 0.000148
+ - -0.033242
+ - - -0.349393
+ - 0.000814
+ - -0.384849
+ - - 0.433484
+ - 1.19332
+ - 0.158402
+ - - 1.901289
+ - 0.77661
+ - -0.019861
+ - - 1.902138
+ - -0.776182
+ - -0.014855
+ - - 0.43303
+ - -1.194223
+ - 0.153914
+ - - -2.007149
+ - -0.00282
+ - 1.303433
+ - - -0.299142
+ - 0.003204
+ - -1.478358
+ - - 0.179473
+ - 2.12758
+ - -0.340973
+ - - 0.193427
+ - 1.312143
+ - 1.219115
+ - - 2.286191
+ - 1.151155
+ - -0.969346
+ - - 2.536235
+ - 1.191592
+ - 0.762231
+ - - 2.297345
+ - -1.156913
+ - -0.957524
+ - - 2.529769
+ - -1.184601
+ - 0.776559
+ - - 0.181658
+ - -2.125431
+ - -0.352425
+ - - 0.188344
+ - -1.320313
+ - 1.212663
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.727429648743026
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.12559
+ - 0.000148
+ - -0.033242
+ - - -0.349393
+ - 0.000814
+ - -0.384849
+ - - 0.433484
+ - 1.19332
+ - 0.158402
+ - - 1.901289
+ - 0.77661
+ - -0.019861
+ - - 1.902138
+ - -0.776182
+ - -0.014855
+ - - 0.43303
+ - -1.194223
+ - 0.153914
+ - - -2.007149
+ - -0.00282
+ - 1.303433
+ - - -0.299142
+ - 0.003204
+ - -1.478358
+ - - 0.179473
+ - 2.12758
+ - -0.340973
+ - - 0.193427
+ - 1.312143
+ - 1.219115
+ - - 2.286191
+ - 1.151155
+ - -0.969346
+ - - 2.536235
+ - 1.191592
+ - 0.762231
+ - - 2.297345
+ - -1.156913
+ - -0.957524
+ - - 2.529769
+ - -1.184601
+ - 0.776559
+ - - 0.181658
+ - -2.125431
+ - -0.352425
+ - - 0.188344
+ - -1.320313
+ - 1.212663
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.477124050721748
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.153379
+ - -0.000822
+ - -0.022869
+ - - -0.356838
+ - -0.000302
+ - -0.379399
+ - - 0.43506
+ - 1.204354
+ - 0.151724
+ - - 1.912269
+ - 0.781079
+ - -0.01616
+ - - 1.91261
+ - -0.780956
+ - -0.016716
+ - - 0.435584
+ - -1.204997
+ - 0.150855
+ - - -2.048451
+ - -0.001287
+ - 1.320829
+ - - -0.326692
+ - 0.0001
+ - -1.476006
+ - - 0.185278
+ - 2.134561
+ - -0.363831
+ - - 0.195461
+ - 1.347639
+ - 1.212186
+ - - 2.312169
+ - 1.159955
+ - -0.961566
+ - - 2.541292
+ - 1.194209
+ - 0.776613
+ - - 2.312685
+ - -1.158984
+ - -0.962387
+ - - 2.541806
+ - -1.194375
+ - 0.775769
+ - - 0.186211
+ - -2.134939
+ - -0.365374
+ - - 0.196044
+ - -1.349153
+ - 1.211212
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.116406755441472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.125463
+ - 0.018419
+ - -0.037245
+ - - -0.348918
+ - 0.013154
+ - -0.3847
+ - - 0.440973
+ - 1.1967
+ - 0.168761
+ - - 1.90348
+ - 0.775386
+ - -0.033901
+ - - 1.900292
+ - -0.778198
+ - -0.00159
+ - - 0.425751
+ - -1.191084
+ - 0.147589
+ - - -2.007422
+ - -0.042386
+ - 1.296003
+ - - -0.29641
+ - 0.024222
+ - -1.47752
+ - - 0.184255
+ - 2.138405
+ - -0.314167
+ - - 0.214102
+ - 1.297444
+ - 1.233843
+ - - 2.261833
+ - 1.129267
+ - -1.001149
+ - - 2.5588
+ - 1.203485
+ - 0.723232
+ - - 2.314921
+ - -1.176266
+ - -0.927744
+ - - 2.508617
+ - -1.171408
+ - 0.811721
+ - - 0.174383
+ - -2.115161
+ - -0.370732
+ - - 0.171915
+ - -1.325897
+ - 1.202481
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.446288260411887
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.1534750204
- - 0.0002864804
- - -0.0314356487
- - - -0.3462331131
- - 0.0009900804
- - -0.3944000701
- - - 0.4394576766
- - 1.2053822419
- - 0.1586986614
- - - 1.9221782129
- - 0.7853956695
- - -0.0184188112
- - - 1.9228572243
- - -0.7851246384
- - -0.0135491853
- - - 0.438737195
- - -1.2061739291
- - 0.1540169959
- - - -2.0072282377
- - -0.0048484804
- - 1.3161740534
- - - -0.2951647033
- - 0.0032030161
- - -1.4957970211
- - - 0.1818579842
- - 2.1456536106
- - -0.3459405036
- - - 0.1970265317
- - 1.3202061691
- - 1.2276705209
- - - 2.3095488028
- - 1.1620075985
- - -0.9762405922
- - - 2.5593750325
- - 1.203424807
- - 0.7731989244
- - - 2.3203401214
- - -1.168080803
- - -0.9646262523
- - - 2.5526472246
- - -1.1970198528
- - 0.787196566
- - - 0.1835376065
- - -2.1432547035
- - -0.3577677098
- - - 0.1916767902
- - -1.3286915942
- - 1.2210168497
+ - - -2.124434
+ - -0.000827
+ - -0.032578
+ - - -0.349888
+ - -0.000305
+ - -0.378051
+ - - 0.435269
+ - 1.19297
+ - 0.154334
+ - - 1.900125
+ - 0.774879
+ - -0.016673
+ - - 1.900475
+ - -0.774743
+ - -0.017197
+ - - 0.4358
+ - -1.193616
+ - 0.153469
+ - - -2.017756
+ - -0.0013
+ - 1.307226
+ - - -0.308118
+ - 0.000103
+ - -1.473846
+ - - 0.182714
+ - 2.125131
+ - -0.353123
+ - - 0.194279
+ - 1.325245
+ - 1.214431
+ - - 2.294989
+ - 1.153667
+ - -0.962275
+ - - 2.531537
+ - 1.187693
+ - 0.772095
+ - - 2.295557
+ - -1.152714
+ - -0.963035
+ - - 2.532038
+ - -1.187802
+ - 0.771323
+ - - 0.183675
+ - -2.125516
+ - -0.35468
+ - - 0.194848
+ - -1.326782
+ - 1.213463
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.371852016308054
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.152357
+ - -0.0008
+ - -0.029751
+ - - -0.355494
+ - -0.000267
+ - -0.382379
+ - - 0.434107
+ - 1.203741
+ - 0.155522
+ - - 1.911548
+ - 0.78184
+ - -0.0173
+ - - 1.911916
+ - -0.781695
+ - -0.017647
+ - - 0.434607
+ - -1.2044
+ - 0.154524
+ - - -2.03779
+ - -0.001336
+ - 1.313395
+ - - -0.320923
+ - 0.000208
+ - -1.479876
+ - - 0.183195
+ - 2.136421
+ - -0.357104
+ - - 0.194133
+ - 1.336528
+ - 1.218048
+ - - 2.306371
+ - 1.160166
+ - -0.966018
+ - - 2.542764
+ - 1.193134
+ - 0.776122
+ - - 2.307288
+ - -1.159431
+ - -0.966369
+ - - 2.543032
+ - -1.193015
+ - 0.775841
+ - - 0.184197
+ - -2.136716
+ - -0.359008
+ - - 0.194516
+ - -1.338294
+ - 1.216881
isotopes:
- 32
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.169756467921731
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1255901038
+ - 0.0001479324
+ - -0.0332423289
+ - - -0.3493933434
+ - 0.0008137765
+ - -0.3848493847
+ - - 0.4334843443
+ - 1.1933198947
+ - 0.1584022939
+ - - 1.9012893551
+ - 0.7766104419
+ - -0.0198607922
+ - - 1.9021378523
+ - -0.7761819675
+ - -0.0148552359
+ - - 0.4330303267
+ - -1.1942225234
+ - 0.1539136245
+ - - -2.0071489961
+ - -0.0028202914
+ - 1.3034329094
+ - - -0.299142481
+ - 0.003203658
+ - -1.4783583551
+ - - 0.1794731691
+ - 2.1275802424
+ - -0.3409730326
+ - - 0.1934271508
+ - 1.3121434517
+ - 1.21911546
+ - - 2.2861906678
+ - 1.151154536
+ - -0.9693459391
+ - - 2.5362349543
+ - 1.1915915363
+ - 0.7622305876
+ - - 2.2973449998
+ - -1.1569129891
+ - -0.9575237186
+ - - 2.5297694877
+ - -1.1846012032
+ - 0.7765589174
+ - - 0.181657714
+ - -2.1254305369
+ - -0.3524251835
+ - - 0.1883437835
+ - -1.3203130552
+ - 1.2126625825
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.799863228234809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.12897
+ - -0.000827
+ - -0.027977
+ - - -0.352077
+ - -0.000303
+ - -0.37954
+ - - 0.434594
+ - 1.195373
+ - 0.154018
+ - - 1.90235
+ - 0.776204
+ - -0.016362
+ - - 1.9027
+ - -0.776068
+ - -0.016886
+ - - 0.435124
+ - -1.196019
+ - 0.153147
+ - - -2.019826
+ - -0.001302
+ - 1.308526
+ - - -0.309354
+ - 0.000106
+ - -1.473156
+ - - 0.184944
+ - 2.125053
+ - -0.356258
+ - - 0.195024
+ - 1.329153
+ - 1.212827
+ - - 2.295905
+ - 1.154015
+ - -0.961097
+ - - 2.531115
+ - 1.187257
+ - 0.773116
+ - - 2.296476
+ - -1.153067
+ - -0.961853
+ - - 2.53161
+ - -1.187366
+ - 0.772348
+ - - 0.185903
+ - -2.125432
+ - -0.357823
+ - - 0.19559
+ - -1.330693
+ - 1.211851
+ isotopes:
+ - 32
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopentene.yml b/input/reference_sets/main/Cyclopentene.yml
index b0c62fa9cc..8e6b10ef8d 100644
--- a/input/reference_sets/main/Cyclopentene.yml
+++ b/input/reference_sets/main/Cyclopentene.yml
@@ -20,7 +20,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 8.683346675143133
+ value: 8.683346675143127
class: ThermoData
xyz_dict:
coords:
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.731498294295438
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.21858
+ - -0.146692
+ - - -1.228395
+ - -0.318648
+ - 0.110871
+ - - -0.66608
+ - 1.070639
+ - -0.049933
+ - - 0.666148
+ - 1.070596
+ - -0.049938
+ - - 1.228374
+ - -0.318727
+ - 0.110861
+ - - -5.5e-05
+ - -1.530417
+ - -1.192047
+ - - -6.7e-05
+ - -2.119922
+ - 0.464729
+ - - -1.624685
+ - -0.452704
+ - 1.123258
+ - - -2.050213
+ - -0.528548
+ - -0.575929
+ - - -1.285486
+ - 1.955442
+ - -0.111137
+ - - 1.285611
+ - 1.955359
+ - -0.111148
+ - - 2.050172
+ - -0.52868
+ - -0.575946
+ - - 1.624664
+ - -0.452809
+ - 1.123244
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.014812530773312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.22252
+ - -0.136168
+ - - -1.231507
+ - -0.316366
+ - 0.100648
+ - - -0.664399
+ - 1.073218
+ - -0.040605
+ - - 0.664466
+ - 1.073175
+ - -0.04061
+ - - 1.231486
+ - -0.316446
+ - 0.100637
+ - - -5.6e-05
+ - -1.565501
+ - -1.172219
+ - - -6.7e-05
+ - -2.107848
+ - 0.499084
+ - - -1.653542
+ - -0.455834
+ - 1.102876
+ - - -2.040268
+ - -0.519749
+ - -0.605091
+ - - -1.285173
+ - 1.958389
+ - -0.093051
+ - - 1.285298
+ - 1.958306
+ - -0.093062
+ - - 2.040228
+ - -0.519881
+ - -0.605109
+ - - 1.65352
+ - -0.455941
+ - 1.102862
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 49.0561125717331
+ value: 49.0561125717331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0046876462
+ - -1.2300937217
+ - -0.1432254165
+ - - -1.2405155911
+ - -0.3147936917
+ - 0.1083632841
+ - - -0.6678435257
+ - 1.0811601315
+ - -0.0492451492
+ - - 0.676365301
+ - 1.0761831696
+ - -0.0493605959
+ - - 1.2380970432
+ - -0.324134522
+ - 0.1083897914
+ - - -0.0062780375
+ - -1.5549222344
+ - -1.1940418909
+ - - -0.0081377087
+ - -2.1318833293
+ - 0.4842031766
+ - - -1.6472795351
+ - -0.4506038696
+ - 1.1271097823
+ - - -2.0672325814
+ - -0.5249738486
+ - -0.5890932508
+ - - -1.2945780464
+ - 1.9725547224
+ - -0.1081136706
+ - - 1.3089481858
+ - 1.9633534614
+ - -0.108215699
+ - - 2.0632178513
+ - -0.5406315097
+ - -0.5888435226
+ - - 1.6428463848
+ - -0.4628215862
+ - 1.1274635925
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.131814756408804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.225113
+ - -0.137299
+ - - -1.234622
+ - -0.316503
+ - 0.100707
+ - - -0.667973
+ - 1.075813
+ - -0.041929
+ - - 0.668041
+ - 1.07577
+ - -0.041935
+ - - 1.234601
+ - -0.316583
+ - 0.100697
+ - - -5.6e-05
+ - -1.567749
+ - -1.178042
+ - - -6.7e-05
+ - -2.114314
+ - 0.499936
+ - - -1.656866
+ - -0.456266
+ - 1.108135
+ - - -2.048564
+ - -0.521892
+ - -0.605672
+ - - -1.292406
+ - 1.96416
+ - -0.093414
+ - - 1.292532
+ - 1.964076
+ - -0.093425
+ - - 2.048524
+ - -0.522025
+ - -0.605689
+ - - 1.656844
+ - -0.456373
+ - 1.108121
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.822345008264094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.226344
+ - -0.134389
+ - - -1.237478
+ - -0.316505
+ - 0.098708
+ - - -0.669785
+ - 1.077586
+ - -0.039891
+ - - 0.669853
+ - 1.077543
+ - -0.039897
+ - - 1.237457
+ - -0.316586
+ - 0.098698
+ - - -5.7e-05
+ - -1.57871
+ - -1.177045
+ - - -6.7e-05
+ - -2.117176
+ - 0.50899
+ - - -1.670294
+ - -0.45752
+ - 1.106813
+ - - -2.051828
+ - -0.521863
+ - -0.614768
+ - - -1.295284
+ - 1.971141
+ - -0.089515
+ - - 1.29541
+ - 1.971057
+ - -0.089526
+ - - 2.051788
+ - -0.521996
+ - -0.614785
+ - - 1.670272
+ - -0.457628
+ - 1.106799
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.774172091657153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.218117
+ - -0.137521
+ - - -1.226662
+ - -0.317048
+ - 0.102745
+ - - -0.661599
+ - 1.069494
+ - -0.042049
+ - - 0.661666
+ - 1.069451
+ - -0.042055
+ - - 1.226641
+ - -0.317128
+ - 0.102734
+ - - -5.6e-05
+ - -1.555069
+ - -1.174824
+ - - -6.7e-05
+ - -2.107477
+ - 0.490977
+ - - -1.643686
+ - -0.453998
+ - 1.105926
+ - - -2.037332
+ - -0.521125
+ - -0.598863
+ - - -1.281343
+ - 1.95473
+ - -0.09695
+ - - 1.281468
+ - 1.954647
+ - -0.096961
+ - - 2.037292
+ - -0.521257
+ - -0.598881
+ - - 1.643665
+ - -0.454104
+ - 1.105912
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.750649845334842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.225907
+ - -0.13512
+ - - -1.23527
+ - -0.316562
+ - 0.099834
+ - - -0.665717
+ - 1.076991
+ - -0.039239
+ - - 0.665785
+ - 1.076947
+ - -0.039245
+ - - 1.235249
+ - -0.316642
+ - 0.099823
+ - - -5.7e-05
+ - -1.573464
+ - -1.171663
+ - - -6.7e-05
+ - -2.111095
+ - 0.503859
+ - - -1.661868
+ - -0.457332
+ - 1.102079
+ - - -2.043663
+ - -0.519594
+ - -0.609728
+ - - -1.287896
+ - 1.963455
+ - -0.091358
+ - - 1.288022
+ - 1.963371
+ - -0.091369
+ - - 2.043623
+ - -0.519727
+ - -0.609746
+ - - 1.661846
+ - -0.45744
+ - 1.102065
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.822366677955767
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.0e-05
+ - -1.217145
+ - -0.146666
+ - - -1.226068
+ - -0.319551
+ - 0.111236
+ - - -0.663136
+ - 1.06988
+ - -0.049928
+ - - 0.663209
+ - 1.069847
+ - -0.049909
+ - - 1.226047
+ - -0.31963
+ - 0.111229
+ - - -4.7e-05
+ - -1.528715
+ - -1.192711
+ - - -7.3e-05
+ - -2.119949
+ - 0.463026
+ - - -1.621967
+ - -0.451866
+ - 1.123996
+ - - -2.048382
+ - -0.528694
+ - -0.575081
+ - - -1.283052
+ - 1.954857
+ - -0.111944
+ - - 1.283166
+ - 1.954794
+ - -0.111913
+ - - 2.048322
+ - -0.528831
+ - -0.575116
+ - - 1.621967
+ - -0.451997
+ - 1.123973
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.932884424942085
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.0e-05
+ - -1.217145
+ - -0.146666
+ - - -1.226068
+ - -0.319551
+ - 0.111236
+ - - -0.663136
+ - 1.06988
+ - -0.049928
+ - - 0.663209
+ - 1.069847
+ - -0.049909
+ - - 1.226047
+ - -0.31963
+ - 0.111229
+ - - -4.7e-05
+ - -1.528715
+ - -1.192711
+ - - -7.3e-05
+ - -2.119949
+ - 0.463026
+ - - -1.621967
+ - -0.451866
+ - 1.123996
+ - - -2.048382
+ - -0.528694
+ - -0.575081
+ - - -1.283052
+ - 1.954857
+ - -0.111944
+ - - 1.283166
+ - 1.954794
+ - -0.111913
+ - - 2.048322
+ - -0.528831
+ - -0.575116
+ - - 1.621967
+ - -0.451997
+ - 1.123973
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.519486375583432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.0e-05
+ - -1.217145
+ - -0.146666
+ - - -1.226068
+ - -0.319551
+ - 0.111236
+ - - -0.663136
+ - 1.06988
+ - -0.049928
+ - - 0.663209
+ - 1.069847
+ - -0.049909
+ - - 1.226047
+ - -0.31963
+ - 0.111229
+ - - -4.7e-05
+ - -1.528715
+ - -1.192711
+ - - -7.3e-05
+ - -2.119949
+ - 0.463026
+ - - -1.621967
+ - -0.451866
+ - 1.123996
+ - - -2.048382
+ - -0.528694
+ - -0.575081
+ - - -1.283052
+ - 1.954857
+ - -0.111944
+ - - 1.283166
+ - 1.954794
+ - -0.111913
+ - - 2.048322
+ - -0.528831
+ - -0.575116
+ - - 1.621967
+ - -0.451997
+ - 1.123973
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.40809784913648
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.225075
+ - -0.130878
+ - - -1.236583
+ - -0.314877
+ - 0.096621
+ - - -0.665774
+ - 1.077976
+ - -0.036194
+ - - 0.665842
+ - 1.077933
+ - -0.0362
+ - - 1.236562
+ - -0.314957
+ - 0.09661
+ - - -5.7e-05
+ - -1.583683
+ - -1.164937
+ - - -6.7e-05
+ - -2.106933
+ - 0.514559
+ - - -1.674498
+ - -0.458526
+ - 1.094987
+ - - -2.041596
+ - -0.51759
+ - -0.61913
+ - - -1.291584
+ - 1.962587
+ - -0.085531
+ - - 1.291709
+ - 1.962503
+ - -0.085542
+ - - 2.041556
+ - -0.517723
+ - -0.619147
+ - - 1.674476
+ - -0.458635
+ - 1.094973
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.109348375574713
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -0.0046876462
- - -1.2300937217
- - -0.1432254165
- - - -1.2405155911
- - -0.3147936917
- - 0.1083632841
- - - -0.6678435257
- - 1.0811601315
- - -0.0492451492
- - - 0.676365301
- - 1.0761831696
- - -0.0493605959
- - - 1.2380970432
- - -0.324134522
- - 0.1083897914
- - - -0.0062780375
- - -1.5549222344
- - -1.1940418909
- - - -0.0081377087
- - -2.1318833293
- - 0.4842031766
- - - -1.6472795351
- - -0.4506038696
- - 1.1271097823
- - - -2.0672325814
- - -0.5249738486
- - -0.5890932508
- - - -1.2945780464
- - 1.9725547224
- - -0.1081136706
- - - 1.3089481858
- - 1.9633534614
- - -0.108215699
- - - 2.0632178513
- - -0.5406315097
- - -0.5888435226
- - - 1.6428463848
- - -0.4628215862
- - 1.1274635925
+ - - -4.1e-05
+ - -1.217813
+ - -0.14851
+ - - -1.225859
+ - -0.32005
+ - 0.112808
+ - - -0.663208
+ - 1.069242
+ - -0.051693
+ - - 0.663275
+ - 1.069199
+ - -0.051698
+ - - 1.225838
+ - -0.32013
+ - 0.112798
+ - - -5.5e-05
+ - -1.521253
+ - -1.196325
+ - - -6.8e-05
+ - -2.122956
+ - 0.456758
+ - - -1.61597
+ - -0.449914
+ - 1.127669
+ - - -2.050577
+ - -0.530106
+ - -0.569818
+ - - -1.283901
+ - 1.95356
+ - -0.114803
+ - - 1.284025
+ - 1.953477
+ - -0.114814
+ - - 2.050536
+ - -0.530239
+ - -0.569836
+ - - 1.615949
+ - -0.450018
+ - 1.127655
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.319605939771467
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.214963
+ - -0.140197
+ - - -1.225124
+ - -0.31711
+ - 0.105264
+ - - -0.664018
+ - 1.067201
+ - -0.045735
+ - - 0.664086
+ - 1.067158
+ - -0.045741
+ - - 1.225103
+ - -0.317189
+ - 0.105254
+ - - -5.6e-05
+ - -1.542739
+ - -1.182868
+ - - -6.7e-05
+ - -2.112333
+ - 0.480651
+ - - -1.637217
+ - -0.451891
+ - 1.113899
+ - - -2.043117
+ - -0.525558
+ - -0.590303
+ - - -1.28499
+ - 1.954097
+ - -0.101793
+ - - 1.285115
+ - 1.954013
+ - -0.101804
+ - - 2.043077
+ - -0.52569
+ - -0.590321
+ - - 1.637195
+ - -0.451997
+ - 1.113886
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.69331116308576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.224486
+ - -0.137837
+ - - -1.236247
+ - -0.316924
+ - 0.102844
+ - - -0.667948
+ - 1.075791
+ - -0.042548
+ - - 0.668016
+ - 1.075748
+ - -0.042553
+ - - 1.236226
+ - -0.317004
+ - 0.102834
+ - - -5.6e-05
+ - -1.562385
+ - -1.179784
+ - - -6.7e-05
+ - -2.116057
+ - 0.495967
+ - - -1.65705
+ - -0.456419
+ - 1.110359
+ - - -2.049422
+ - -0.523574
+ - -0.603553
+ - - -1.291624
+ - 1.964314
+ - -0.096151
+ - - 1.29175
+ - 1.96423
+ - -0.096162
+ - - 2.049382
+ - -0.523707
+ - -0.60357
+ - - 1.657028
+ - -0.456526
+ - 1.110345
isotopes:
- 12
- 12
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.584636612575693
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.03425e-05
+ - -1.2171449087
+ - -0.1466656332
+ - - -1.2260680478
+ - -0.3195514936
+ - 0.1112355061
+ - - -0.6631362893
+ - 1.0698797183
+ - -0.0499279815
+ - - 0.6632089178
+ - 1.0698470731
+ - -0.0499089495
+ - - 1.2260465713
+ - -0.3196304754
+ - 0.1112287721
+ - - -4.6554e-05
+ - -1.5287145432
+ - -1.1927114744
+ - - -7.30386e-05
+ - -2.1199494538
+ - 0.4630256534
+ - - -1.6219669691
+ - -0.4518658635
+ - 1.1239956968
+ - - -2.0483816821
+ - -0.5286941844
+ - -0.57508067
+ - - -1.2830517921
+ - 1.9548573815
+ - -0.1119437584
+ - - 1.283166165
+ - 1.954794251
+ - -0.1119130249
+ - - 2.048321768
+ - -0.528830533
+ - -0.5751160149
+ - - 1.6219672457
+ - -0.4519965362
+ - 1.1239733082
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.87695998519435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.1e-05
+ - -1.218758
+ - -0.139321
+ - - -1.227432
+ - -0.31768
+ - 0.103787
+ - - -0.662639
+ - 1.069922
+ - -0.04327
+ - - 0.662707
+ - 1.069879
+ - -0.043275
+ - - 1.227411
+ - -0.317759
+ - 0.103776
+ - - -5.6e-05
+ - -1.552602
+ - -1.178475
+ - - -6.7e-05
+ - -2.109574
+ - 0.488159
+ - - -1.640435
+ - -0.453331
+ - 1.109463
+ - - -2.039954
+ - -0.522045
+ - -0.596468
+ - - -1.283061
+ - 1.955324
+ - -0.098568
+ - - 1.283186
+ - 1.95524
+ - -0.098579
+ - - 2.039914
+ - -0.522177
+ - -0.596486
+ - - 1.640414
+ - -0.453437
+ - 1.109449
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cycloprop-1-enyl.yml b/input/reference_sets/main/Cycloprop-1-enyl.yml
index ab81b4d306..cf34d53962 100644
--- a/input/reference_sets/main/Cycloprop-1-enyl.yml
+++ b/input/reference_sets/main/Cycloprop-1-enyl.yml
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.21587492263612
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.831122
+ - 0.167369
+ - 0.0
+ - - -0.768295
+ - 0.343373
+ - 0.0
+ - - -0.268589
+ - -0.831828
+ - 0.0
+ - - 1.365763
+ - 0.392384
+ - 0.917058
+ - - 1.365763
+ - 0.392384
+ - -0.917058
+ - - -1.486072
+ - 1.137537
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.00142946927707
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.830394
+ - 0.16799
+ - 0.0
+ - - -0.769352
+ - 0.342142
+ - 0.0
+ - - -0.270729
+ - -0.828087
+ - 0.0
+ - - 1.368999
+ - 0.391654
+ - 0.916943
+ - - 1.368999
+ - 0.391654
+ - -0.916943
+ - - -1.488619
+ - 1.135865
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 128.94826467291506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.826273
+ - 0.167703
+ - 0.0
+ - - -0.76668
+ - 0.34177
+ - 0.0
+ - - -0.270932
+ - -0.840704
+ - 0.0
+ - - 1.368466
+ - 0.39504
+ - 0.920633
+ - - 1.368466
+ - 0.39504
+ - -0.920633
+ - - -1.4859
+ - 1.142369
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 129.40074063440136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.832214
+ - 0.16629
+ - 0.0
+ - - -0.773911
+ - 0.342413
+ - 0.0
+ - - -0.271099
+ - -0.839838
+ - 0.0
+ - - 1.374945
+ - 0.393715
+ - 0.925084
+ - - 1.374945
+ - 0.393715
+ - -0.925084
+ - - -1.4974
+ - 1.144922
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 133.0453271316702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.824778
+ - 0.169061
+ - 0.0
+ - - -0.761437
+ - 0.342245
+ - 0.0
+ - - -0.268869
+ - -0.824534
+ - 0.0
+ - - 1.3645
+ - 0.390831
+ - 0.915771
+ - - 1.3645
+ - 0.390831
+ - -0.915771
+ - - -1.483779
+ - 1.132784
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 124.29928792144456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.831145
+ - 0.169341
+ - 0.0
+ - - -0.77138
+ - 0.342102
+ - 0.0
+ - - -0.27295
+ - -0.832487
+ - 0.0
+ - - 1.371549
+ - 0.392304
+ - 0.918307
+ - - 1.371549
+ - 0.392304
+ - -0.918307
+ - - -1.49022
+ - 1.137655
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 132.8843869067187
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.829647
+ - 0.168316
+ - 0.0
+ - - -0.767598
+ - 0.340054
+ - 0.0
+ - - -0.269987
+ - -0.828614
+ - 0.0
+ - - 1.365419
+ - 0.392457
+ - 0.917028
+ - - 1.365419
+ - 0.392457
+ - -0.917028
+ - - -1.483207
+ - 1.136547
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.65776269825227
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.829647
+ - 0.168316
+ - 0.0
+ - - -0.767598
+ - 0.340054
+ - 0.0
+ - - -0.269987
+ - -0.828614
+ - 0.0
+ - - 1.365419
+ - 0.392457
+ - 0.917028
+ - - 1.365419
+ - 0.392457
+ - -0.917028
+ - - -1.483207
+ - 1.136547
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 125.29894305556931
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.829647
+ - 0.168316
+ - 0.0
+ - - -0.767598
+ - 0.340054
+ - 0.0
+ - - -0.269987
+ - -0.828614
+ - 0.0
+ - - 1.365419
+ - 0.392457
+ - 0.917028
+ - - 1.365419
+ - 0.392457
+ - -0.917028
+ - - -1.483207
+ - 1.136547
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 124.92681449837333
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.825802
+ - 0.169448
+ - 0.0
+ - - -0.769616
+ - 0.340501
+ - 0.0
+ - - -0.274162
+ - -0.83758
+ - 0.0
+ - - 1.370881
+ - 0.3948
+ - 0.917128
+ - - 1.370881
+ - 0.3948
+ - -0.917128
+ - - -1.484092
+ - 1.139249
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.38921450939712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.820073
+ - 0.171433
+ - 0.0
+ - - -0.753538
+ - 0.343883
+ - 0.0
+ - - -0.268883
+ - -0.831261
+ - 0.0
+ - - 1.360252
+ - 0.391904
+ - 0.916045
+ - - 1.360252
+ - 0.391904
+ - -0.916045
+ - - -1.478464
+ - 1.133355
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 131.56108295890303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.820598
+ - 0.170091
+ - 0.0
+ - - -0.757078
+ - 0.345204
+ - 0.0
+ - - -0.267512
+ - -0.830712
+ - 0.0
+ - - 1.364079
+ - 0.391099
+ - 0.917288
+ - - 1.364079
+ - 0.391099
+ - -0.917288
+ - - -1.484474
+ - 1.134437
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 136.86592118762948
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.828283
+ - 0.170134
+ - 0.0
+ - - -0.766475
+ - 0.344107
+ - 0.0
+ - - -0.272201
+ - -0.839067
+ - 0.0
+ - - 1.370056
+ - 0.393063
+ - 0.920376
+ - - 1.370056
+ - 0.393063
+ - -0.920376
+ - - -1.490028
+ - 1.139918
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.24344928426598
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8296465428
+ - 0.1683157762
+ - 0.0
+ - - -0.7675977936
+ - 0.3400542363
+ - 0.0
+ - - -0.2699870409
+ - -0.8286138306
+ - 0.0
+ - - 1.3654187607
+ - 0.3924572597
+ - 0.9170275705
+ - - 1.3654187607
+ - 0.3924572597
+ - -0.9170275705
+ - - -1.4832065533
+ - 1.13654727
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 131.09890157446037
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8266
+ - 0.170615
+ - 0.0
+ - - -0.761842
+ - 0.343146
+ - 0.0
+ - - -0.272288
+ - -0.828887
+ - 0.0
+ - - 1.366505
+ - 0.391417
+ - 0.917323
+ - - 1.366505
+ - 0.391417
+ - -0.917323
+ - - -1.485788
+ - 1.133511
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cycloprop-2-enyl.yml b/input/reference_sets/main/Cycloprop-2-enyl.yml
index c67c782221..6e255bc560 100644
--- a/input/reference_sets/main/Cycloprop-2-enyl.yml
+++ b/input/reference_sets/main/Cycloprop-2-enyl.yml
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 123.4125284979813
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.418336
+ - 0.011778
+ - 0.65584
+ - - -0.418336
+ - 0.011778
+ - -0.65584
+ - - 0.873925
+ - -0.140654
+ - -0.0
+ - - -0.978262
+ - 0.070759
+ - 1.571381
+ - - -0.978262
+ - 0.070759
+ - -1.571381
+ - - 1.729959
+ - 0.530155
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 122.67155797104319
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.417948
+ - 0.012379
+ - 0.653913
+ - - -0.417948
+ - 0.012379
+ - -0.653913
+ - - 0.873274
+ - -0.13883
+ - -0.0
+ - - -0.979989
+ - 0.069695
+ - 1.569529
+ - - -0.979989
+ - 0.069695
+ - -1.569529
+ - - 1.733289
+ - 0.529256
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 119.45320819690308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.418099
+ - 0.009713
+ - 0.657318
+ - - -0.418099
+ - 0.009713
+ - -0.657318
+ - - 0.875421
+ - -0.145397
+ - 0.0
+ - - -0.980958
+ - 0.072919
+ - 1.578064
+ - - -0.980958
+ - 0.072919
+ - -1.578064
+ - - 1.733382
+ - 0.534704
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 119.89877517756605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.419571
+ - 0.011415
+ - 0.659525
+ - - -0.419571
+ - 0.011415
+ - -0.659525
+ - - 0.879338
+ - -0.142473
+ - -0.0
+ - - -0.987254
+ - 0.070243
+ - 1.582759
+ - - -0.987254
+ - 0.070243
+ - -1.582759
+ - - 1.744999
+ - 0.53373
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.71625429584526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.416942
+ - 0.012886
+ - 0.651203
+ - - -0.416942
+ - 0.012886
+ - -0.651203
+ - - 0.868757
+ - -0.135455
+ - 0.0
+ - - -0.977809
+ - 0.068764
+ - 1.56662
+ - - -0.977809
+ - 0.068764
+ - -1.56662
+ - - 1.731432
+ - 0.526729
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 115.83128930875762
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.419498
+ - 0.010579
+ - 0.65549
+ - - -0.419498
+ - 0.010579
+ - -0.65549
+ - - 0.878202
+ - -0.14457
+ - 0.0
+ - - -0.981079
+ - 0.072157
+ - 1.57271
+ - - -0.981079
+ - 0.072157
+ - -1.57271
+ - - 1.73364
+ - 0.533671
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 124.1033785380351
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.417172
+ - 0.012863
+ - 0.653577
+ - - -0.417172
+ - 0.012863
+ - -0.653577
+ - - 0.872206
+ - -0.136641
+ - 0.0
+ - - -0.980295
+ - 0.068929
+ - 1.567452
+ - - -0.980295
+ - 0.068929
+ - -1.567452
+ - - 1.733416
+ - 0.527631
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 117.7225458556425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.417172
+ - 0.012863
+ - 0.653577
+ - - -0.417172
+ - 0.012863
+ - -0.653577
+ - - 0.872206
+ - -0.136641
+ - 0.0
+ - - -0.980295
+ - 0.068929
+ - 1.567452
+ - - -0.980295
+ - 0.068929
+ - -1.567452
+ - - 1.733416
+ - 0.527631
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 116.4261085439173
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.417172
+ - 0.012863
+ - 0.653577
+ - - -0.417172
+ - 0.012863
+ - -0.653577
+ - - 0.872206
+ - -0.136641
+ - 0.0
+ - - -0.980295
+ - 0.068929
+ - 1.567452
+ - - -0.980295
+ - 0.068929
+ - -1.567452
+ - - 1.733416
+ - 0.527631
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 116.56784468629263
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.419256
+ - 0.009194
+ - 0.655396
+ - - -0.419256
+ - 0.009194
+ - -0.655396
+ - - 0.877477
+ - -0.146456
+ - 0.0
+ - - -0.980015
+ - 0.073691
+ - 1.572263
+ - - -0.980015
+ - 0.073691
+ - -1.572263
+ - - 1.731753
+ - 0.535259
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 115.74348705108062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.418147
+ - 0.011504
+ - 0.652263
+ - - -0.418147
+ - 0.011504
+ - -0.652263
+ - - 0.870208
+ - -0.140628
+ - -0.0
+ - - -0.974597
+ - 0.071172
+ - 1.570693
+ - - -0.974597
+ - 0.071172
+ - -1.570693
+ - - 1.725969
+ - 0.52985
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.02193436626658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.41733
+ - 0.012547
+ - 0.653525
+ - - -0.41733
+ - 0.012547
+ - -0.653525
+ - - 0.869645
+ - -0.138304
+ - 0.0
+ - - -0.977929
+ - 0.0695
+ - 1.571715
+ - - -0.977929
+ - 0.0695
+ - -1.571715
+ - - 1.731559
+ - 0.528785
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.15220400593097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.419284
+ - 0.0108
+ - 0.657583
+ - - -0.419284
+ - 0.0108
+ - -0.657583
+ - - 0.878051
+ - -0.143825
+ - 0.0
+ - - -0.983004
+ - 0.071561
+ - 1.576948
+ - - -0.983004
+ - 0.071561
+ - -1.576948
+ - - 1.737213
+ - 0.533678
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 115.83216973265715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.4171719428
+ - 0.0128627341
+ - 0.6535765581
+ - - -0.4171719428
+ - 0.0128627341
+ - -0.6535765581
+ - - 0.8722055105
+ - -0.1366405563
+ - 0.0
+ - - -0.9802950103
+ - 0.0689285977
+ - 1.5674523497
+ - - -0.9802950103
+ - 0.0689285977
+ - -1.5674523497
+ - - 1.7334164362
+ - 0.5276310777
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.51805045692167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.417472
+ - 0.01128
+ - 0.652412
+ - - -0.417472
+ - 0.01128
+ - -0.652412
+ - - 0.872989
+ - -0.140545
+ - 0.0
+ - - -0.979024
+ - 0.071056
+ - 1.568104
+ - - -0.979024
+ - 0.071056
+ - -1.568104
+ - - 1.73069
+ - 0.530445
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopropane.yml b/input/reference_sets/main/Cyclopropane.yml
index 3b4ac35c4a..03b051dd34 100644
--- a/input/reference_sets/main/Cyclopropane.yml
+++ b/input/reference_sets/main/Cyclopropane.yml
@@ -128,45 +128,812 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.580969813354635
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.829349
+ - -0.256195
+ - 0.0
+ - - -0.192747
+ - 0.846363
+ - 0.0
+ - - -0.636538
+ - -0.590079
+ - 0.0
+ - - 1.387795
+ - -0.428729
+ - 0.908603
+ - - 1.387795
+ - -0.428729
+ - -0.908603
+ - - -0.322552
+ - 1.416257
+ - 0.908605
+ - - -0.322552
+ - 1.416257
+ - -0.908605
+ - - -1.065179
+ - -0.987441
+ - 0.908603
+ - - -1.065179
+ - -0.987441
+ - -0.908603
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.328923598665103
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.829316
+ - -0.256186
+ - 0.0
+ - - -0.19274
+ - 0.846332
+ - 0.0
+ - - -0.636512
+ - -0.590056
+ - 0.0
+ - - 1.390405
+ - -0.429537
+ - 0.908314
+ - - 1.390405
+ - -0.429537
+ - -0.908314
+ - - -0.323159
+ - 1.418922
+ - 0.908317
+ - - -0.323159
+ - 1.418922
+ - -0.908317
+ - - -1.067182
+ - -0.989299
+ - 0.908314
+ - - -1.067182
+ - -0.989299
+ - -0.908314
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 30.71625225677829
+ value: 30.71625225677829
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.166239368
+ - -0.8572842221
+ - 0.0
+ - - -0.8257627322
+ - 0.2848006496
+ - -0.0
+ - - 0.6596177268
+ - 0.5726368026
+ - 0.0
+ - - 0.2790452101
+ - -1.4393481127
+ - -0.91619507
+ - - 0.2790452101
+ - -1.4393481127
+ - 0.91619507
+ - - -1.386429534
+ - 0.4778122964
+ - -0.91614948
+ - - -1.386429534
+ - 0.4778122964
+ - 0.91614948
+ - - 1.1071012362
+ - 0.9610761263
+ - -0.91627987
+ - - 1.1071012362
+ - 0.9610761263
+ - 0.91627987
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.836600255224255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.830717
+ - -0.256611
+ - 0.0
+ - - -0.193059
+ - 0.847754
+ - 0.0
+ - - -0.637589
+ - -0.591052
+ - 0.0
+ - - 1.3939
+ - -0.430613
+ - 0.912132
+ - - 1.3939
+ - -0.430613
+ - -0.912132
+ - - -0.323969
+ - 1.422484
+ - 0.912132
+ - - -0.323969
+ - 1.422484
+ - -0.912132
+ - - -1.069868
+ - -0.991786
+ - 0.912131
+ - - -1.069868
+ - -0.991786
+ - -0.912131
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.158124470659047
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.833518
+ - -0.257479
+ - 0.0
+ - - -0.193712
+ - 0.850613
+ - 0.0
+ - - -0.639743
+ - -0.593049
+ - 0.0
+ - - 1.399283
+ - -0.432274
+ - 0.915706
+ - - 1.399283
+ - -0.432274
+ - -0.915706
+ - - -0.325218
+ - 1.427978
+ - 0.915706
+ - - -0.325218
+ - 1.427978
+ - -0.915706
+ - - -1.074
+ - -0.995616
+ - 0.915709
+ - - -1.074
+ - -0.995616
+ - -0.915709
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.22461347227243
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8258
+ - -0.255098
+ - 0.0
+ - - -0.191922
+ - 0.842734
+ - 0.0
+ - - -0.633812
+ - -0.58755
+ - 0.0
+ - - 1.386527
+ - -0.428336
+ - 0.907652
+ - - 1.386527
+ - -0.428336
+ - -0.907652
+ - - -0.322257
+ - 1.414959
+ - 0.90765
+ - - -0.322257
+ - 1.414959
+ - -0.90765
+ - - -1.064206
+ - -0.986535
+ - 0.90765
+ - - -1.064206
+ - -0.986535
+ - -0.90765
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.915226783216086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.831729
+ - -0.256929
+ - 0.0
+ - - -0.193299
+ - 0.848788
+ - 0.0
+ - - -0.638368
+ - -0.591775
+ - 0.0
+ - - 1.394195
+ - -0.430701
+ - 0.909571
+ - - 1.394195
+ - -0.430701
+ - -0.909571
+ - - -0.324035
+ - 1.422785
+ - 0.909571
+ - - -0.324035
+ - 1.422785
+ - -0.909571
+ - - -1.070094
+ - -0.991996
+ - 0.909573
+ - - -1.070094
+ - -0.991996
+ - -0.909573
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.63930455848982
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.828307
+ - -0.255922
+ - 0.0
+ - - -0.192534
+ - 0.8452
+ - 0.0
+ - - -0.635812
+ - -0.589331
+ - 0.0
+ - - 1.386986
+ - -0.428399
+ - 0.909086
+ - - 1.386986
+ - -0.428399
+ - -0.909086
+ - - -0.322341
+ - 1.4153
+ - 0.909088
+ - - -0.322341
+ - 1.4153
+ - -0.909088
+ - - -1.064528
+ - -0.986744
+ - 0.909115
+ - - -1.064528
+ - -0.986744
+ - -0.909115
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.236296302824286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.828307
+ - -0.255922
+ - 0.0
+ - - -0.192534
+ - 0.8452
+ - 0.0
+ - - -0.635812
+ - -0.589331
+ - 0.0
+ - - 1.386986
+ - -0.428399
+ - 0.909086
+ - - 1.386986
+ - -0.428399
+ - -0.909086
+ - - -0.322341
+ - 1.4153
+ - 0.909088
+ - - -0.322341
+ - 1.4153
+ - -0.909088
+ - - -1.064528
+ - -0.986744
+ - 0.909115
+ - - -1.064528
+ - -0.986744
+ - -0.909115
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.781013658774329
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.166239368
- - -0.8572842221
+ - - 0.828307
+ - -0.255922
- 0.0
- - - -0.8257627322
- - 0.2848006496
+ - - -0.192534
+ - 0.8452
+ - 0.0
+ - - -0.635812
+ - -0.589331
+ - 0.0
+ - - 1.386986
+ - -0.428399
+ - 0.909086
+ - - 1.386986
+ - -0.428399
+ - -0.909086
+ - - -0.322341
+ - 1.4153
+ - 0.909088
+ - - -0.322341
+ - 1.4153
+ - -0.909088
+ - - -1.064528
+ - -0.986744
+ - 0.909115
+ - - -1.064528
+ - -0.986744
+ - -0.909115
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.876995967443758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.831399
+ - -0.256828
+ - 0.0
+ - - -0.193223
+ - 0.848451
+ - 0.0
+ - - -0.638116
+ - -0.591541
+ - 0.0
+ - - 1.395798
+ - -0.431197
+ - 0.909419
+ - - 1.395798
+ - -0.431197
+ - -0.909419
+ - - -0.324408
+ - 1.424421
+ - 0.909419
+ - - -0.324408
+ - 1.424421
+ - -0.909419
+ - - -1.071323
+ - -0.993135
+ - 0.909422
+ - - -1.071323
+ - -0.993135
+ - -0.909422
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.163142810398389
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.826454
+ - -0.255315
- -0.0
- - - 0.6596177268
- - 0.5726368026
+ - - -0.192069
+ - 0.843387
+ - -0.0
+ - - -0.634309
+ - -0.588031
+ - -0.0
+ - - 1.383978
+ - -0.42753
+ - 0.909215
+ - - 1.383978
+ - -0.42753
+ - -0.909215
+ - - -0.321661
+ - 1.412347
+ - 0.90921
+ - - -0.321661
+ - 1.412347
+ - -0.90921
+ - - -1.062257
+ - -0.984707
+ - 0.909215
+ - - -1.062257
+ - -0.984707
+ - -0.909215
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.92766943361036
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.825899
+ - -0.255128
+ - -0.0
+ - - -0.191944
+ - 0.842832
+ - -0.0
+ - - -0.633886
+ - -0.587618
+ - -0.0
+ - - 1.387196
+ - -0.428543
+ - 0.909625
+ - - 1.387196
+ - -0.428543
+ - -0.909625
+ - - -0.322414
+ - 1.415641
+ - 0.909623
+ - - -0.322414
+ - 1.415641
+ - -0.909623
+ - - -1.06472
+ - -0.98701
+ - 0.909623
+ - - -1.06472
+ - -0.98701
+ - -0.909623
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.114164261494185
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.832249
+ - -0.257087
- 0.0
- - - 0.2790452101
- - -1.4393481127
- - -0.91619507
- - - 0.2790452101
- - -1.4393481127
- - 0.91619507
- - - -1.386429534
- - 0.4778122964
- - -0.91614948
- - - -1.386429534
- - 0.4778122964
- - 0.91614948
- - - 1.1071012362
- - 0.9610761263
- - -0.91627987
- - - 1.1071012362
- - 0.9610761263
- - 0.91627987
+ - - -0.193418
+ - 0.849319
+ - 0.0
+ - - -0.638766
+ - -0.592143
+ - 0.0
+ - - 1.394628
+ - -0.430837
+ - 0.911833
+ - - 1.394628
+ - -0.430837
+ - -0.911833
+ - - -0.324137
+ - 1.423227
+ - 0.911833
+ - - -0.324137
+ - 1.423227
+ - -0.911833
+ - - -1.070426
+ - -0.992304
+ - 0.911831
+ - - -1.070426
+ - -0.992304
+ - -0.911831
isotopes:
- 12
- 12
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.290366489741288
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8283072177
+ - -0.2559218077
+ - 0.0
+ - - -0.1925340479
+ - 0.8452002736
+ - 0.0
+ - - -0.6358119105
+ - -0.5893307691
+ - 0.0
+ - - 1.3869857034
+ - -0.4283988471
+ - 0.9090861531
+ - - 1.3869857034
+ - -0.4283988471
+ - -0.9090861531
+ - - -0.3223410976
+ - 1.4152999292
+ - 0.9090878793
+ - - -0.3223410976
+ - 1.4152999292
+ - -0.9090878793
+ - - -1.0645283008
+ - -0.9867443867
+ - 0.9091148118
+ - - -1.0645283008
+ - -0.9867443867
+ - -0.9091148118
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.94855448182104
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.82741
+ - -0.255608
+ - 0.0
+ - - -0.192291
+ - 0.844361
+ - 0.0
+ - - -0.635044
+ - -0.58871
+ - 0.0
+ - - 1.38716
+ - -0.428508
+ - 0.909148
+ - - 1.38716
+ - -0.428508
+ - -0.909148
+ - - -0.322398
+ - 1.415584
+ - 0.909161
+ - - -0.322398
+ - 1.415584
+ - -0.909161
+ - - -1.064702
+ - -0.986967
+ - 0.909147
+ - - -1.064702
+ - -0.986967
+ - -0.909147
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopropanecarbonitrile.yml b/input/reference_sets/main/Cyclopropanecarbonitrile.yml
index e008703a10..c689b4e8a1 100644
--- a/input/reference_sets/main/Cyclopropanecarbonitrile.yml
+++ b/input/reference_sets/main/Cyclopropanecarbonitrile.yml
@@ -139,48 +139,880 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.86916489465385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.245439
+ - 0.231615
+ - -0.0
+ - - -1.147384
+ - -0.139017
+ - -0.0
+ - - 0.216848
+ - -0.583852
+ - -0.0
+ - - 1.253114
+ - 0.230379
+ - 0.746767
+ - - 1.253114
+ - 0.230379
+ - -0.746767
+ - - 0.335541
+ - -1.657924
+ - -0.0
+ - - 2.020103
+ - -0.325879
+ - 1.264571
+ - - 0.903572
+ - 1.116414
+ - 1.25481
+ - - 0.903572
+ - 1.116414
+ - -1.25481
+ - - 2.020103
+ - -0.325879
+ - -1.264571
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.33687358342215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.242872
+ - 0.223648
+ - 0.0
+ - - -1.150325
+ - -0.140182
+ - 0.0
+ - - 0.21375
+ - -0.580589
+ - -0.0
+ - - 1.253772
+ - 0.231323
+ - 0.746271
+ - - 1.253772
+ - 0.231323
+ - -0.746271
+ - - 0.331112
+ - -1.656037
+ - -0.0
+ - - 2.01873
+ - -0.327183
+ - 1.266726
+ - - 0.908241
+ - 1.118764
+ - 1.256396
+ - - 0.908241
+ - 1.118764
+ - -1.256396
+ - - 2.01873
+ - -0.327183
+ - -1.266726
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 77.45811202655092
+ value: 77.45811202655092
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.2645274547
+ - 0.2405929253
+ - 0.0
+ - - -1.1548102897
+ - -0.137481841
+ - -0.0
+ - - 0.2169291294
+ - -0.5848043522
+ - -0.0
+ - - 1.2686822241
+ - 0.22908184
+ - 0.7508977
+ - - 1.2686822241
+ - 0.22908184
+ - -0.7508977
+ - - 0.3355331816
+ - -1.6700569626
+ - -0.0
+ - - 2.0358192929
+ - -0.3398449177
+ - 1.27678039
+ - - 0.9238103443
+ - 1.1251657
+ - 1.26639405
+ - - 0.9238103443
+ - 1.1251657
+ - -1.26639405
+ - - 2.0358192929
+ - -0.3398449177
+ - -1.27678039
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.404726315317916
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.254603
+ - 0.22556
+ - -0.0
+ - - -1.152856
+ - -0.141888
+ - -0.0
+ - - 0.212636
+ - -0.580801
+ - -0.0
+ - - 1.256405
+ - 0.232467
+ - 0.747548
+ - - 1.256405
+ - 0.232467
+ - -0.747548
+ - - 0.333899
+ - -1.660441
+ - -0.0
+ - - 2.022157
+ - -0.330668
+ - 1.270837
+ - - 0.90847
+ - 1.123311
+ - 1.25892
+ - - 0.90847
+ - 1.123311
+ - -1.25892
+ - - 2.022157
+ - -0.330668
+ - -1.270837
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.88572932689618
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.267555
+ - 0.217414
+ - 0.0
+ - - -1.158702
+ - -0.141288
+ - 0.0
+ - - 0.208986
+ - -0.579257
+ - -0.0
+ - - 1.259541
+ - 0.233924
+ - 0.749878
+ - - 1.259541
+ - 0.233924
+ - -0.749878
+ - - 0.329715
+ - -1.664052
+ - -0.0
+ - - 2.026507
+ - -0.33413
+ - 1.275831
+ - - 0.914339
+ - 1.130116
+ - 1.263868
+ - - 0.914339
+ - 1.130116
+ - -1.263868
+ - - 2.026507
+ - -0.33413
+ - -1.275831
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.93397355769319
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.236046
+ - 0.221233
+ - -0.0
+ - - -1.147921
+ - -0.136702
+ - -0.0
+ - - 0.217651
+ - -0.577954
+ - 0.0
+ - - 1.250574
+ - 0.229326
+ - 0.743774
+ - - 1.250574
+ - 0.229326
+ - -0.743774
+ - - 0.33059
+ - -1.65295
+ - 0.0
+ - - 2.017066
+ - -0.326843
+ - 1.263142
+ - - 0.906812
+ - 1.117025
+ - 1.253559
+ - - 0.906812
+ - 1.117025
+ - -1.253559
+ - - 2.017066
+ - -0.326843
+ - -1.263142
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.118377277925596
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.255642
+ - 0.215119
+ - 0.0
+ - - -1.157617
+ - -0.140899
+ - 0.0
+ - - 0.210354
+ - -0.57846
+ - -0.0
+ - - 1.257013
+ - 0.232593
+ - 0.748498
+ - - 1.257013
+ - 0.232593
+ - -0.748498
+ - - 0.32876
+ - -1.655538
+ - -0.0
+ - - 2.020671
+ - -0.329855
+ - 1.27051
+ - - 0.915987
+ - 1.123472
+ - 1.259501
+ - - 0.915987
+ - 1.123472
+ - -1.259501
+ - - 2.020671
+ - -0.329855
+ - -1.27051
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.26172375786807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.232533
+ - 0.238304
+ - 0.0
+ - - -1.14629
+ - -0.135511
+ - 0.0
+ - - 0.221526
+ - -0.587449
+ - 0.0
+ - - 1.250588
+ - 0.229233
+ - 0.746246
+ - - 1.250588
+ - 0.229233
+ - -0.746246
+ - - 0.334762
+ - -1.662206
+ - 0.0
+ - - 2.021378
+ - -0.32303
+ - 1.263228
+ - - 0.895874
+ - 1.113553
+ - 1.254601
+ - - 0.895874
+ - 1.113553
+ - -1.254601
+ - - 2.021378
+ - -0.32303
+ - -1.263228
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.43129093621666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.232533
+ - 0.238304
+ - 0.0
+ - - -1.14629
+ - -0.135511
+ - 0.0
+ - - 0.221526
+ - -0.587449
+ - 0.0
+ - - 1.250588
+ - 0.229233
+ - 0.746246
+ - - 1.250588
+ - 0.229233
+ - -0.746246
+ - - 0.334762
+ - -1.662206
+ - 0.0
+ - - 2.021378
+ - -0.32303
+ - 1.263228
+ - - 0.895874
+ - 1.113553
+ - 1.254601
+ - - 0.895874
+ - 1.113553
+ - -1.254601
+ - - 2.021378
+ - -0.32303
+ - -1.263228
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.90416873138184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.232533
+ - 0.238304
+ - 0.0
+ - - -1.14629
+ - -0.135511
+ - 0.0
+ - - 0.221526
+ - -0.587449
+ - 0.0
+ - - 1.250588
+ - 0.229233
+ - 0.746246
+ - - 1.250588
+ - 0.229233
+ - -0.746246
+ - - 0.334762
+ - -1.662206
+ - 0.0
+ - - 2.021378
+ - -0.32303
+ - 1.263228
+ - - 0.895874
+ - 1.113553
+ - 1.254601
+ - - 0.895874
+ - 1.113553
+ - -1.254601
+ - - 2.021378
+ - -0.32303
+ - -1.263228
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.4285049472476
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -2.2645274547
- - 0.2405929253
+ - - -2.258522
+ - 0.214386
- 0.0
- - - -1.1548102897
- - -0.137481841
+ - - -1.157166
+ - -0.140357
+ - 0.0
+ - - 0.210275
+ - -0.578175
+ - 0.0
+ - - 1.256859
+ - 0.232226
+ - 0.748471
+ - - 1.256859
+ - 0.232226
+ - -0.748471
+ - - 0.329296
+ - -1.656023
+ - 0.0
+ - - 2.020901
+ - -0.330198
+ - 1.271981
+ - - 0.916909
+ - 1.124375
+ - 1.25999
+ - - 0.916909
+ - 1.124375
+ - -1.25999
+ - - 2.020901
+ - -0.330198
+ - -1.271981
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.99167987561605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.227582
+ - 0.239081
- -0.0
- - - 0.2169291294
- - -0.5848043522
+ - - -1.143137
+ - -0.135271
- -0.0
- - - 1.2686822241
- - 0.22908184
- - 0.7508977
- - - 1.2686822241
- - 0.22908184
- - -0.7508977
- - - 0.3355331816
- - -1.6700569626
+ - - 0.222579
+ - -0.586297
- -0.0
- - - 2.0358192929
- - -0.3398449177
- - 1.27678039
- - - 0.9238103443
- - 1.1251657
- - 1.26639405
- - - 0.9238103443
- - 1.1251657
- - -1.26639405
- - - 2.0358192929
- - -0.3398449177
- - -1.27678039
+ - - 1.249569
+ - 0.22911
+ - 0.744602
+ - - 1.249569
+ - 0.22911
+ - -0.744602
+ - - 0.336849
+ - -1.66056
+ - -0.0
+ - - 2.019152
+ - -0.324339
+ - 1.261521
+ - - 0.893497
+ - 1.113077
+ - 1.252038
+ - - 0.893497
+ - 1.113077
+ - -1.252038
+ - - 2.019152
+ - -0.324339
+ - -1.261521
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.46404388389129
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.237948
+ - 0.223215
+ - -0.0
+ - - -1.144646
+ - -0.137221
+ - -0.0
+ - - 0.216952
+ - -0.578225
+ - 0.0
+ - - 1.251302
+ - 0.23033
+ - 0.743622
+ - - 1.251302
+ - 0.23033
+ - -0.743622
+ - - 0.33246
+ - -1.655373
+ - 0.0
+ - - 2.017233
+ - -0.329203
+ - 1.264401
+ - - 0.904641
+ - 1.118998
+ - 1.253856
+ - - 0.904641
+ - 1.118998
+ - -1.253856
+ - - 2.017233
+ - -0.329203
+ - -1.264401
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.19720191902512
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.260234
+ - 0.219987
+ - -0.0
+ - - -1.155983
+ - -0.141556
+ - -0.0
+ - - 0.210883
+ - -0.580198
+ - -0.0
+ - - 1.258235
+ - 0.233633
+ - 0.74874
+ - - 1.258235
+ - 0.233633
+ - -0.74874
+ - - 0.331937
+ - -1.659255
+ - -0.0
+ - - 2.022079
+ - -0.33166
+ - 1.271355
+ - - 0.912975
+ - 1.12486
+ - 1.259997
+ - - 0.912975
+ - 1.12486
+ - -1.259997
+ - - 2.022079
+ - -0.33166
+ - -1.271355
isotopes:
- 14
- 12
@@ -267,13 +1099,141 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.177533555398576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.2325326757
+ - 0.2383035839
+ - 0.0
+ - - -1.1462899277
+ - -0.1355113882
+ - 0.0
+ - - 0.2215255404
+ - -0.5874486937
+ - 0.0
+ - - 1.2505875178
+ - 0.2292332406
+ - 0.7462457879
+ - - 1.2505875178
+ - 0.2292332406
+ - -0.7462457879
+ - - 0.3347617544
+ - -1.6622060485
+ - 0.0
+ - - 2.021378101
+ - -0.3230300809
+ - 1.2632279236
+ - - 0.8958736643
+ - 1.11355308
+ - 1.2546005582
+ - - 0.8958736643
+ - 1.11355308
+ - -1.2546005582
+ - - 2.021378101
+ - -0.3230300809
+ - -1.2632279236
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.31090475854843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.237761
+ - 0.225317
+ - 0.0
+ - - -1.148467
+ - -0.137941
+ - 0.0
+ - - 0.217572
+ - -0.581023
+ - -0.0
+ - - 1.251387
+ - 0.230209
+ - 0.745091
+ - - 1.251387
+ - 0.230209
+ - -0.745091
+ - - 0.331588
+ - -1.656423
+ - -0.0
+ - - 2.018545
+ - -0.327089
+ - 1.263627
+ - - 0.905179
+ - 1.118239
+ - 1.2543
+ - - 0.905179
+ - 1.118239
+ - -1.2543
+ - - 2.018545
+ - -0.327089
+ - -1.263627
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 51.25347539112384
+ value: 51.25347539112383
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Cyclopropene.yml b/input/reference_sets/main/Cyclopropene.yml
index 9e86158646..27a12f92ae 100644
--- a/input/reference_sets/main/Cyclopropene.yml
+++ b/input/reference_sets/main/Cyclopropene.yml
@@ -106,6 +106,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.99746680595426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.861011
+ - -1.0e-06
+ - 0.0
+ - - -0.499778
+ - -1.0e-06
+ - -0.645577
+ - - -0.499778
+ - -1.0e-06
+ - 0.645577
+ - - 1.453426
+ - 0.911486
+ - 0.0
+ - - 1.453426
+ - -0.911488
+ - 0.0
+ - - -1.039927
+ - -1.0e-06
+ - -1.573841
+ - - -1.039927
+ - -1.0e-06
+ - 1.573841
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 76.41636008405264
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.860409
+ - -1.0e-06
+ - 0.0
+ - - -0.500142
+ - -1.0e-06
+ - -0.643383
+ - - -0.500142
+ - -1.0e-06
+ - 0.643383
+ - - 1.456212
+ - 0.911462
+ - 0.0
+ - - 1.456212
+ - -0.911464
+ - -0.0
+ - - -1.042048
+ - -1.0e-06
+ - -1.571739
+ - - -1.042048
+ - -1.0e-06
+ - 1.571739
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -155,6 +253,545 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.4470087552946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.858704
+ - -1.0e-06
+ - 0.0
+ - - -0.500521
+ - -1.0e-06
+ - -0.647305
+ - - -0.500521
+ - -1.0e-06
+ - 0.647305
+ - - 1.458473
+ - 0.915404
+ - 0.0
+ - - 1.458473
+ - -0.915406
+ - 0.0
+ - - -1.043077
+ - -1.0e-06
+ - -1.58101
+ - - -1.043077
+ - -1.0e-06
+ - 1.58101
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.35415943241695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.864504
+ - -1.0e-06
+ - 0.0
+ - - -0.502722
+ - -1.0e-06
+ - -0.649164
+ - - -0.502722
+ - -1.0e-06
+ - 0.649164
+ - - 1.464777
+ - 0.919611
+ - 0.0
+ - - 1.464777
+ - -0.919613
+ - 0.0
+ - - -1.050081
+ - -1.0e-06
+ - -1.585192
+ - - -1.050081
+ - -1.0e-06
+ - 1.585192
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.4416374439496
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.856832
+ - -1.0e-06
+ - 0.0
+ - - -0.497787
+ - -1.0e-06
+ - -0.640758
+ - - -0.497787
+ - -1.0e-06
+ - 0.640758
+ - - 1.452273
+ - 0.910497
+ - 0.0
+ - - 1.452273
+ - -0.910498
+ - 0.0
+ - - -1.038675
+ - -1.0e-06
+ - -1.568802
+ - - -1.038675
+ - -1.0e-06
+ - 1.568802
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.36211061509621
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.862023
+ - -1.0e-06
+ - -0.0
+ - - -0.502566
+ - -1.0e-06
+ - -0.645007
+ - - -0.502566
+ - -1.0e-06
+ - 0.645007
+ - - 1.459221
+ - 0.912918
+ - -0.0
+ - - 1.459222
+ - -0.91292
+ - 0.0
+ - - -1.04344
+ - -1.0e-06
+ - -1.575498
+ - - -1.04344
+ - -1.0e-06
+ - 1.575498
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 75.41538762373301
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.860983
+ - -0.0
+ - 0.0
+ - - -0.499337
+ - 1.0e-06
+ - -0.642729
+ - - -0.499337
+ - 1.0e-06
+ - 0.642729
+ - - 1.454108
+ - 0.911693
+ - 0.0
+ - - 1.454106
+ - -0.911695
+ - 0.0
+ - - -1.041035
+ - -3.0e-06
+ - -1.570205
+ - - -1.041035
+ - -3.0e-06
+ - 1.570205
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.14370797183189
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.860983
+ - -0.0
+ - 0.0
+ - - -0.499337
+ - 1.0e-06
+ - -0.642729
+ - - -0.499337
+ - 1.0e-06
+ - 0.642729
+ - - 1.454108
+ - 0.911693
+ - 0.0
+ - - 1.454106
+ - -0.911695
+ - 0.0
+ - - -1.041035
+ - -3.0e-06
+ - -1.570205
+ - - -1.041035
+ - -3.0e-06
+ - 1.570205
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.73256565972764
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.860983
+ - -0.0
+ - 0.0
+ - - -0.499337
+ - 1.0e-06
+ - -0.642729
+ - - -0.499337
+ - 1.0e-06
+ - 0.642729
+ - - 1.454108
+ - 0.911693
+ - 0.0
+ - - 1.454106
+ - -0.911695
+ - 0.0
+ - - -1.041035
+ - -3.0e-06
+ - -1.570205
+ - - -1.041035
+ - -3.0e-06
+ - 1.570205
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.7617453479388
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.858091
+ - -1.0e-06
+ - 0.0
+ - - -0.503163
+ - -1.0e-06
+ - -0.645287
+ - - -0.503163
+ - -1.0e-06
+ - 0.645287
+ - - 1.459848
+ - 0.911889
+ - 0.0
+ - - 1.459848
+ - -0.91189
+ - 0.0
+ - - -1.041503
+ - -1.0e-06
+ - -1.576549
+ - - -1.041503
+ - -1.0e-06
+ - 1.576549
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.18166116613678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.856365
+ - -1.0e-06
+ - 0.0
+ - - -0.498217
+ - -1.0e-06
+ - -0.642394
+ - - -0.498217
+ - -1.0e-06
+ - 0.642394
+ - - 1.44947
+ - 0.911324
+ - 0.0
+ - - 1.449471
+ - -0.911326
+ - -0.0
+ - - -1.03521
+ - -1.0e-06
+ - -1.573233
+ - - -1.03521
+ - -1.0e-06
+ - 1.573233
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.74466259125865
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.855361
+ - -1.0e-06
+ - 0.0
+ - - -0.497626
+ - -1.0e-06
+ - -0.64352
+ - - -0.497626
+ - -1.0e-06
+ - 0.64352
+ - - 1.452578
+ - 0.912483
+ - -0.0
+ - - 1.452578
+ - -0.912485
+ - 0.0
+ - - -1.038406
+ - -1.0e-06
+ - -1.574235
+ - - -1.038406
+ - -1.0e-06
+ - 1.574235
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.04700658152382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.862135
+ - -1.0e-06
+ - 0.0
+ - - -0.501471
+ - -1.0e-06
+ - -0.647449
+ - - -0.501471
+ - -1.0e-06
+ - 0.647449
+ - - 1.459762
+ - 0.915124
+ - 0.0
+ - - 1.459763
+ - -0.915126
+ - 0.0
+ - - -1.045132
+ - -1.0e-06
+ - -1.579654
+ - - -1.045132
+ - -1.0e-06
+ - 1.579654
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.08003946002397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8609825738
+ - -1.88e-07
+ - 0.0
+ - - -0.4993370112
+ - 6.186e-07
+ - -0.6427291078
+ - - -0.4993370112
+ - 6.186e-07
+ - 0.6427291078
+ - - 1.4541080796
+ - 0.9116933011
+ - 0.0
+ - - 1.4541058414
+ - -0.9116952523
+ - 0.0
+ - - -1.0410348135
+ - -2.8447e-06
+ - -1.5702050332
+ - - -1.0410348135
+ - -2.8447e-06
+ - 1.5702050332
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 73.14348880218114
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.860182
+ - -1.0e-06
+ - 0.0
+ - - -0.499109
+ - -1.0e-06
+ - -0.642064
+ - - -0.499109
+ - -1.0e-06
+ - 0.642064
+ - - 1.454624
+ - 0.91227
+ - 0.0
+ - - 1.454624
+ - -0.912272
+ - 0.0
+ - - -1.041379
+ - -1.0e-06
+ - -1.570113
+ - - -1.041379
+ - -1.0e-06
+ - 1.570113
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Cyclopropenylidene.yml b/input/reference_sets/main/Cyclopropenylidene.yml
index bc6f02f11c..1489a6053b 100644
--- a/input/reference_sets/main/Cyclopropenylidene.yml
+++ b/input/reference_sets/main/Cyclopropenylidene.yml
@@ -84,6 +84,84 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.5241295631097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661666
+ - 0.0
+ - 0.321951
+ - - 0.0
+ - 0.0
+ - -0.930147
+ - - -0.661666
+ - 0.0
+ - 0.321951
+ - - 1.595193
+ - 0.0
+ - 0.858765
+ - - -1.595193
+ - -0.0
+ - 0.858765
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.72212328963768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.660038
+ - 0.0
+ - 0.321231
+ - - -0.0
+ - 0.0
+ - -0.928689
+ - - -0.660038
+ - 0.0
+ - 0.321231
+ - - 1.594788
+ - 0.0
+ - 0.858756
+ - - -1.594788
+ - -0.0
+ - 0.858756
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 125.15537797267936
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.662901
+ - 0.0
+ - 0.321384
+ - - 0.0
+ - 0.0
+ - -0.935785
+ - - -0.662901
+ - 0.0
+ - 0.321384
+ - - 1.602049
+ - 0.0
+ - 0.862151
+ - - -1.602049
+ - -0.0
+ - 0.862151
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.24999039430601
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.665241
+ - 0.0
+ - 0.32108
+ - - 0.0
+ - 0.0
+ - -0.941855
+ - - -0.665241
+ - 0.0
+ - 0.32108
+ - - 1.607313
+ - 0.0
+ - 0.86549
+ - - -1.607313
+ - -0.0
+ - 0.86549
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.3783844352809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.657689
+ - 0.0
+ - 0.320625
+ - - -0.0
+ - 0.0
+ - -0.920948
+ - - -0.657689
+ - 0.0
+ - 0.320625
+ - - 1.592868
+ - 0.0
+ - 0.855491
+ - - -1.592868
+ - -0.0
+ - 0.855491
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 117.59727550150266
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661359
+ - 0.0
+ - 0.322154
+ - - -0.0
+ - 0.0
+ - -0.937644
+ - - -0.661359
+ - -0.0
+ - 0.322154
+ - - 1.596069
+ - 0.0
+ - 0.862311
+ - - -1.596069
+ - -0.0
+ - 0.862311
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 126.70495875702348
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.660064
+ - 0.0
+ - 0.320399
+ - - 0.0
+ - 0.0
+ - -0.927054
+ - - -0.660064
+ - 0.0
+ - 0.320399
+ - - 1.592811
+ - 0.0
+ - 0.858771
+ - - -1.592811
+ - -0.0
+ - 0.858771
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 119.4436850292818
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.660064
+ - 0.0
+ - 0.320399
+ - - 0.0
+ - 0.0
+ - -0.927054
+ - - -0.660064
+ - 0.0
+ - 0.320399
+ - - 1.592811
+ - 0.0
+ - 0.858771
+ - - -1.592811
+ - -0.0
+ - 0.858771
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 118.09989315999623
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.660064
+ - 0.0
+ - 0.320399
+ - - 0.0
+ - 0.0
+ - -0.927054
+ - - -0.660064
+ - 0.0
+ - 0.320399
+ - - 1.592811
+ - 0.0
+ - 0.858771
+ - - -1.592811
+ - -0.0
+ - 0.858771
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 118.88215275157015
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661082
+ - 0.0
+ - 0.319309
+ - - 0.0
+ - 0.0
+ - -0.942415
+ - - -0.661082
+ - 0.0
+ - 0.319309
+ - - 1.590488
+ - 0.0
+ - 0.867541
+ - - -1.590488
+ - 0.0
+ - 0.867541
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 117.96791945688464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.659283
+ - 0.0
+ - 0.320489
+ - - 0.0
+ - 0.0
+ - -0.925472
+ - - -0.659283
+ - 0.0
+ - 0.320489
+ - - 1.593626
+ - 0.0
+ - 0.857889
+ - - -1.593626
+ - -0.0
+ - 0.857889
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 127.59565583909422
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.659882
+ - 0.0
+ - 0.320654
+ - - 0.0
+ - 0.0
+ - -0.927135
+ - - -0.659882
+ - 0.0
+ - 0.320654
+ - - 1.596069
+ - 0.0
+ - 0.858556
+ - - -1.596069
+ - -0.0
+ - 0.858556
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 135.07139201657176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.663538
+ - 0.0
+ - 0.320752
+ - - 0.0
+ - 0.0
+ - -0.939686
+ - - -0.663538
+ - 0.0
+ - 0.320752
+ - - 1.599476
+ - 0.0
+ - 0.864733
+ - - -1.599476
+ - -0.0
+ - 0.864733
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 115.98237954111728
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6600636417
+ - 0.0
+ - 0.3203985317
+ - - 0.0
+ - 0.0
+ - -0.9270541691
+ - - -0.6600636417
+ - 2.27e-08
+ - 0.3203985317
+ - - 1.5928110351
+ - 0.0
+ - 0.8587709284
+ - - -1.5928110351
+ - -7.44e-08
+ - 0.8587709284
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 124.48505168657204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.659121
+ - 0.0
+ - 0.320495
+ - - 0.0
+ - 0.0
+ - -0.925533
+ - - -0.659121
+ - 0.0
+ - 0.320495
+ - - 1.59379
+ - 0.0
+ - 0.857913
+ - - -1.59379
+ - -0.0
+ - 0.857913
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Diazenyl.yml b/input/reference_sets/main/Diazenyl.yml
index 3e27012699..f658929440 100644
--- a/input/reference_sets/main/Diazenyl.yml
+++ b/input/reference_sets/main/Diazenyl.yml
@@ -63,6 +63,64 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.23733016526872
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661693
+ - -0.05054
+ - 0.0
+ - - -0.492696
+ - 0.148351
+ - 0.0
+ - - -1.139398
+ - -0.685854
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.24222223702541
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.65935
+ - -0.050775
+ - 0.0
+ - - -0.490119
+ - 0.150073
+ - 0.0
+ - - -1.139631
+ - -0.687342
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.06380890985899
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.66504
+ - -0.050138
+ - 0.0
+ - - -0.491296
+ - 0.152368
+ - 0.0
+ - - -1.144144
+ - -0.690273
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.09610954602978
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.670415
+ - -0.047189
+ - 0.0
+ - - -0.488112
+ - 0.153605
+ - 0.0
+ - - -1.152704
+ - -0.694459
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.03285342494803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654559
+ - -0.052439
+ - 0.0
+ - - -0.490404
+ - 0.149618
+ - 0.0
+ - - -1.134556
+ - -0.685223
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.99588778932353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661297
+ - -0.052276
+ - 0.0
+ - - -0.492932
+ - 0.152498
+ - 0.0
+ - - -1.138765
+ - -0.688266
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.57409416718671
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654384
+ - -0.05464
+ - 0.0
+ - - -0.492651
+ - 0.152647
+ - -0.0
+ - - -1.132134
+ - -0.686051
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.99716404379525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654384
+ - -0.05464
+ - 0.0
+ - - -0.492651
+ - 0.152647
+ - -0.0
+ - - -1.132134
+ - -0.686051
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.586096487782356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654384
+ - -0.05464
+ - 0.0
+ - - -0.492651
+ - 0.152647
+ - -0.0
+ - - -1.132134
+ - -0.686051
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.94987090504616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.662211
+ - -0.052992
+ - 0.0
+ - - -0.494545
+ - 0.153288
+ - 0.0
+ - - -1.138067
+ - -0.688339
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.056432846990106
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654618
+ - -0.052276
+ - 0.0
+ - - -0.490121
+ - 0.149591
+ - 0.0
+ - - -1.134898
+ - -0.685359
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.56597406361808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.655733
+ - -0.0528
+ - 0.0
+ - - -0.490958
+ - 0.151058
+ - 0.0
+ - - -1.135175
+ - -0.686302
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.92308543271414
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.667197
+ - -0.049291
+ - 0.0
+ - - -0.490198
+ - 0.153568
+ - 0.0
+ - - -1.1474
+ - -0.692321
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.4056595930289
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6543840186
+ - -0.0546400275
+ - 0.0
+ - - -0.4926506083
+ - 0.1526472891
+ - -0.0
+ - - -1.1321338724
+ - -0.6860508313
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.331695225265264
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.654602
+ - -0.053468
+ - 0.0
+ - - -0.492461
+ - 0.149837
+ - 0.0
+ - - -1.132542
+ - -0.684412
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Diazynium.yml b/input/reference_sets/main/Diazynium.yml
index af601fbee8..ae8a73eab8 100644
--- a/input/reference_sets/main/Diazynium.yml
+++ b/input/reference_sets/main/Diazynium.yml
@@ -39,7 +39,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 247.94295807946006
+ value: 247.94295807945994
class: ThermoData
xyz_dict:
coords:
@@ -62,6 +62,64 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 246.85391872367964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.653628
+ - - -0.0
+ - 0.0
+ - -0.440184
+ - - -0.0
+ - 0.0
+ - -1.477029
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 250.3599274088245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.648792
+ - - 0.0
+ - 0.0
+ - -0.437186
+ - - 0.0
+ - 0.0
+ - -1.47519
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 245.8526424482324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.654844
+ - - -0.0
+ - 0.0
+ - -0.439335
+ - - -0.0
+ - 0.0
+ - -1.479093
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 248.10288380080493
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.65974
+ - - 0.0
+ - 0.0
+ - -0.438798
+ - - 0.0
+ - 0.0
+ - -1.484527
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 250.36858646497973
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.646052
+ - - 0.0
+ - 0.0
+ - -0.4354
+ - - 0.0
+ - 0.0
+ - -1.474237
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 248.4679188889544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.652419
+ - - 0.0
+ - 0.0
+ - -0.438163
+ - - 0.0
+ - 0.0
+ - -1.477841
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 245.55344468074165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 8.0e-06
+ - 0.647488
+ - - -0.0
+ - -1.7e-05
+ - -0.43689
+ - - 0.0
+ - 6.1e-05
+ - -1.474182
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 247.1521661573345
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 8.0e-06
+ - 0.647488
+ - - -0.0
+ - -1.7e-05
+ - -0.43689
+ - - 0.0
+ - 6.1e-05
+ - -1.474182
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 247.69899198997015
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 8.0e-06
+ - 0.647488
+ - - -0.0
+ - -1.7e-05
+ - -0.43689
+ - - 0.0
+ - 6.1e-05
+ - -1.474182
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 248.33786667540366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.652764
+ - - 0.0
+ - 0.0
+ - -0.439499
+ - - 0.0
+ - 0.0
+ - -1.47685
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 248.6154924457715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.646035
+ - - -0.0
+ - 0.0
+ - -0.434937
+ - - -0.0
+ - 0.0
+ - -1.474682
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 247.5768369009472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.647259
+ - - 0.0
+ - 0.0
+ - -0.437037
+ - - 0.0
+ - 0.0
+ - -1.473806
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 245.75527221275453
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.656113
+ - - -0.0
+ - 0.0
+ - -0.438896
+ - - -0.0
+ - 0.0
+ - -1.480802
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 246.7973600860768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 8.366e-06
+ - 0.6474876662
+ - - -0.0
+ - -1.71117e-05
+ - -0.4368902749
+ - - 0.0
+ - 6.12203e-05
+ - -1.4741817388
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 248.0647862350556
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.645508
+ - - 0.0
+ - 0.0
+ - -0.43719
+ - - 0.0
+ - 0.0
+ - -1.471903
+ isotopes:
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dibromine.yml b/input/reference_sets/main/Dibromine.yml
index b709c64282..e71c849237 100644
--- a/input/reference_sets/main/Dibromine.yml
+++ b/input/reference_sets/main/Dibromine.yml
@@ -3,6 +3,54 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 Br u0 p3 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.3238774301042175
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.149907
+ - - 0.0
+ - 0.0
+ - -1.149907
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.9195327407210634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.157829
+ - - 0.0
+ - 0.0
+ - -1.157829
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -27,6 +75,222 @@ calculated_data:
symbols:
- Br
- Br
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.068859309354796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.162437
+ - - 0.0
+ - 0.0
+ - -1.162437
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.953190616324148
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.158973
+ - - 0.0
+ - 0.0
+ - -1.158973
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.519533361442688
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.145399
+ - - 0.0
+ - 0.0
+ - -1.145399
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.1559321315275355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.171566
+ - - 0.0
+ - 0.0
+ - -1.171566
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.7136005360892215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.139649
+ - - 0.0
+ - 0.0
+ - -1.139649
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.052334349156567
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.158491
+ - - 0.0
+ - 0.0
+ - -1.158491
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.9531425302024403
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.142865
+ - - 0.0
+ - 0.0
+ - -1.142865
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.22275238805159
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.140766
+ - - 0.0
+ - 0.0
+ - -1.140766
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.077232638675784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.154398
+ - - 0.0
+ - 0.0
+ - -1.154398
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -51,6 +315,54 @@ calculated_data:
symbols:
- Br
- Br
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.241304709992769
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.1396494891
+ - - 0.0
+ - 0.0
+ - -1.1396494891
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.424368742030971
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.140888
+ - - 0.0
+ - 0.0
+ - -1.140888
+ isotopes:
+ - 79
+ - 79
+ symbols:
+ - Br
+ - Br
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dibromophosgene.yml b/input/reference_sets/main/Dibromophosgene.yml
index 5124e31a10..db05818cc1 100644
--- a/input/reference_sets/main/Dibromophosgene.yml
+++ b/input/reference_sets/main/Dibromophosgene.yml
@@ -5,6 +5,74 @@ adjacency_list: |
3 O u0 p2 c0 {4,D}
4 C u0 p0 c0 {1,S} {2,S} {3,D}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.987596605086328
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.775097
+ - - -1.601089
+ - 0.0
+ - -0.294799
+ - - 1.601089
+ - -0.0
+ - -0.294799
+ - - -0.0
+ - 0.0
+ - 1.949597
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.399647662536488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.779205
+ - - -1.61108
+ - 0.0
+ - -0.296057
+ - - 1.61108
+ - -0.0
+ - -0.296057
+ - - -0.0
+ - 0.0
+ - 1.948005
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -39,6 +107,312 @@ calculated_data:
- Br
- Br
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.405058721644508
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.782341
+ - - -1.617314
+ - 0.0
+ - -0.302788
+ - - 1.617314
+ - -0.0
+ - -0.302788
+ - - -0.0
+ - 0.0
+ - 1.958332
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.419395889301004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.780442
+ - - -1.613071
+ - -0.0
+ - -0.303536
+ - - 1.613071
+ - -0.0
+ - -0.303536
+ - - -0.0
+ - 0.0
+ - 1.961727
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.342696673551895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.771732
+ - - -1.598823
+ - 0.0
+ - -0.287008
+ - - 1.598823
+ - -0.0
+ - -0.287008
+ - - -0.0
+ - 0.0
+ - 1.937381
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.87533089219414
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.781547
+ - - -1.619658
+ - 0.0
+ - -0.298347
+ - - 1.619658
+ - -0.0
+ - -0.298347
+ - - -0.0
+ - 0.0
+ - 1.950243
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.727518453338963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.770621
+ - - -1.592571
+ - 0.0
+ - -0.287769
+ - - 1.592571
+ - -0.0
+ - -0.287769
+ - - 0.0
+ - 0.0
+ - 1.940013
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.426253050818005
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.778369
+ - - -1.611268
+ - 0.0
+ - -0.296505
+ - - 1.611268
+ - 0.0
+ - -0.296505
+ - - 0.0
+ - 0.0
+ - 1.949737
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.299787042862235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.772201
+ - - -1.600562
+ - 0.0
+ - -0.287292
+ - - 1.600562
+ - -0.0
+ - -0.287292
+ - - 0.0
+ - -0.0
+ - 1.937478
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.928628041732395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.772693
+ - - -1.590991
+ - 0.0
+ - -0.289415
+ - - 1.590991
+ - -0.0
+ - -0.289415
+ - - -0.0
+ - 0.0
+ - 1.941233
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.435572986339206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.779707
+ - - -1.609612
+ - 0.0
+ - -0.301762
+ - - 1.609612
+ - -0.0
+ - -0.301762
+ - - -0.0
+ - -0.0
+ - 1.958913
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -73,6 +447,74 @@ calculated_data:
- Br
- Br
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.063149227370978
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7706210178
+ - - -1.5925712705
+ - 0.0
+ - -0.2877685731
+ - - 1.5925712705
+ - -0.0
+ - -0.2877685731
+ - - 0.0
+ - 0.0
+ - 1.9400127295
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.792609565942612
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.771662
+ - - -1.597157
+ - 0.0
+ - -0.287757
+ - - 1.597157
+ - -0.0
+ - -0.287757
+ - - -0.0
+ - 0.0
+ - 1.938948
+ isotopes:
+ - 12
+ - 79
+ - 79
+ - 16
+ symbols:
+ - C
+ - Br
+ - Br
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dichlorine.yml b/input/reference_sets/main/Dichlorine.yml
index 5edb416bd3..236c825974 100644
--- a/input/reference_sets/main/Dichlorine.yml
+++ b/input/reference_sets/main/Dichlorine.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- Cl
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5229647760769071
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.001717
+ - - 0.0
+ - 0.0
+ - -1.001717
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0817301972108992
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.006746
+ - - 0.0
+ - 0.0
+ - -1.006746
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- Cl
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.9628633971209356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.008255
+ - - 0.0
+ - 0.0
+ - -1.008255
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1595682617352996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.008283
+ - - 0.0
+ - 0.0
+ - -1.008283
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5832397874142701
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.997164
+ - - 0.0
+ - 0.0
+ - -0.997164
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.1594011631652554
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.018396
+ - - 0.0
+ - 0.0
+ - -1.018396
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.14360211292635708
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.994184
+ - - 0.0
+ - 0.0
+ - -0.994184
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.1371671841260394
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.994184
+ - - 0.0
+ - 0.0
+ - -0.994184
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.102119976777834
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.994184
+ - - 0.0
+ - 0.0
+ - -0.994184
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.4500582163654019
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.008244
+ - - 0.0
+ - 0.0
+ - -1.008244
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.503010450927933
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.993384
+ - - 0.0
+ - 0.0
+ - -0.993384
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5616568776247103
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.99123
+ - - 0.0
+ - 0.0
+ - -0.99123
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4636059975680087
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.005758
+ - - 0.0
+ - 0.0
+ - -1.005758
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- Cl
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.25340132435804535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.9941836232
+ - - 0.0
+ - 0.0
+ - -0.9941836232
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.39803960852632625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.994603
+ - - 0.0
+ - 0.0
+ - -0.994603
+ isotopes:
+ - 35
+ - 35
+ symbols:
+ - Cl
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dichloroacetylene.yml b/input/reference_sets/main/Dichloroacetylene.yml
index 9b72f38bdd..7189e96c7b 100644
--- a/input/reference_sets/main/Dichloroacetylene.yml
+++ b/input/reference_sets/main/Dichloroacetylene.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- C
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.01742131408889
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.238047
+ - 0.000156
+ - 5.0e-06
+ - - 0.602413
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.602446
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.23808
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.9968797610112
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.235524
+ - 0.000156
+ - 5.0e-06
+ - - 0.599792
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.599825
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.235557
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- C
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.36938134733601
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.236094
+ - 0.000156
+ - 5.0e-06
+ - - 0.604825
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.604858
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.236128
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.62828576792716
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.243325
+ - 0.000156
+ - 5.0e-06
+ - - 0.606857
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.60689
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.243359
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.10886060194323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.230978
+ - 0.000155
+ - 5.0e-06
+ - - 0.596422
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.596455
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.231011
+ - -9.7e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.44752892543204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.245427
+ - 0.000156
+ - 5.0e-06
+ - - 0.600479
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.600512
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.24546
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.11340442445644
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.237553
+ - 0.000156
+ - 5.0e-06
+ - - 0.597621
+ - 6.4e-05
+ - 5.0e-06
+ - - -0.597654
+ - -6.0e-06
+ - 5.0e-06
+ - - -2.237586
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.54317556428882
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.237553
+ - 0.000156
+ - 5.0e-06
+ - - 0.597621
+ - 6.4e-05
+ - 5.0e-06
+ - - -0.597654
+ - -6.0e-06
+ - 5.0e-06
+ - - -2.237586
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.39806010523236
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.237553
+ - 0.000156
+ - 5.0e-06
+ - - 0.597621
+ - 6.4e-05
+ - 5.0e-06
+ - - -0.597654
+ - -6.0e-06
+ - 5.0e-06
+ - - -2.237586
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.5480966420893
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -2.240134
+ - - 0.0
+ - 0.0
+ - -0.601145
+ - - 0.0
+ - 0.0
+ - 0.601145
+ - - 0.0
+ - 0.0
+ - 2.240134
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.90968686949769
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.232468
+ - 0.000156
+ - 5.0e-06
+ - - 0.597976
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.598009
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.232501
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.016099710524266
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.226038
+ - 0.000155
+ - 5.0e-06
+ - - 0.599962
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.599995
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.226072
+ - -9.7e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.15694849214366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.238564
+ - 0.000156
+ - 5.0e-06
+ - - 0.60452
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.604553
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.238597
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- C
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.28439943326155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2375525358
+ - 0.0001556778
+ - 5.0536e-06
+ - - 0.5976206489
+ - 6.44662e-05
+ - 5.2063e-06
+ - - -0.5976540379
+ - -6.323e-06
+ - 5.4654e-06
+ - - -2.2375859595
+ - -9.77178e-05
+ - 5.8488e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.883848958363416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.231742
+ - 0.000156
+ - 5.0e-06
+ - - 0.597763
+ - 6.3e-05
+ - 5.0e-06
+ - - -0.597797
+ - -5.0e-06
+ - 6.0e-06
+ - - -2.231776
+ - -9.8e-05
+ - 6.0e-06
+ isotopes:
+ - 35
+ - 12
+ - 12
+ - 35
+ symbols:
+ - Cl
+ - C
+ - C
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dichloromethane.yml b/input/reference_sets/main/Dichloromethane.yml
index 05c5fffde7..0083cd0694 100644
--- a/input/reference_sets/main/Dichloromethane.yml
+++ b/input/reference_sets/main/Dichloromethane.yml
@@ -51,7 +51,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -23.391214110491063
+ value: -23.391214110491052
class: ThermoData
xyz_dict:
coords:
@@ -84,6 +84,84 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.464105901613646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.767808
+ - - -1.477166
+ - -0.0
+ - -0.215194
+ - - 1.477166
+ - -0.0
+ - -0.215194
+ - - -0.0
+ - -0.896367
+ - 1.375006
+ - - 0.0
+ - 0.896367
+ - 1.375006
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.646522796813336
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.768297
+ - - -1.48411
+ - -0.0
+ - -0.215195
+ - - 1.48411
+ - -0.0
+ - -0.215195
+ - - -0.0
+ - -0.897529
+ - 1.374762
+ - - 0.0
+ - 0.897529
+ - 1.374762
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.776974268561165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.767063
+ - - -1.491142
+ - -0.0
+ - -0.214669
+ - - 1.491142
+ - -0.0
+ - -0.214669
+ - - -0.0
+ - -0.902707
+ - 1.374852
+ - - 0.0
+ - 0.902707
+ - 1.374852
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.109523475178495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.76658
+ - - -1.491204
+ - -0.0
+ - -0.217139
+ - - 1.491204
+ - -0.0
+ - -0.217139
+ - - -0.0
+ - -0.906358
+ - 1.377565
+ - - 0.0
+ - 0.906358
+ - 1.377565
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.767936261195803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.764689
+ - - -1.472179
+ - -0.0
+ - -0.213181
+ - - 1.472179
+ - -0.0
+ - -0.213181
+ - - -0.0
+ - -0.894577
+ - 1.374554
+ - - 0.0
+ - 0.894577
+ - 1.374554
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.06913705240232
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.770468
+ - - -1.491146
+ - -0.0
+ - -0.216618
+ - - 1.491146
+ - -0.0
+ - -0.216618
+ - - -0.0
+ - -0.90006
+ - 1.375098
+ - - 0.0
+ - 0.90006
+ - 1.375098
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.250104800115622
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.766775
+ - - -1.469478
+ - 0.0
+ - -0.216291
+ - - 1.469478
+ - -0.0
+ - -0.216291
+ - - 0.0
+ - -0.894555
+ - 1.376621
+ - - 0.0
+ - 0.894555
+ - 1.376621
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.855204246892985
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.766775
+ - - -1.469478
+ - 0.0
+ - -0.216291
+ - - 1.469478
+ - -0.0
+ - -0.216291
+ - - 0.0
+ - -0.894555
+ - 1.376621
+ - - 0.0
+ - 0.894555
+ - 1.376621
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.223653494141075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.766775
+ - - -1.469478
+ - 0.0
+ - -0.216291
+ - - 1.469478
+ - -0.0
+ - -0.216291
+ - - 0.0
+ - -0.894555
+ - 1.376621
+ - - 0.0
+ - 0.894555
+ - 1.376621
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.944654785511577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.76861
+ - - -1.48857
+ - 0.0
+ - -0.217091
+ - - 1.48857
+ - 0.0
+ - -0.217091
+ - - 0.0
+ - -0.900335
+ - 1.376502
+ - - 0.0
+ - 0.900335
+ - 1.376502
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.133986963529427
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.766691
+ - - -1.467762
+ - -0.0
+ - -0.214965
+ - - 1.467762
+ - -0.0
+ - -0.214965
+ - - -0.0
+ - -0.89607
+ - 1.375336
+ - - 0.0
+ - 0.89607
+ - 1.375336
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.25169322710083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.762288
+ - - -1.469239
+ - -0.0
+ - -0.211336
+ - - 1.469239
+ - -0.0
+ - -0.211336
+ - - -0.0
+ - -0.897028
+ - 1.373909
+ - - 0.0
+ - 0.897028
+ - 1.373909
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.38385564924832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.77061
+ - - -1.48899
+ - -0.0
+ - -0.215891
+ - - 1.48899
+ - -0.0
+ - -0.215891
+ - - -0.0
+ - -0.903488
+ - 1.374299
+ - - 0.0
+ - 0.903488
+ - 1.374299
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- Cl
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.99306497595826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7667745606
+ - - -1.4694777045
+ - 0.0
+ - -0.2162909099
+ - - 1.4694777045
+ - -3.01e-08
+ - -0.2162909099
+ - - 0.0
+ - -0.8945552606
+ - 1.3766205687
+ - - 9.28e-08
+ - 0.8945552606
+ - 1.3766205687
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.600302226563308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.765263
+ - - -1.473822
+ - -0.0
+ - -0.213773
+ - - 1.473822
+ - -0.0
+ - -0.213773
+ - - -0.0
+ - -0.896454
+ - 1.374859
+ - - 0.0
+ - 0.896454
+ - 1.374859
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dichloromethyl.yml b/input/reference_sets/main/Dichloromethyl.yml
index 3f9f4d0e4b..11070315d7 100644
--- a/input/reference_sets/main/Dichloromethyl.yml
+++ b/input/reference_sets/main/Dichloromethyl.yml
@@ -74,6 +74,74 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.625445189521145
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.11005
+ - -0.683359
+ - 0.0
+ - - -0.018627
+ - 0.167466
+ - -1.467276
+ - - -0.018627
+ - 0.167466
+ - 1.467276
+ - - -0.202973
+ - -1.714667
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.08912864357347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.101758
+ - -0.681684
+ - -0.0
+ - - -0.016163
+ - 0.167942
+ - -1.472259
+ - - -0.016163
+ - 0.167942
+ - 1.472259
+ - - -0.199609
+ - -1.717294
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.958588086964497
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.110907
+ - -0.680129
+ - -0.0
+ - - -0.018663
+ - 0.167006
+ - -1.475853
+ - - -0.018663
+ - 0.167006
+ - 1.475853
+ - - -0.203757
+ - -1.716978
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.847935352684907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.104095
+ - -0.679805
+ - -0.0
+ - - -0.016447
+ - 0.170399
+ - -1.477302
+ - - -0.016447
+ - 0.170399
+ - 1.477302
+ - - -0.201378
+ - -1.724086
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.819496785731193
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.078949
+ - -0.677342
+ - -0.0
+ - - -0.00963
+ - 0.167364
+ - -1.464086
+ - - -0.00963
+ - 0.167364
+ - 1.464086
+ - - -0.189866
+ - -1.72048
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.93406839532839
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.115803
+ - -0.686103
+ - -0.0
+ - - -0.020163
+ - 0.169989
+ - -1.479245
+ - - -0.020163
+ - 0.169989
+ - 1.479245
+ - - -0.205654
+ - -1.716969
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.088993519697773
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.069089
+ - -0.679147
+ - 0.0
+ - - -0.006727
+ - 0.170588
+ - -1.461632
+ - - -0.006727
+ - 0.170588
+ - 1.461632
+ - - -0.185811
+ - -1.725123
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.261313647518357
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.069089
+ - -0.679147
+ - 0.0
+ - - -0.006727
+ - 0.170588
+ - -1.461632
+ - - -0.006727
+ - 0.170588
+ - 1.461632
+ - - -0.185811
+ - -1.725123
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.50116900763702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.069089
+ - -0.679147
+ - 0.0
+ - - -0.006727
+ - 0.170588
+ - -1.461632
+ - - -0.006727
+ - 0.170588
+ - 1.461632
+ - - -0.185811
+ - -1.725123
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.226236620367906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.120621
+ - -0.686028
+ - 0.0
+ - - -0.021516
+ - 0.16981
+ - -1.47738
+ - - -0.021516
+ - 0.16981
+ - 1.47738
+ - - -0.207765
+ - -1.716687
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.333577074245657
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.109325
+ - -0.683172
+ - 0.0
+ - - -0.01843
+ - 0.167556
+ - -1.460731
+ - - -0.01843
+ - 0.167556
+ - 1.460731
+ - - -0.202641
+ - -1.715034
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.012297144890027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.091112
+ - -0.676983
+ - -0.0
+ - - -0.013072
+ - 0.166081
+ - -1.461147
+ - - -0.013072
+ - 0.166081
+ - 1.461147
+ - - -0.195144
+ - -1.718273
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.88967064199658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.12413
+ - -0.685047
+ - 0.0
+ - - -0.022523
+ - 0.168942
+ - -1.475842
+ - - -0.022523
+ - 0.168942
+ - 1.475842
+ - - -0.20926
+ - -1.71593
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,6 +584,74 @@ calculated_data:
- Cl
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.626937258171704
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0690889929
+ - -0.6791471966
+ - 0.0
+ - - -0.006727143
+ - 0.1705884237
+ - -1.4616322758
+ - - -0.006727143
+ - 0.1705884237
+ - 1.4616322758
+ - - -0.1858110859
+ - -1.7251233893
+ - 0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.88633831553022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.092504
+ - -0.679433
+ - -0.0
+ - - -0.013481
+ - 0.167644
+ - -1.465613
+ - - -0.013481
+ - 0.167644
+ - 1.465613
+ - - -0.195719
+ - -1.718948
+ - -0.0
+ isotopes:
+ - 12
+ - 35
+ - 35
+ - 1
+ symbols:
+ - C
+ - Cl
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dichloromethylene.yml b/input/reference_sets/main/Dichloromethylene.yml
index ef743a63bb..c4e0ff9d6a 100644
--- a/input/reference_sets/main/Dichloromethylene.yml
+++ b/input/reference_sets/main/Dichloromethylene.yml
@@ -63,6 +63,64 @@ calculated_data:
- C
- Cl
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.5295901221673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.842568
+ - - -1.403448
+ - 0.0
+ - -0.148851
+ - - 1.403448
+ - -0.0
+ - -0.148851
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.13734164814715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.844163
+ - - -1.409023
+ - 0.0
+ - -0.149649
+ - - 1.409023
+ - -0.0
+ - -0.149649
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- C
- Cl
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.06859377362536
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.851392
+ - - -1.420074
+ - 0.0
+ - -0.153263
+ - - 1.420074
+ - -0.0
+ - -0.153263
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.041227786752124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.853797
+ - - -1.419361
+ - 0.0
+ - -0.154466
+ - - 1.419361
+ - -0.0
+ - -0.154466
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.58378441190315
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.834987
+ - - -1.394854
+ - 0.0
+ - -0.145061
+ - - 1.394854
+ - -0.0
+ - -0.145061
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.20132146261253
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.853188
+ - - -1.417446
+ - 0.0
+ - -0.154161
+ - - 1.417446
+ - -0.0
+ - -0.154161
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.9146784270038
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.842066
+ - - -1.392876
+ - -0.0
+ - -0.1486
+ - - 1.392876
+ - 0.0
+ - -0.1486
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.0602790928289
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.842066
+ - - -1.392876
+ - -0.0
+ - -0.1486
+ - - 1.392876
+ - 0.0
+ - -0.1486
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.091124823926826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.842066
+ - - -1.392876
+ - -0.0
+ - -0.1486
+ - - 1.392876
+ - 0.0
+ - -0.1486
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.58224196548853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.855018
+ - - -1.415564
+ - 0.0
+ - -0.155076
+ - - 1.415564
+ - 0.0
+ - -0.155076
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.126956529797994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.841633
+ - - -1.392402
+ - 0.0
+ - -0.148383
+ - - 1.392402
+ - -0.0
+ - -0.148383
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.279180185384256
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.83883
+ - - -1.394975
+ - 0.0
+ - -0.146982
+ - - 1.394975
+ - -0.0
+ - -0.146982
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.895652176153554
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.853966
+ - - -1.415054
+ - 0.0
+ - -0.15455
+ - - 1.415054
+ - -0.0
+ - -0.15455
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- C
- Cl
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.565079621971535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.8420659728
+ - - -1.3928761744
+ - -0.0
+ - -0.1485999807
+ - - 1.3928761744
+ - 0.0
+ - -0.1485999807
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.10910665323587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.840873
+ - - -1.398072
+ - 0.0
+ - -0.148003
+ - - 1.398072
+ - -0.0
+ - -0.148003
+ isotopes:
+ - 12
+ - 35
+ - 35
+ symbols:
+ - C
+ - Cl
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Diethyl sulfoxide.yml b/input/reference_sets/main/Diethyl sulfoxide.yml
index e1e009c7dc..35e88403c7 100644
--- a/input/reference_sets/main/Diethyl sulfoxide.yml
+++ b/input/reference_sets/main/Diethyl sulfoxide.yml
@@ -205,66 +205,1288 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.202110968233896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.68919
+ - 0.105873
+ - -0.048028
+ - - 1.356628
+ - 0.787823
+ - 0.21913
+ - - 1.0e-06
+ - -0.241827
+ - -0.41993
+ - - 0.0
+ - -1.500606
+ - 0.385127
+ - - -1.356627
+ - 0.787824
+ - 0.219129
+ - - -2.689189
+ - 0.105874
+ - -0.048028
+ - - 2.865771
+ - -0.010193
+ - -1.117722
+ - - 2.706504
+ - -0.88109
+ - 0.41171
+ - - 3.505583
+ - 0.694754
+ - 0.369587
+ - - 1.179618
+ - 0.914422
+ - 1.288912
+ - - 1.284474
+ - 1.758368
+ - -0.276614
+ - - -1.284473
+ - 1.758369
+ - -0.276614
+ - - -1.179617
+ - 0.914423
+ - 1.288912
+ - - -2.706504
+ - -0.881089
+ - 0.41171
+ - - -3.505582
+ - 0.694755
+ - 0.369586
+ - - -2.86577
+ - -0.010192
+ - -1.117723
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.8494498745833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.698341
+ - 0.107903
+ - -0.047361
+ - - 1.363465
+ - 0.785856
+ - 0.218845
+ - - 1.0e-06
+ - -0.249116
+ - -0.421057
+ - - 0.0
+ - -1.505756
+ - 0.384603
+ - - -1.363463
+ - 0.785857
+ - 0.218845
+ - - -2.69834
+ - 0.107904
+ - -0.047362
+ - - 2.878299
+ - -0.006729
+ - -1.117695
+ - - 2.71893
+ - -0.880495
+ - 0.411351
+ - - 3.51336
+ - 0.698964
+ - 0.372666
+ - - 1.185409
+ - 0.914925
+ - 1.288428
+ - - 1.287673
+ - 1.755753
+ - -0.278432
+ - - -1.287671
+ - 1.755754
+ - -0.278433
+ - - -1.185408
+ - 0.914925
+ - 1.288428
+ - - -2.71893
+ - -0.880494
+ - 0.41135
+ - - -3.513359
+ - 0.698965
+ - 0.372665
+ - - -2.878298
+ - -0.006728
+ - -1.117696
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -12.56487049822273
+ value: -12.56487049822273
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.7136879979
+ - 0.0767916817
+ - 0.0150822677
+ - - 1.3956008951
+ - 0.8336339123
+ - 0.1925791359
+ - - -8.02616e-05
+ - -0.239914352
+ - -0.4594139539
+ - - -0.0005500833
+ - -1.5003997372
+ - 0.4019805627
+ - - -1.3952789621
+ - 0.833979599
+ - 0.1924991392
+ - - -2.7132774782
+ - 0.0770002455
+ - 0.0150797327
+ - - 2.9420142986
+ - -0.0837170357
+ - -1.0488485554
+ - - 2.645682197
+ - -0.9024009318
+ - 0.5085051041
+ - - 3.5424150038
+ - 0.6415736793
+ - 0.4658308801
+ - - 1.1756486666
+ - 1.0145861056
+ - 1.2547191201
+ - - 1.37049945
+ - 1.786019029
+ - -0.3585586463
+ - - -1.3704358249
+ - 1.7864156518
+ - -0.358568653
+ - - -1.1755093692
+ - 1.0149557681
+ - 1.2546699777
+ - - -2.6452017591
+ - -0.9021959482
+ - 0.5084839014
+ - - -3.5420270085
+ - 0.6416809757
+ - 0.4659280539
+ - - -2.9417955186
+ - -0.083522395
+ - -1.0488240747
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.11398014734988
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.710023
+ - 0.112621
+ - -0.049142
+ - - 1.369461
+ - 0.784398
+ - 0.221666
+ - - 1.0e-06
+ - -0.266969
+ - -0.420479
+ - - 0.0
+ - -1.529053
+ - 0.387989
+ - - -1.36946
+ - 0.784399
+ - 0.221666
+ - - -2.710022
+ - 0.112622
+ - -0.049142
+ - - 2.886317
+ - -0.003982
+ - -1.124165
+ - - 2.739292
+ - -0.878211
+ - 0.413728
+ - - 3.526273
+ - 0.712396
+ - 0.367718
+ - - 1.189786
+ - 0.913124
+ - 1.295383
+ - - 1.282815
+ - 1.756406
+ - -0.279369
+ - - -1.282814
+ - 1.756407
+ - -0.27937
+ - - -1.189785
+ - 0.913125
+ - 1.295383
+ - - -2.739291
+ - -0.87821
+ - 0.413727
+ - - -3.526272
+ - 0.712397
+ - 0.367717
+ - - -2.886316
+ - -0.00398
+ - -1.124165
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.258223143150666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.714258
+ - 0.110473
+ - -0.046413
+ - - 1.373269
+ - 0.787481
+ - 0.218214
+ - - 1.0e-06
+ - -0.264504
+ - -0.427249
+ - - 0.0
+ - -1.533772
+ - 0.383755
+ - - -1.373267
+ - 0.787482
+ - 0.218214
+ - - -2.714257
+ - 0.110474
+ - -0.046414
+ - - 2.902917
+ - -0.001719
+ - -1.124468
+ - - 2.737477
+ - -0.887454
+ - 0.41332
+ - - 3.534073
+ - 0.705376
+ - 0.382316
+ - - 1.188423
+ - 0.920579
+ - 1.295934
+ - - 1.290034
+ - 1.763142
+ - -0.287582
+ - - -1.290032
+ - 1.763143
+ - -0.287583
+ - - -1.188421
+ - 0.92058
+ - 1.295934
+ - - -2.737476
+ - -0.887453
+ - 0.413319
+ - - -3.534072
+ - 0.705377
+ - 0.382315
+ - - -2.902915
+ - -0.001718
+ - -1.124469
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.74342486969301
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.686402
+ - 0.108007
+ - -0.052075
+ - - 1.354046
+ - 0.780562
+ - 0.219594
+ - - 1.0e-06
+ - -0.243535
+ - -0.405899
+ - - 0.0
+ - -1.488037
+ - 0.403718
+ - - -1.354045
+ - 0.780562
+ - 0.219594
+ - - -2.686401
+ - 0.108008
+ - -0.052076
+ - - 2.863645
+ - -0.004348
+ - -1.122208
+ - - 2.711592
+ - -0.880474
+ - 0.404328
+ - - 3.500984
+ - 0.699294
+ - 0.3656
+ - - 1.185233
+ - 0.910165
+ - 1.289924
+ - - 1.279072
+ - 1.751321
+ - -0.274499
+ - - -1.27907
+ - 1.751322
+ - -0.274499
+ - - -1.185232
+ - 0.910166
+ - 1.289923
+ - - -2.711591
+ - -0.880473
+ - 0.404328
+ - - -3.500983
+ - 0.699295
+ - 0.365599
+ - - -2.863644
+ - -0.004347
+ - -1.122209
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.859189535729705
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.712928
+ - 0.108165
+ - -0.048326
+ - - 1.374945
+ - 0.790667
+ - 0.216423
+ - - 1.0e-06
+ - -0.258609
+ - -0.420552
+ - - 0.0
+ - -1.513127
+ - 0.403118
+ - - -1.374943
+ - 0.790668
+ - 0.216422
+ - - -2.712927
+ - 0.108166
+ - -0.048327
+ - - 2.902002
+ - 0.001941
+ - -1.119719
+ - - 2.723421
+ - -0.886117
+ - 0.402113
+ - - 3.530039
+ - 0.690751
+ - 0.38417
+ - - 1.196902
+ - 0.918552
+ - 1.287555
+ - - 1.296921
+ - 1.76065
+ - -0.283924
+ - - -1.29692
+ - 1.760651
+ - -0.283925
+ - - -1.196901
+ - 0.918552
+ - 1.287555
+ - - -2.72342
+ - -0.886116
+ - 0.402112
+ - - -3.530038
+ - 0.690752
+ - 0.384169
+ - - -2.902
+ - 0.001942
+ - -1.119719
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.2312342913412
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.679773
+ - 0.104031
+ - -0.051488
+ - - 1.349728
+ - 0.7873
+ - 0.220564
+ - - 0.0
+ - -0.235382
+ - -0.410921
+ - - -4.0e-06
+ - -1.482872
+ - 0.401992
+ - - -1.349727
+ - 0.787307
+ - 0.220554
+ - - -2.679771
+ - 0.10403
+ - -0.051484
+ - - 2.852974
+ - -0.00916
+ - -1.122565
+ - - 2.69412
+ - -0.885088
+ - 0.40495
+ - - 3.499149
+ - 0.688637
+ - 0.365987
+ - - 1.174762
+ - 0.913737
+ - 1.291163
+ - - 1.276658
+ - 1.758402
+ - -0.274563
+ - - -1.276659
+ - 1.7584
+ - -0.274591
+ - - -1.17476
+ - 0.913764
+ - 1.291151
+ - - -2.694117
+ - -0.885077
+ - 0.40498
+ - - -3.499149
+ - 0.688647
+ - 0.365973
+ - - -2.852968
+ - -0.00919
+ - -1.122558
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.93779477691645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.679773
+ - 0.104031
+ - -0.051488
+ - - 1.349728
+ - 0.7873
+ - 0.220564
+ - - 0.0
+ - -0.235382
+ - -0.410921
+ - - -4.0e-06
+ - -1.482872
+ - 0.401992
+ - - -1.349727
+ - 0.787307
+ - 0.220554
+ - - -2.679771
+ - 0.10403
+ - -0.051484
+ - - 2.852974
+ - -0.00916
+ - -1.122565
+ - - 2.69412
+ - -0.885088
+ - 0.40495
+ - - 3.499149
+ - 0.688637
+ - 0.365987
+ - - 1.174762
+ - 0.913737
+ - 1.291163
+ - - 1.276658
+ - 1.758402
+ - -0.274563
+ - - -1.276659
+ - 1.7584
+ - -0.274591
+ - - -1.17476
+ - 0.913764
+ - 1.291151
+ - - -2.694117
+ - -0.885077
+ - 0.40498
+ - - -3.499149
+ - 0.688647
+ - 0.365973
+ - - -2.852968
+ - -0.00919
+ - -1.122558
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.61839044827206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.679773
+ - 0.104031
+ - -0.051488
+ - - 1.349728
+ - 0.7873
+ - 0.220564
+ - - 0.0
+ - -0.235382
+ - -0.410921
+ - - -4.0e-06
+ - -1.482872
+ - 0.401992
+ - - -1.349727
+ - 0.787307
+ - 0.220554
+ - - -2.679771
+ - 0.10403
+ - -0.051484
+ - - 2.852974
+ - -0.00916
+ - -1.122565
+ - - 2.69412
+ - -0.885088
+ - 0.40495
+ - - 3.499149
+ - 0.688637
+ - 0.365987
+ - - 1.174762
+ - 0.913737
+ - 1.291163
+ - - 1.276658
+ - 1.758402
+ - -0.274563
+ - - -1.276659
+ - 1.7584
+ - -0.274591
+ - - -1.17476
+ - 0.913764
+ - 1.291151
+ - - -2.694117
+ - -0.885077
+ - 0.40498
+ - - -3.499149
+ - 0.688647
+ - 0.365973
+ - - -2.852968
+ - -0.00919
+ - -1.122558
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.38139044333704
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.707436
+ - 0.103472
+ - -0.041616
+ - - 1.370738
+ - 0.794744
+ - 0.212517
+ - - 1.0e-06
+ - -0.251569
+ - -0.428044
+ - - 0.0
+ - -1.511778
+ - 0.37762
+ - - -1.370736
+ - 0.794745
+ - 0.212517
+ - - -2.707435
+ - 0.103473
+ - -0.041617
+ - - 2.907129
+ - 0.001757
+ - -1.112905
+ - - 2.702622
+ - -0.895212
+ - 0.402737
+ - - 3.525312
+ - 0.677532
+ - 0.40351
+ - - 1.190521
+ - 0.934093
+ - 1.283437
+ - - 1.300258
+ - 1.764029
+ - -0.292894
+ - - -1.300256
+ - 1.76403
+ - -0.292894
+ - - -1.19052
+ - 0.934093
+ - 1.283437
+ - - -2.702621
+ - -0.895211
+ - 0.402736
+ - - -3.525311
+ - 0.677533
+ - 0.403509
+ - - -2.907128
+ - 0.001758
+ - -1.112905
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.13302793096955
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.676592
+ - 0.096856
+ - -0.048219
+ - - 1.354342
+ - 0.796669
+ - 0.21663
+ - - 1.0e-06
+ - -0.220036
+ - -0.420073
+ - - 0.0
+ - -1.465759
+ - 0.394695
+ - - -1.35434
+ - 0.79667
+ - 0.21663
+ - - -2.67659
+ - 0.096857
+ - -0.04822
+ - - 2.854738
+ - -0.014268
+ - -1.118332
+ - - 2.669681
+ - -0.893951
+ - 0.404903
+ - - 3.500409
+ - 0.66808
+ - 0.378632
+ - - 1.174462
+ - 0.919934
+ - 1.286337
+ - - 1.292598
+ - 1.768319
+ - -0.277688
+ - - -1.292596
+ - 1.768319
+ - -0.277688
+ - - -1.174461
+ - 0.919934
+ - 1.286336
+ - - -2.669681
+ - -0.89395
+ - 0.404903
+ - - -3.500408
+ - 0.668081
+ - 0.378631
+ - - -2.854737
+ - -0.014267
+ - -1.118333
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.92323582260502
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.7136879979
- - 0.0767916817
- - 0.0150822677
- - - 1.3956008951
- - 0.8336339123
- - 0.1925791359
- - - -8.02616e-05
- - -0.239914352
- - -0.4594139539
- - - -0.0005500833
- - -1.5003997372
- - 0.4019805627
- - - -1.3952789621
- - 0.833979599
- - 0.1924991392
- - - -2.7132774782
- - 0.0770002455
- - 0.0150797327
- - - 2.9420142986
- - -0.0837170357
- - -1.0488485554
- - - 2.645682197
- - -0.9024009318
- - 0.5085051041
- - - 3.5424150038
- - 0.6415736793
- - 0.4658308801
- - - 1.1756486666
- - 1.0145861056
- - 1.2547191201
- - - 1.37049945
- - 1.786019029
- - -0.3585586463
- - - -1.3704358249
- - 1.7864156518
- - -0.358568653
- - - -1.1755093692
- - 1.0149557681
- - 1.2546699777
- - - -2.6452017591
- - -0.9021959482
- - 0.5084839014
- - - -3.5420270085
- - 0.6416809757
- - 0.4659280539
- - - -2.9417955186
- - -0.083522395
- - -1.0488240747
+ - - 2.681497
+ - 0.108176
+ - -0.051352
+ - - 1.352119
+ - 0.782273
+ - 0.219866
+ - - 1.0e-06
+ - -0.245761
+ - -0.405817
+ - - 0.0
+ - -1.493555
+ - 0.400078
+ - - -1.352118
+ - 0.782273
+ - 0.219866
+ - - -2.681496
+ - 0.108177
+ - -0.051353
+ - - 2.859747
+ - -0.003484
+ - -1.123302
+ - - 2.703493
+ - -0.883093
+ - 0.404266
+ - - 3.499198
+ - 0.697111
+ - 0.368869
+ - - 1.179722
+ - 0.913929
+ - 1.29206
+ - - 1.273228
+ - 1.753487
+ - -0.277964
+ - - -1.273226
+ - 1.753488
+ - -0.277965
+ - - -1.179721
+ - 0.91393
+ - 1.29206
+ - - -2.703493
+ - -0.883092
+ - 0.404265
+ - - -3.499196
+ - 0.697113
+ - 0.368869
+ - - -2.859745
+ - -0.003483
+ - -1.123302
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.59352393187456
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.711037
+ - 0.107949
+ - -0.042544
+ - - 1.369545
+ - 0.78984
+ - 0.215695
+ - - 1.0e-06
+ - -0.25912
+ - -0.433654
+ - - 0.0
+ - -1.52807
+ - 0.372945
+ - - -1.369543
+ - 0.78984
+ - 0.215695
+ - - -2.711036
+ - 0.10795
+ - -0.042545
+ - - 2.901444
+ - -0.000489
+ - -1.115458
+ - - 2.72479
+ - -0.885902
+ - 0.413927
+ - - 3.524239
+ - 0.699359
+ - 0.391236
+ - - 1.182201
+ - 0.921908
+ - 1.287244
+ - - 1.2926
+ - 1.759672
+ - -0.290172
+ - - -1.292598
+ - 1.759673
+ - -0.290173
+ - - -1.1822
+ - 0.921908
+ - 1.287244
+ - - -2.724789
+ - -0.885901
+ - 0.413927
+ - - -3.524238
+ - 0.69936
+ - 0.391236
+ - - -2.901443
+ - -0.000488
+ - -1.115459
isotopes:
- 12
- 12
@@ -393,6 +1615,194 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.51042924201141
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.6797728126
+ - 0.1040311075
+ - -0.0514877046
+ - - 1.3497277785
+ - 0.7873004999
+ - 0.2205635732
+ - - 2.823e-07
+ - -0.2353821535
+ - -0.410921347
+ - - -4.1707e-06
+ - -1.4828718632
+ - 0.4019923782
+ - - -1.3497269937
+ - 0.7873074768
+ - 0.2205537745
+ - - -2.6797705326
+ - 0.104030317
+ - -0.0514837397
+ - - 2.8529744513
+ - -0.0091601737
+ - -1.1225645574
+ - - 2.6941201695
+ - -0.8850883958
+ - 0.4049498777
+ - - 3.4991488031
+ - 0.6886373415
+ - 0.3659872689
+ - - 1.1747617009
+ - 0.9137372803
+ - 1.2911633798
+ - - 1.2766584071
+ - 1.7584024668
+ - -0.2745632351
+ - - -1.2766593981
+ - 1.7584004641
+ - -0.2745908557
+ - - -1.1747595977
+ - 0.9137643572
+ - 1.291150945
+ - - -2.694117298
+ - -0.8850770287
+ - 0.4049800021
+ - - -3.4991486996
+ - 0.6886467545
+ - 0.3659725168
+ - - -2.8529680777
+ - -0.0091901111
+ - -1.122558236
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.061166174350824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.690136
+ - 0.111302
+ - -0.054189
+ - - 1.353077
+ - 0.777013
+ - 0.222028
+ - - 1.0e-06
+ - -0.254457
+ - -0.401953
+ - - 0.0
+ - -1.497878
+ - 0.404116
+ - - -1.353076
+ - 0.777014
+ - 0.222028
+ - - -2.690135
+ - 0.111303
+ - -0.05419
+ - - 2.862406
+ - -0.003177
+ - -1.125701
+ - - 2.724766
+ - -0.875749
+ - 0.406971
+ - - 3.501531
+ - 0.711839
+ - 0.358313
+ - - 1.187342
+ - 0.905992
+ - 1.293932
+ - - 1.271154
+ - 1.747689
+ - -0.272861
+ - - -1.271152
+ - 1.747689
+ - -0.272861
+ - - -1.187341
+ - 0.905993
+ - 1.293932
+ - - -2.724765
+ - -0.875748
+ - 0.40697
+ - - -3.501529
+ - 0.71184
+ - 0.358312
+ - - -2.862405
+ - -0.003176
+ - -1.125702
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Diethylhydroxylamine.yml b/input/reference_sets/main/Diethylhydroxylamine.yml
index cd7ecd4e20..ad8ec89ce5 100644
--- a/input/reference_sets/main/Diethylhydroxylamine.yml
+++ b/input/reference_sets/main/Diethylhydroxylamine.yml
@@ -123,7 +123,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -29.634102866638173
+ value: -29.63410286663817
class: ThermoData
xyz_dict:
coords:
@@ -216,69 +216,1356 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.33673179251012
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.317543
+ - -0.377329
+ - - 4.0e-06
+ - 0.002004
+ - 0.233842
+ - - -1.207178
+ - -0.662974
+ - -0.251319
+ - - -2.467317
+ - -0.038377
+ - 0.317663
+ - - 1.2072
+ - -0.662936
+ - -0.251336
+ - - 2.467328
+ - -0.0383
+ - 0.31763
+ - - -2.5e-05
+ - 1.907833
+ - 0.383887
+ - - -1.1288
+ - -1.70408
+ - 0.06752
+ - - -1.233558
+ - -0.649647
+ - -1.349948
+ - - -3.346791
+ - -0.590595
+ - -0.015084
+ - - -2.570565
+ - 0.993066
+ - -0.014435
+ - - -2.442276
+ - -0.053342
+ - 1.407585
+ - - 1.128859
+ - -1.704045
+ - 0.067504
+ - - 1.233565
+ - -0.649609
+ - -1.349965
+ - - 3.346814
+ - -0.59049
+ - -0.015129
+ - - 2.570539
+ - 0.993146
+ - -0.014469
+ - - 2.442302
+ - -0.053266
+ - 1.407552
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.21438625955734
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.323774
+ - -0.380447
+ - - 4.0e-06
+ - 0.004413
+ - 0.22033
+ - - -1.210675
+ - -0.661641
+ - -0.25475
+ - - -2.470665
+ - -0.039626
+ - 0.321247
+ - - 1.210698
+ - -0.661603
+ - -0.254766
+ - - 2.470676
+ - -0.039549
+ - 0.321214
+ - - -2.5e-05
+ - 1.912838
+ - 0.381598
+ - - -1.12919
+ - -1.703095
+ - 0.06475
+ - - -1.247061
+ - -0.65314
+ - -1.354388
+ - - -3.351297
+ - -0.59456
+ - -0.007041
+ - - -2.579132
+ - 0.992556
+ - -0.01061
+ - - -2.440934
+ - -0.053269
+ - 1.412232
+ - - 1.129249
+ - -1.703059
+ - 0.064735
+ - - 1.247068
+ - -0.653101
+ - -1.354404
+ - - 3.35132
+ - -0.594455
+ - -0.007086
+ - - 2.579105
+ - 0.992637
+ - -0.010645
+ - - 2.44096
+ - -0.053192
+ - 1.412199
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -11.431707643567549
+ value: -11.431707643567549
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16508e-05
+ - 1.306067876
+ - -0.3899095501
+ - - 0.0002381854
+ - -0.0190152212
+ - 0.2489475453
+ - - -1.2190391643
+ - -0.687775576
+ - -0.2368630034
+ - - -2.4782868465
+ - -0.0055326895
+ - 0.303875802
+ - - 1.2194403793
+ - -0.6873129005
+ - -0.2376159467
+ - - 2.4783102481
+ - -0.0054190434
+ - 0.3042633981
+ - - -0.0034088466
+ - 1.891176707
+ - 0.390547751
+ - - -1.166048499
+ - -1.7269932465
+ - 0.1247449594
+ - - -1.242661725
+ - -0.7174094775
+ - -1.3446806539
+ - - -3.3798361992
+ - -0.5419398678
+ - -0.0255720401
+ - - -2.5307229451
+ - 1.0267171904
+ - -0.0653953727
+ - - -2.461418342
+ - 0.0133472658
+ - 1.4032892676
+ - - 1.1661306585
+ - -1.7270001266
+ - 0.1226365932
+ - - 1.2427613021
+ - -0.7156052681
+ - -1.3454962318
+ - - 3.3802744513
+ - -0.5406508937
+ - -0.025882977
+ - - 2.529719209
+ - 1.0275108326
+ - -0.0632017717
+ - - 2.4609027318
+ - 0.0116516813
+ - 1.4036925589
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.801466606723935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.339337
+ - -0.381506
+ - - 4.0e-06
+ - 0.007237
+ - 0.228966
+ - - -1.214047
+ - -0.66102
+ - -0.255401
+ - - -2.480273
+ - -0.040638
+ - 0.319917
+ - - 1.214069
+ - -0.660981
+ - -0.255417
+ - - 2.480284
+ - -0.040561
+ - 0.319884
+ - - -2.5e-05
+ - 1.916366
+ - 0.394077
+ - - -1.129497
+ - -1.706383
+ - 0.066973
+ - - -1.248078
+ - -0.655217
+ - -1.359952
+ - - -3.361048
+ - -0.604064
+ - -0.007805
+ - - -2.593799
+ - 0.993548
+ - -0.017497
+ - - -2.450134
+ - -0.049958
+ - 1.415178
+ - - 1.129556
+ - -1.706348
+ - 0.066958
+ - - 1.248085
+ - -0.655178
+ - -1.359968
+ - - 3.361072
+ - -0.603959
+ - -0.00785
+ - - 2.593773
+ - 0.993629
+ - -0.017532
+ - - 2.45016
+ - -0.049881
+ - 1.415146
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.22610345733951
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.340495
+ - -0.383397
+ - - 4.0e-06
+ - 0.007611
+ - 0.237051
+ - - -1.214755
+ - -0.662049
+ - -0.25128
+ - - -2.485062
+ - -0.04106
+ - 0.318115
+ - - 1.214778
+ - -0.662012
+ - -0.251296
+ - - 2.485073
+ - -0.040983
+ - 0.318082
+ - - -2.5e-05
+ - 1.927189
+ - 0.393636
+ - - -1.129915
+ - -1.7124
+ - 0.072455
+ - - -1.243932
+ - -0.657175
+ - -1.36135
+ - - -3.369192
+ - -0.601031
+ - -0.020999
+ - - -2.594272
+ - 0.999615
+ - -0.016511
+ - - -2.466497
+ - -0.05581
+ - 1.418107
+ - - 1.129974
+ - -1.712364
+ - 0.07244
+ - - 1.243939
+ - -0.657136
+ - -1.361366
+ - - 3.369215
+ - -0.600926
+ - -0.021044
+ - - 2.594246
+ - 0.999696
+ - -0.016545
+ - - 2.466523
+ - -0.055734
+ - 1.418074
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.01562917991579
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.310696
+ - -0.378356
+ - - 4.0e-06
+ - 0.006944
+ - 0.214657
+ - - -1.206337
+ - -0.659331
+ - -0.252983
+ - - -2.462772
+ - -0.039925
+ - 0.321171
+ - - 1.206359
+ - -0.659293
+ - -0.252999
+ - - 2.462782
+ - -0.039848
+ - 0.321137
+ - - -2.5e-05
+ - 1.908892
+ - 0.374553
+ - - -1.125174
+ - -1.699825
+ - 0.066062
+ - - -1.243295
+ - -0.650071
+ - -1.351604
+ - - -3.343005
+ - -0.592435
+ - -0.00907
+ - - -2.570821
+ - 0.992287
+ - -0.008051
+ - - -2.435192
+ - -0.056227
+ - 1.411231
+ - - 1.125233
+ - -1.69979
+ - 0.066047
+ - - 1.243302
+ - -0.650032
+ - -1.351621
+ - - 3.343029
+ - -0.59233
+ - -0.009114
+ - - 2.570795
+ - 0.992367
+ - -0.008086
+ - - 2.435218
+ - -0.05615
+ - 1.411198
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.71222896487313
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.320386
+ - -0.380358
+ - - 4.0e-06
+ - -0.001396
+ - 0.22372
+ - - -1.215836
+ - -0.667696
+ - -0.255541
+ - - -2.47687
+ - -0.035298
+ - 0.320886
+ - - 1.215859
+ - -0.667658
+ - -0.255558
+ - - 2.47688
+ - -0.03522
+ - 0.320852
+ - - -2.5e-05
+ - 1.903932
+ - 0.384933
+ - - -1.140487
+ - -1.710894
+ - 0.066204
+ - - -1.251648
+ - -0.658749
+ - -1.356766
+ - - -3.364734
+ - -0.579146
+ - -0.012289
+ - - -2.570245
+ - 1.000921
+ - -0.008043
+ - - -2.449728
+ - -0.05286
+ - 1.413586
+ - - 1.140546
+ - -1.710859
+ - 0.066189
+ - - 1.251655
+ - -0.658711
+ - -1.356783
+ - - 3.364757
+ - -0.579041
+ - -0.012335
+ - - 2.570219
+ - 1.001001
+ - -0.00808
+ - - 2.449754
+ - -0.052783
+ - 1.413552
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.4783707157849
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.9e-05
+ - 1.308444
+ - -0.375231
+ - - 1.3e-05
+ - 0.005672
+ - 0.231102
+ - - -1.204435
+ - -0.662541
+ - -0.250165
+ - - -2.463813
+ - -0.038413
+ - 0.317783
+ - - 1.204471
+ - -0.662436
+ - -0.250285
+ - - 2.463828
+ - -0.038423
+ - 0.317834
+ - - -4.4e-05
+ - 1.908046
+ - 0.377224
+ - - -1.125272
+ - -1.703664
+ - 0.069402
+ - - -1.229871
+ - -0.649609
+ - -1.349469
+ - - -3.344007
+ - -0.587312
+ - -0.01858
+ - - -2.564068
+ - 0.994936
+ - -0.011531
+ - - -2.440709
+ - -0.056718
+ - 1.408252
+ - - 1.12532
+ - -1.70364
+ - 0.069022
+ - - 1.229915
+ - -0.649231
+ - -1.349585
+ - - 3.344072
+ - -0.586959
+ - -0.018993
+ - - 2.563836
+ - 0.995135
+ - -0.010905
+ - - 2.440905
+ - -0.057359
+ - 1.408294
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.113364645445976
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.9e-05
+ - 1.308444
+ - -0.375231
+ - - 1.3e-05
+ - 0.005672
+ - 0.231102
+ - - -1.204435
+ - -0.662541
+ - -0.250165
+ - - -2.463813
+ - -0.038413
+ - 0.317783
+ - - 1.204471
+ - -0.662436
+ - -0.250285
+ - - 2.463828
+ - -0.038423
+ - 0.317834
+ - - -4.4e-05
+ - 1.908046
+ - 0.377224
+ - - -1.125272
+ - -1.703664
+ - 0.069402
+ - - -1.229871
+ - -0.649609
+ - -1.349469
+ - - -3.344007
+ - -0.587312
+ - -0.01858
+ - - -2.564068
+ - 0.994936
+ - -0.011531
+ - - -2.440709
+ - -0.056718
+ - 1.408252
+ - - 1.12532
+ - -1.70364
+ - 0.069022
+ - - 1.229915
+ - -0.649231
+ - -1.349585
+ - - 3.344072
+ - -0.586959
+ - -0.018993
+ - - 2.563836
+ - 0.995135
+ - -0.010905
+ - - 2.440905
+ - -0.057359
+ - 1.408294
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.122109224133432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.9e-05
+ - 1.308444
+ - -0.375231
+ - - 1.3e-05
+ - 0.005672
+ - 0.231102
+ - - -1.204435
+ - -0.662541
+ - -0.250165
+ - - -2.463813
+ - -0.038413
+ - 0.317783
+ - - 1.204471
+ - -0.662436
+ - -0.250285
+ - - 2.463828
+ - -0.038423
+ - 0.317834
+ - - -4.4e-05
+ - 1.908046
+ - 0.377224
+ - - -1.125272
+ - -1.703664
+ - 0.069402
+ - - -1.229871
+ - -0.649609
+ - -1.349469
+ - - -3.344007
+ - -0.587312
+ - -0.01858
+ - - -2.564068
+ - 0.994936
+ - -0.011531
+ - - -2.440709
+ - -0.056718
+ - 1.408252
+ - - 1.12532
+ - -1.70364
+ - 0.069022
+ - - 1.229915
+ - -0.649231
+ - -1.349585
+ - - 3.344072
+ - -0.586959
+ - -0.018993
+ - - 2.563836
+ - 0.995135
+ - -0.010905
+ - - 2.440905
+ - -0.057359
+ - 1.408294
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.986126962934428
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0e-05
+ - 1.312044
+ - -0.372864
+ - - 4.0e-06
+ - -0.005244
+ - 0.231098
+ - - -1.212664
+ - -0.670072
+ - -0.250853
+ - - -2.47522
+ - -0.031085
+ - 0.316381
+ - - 1.212686
+ - -0.670034
+ - -0.25087
+ - - 2.475231
+ - -0.031008
+ - 0.316347
+ - - -2.4e-05
+ - 1.896308
+ - 0.39234
+ - - -1.141769
+ - -1.714439
+ - 0.073824
+ - - -1.245975
+ - -0.667515
+ - -1.353847
+ - - -3.364307
+ - -0.564655
+ - -0.032999
+ - - -2.553348
+ - 1.009942
+ - -0.006088
+ - - -2.463836
+ - -0.055991
+ - 1.410481
+ - - 1.141828
+ - -1.714403
+ - 0.073808
+ - - 1.245981
+ - -0.667476
+ - -1.353865
+ - - 3.36433
+ - -0.56455
+ - -0.033046
+ - - 2.553321
+ - 1.010021
+ - -0.006124
+ - - 2.463862
+ - -0.055915
+ - 1.410447
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.56499692000963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0e-05
+ - 1.297285
+ - -0.345606
+ - - 4.0e-06
+ - -0.006121
+ - 0.236004
+ - - -1.205253
+ - -0.669104
+ - -0.250645
+ - - -2.461059
+ - -0.031317
+ - 0.310113
+ - - 1.205275
+ - -0.669067
+ - -0.250662
+ - - 2.461069
+ - -0.031241
+ - 0.310079
+ - - -2.4e-05
+ - 1.889941
+ - 0.411589
+ - - -1.134886
+ - -1.709659
+ - 0.071563
+ - - -1.223958
+ - -0.655889
+ - -1.349764
+ - - -3.345282
+ - -0.576142
+ - -0.021202
+ - - -2.550767
+ - 0.999606
+ - -0.029206
+ - - -2.435983
+ - -0.040306
+ - 1.400332
+ - - 1.134945
+ - -1.709624
+ - 0.071546
+ - - 1.223964
+ - -0.65585
+ - -1.349781
+ - - 3.345305
+ - -0.576038
+ - -0.021249
+ - - 2.55074
+ - 0.999685
+ - -0.029241
+ - - 2.436009
+ - -0.040231
+ - 1.400299
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.94116278464159
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.16508e-05
- - 1.306067876
- - -0.3899095501
- - - 0.0002381854
- - -0.0190152212
- - 0.2489475453
- - - -1.2190391643
- - -0.687775576
- - -0.2368630034
- - - -2.4782868465
- - -0.0055326895
- - 0.303875802
- - - 1.2194403793
- - -0.6873129005
- - -0.2376159467
- - - 2.4783102481
- - -0.0054190434
- - 0.3042633981
- - - -0.0034088466
- - 1.891176707
- - 0.390547751
- - - -1.166048499
- - -1.7269932465
- - 0.1247449594
- - - -1.242661725
- - -0.7174094775
- - -1.3446806539
- - - -3.3798361992
- - -0.5419398678
- - -0.0255720401
- - - -2.5307229451
- - 1.0267171904
- - -0.0653953727
- - - -2.461418342
- - 0.0133472658
- - 1.4032892676
- - - 1.1661306585
- - -1.7270001266
- - 0.1226365932
- - - 1.2427613021
- - -0.7156052681
- - -1.3454962318
- - - 3.3802744513
- - -0.5406508937
- - -0.025882977
- - - 2.529719209
- - 1.0275108326
- - -0.0632017717
- - - 2.4609027318
- - 0.0116516813
- - 1.4036925589
+ - - -2.0e-05
+ - 1.311301
+ - -0.36667
+ - - 4.0e-06
+ - 0.009705
+ - 0.22059
+ - - -1.20216
+ - -0.65755
+ - -0.250931
+ - - -2.460713
+ - -0.038991
+ - 0.316183
+ - - 1.202182
+ - -0.657512
+ - -0.250947
+ - - 2.460724
+ - -0.038914
+ - 0.31615
+ - - -2.4e-05
+ - 1.899777
+ - 0.392655
+ - - -1.120174
+ - -1.699587
+ - 0.071661
+ - - -1.2369
+ - -0.654652
+ - -1.352561
+ - - -3.340523
+ - -0.594041
+ - -0.016795
+ - - -2.569419
+ - 0.994092
+ - -0.017037
+ - - -2.438571
+ - -0.051923
+ - 1.408373
+ - - 1.120233
+ - -1.699552
+ - 0.071646
+ - - 1.236908
+ - -0.654613
+ - -1.352577
+ - - 3.340546
+ - -0.593936
+ - -0.016839
+ - - 2.569393
+ - 0.994172
+ - -0.017072
+ - - 2.438596
+ - -0.051847
+ - 1.408341
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.980325691168526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.335579
+ - -0.385612
+ - - 4.0e-06
+ - 0.001558
+ - 0.242967
+ - - -1.215454
+ - -0.666849
+ - -0.251906
+ - - -2.482219
+ - -0.038483
+ - 0.318251
+ - - 1.215476
+ - -0.666811
+ - -0.251923
+ - - 2.482229
+ - -0.038406
+ - 0.318217
+ - - -2.5e-05
+ - 1.9235
+ - 0.386633
+ - - -1.132284
+ - -1.71133
+ - 0.072547
+ - - -1.24052
+ - -0.656783
+ - -1.35516
+ - - -3.364647
+ - -0.589328
+ - -0.025065
+ - - -2.579204
+ - 0.999652
+ - -0.011527
+ - - -2.463965
+ - -0.059459
+ - 1.413049
+ - - 1.132343
+ - -1.711294
+ - 0.072532
+ - - 1.240528
+ - -0.656745
+ - -1.355177
+ - - 3.36467
+ - -0.589223
+ - -0.02511
+ - - 2.579178
+ - 0.999732
+ - -0.011562
+ - - 2.46399
+ - -0.059382
+ - 1.413016
isotopes:
- 16
- 14
@@ -414,6 +1701,204 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.765319301139975
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.87792e-05
+ - 1.3084436277
+ - -0.3752313951
+ - - 1.25673e-05
+ - 0.0056720559
+ - 0.2311024447
+ - - -1.2044347584
+ - -0.6625411435
+ - -0.2501645796
+ - - -2.4638129588
+ - -0.0384131539
+ - 0.3177834952
+ - - 1.2044707492
+ - -0.6624364128
+ - -0.2502854253
+ - - 2.4638280132
+ - -0.0384225598
+ - 0.3178335504
+ - - -4.39332e-05
+ - 1.9080464174
+ - 0.3772240988
+ - - -1.1252720994
+ - -1.7036644407
+ - 0.0694020133
+ - - -1.2298706155
+ - -0.649608582
+ - -1.3494693121
+ - - -3.3440074888
+ - -0.5873115057
+ - -0.0185796809
+ - - -2.5640678805
+ - 0.9949362769
+ - -0.0115314887
+ - - -2.4407092055
+ - -0.0567179481
+ - 1.4082522205
+ - - 1.1253197976
+ - -1.7036404217
+ - 0.0690221088
+ - - 1.2299148077
+ - -0.6492311355
+ - -1.3495845654
+ - - 3.3440716602
+ - -0.5869587172
+ - -0.0189925585
+ - - 2.5638363215
+ - 0.9951354337
+ - -0.0109052815
+ - - 2.4409046277
+ - -0.0573591699
+ - 1.4082942496
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.342340695717255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.1e-05
+ - 1.311768
+ - -0.362432
+ - - 4.0e-06
+ - 0.006551
+ - 0.218509
+ - - -1.205838
+ - -0.659871
+ - -0.254014
+ - - -2.464634
+ - -0.037287
+ - 0.317009
+ - - 1.20586
+ - -0.659833
+ - -0.25403
+ - - 2.464644
+ - -0.03721
+ - 0.316976
+ - - -2.5e-05
+ - 1.896748
+ - 0.396787
+ - - -1.127876
+ - -1.700475
+ - 0.068576
+ - - -1.241573
+ - -0.65403
+ - -1.353841
+ - - -3.343708
+ - -0.595013
+ - -0.009494
+ - - -2.574233
+ - 0.99314
+ - -0.020397
+ - - -2.435054
+ - -0.046259
+ - 1.40791
+ - - 1.127935
+ - -1.700439
+ - 0.06856
+ - - 1.24158
+ - -0.65399
+ - -1.353858
+ - - 3.343731
+ - -0.594908
+ - -0.009539
+ - - 2.574207
+ - 0.99322
+ - -0.02043
+ - - 2.43508
+ - -0.046184
+ - 1.407877
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Difluorine.yml b/input/reference_sets/main/Difluorine.yml
index 673eccba48..09e4ae5610 100644
--- a/input/reference_sets/main/Difluorine.yml
+++ b/input/reference_sets/main/Difluorine.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- F
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5785058988767056
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.70022
+ - - 0.0
+ - 0.0
+ - -0.70022
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1872897701642178
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.698248
+ - - 0.0
+ - 0.0
+ - -0.698248
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- F
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4323025507291904
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.704583
+ - - 0.0
+ - 0.0
+ - -0.704583
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.1227864451990017
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.70781
+ - - 0.0
+ - 0.0
+ - -0.70781
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1803646657075295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.690566
+ - - 0.0
+ - 0.0
+ - -0.690566
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.07501948494462776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.703653
+ - - 0.0
+ - 0.0
+ - -0.703653
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.17920785769661443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.690668
+ - - 0.0
+ - 0.0
+ - -0.690668
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.7714334553307033
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.690668
+ - - 0.0
+ - 0.0
+ - -0.690668
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5206580899046781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.690668
+ - - 0.0
+ - 0.0
+ - -0.690668
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5690848806900756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.693963
+ - - 0.0
+ - 0.0
+ - -0.693963
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.7726629144209081
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.681747
+ - - 0.0
+ - 0.0
+ - -0.681747
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.2505750302400769
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.687824
+ - - 0.0
+ - 0.0
+ - -0.687824
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.872921958491552
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.707544
+ - - 0.0
+ - 0.0
+ - -0.707544
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- F
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.6857342010242873
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.6906682906
+ - - 0.0
+ - 0.0
+ - -0.6906682906
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0970281630553398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.688193
+ - - 0.0
+ - 0.0
+ - -0.688193
+ isotopes:
+ - 19
+ - 19
+ symbols:
+ - F
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Difluorodichloromethane.yml b/input/reference_sets/main/Difluorodichloromethane.yml
index 48a13d0f49..96bdbc7295 100644
--- a/input/reference_sets/main/Difluorodichloromethane.yml
+++ b/input/reference_sets/main/Difluorodichloromethane.yml
@@ -12,7 +12,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -120.86317964808755
+ value: -120.86317964808747
class: ThermoData
xyz_dict:
coords:
@@ -84,6 +84,84 @@ calculated_data:
- F
- Cl
- Cl
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -116.92572238210361
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.336462
+ - - 0.0
+ - 1.077741
+ - -1.121888
+ - - -0.0
+ - -1.077741
+ - -1.121888
+ - - -1.460553
+ - -0.0
+ - 0.654739
+ - - 1.460553
+ - -0.0
+ - 0.654739
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -114.71534025997786
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.338625
+ - - 0.0
+ - 1.079119
+ - -1.123721
+ - - -0.0
+ - -1.079119
+ - -1.123722
+ - - -1.467353
+ - -0.0
+ - 0.657654
+ - - 1.467353
+ - -0.0
+ - 0.657654
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- F
- Cl
- Cl
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -111.52492346310139
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.340406
+ - - 0.0
+ - 1.086154
+ - -1.128421
+ - - -0.0
+ - -1.086153
+ - -1.128421
+ - - -1.472941
+ - -0.0
+ - 0.663245
+ - - 1.472941
+ - -0.0
+ - 0.663245
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -111.94569602376085
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.33882
+ - - 0.0
+ - 1.089131
+ - -1.130055
+ - - -0.0
+ - -1.089131
+ - -1.130056
+ - - -1.474133
+ - -0.0
+ - 0.664087
+ - - 1.474133
+ - -0.0
+ - 0.664087
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -119.5112336357672
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.335045
+ - - 0.0
+ - 1.073902
+ - -1.1182
+ - - -0.0
+ - -1.073902
+ - -1.1182
+ - - -1.457255
+ - -0.0
+ - 0.650344
+ - - 1.457255
+ - -0.0
+ - 0.650344
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -121.98129457544545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.342133
+ - - 0.0
+ - 1.080664
+ - -1.123749
+ - - -0.0
+ - -1.080664
+ - -1.123749
+ - - -1.472782
+ - -0.0
+ - 0.659436
+ - - 1.472782
+ - -0.0
+ - 0.659436
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -115.04670684001778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.335084
+ - - 0.0
+ - 1.077756
+ - -1.11981
+ - - 0.0
+ - -1.077756
+ - -1.11981
+ - - -1.45559
+ - 0.0
+ - 0.651973
+ - - 1.45559
+ - -0.0
+ - 0.651973
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -119.09965013010137
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.335084
+ - - 0.0
+ - 1.077756
+ - -1.11981
+ - - 0.0
+ - -1.077756
+ - -1.11981
+ - - -1.45559
+ - 0.0
+ - 0.651973
+ - - 1.45559
+ - -0.0
+ - 0.651973
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -120.11629997999941
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.335084
+ - - 0.0
+ - 1.077756
+ - -1.11981
+ - - 0.0
+ - -1.077756
+ - -1.11981
+ - - -1.45559
+ - 0.0
+ - 0.651973
+ - - 1.45559
+ - -0.0
+ - 0.651973
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -118.91868283753237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.350428
+ - - 0.0
+ - 1.075518
+ - -1.119586
+ - - 0.0
+ - -1.075518
+ - -1.119586
+ - - -1.4732
+ - 0.0
+ - 0.659423
+ - - 1.4732
+ - 0.0
+ - 0.659423
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -124.66215879197499
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.336689
+ - - 0.0
+ - 1.072031
+ - -1.117688
+ - - -0.0
+ - -1.07203
+ - -1.117688
+ - - -1.454896
+ - -0.0
+ - 0.650653
+ - - 1.454896
+ - -0.0
+ - 0.650653
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -120.28171480813576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.33812
+ - - 0.0
+ - 1.072857
+ - -1.11794
+ - - -0.0
+ - -1.072857
+ - -1.11794
+ - - -1.453321
+ - -0.0
+ - 0.65162
+ - - 1.453321
+ - -0.0
+ - 0.65162
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.9803331718163
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.337062
+ - - 0.0
+ - 1.086664
+ - -1.12855
+ - - -0.0
+ - -1.086663
+ - -1.12855
+ - - -1.471656
+ - -0.0
+ - 0.661701
+ - - 1.471656
+ - -0.0
+ - 0.661701
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- F
- Cl
- Cl
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -122.15473444819493
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.3350837244
+ - - 0.0
+ - 1.0777559524
+ - -1.1198104443
+ - - 7.2e-09
+ - -1.0777559524
+ - -1.1198104443
+ - - -1.4555904335
+ - 0.0
+ - 0.651973007
+ - - 1.4555904335
+ - -1.986e-07
+ - 0.651973007
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -118.49777308088554
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.340629
+ - - 0.0
+ - 1.073152
+ - -1.118995
+ - - -0.0
+ - -1.073152
+ - -1.118995
+ - - -1.458937
+ - -0.0
+ - 0.65393
+ - - 1.458937
+ - -0.0
+ - 0.65393
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 35
+ - 35
+ symbols:
+ - C
+ - F
+ - F
+ - Cl
+ - Cl
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Difluorodioxidane.yml b/input/reference_sets/main/Difluorodioxidane.yml
index 964f44fa01..525a107b02 100644
--- a/input/reference_sets/main/Difluorodioxidane.yml
+++ b/input/reference_sets/main/Difluorodioxidane.yml
@@ -45,7 +45,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 9.751648872683823
+ value: 9.75164887268381
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- O
- O
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.82646257862987
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.518739
+ - -0.128494
+ - 0.498284
+ - - 0.479403
+ - 0.365582
+ - -0.557512
+ - - -0.479403
+ - -0.365582
+ - -0.557512
+ - - -1.518739
+ - 0.128494
+ - 0.498284
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.457801950719036
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.490266
+ - -0.124722
+ - 0.487333
+ - - 0.489821
+ - 0.369503
+ - -0.54656
+ - - -0.489821
+ - -0.369503
+ - -0.54656
+ - - -1.490266
+ - 0.124722
+ - 0.487333
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- O
- O
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.246226164719894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.580321
+ - -0.131927
+ - 0.505039
+ - - 0.475634
+ - 0.357477
+ - -0.564266
+ - - -0.475634
+ - -0.357477
+ - -0.564266
+ - - -1.580321
+ - 0.131927
+ - 0.505039
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.64384172773921
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.57555
+ - -0.131215
+ - 0.503777
+ - - 0.48089
+ - 0.360646
+ - -0.563004
+ - - -0.48089
+ - -0.360646
+ - -0.563004
+ - - -1.57555
+ - 0.131215
+ - 0.503777
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.768331392258153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.439215
+ - -0.119988
+ - 0.474956
+ - - 0.500282
+ - 0.376091
+ - -0.534183
+ - - -0.500282
+ - -0.376091
+ - -0.534183
+ - - -1.439215
+ - 0.119988
+ - 0.474956
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.900930606103521
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.497728
+ - -0.125126
+ - 0.493871
+ - - 0.491107
+ - 0.369908
+ - -0.553098
+ - - -0.491107
+ - -0.369908
+ - -0.553098
+ - - -1.497728
+ - 0.125126
+ - 0.493871
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.527894936200877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.428967
+ - -0.119646
+ - 0.473805
+ - - 0.504841
+ - 0.380994
+ - -0.533032
+ - - -0.504841
+ - -0.380994
+ - -0.533032
+ - - -1.428967
+ - 0.119646
+ - 0.473805
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.785094677060293
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.428967
+ - -0.119646
+ - 0.473805
+ - - 0.504841
+ - 0.380994
+ - -0.533032
+ - - -0.504841
+ - -0.380994
+ - -0.533032
+ - - -1.428967
+ - 0.119646
+ - 0.473805
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.134697995749722
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.428967
+ - -0.119646
+ - 0.473805
+ - - 0.504841
+ - 0.380994
+ - -0.533032
+ - - -0.504841
+ - -0.380994
+ - -0.533032
+ - - -1.428967
+ - 0.119646
+ - 0.473805
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.02620903325286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.452801
+ - -0.119903
+ - 0.484982
+ - - 0.504125
+ - 0.375548
+ - -0.544209
+ - - -0.504125
+ - -0.375548
+ - -0.544209
+ - - -1.452801
+ - 0.119903
+ - 0.484982
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.999462008764167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.395944
+ - -0.11454
+ - 0.46782
+ - - 0.517292
+ - 0.383796
+ - -0.527047
+ - - -0.517292
+ - -0.383796
+ - -0.527047
+ - - -1.395944
+ - 0.11454
+ - 0.46782
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.006742925026465
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.453596
+ - -0.120631
+ - 0.475568
+ - - 0.493563
+ - 0.369409
+ - -0.534795
+ - - -0.493563
+ - -0.369409
+ - -0.534795
+ - - -1.453596
+ - 0.120631
+ - 0.475568
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.844907817675944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.563646
+ - -0.130201
+ - 0.500835
+ - - 0.483296
+ - 0.36253
+ - -0.560062
+ - - -0.483296
+ - -0.36253
+ - -0.560062
+ - - -1.563646
+ - 0.130201
+ - 0.500835
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- O
- O
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.635706802225669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4289667344
+ - -0.1196461551
+ - 0.4738050094
+ - - 0.5048410806
+ - 0.3809935519
+ - -0.5330323139
+ - - -0.5048410806
+ - -0.3809935519
+ - -0.5330323139
+ - - -1.4289667344
+ - 0.1196461551
+ - 0.4738050094
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.067372682643096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.444276
+ - -0.119877
+ - 0.473493
+ - - 0.498783
+ - 0.373442
+ - -0.532721
+ - - -0.498783
+ - -0.373442
+ - -0.532721
+ - - -1.444276
+ - 0.119877
+ - 0.473493
+ isotopes:
+ - 19
+ - 16
+ - 16
+ - 19
+ symbols:
+ - F
+ - O
+ - O
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Difluoromethylene.yml b/input/reference_sets/main/Difluoromethylene.yml
index ceba3dc0d8..ff50ea9c86 100644
--- a/input/reference_sets/main/Difluoromethylene.yml
+++ b/input/reference_sets/main/Difluoromethylene.yml
@@ -63,6 +63,64 @@ calculated_data:
- C
- F
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.10048222034483
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.595988
+ - - -1.031809
+ - 0.0
+ - -0.198521
+ - - 1.031809
+ - -0.0
+ - -0.198521
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.23300266921063
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.596896
+ - - -1.032466
+ - 0.0
+ - -0.198975
+ - - 1.032466
+ - -0.0
+ - -0.198975
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- C
- F
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.8174501426851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.603554
+ - - -1.043327
+ - 0.0
+ - -0.202304
+ - - 1.043327
+ - -0.0
+ - -0.202304
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.124731955854585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.60543
+ - - -1.044174
+ - 0.0
+ - -0.203242
+ - - 1.044174
+ - -0.0
+ - -0.203242
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.09339676457012
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.593446
+ - - -1.025925
+ - -0.0
+ - -0.19725
+ - - 1.025925
+ - -0.0
+ - -0.19725
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.60847196666518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.600008
+ - - -1.03351
+ - 0.0
+ - -0.200531
+ - - 1.03351
+ - -0.0
+ - -0.200531
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.89033156118587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.596836
+ - - -1.028955
+ - -0.0
+ - -0.198945
+ - - 1.028955
+ - 0.0
+ - -0.198945
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.45989654720509
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.596836
+ - - -1.028955
+ - -0.0
+ - -0.198945
+ - - 1.028955
+ - 0.0
+ - -0.198945
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.61581648169804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.596836
+ - - -1.028955
+ - -0.0
+ - -0.198945
+ - - 1.028955
+ - 0.0
+ - -0.198945
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.414776913130105
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.598108
+ - - -1.029511
+ - 0.0
+ - -0.199581
+ - - 1.029511
+ - 0.0
+ - -0.199581
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.62454050733809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.594292
+ - - -1.022913
+ - 0.0
+ - -0.197673
+ - - 1.022913
+ - -0.0
+ - -0.197673
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.57717695058721
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.593836
+ - - -1.026386
+ - 0.0
+ - -0.197445
+ - - 1.026386
+ - -0.0
+ - -0.197445
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.93944082040393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.605995
+ - - -1.041023
+ - 0.0
+ - -0.203525
+ - - 1.041023
+ - -0.0
+ - -0.203525
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- C
- F
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.466535217605816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5968364728
+ - - -1.0289551187
+ - -0.0
+ - -0.1989454909
+ - - 1.0289551187
+ - 0.0
+ - -0.1989454909
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.44709866983482
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.593593
+ - - -1.026904
+ - 0.0
+ - -0.197324
+ - - 1.026904
+ - -0.0
+ - -0.197324
+ isotopes:
+ - 12
+ - 19
+ - 19
+ symbols:
+ - C
+ - F
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Difluorophosgene.yml b/input/reference_sets/main/Difluorophosgene.yml
index 17ad5c9f38..33e6e47b95 100644
--- a/input/reference_sets/main/Difluorophosgene.yml
+++ b/input/reference_sets/main/Difluorophosgene.yml
@@ -73,6 +73,74 @@ calculated_data:
- F
- F
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -142.91141555121607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.143809
+ - -0.0
+ - -0.0
+ - - -0.633399
+ - 1.062962
+ - 0.0
+ - - -0.633405
+ - -1.062959
+ - 0.0
+ - - 1.316666
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -140.77585336755945
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.144774
+ - -0.0
+ - 0.0
+ - - -0.633134
+ - 1.06489
+ - -0.0
+ - - -0.633139
+ - -1.064887
+ - 0.0
+ - - 1.31517
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- F
- F
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -137.45409458075818
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.146818
+ - -0.0
+ - 0.0
+ - - -0.638673
+ - 1.072059
+ - -0.0
+ - - -0.638678
+ - -1.072056
+ - 0.0
+ - - 1.324205
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -138.3039458618016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.147388
+ - -0.0
+ - -0.0
+ - - -0.641444
+ - 1.074684
+ - 0.0
+ - - -0.641449
+ - -1.074681
+ - 0.0
+ - - 1.329175
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.68786706748824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.143175
+ - -0.0
+ - 0.0
+ - - -0.62951
+ - 1.059451
+ - -0.0
+ - - -0.629515
+ - -1.059448
+ - 0.0
+ - - 1.309521
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -147.2604264598598
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.145507
+ - -0.0
+ - 0.0
+ - - -0.633973
+ - 1.066146
+ - -0.0
+ - - -0.633978
+ - -1.066143
+ - 0.0
+ - - 1.316114
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -141.1932286040766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.143355
+ - -0.0
+ - -0.0
+ - - -0.631326
+ - 1.06217
+ - -0.0
+ - - -0.631331
+ - -1.062167
+ - 0.0
+ - - 1.312974
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -143.86934952092045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.143355
+ - -0.0
+ - -0.0
+ - - -0.631326
+ - 1.06217
+ - -0.0
+ - - -0.631331
+ - -1.062167
+ - 0.0
+ - - 1.312974
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.67133983484243
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.143355
+ - -0.0
+ - -0.0
+ - - -0.631326
+ - 1.06217
+ - -0.0
+ - - -0.631331
+ - -1.062167
+ - 0.0
+ - - 1.312974
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.24904187662838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.141068
+ - 0.0
+ - 0.0
+ - - -0.631615
+ - 1.060558
+ - 0.0
+ - - -0.63162
+ - -1.060554
+ - 0.0
+ - - 1.315838
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -150.73281675280137
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.14182
+ - -0.0
+ - -0.0
+ - - -0.628174
+ - 1.057676
+ - 0.0
+ - - -0.62818
+ - -1.057673
+ - 0.0
+ - - 1.308205
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -144.16218760357813
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.141687
+ - -0.0
+ - -0.0
+ - - -0.629227
+ - 1.058027
+ - -0.0
+ - - -0.629233
+ - -1.058024
+ - 0.0
+ - - 1.310444
+ - -3.0e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -133.01534802728295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.147514
+ - -0.0
+ - 0.0
+ - - -0.640262
+ - 1.071674
+ - -0.0
+ - - -0.640267
+ - -1.07167
+ - 0.0
+ - - 1.326686
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- F
- F
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -147.414287796714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.1433546678
+ - -3.322e-07
+ - -0.0
+ - - -0.6313260792
+ - 1.0621701987
+ - -0.0
+ - - -0.6313314482
+ - -1.0621671324
+ - 0.0
+ - - 1.3129737176
+ - -3.2005e-06
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.35447868532464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.14146
+ - -0.0
+ - 0.0
+ - - -0.628715
+ - 1.058647
+ - -0.0
+ - - -0.62872
+ - -1.058644
+ - 0.0
+ - - 1.309647
+ - -3.0e-06
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 16
+ symbols:
+ - C
+ - F
+ - F
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dihydro-2-(3H)-thiophenone.yml b/input/reference_sets/main/Dihydro-2-(3H)-thiophenone.yml
index 0407250ced..7d6c34f7b8 100644
--- a/input/reference_sets/main/Dihydro-2-(3H)-thiophenone.yml
+++ b/input/reference_sets/main/Dihydro-2-(3H)-thiophenone.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.55960198106842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.199114
+ - 0.178461
+ - -0.058152
+ - - 0.999588
+ - 0.186077
+ - 0.020715
+ - - 0.114751
+ - 1.413306
+ - 0.191013
+ - - -1.281332
+ - 1.055077
+ - -0.293156
+ - - -1.567845
+ - -0.36887
+ - 0.189979
+ - - -0.01393
+ - -1.294179
+ - -0.035211
+ - - 0.111173
+ - 1.652079
+ - 1.259136
+ - - 0.571037
+ - 2.249574
+ - -0.335545
+ - - -2.037349
+ - 1.748271
+ - 0.076433
+ - - -1.3085
+ - 1.076602
+ - -1.383707
+ - - -2.35454
+ - -0.853991
+ - -0.383348
+ - - -1.843048
+ - -0.38597
+ - 1.244583
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.795368671479768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.200471
+ - 0.177853
+ - -0.046735
+ - - 1.004581
+ - 0.185407
+ - 0.025155
+ - - 0.118123
+ - 1.413885
+ - 0.186002
+ - - -1.283158
+ - 1.055766
+ - -0.288024
+ - - -1.57064
+ - -0.371975
+ - 0.18676
+ - - -0.010736
+ - -1.298457
+ - -0.029399
+ - - 0.12214
+ - 1.665549
+ - 1.251911
+ - - 0.571617
+ - 2.246121
+ - -0.350541
+ - - -2.036205
+ - 1.747962
+ - 0.091268
+ - - -1.320335
+ - 1.086209
+ - -1.378668
+ - - -2.352902
+ - -0.855561
+ - -0.394547
+ - - -1.853835
+ - -0.396323
+ - 1.239557
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -4.98092479229961
+ value: -4.98092479229961
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.2252847155
+ - 0.1615881013
+ - -0.0621942275
+ - - 1.0176421619
+ - 0.1805510331
+ - 0.0185669581
+ - - 0.1311366339
+ - 1.4240808123
+ - 0.2040896183
+ - - -1.2742590366
+ - 1.0858999733
+ - -0.3030691771
+ - - -1.5931180867
+ - -0.3426511363
+ - 0.1843520807
+ - - -0.0392730406
+ - -1.3144925634
+ - -0.0385012407
+ - - 0.1137387325
+ - 1.6446305838
+ - 1.2851675839
+ - - 0.6026610372
+ - 2.2737965116
+ - -0.3061822171
+ - - -2.0313628777
+ - 1.7962210191
+ - 0.0588108615
+ - - -1.2827305955
+ - 1.1020701213
+ - -1.4025063333
+ - - -2.3972120129
+ - -0.8140954746
+ - -0.3942088153
+ - - -1.8674133936
+ - -0.350730651
+ - 1.2488557116
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.91650296705058
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.213586
+ - 0.176246
+ - -0.046833
+ - - 1.011047
+ - 0.184439
+ - 0.023834
+ - - 0.118331
+ - 1.415849
+ - 0.186349
+ - - -1.284825
+ - 1.057211
+ - -0.290015
+ - - -1.573396
+ - -0.373524
+ - 0.187032
+ - - -0.013144
+ - -1.304037
+ - -0.031311
+ - - 0.121086
+ - 1.666239
+ - 1.257081
+ - - 0.572996
+ - 2.25307
+ - -0.350004
+ - - -2.042176
+ - 1.75122
+ - 0.090274
+ - - -1.31998
+ - 1.086144
+ - -1.385024
+ - - -2.360808
+ - -0.859186
+ - -0.394222
+ - - -1.853597
+ - -0.397233
+ - 1.245578
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.96271770110236
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.221712
+ - 0.174126
+ - -0.040008
+ - - 1.014216
+ - 0.184141
+ - 0.026487
+ - - 0.120658
+ - 1.417278
+ - 0.184398
+ - - -1.286349
+ - 1.057569
+ - -0.287552
+ - - -1.575657
+ - -0.376671
+ - 0.186147
+ - - -0.012449
+ - -1.308123
+ - -0.031771
+ - - 0.129326
+ - 1.678721
+ - 1.2578
+ - - 0.577864
+ - 2.254942
+ - -0.359818
+ - - -2.046281
+ - 1.754077
+ - 0.097712
+ - - -1.327769
+ - 1.091446
+ - -1.387296
+ - - -2.364317
+ - -0.863975
+ - -0.401479
+ - - -1.861832
+ - -0.407092
+ - 1.248119
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.625270799681715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.187487
+ - 0.175204
+ - -0.04341
+ - - 0.995412
+ - 0.184789
+ - 0.026654
+ - - 0.116916
+ - 1.411826
+ - 0.184852
+ - - -1.281233
+ - 1.054025
+ - -0.286031
+ - - -1.562967
+ - -0.371093
+ - 0.185637
+ - - -0.011219
+ - -1.287152
+ - -0.029923
+ - - 0.123079
+ - 1.665783
+ - 1.249116
+ - - 0.571972
+ - 2.24115
+ - -0.353237
+ - - -2.034121
+ - 1.744462
+ - 0.093995
+ - - -1.320818
+ - 1.086404
+ - -1.375867
+ - - -2.345198
+ - -0.853448
+ - -0.395582
+ - - -1.850189
+ - -0.395514
+ - 1.236536
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.17874387291573
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.208594
+ - 0.175091
+ - -0.050628
+ - - 1.013762
+ - 0.188935
+ - 0.02431
+ - - 0.12056
+ - 1.41795
+ - 0.186741
+ - - -1.28505
+ - 1.056388
+ - -0.287787
+ - - -1.576277
+ - -0.376068
+ - 0.187711
+ - - -0.009138
+ - -1.308561
+ - -0.024944
+ - - 0.125929
+ - 1.6706
+ - 1.25425
+ - - 0.573042
+ - 2.252709
+ - -0.350715
+ - - -2.039251
+ - 1.750823
+ - 0.09084
+ - - -1.32202
+ - 1.08785
+ - -1.380204
+ - - -2.358418
+ - -0.858275
+ - -0.398094
+ - - -1.862614
+ - -0.401005
+ - 1.24126
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.27638725387862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.187715
+ - 0.174982
+ - -0.054607
+ - - 0.992977
+ - 0.186072
+ - 0.021117
+ - - 0.113522
+ - 1.413673
+ - 0.191298
+ - - -1.280931
+ - 1.054221
+ - -0.294237
+ - - -1.561928
+ - -0.368044
+ - 0.190675
+ - - -0.014755
+ - -1.287395
+ - -0.04365
+ - - 0.109811
+ - 1.649262
+ - 1.26047
+ - - 0.572404
+ - 2.249814
+ - -0.332974
+ - - -2.03822
+ - 1.747441
+ - 0.07202
+ - - -1.30576
+ - 1.072552
+ - -1.385462
+ - - -2.352273
+ - -0.852121
+ - -0.378405
+ - - -1.833441
+ - -0.384021
+ - 1.246496
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.254338924042244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.187715
+ - 0.174982
+ - -0.054607
+ - - 0.992977
+ - 0.186072
+ - 0.021117
+ - - 0.113522
+ - 1.413673
+ - 0.191298
+ - - -1.280931
+ - 1.054221
+ - -0.294237
+ - - -1.561928
+ - -0.368044
+ - 0.190675
+ - - -0.014755
+ - -1.287395
+ - -0.04365
+ - - 0.109811
+ - 1.649262
+ - 1.26047
+ - - 0.572404
+ - 2.249814
+ - -0.332974
+ - - -2.03822
+ - 1.747441
+ - 0.07202
+ - - -1.30576
+ - 1.072552
+ - -1.385462
+ - - -2.352273
+ - -0.852121
+ - -0.378405
+ - - -1.833441
+ - -0.384021
+ - 1.246496
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.45661638075342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.187715
+ - 0.174982
+ - -0.054607
+ - - 0.992977
+ - 0.186072
+ - 0.021117
+ - - 0.113522
+ - 1.413673
+ - 0.191298
+ - - -1.280931
+ - 1.054221
+ - -0.294237
+ - - -1.561928
+ - -0.368044
+ - 0.190675
+ - - -0.014755
+ - -1.287395
+ - -0.04365
+ - - 0.109811
+ - 1.649262
+ - 1.26047
+ - - 0.572404
+ - 2.249814
+ - -0.332974
+ - - -2.03822
+ - 1.747441
+ - 0.07202
+ - - -1.30576
+ - 1.072552
+ - -1.385462
+ - - -2.352273
+ - -0.852121
+ - -0.378405
+ - - -1.833441
+ - -0.384021
+ - 1.246496
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.599494017992576
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.2252847155
- - 0.1615881013
- - -0.0621942275
- - - 1.0176421619
- - 0.1805510331
- - 0.0185669581
- - - 0.1311366339
- - 1.4240808123
- - 0.2040896183
- - - -1.2742590366
- - 1.0858999733
- - -0.3030691771
- - - -1.5931180867
- - -0.3426511363
- - 0.1843520807
- - - -0.0392730406
- - -1.3144925634
- - -0.0385012407
- - - 0.1137387325
- - 1.6446305838
- - 1.2851675839
- - - 0.6026610372
- - 2.2737965116
- - -0.3061822171
- - - -2.0313628777
- - 1.7962210191
- - 0.0588108615
- - - -1.2827305955
- - 1.1020701213
- - -1.4025063333
- - - -2.3972120129
- - -0.8140954746
- - -0.3942088153
- - - -1.8674133936
- - -0.350730651
- - 1.2488557116
+ - - 2.209447
+ - 0.175963
+ - -0.054802
+ - - 1.014947
+ - 0.186894
+ - 0.023626
+ - - 0.121365
+ - 1.417309
+ - 0.186965
+ - - -1.284331
+ - 1.056821
+ - -0.288394
+ - - -1.575459
+ - -0.376035
+ - 0.187675
+ - - -0.010452
+ - -1.307832
+ - -0.020829
+ - - 0.124825
+ - 1.670562
+ - 1.255642
+ - - 0.573954
+ - 2.254544
+ - -0.349052
+ - - -2.039204
+ - 1.751683
+ - 0.091245
+ - - -1.322619
+ - 1.088465
+ - -1.382132
+ - - -2.357449
+ - -0.860611
+ - -0.398757
+ - - -1.865904
+ - -0.401326
+ - 1.241553
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.23088427453095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.184359
+ - 0.177502
+ - -0.060159
+ - - 0.993842
+ - 0.186378
+ - 0.01908
+ - - 0.113006
+ - 1.414471
+ - 0.191703
+ - - -1.280193
+ - 1.054997
+ - -0.295748
+ - - -1.562247
+ - -0.367371
+ - 0.19095
+ - - -0.015464
+ - -1.289755
+ - -0.03833
+ - - 0.107456
+ - 1.64344
+ - 1.262028
+ - - 0.573872
+ - 2.251517
+ - -0.32912
+ - - -2.038144
+ - 1.747288
+ - 0.070361
+ - - -1.303321
+ - 1.071762
+ - -1.38654
+ - - -2.351353
+ - -0.853045
+ - -0.378257
+ - - -1.832691
+ - -0.380748
+ - 1.246771
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.24574057997781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.188972
+ - 0.175386
+ - -0.046953
+ - - 0.995323
+ - 0.186082
+ - 0.023903
+ - - 0.11452
+ - 1.410273
+ - 0.18582
+ - - -1.279619
+ - 1.053116
+ - -0.28821
+ - - -1.562149
+ - -0.36838
+ - 0.187132
+ - - -0.015598
+ - -1.283412
+ - -0.03366
+ - - 0.119469
+ - 1.658611
+ - 1.254074
+ - - 0.571677
+ - 2.24494
+ - -0.34673
+ - - -2.036279
+ - 1.745849
+ - 0.087023
+ - - -1.314613
+ - 1.080545
+ - -1.380586
+ - - -2.348046
+ - -0.853868
+ - -0.391261
+ - - -1.844536
+ - -0.392703
+ - 1.242189
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.456387599652128
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.214706
+ - 0.175478
+ - -0.051271
+ - - 1.009292
+ - 0.184273
+ - 0.023097
+ - - 0.119068
+ - 1.417695
+ - 0.189019
+ - - -1.284871
+ - 1.057846
+ - -0.291406
+ - - -1.575345
+ - -0.373423
+ - 0.189381
+ - - -0.013662
+ - -1.303874
+ - -0.033081
+ - - 0.119894
+ - 1.667431
+ - 1.259514
+ - - 0.574528
+ - 2.254462
+ - -0.347096
+ - - -2.04266
+ - 1.752661
+ - 0.086345
+ - - -1.317475
+ - 1.08333
+ - -1.38612
+ - - -2.360221
+ - -0.86052
+ - -0.39314
+ - - -1.854134
+ - -0.398922
+ - 1.247498
isotopes:
- 16
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.50149327139863
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1877153745
+ - 0.1749820436
+ - -0.0546073098
+ - - 0.9929767883
+ - 0.1860723538
+ - 0.0211174499
+ - - 0.1135221898
+ - 1.4136732177
+ - 0.1912978418
+ - - -1.2809311542
+ - 1.0542210231
+ - -0.2942368653
+ - - -1.561927942
+ - -0.3680439549
+ - 0.1906747741
+ - - -0.0147551795
+ - -1.2873949691
+ - -0.0436503124
+ - - 0.1098106282
+ - 1.6492620525
+ - 1.2604703303
+ - - 0.5724044904
+ - 2.2498144393
+ - -0.3329741583
+ - - -2.0382202907
+ - 1.747440841
+ - 0.0720198898
+ - - -1.3057599907
+ - 1.0725520141
+ - -1.3854623768
+ - - -2.3522729063
+ - -0.85212064
+ - -0.3784049596
+ - - -1.8334413466
+ - -0.3840213875
+ - 1.2464955479
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.179404506847185
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.189749
+ - 0.173054
+ - -0.043169
+ - - 0.997497
+ - 0.184194
+ - 0.026105
+ - - 0.116623
+ - 1.413391
+ - 0.185175
+ - - -1.2815
+ - 1.054694
+ - -0.288063
+ - - -1.563086
+ - -0.37165
+ - 0.186169
+ - - -0.012711
+ - -1.288719
+ - -0.031106
+ - - 0.120968
+ - 1.664336
+ - 1.250872
+ - - 0.570911
+ - 2.244285
+ - -0.352215
+ - - -2.03507
+ - 1.744385
+ - 0.093393
+ - - -1.320248
+ - 1.086648
+ - -1.378665
+ - - -2.346679
+ - -0.85411
+ - -0.39462
+ - - -1.847334
+ - -0.394071
+ - 1.238863
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dihydro-3-(2H)-thiophenone.yml b/input/reference_sets/main/Dihydro-3-(2H)-thiophenone.yml
index a8d3663cbf..ae2785a14c 100644
--- a/input/reference_sets/main/Dihydro-3-(2H)-thiophenone.yml
+++ b/input/reference_sets/main/Dihydro-3-(2H)-thiophenone.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.129896594503826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.358368
+ - -0.276022
+ - -0.003094
+ - - 1.167928
+ - -0.08159
+ - 0.000364
+ - - 0.141751
+ - -1.199346
+ - -0.193053
+ - - -1.494089
+ - -0.498443
+ - 0.153307
+ - - -0.926057
+ - 1.179112
+ - -0.307735
+ - - 0.50774
+ - 1.275675
+ - 0.19023
+ - - 0.217156
+ - -1.560285
+ - -1.22132
+ - - 0.364057
+ - -2.026581
+ - 0.477562
+ - - -0.981702
+ - 1.302686
+ - -1.3897
+ - - -1.591913
+ - 1.901073
+ - 0.158473
+ - - 0.520705
+ - 1.482294
+ - 1.263848
+ - - 1.09936
+ - 2.043061
+ - -0.307804
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.35916340353463
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.356019
+ - -0.275158
+ - -0.00697
+ - - 1.169153
+ - -0.083404
+ - -0.00283
+ - - 0.144909
+ - -1.204452
+ - -0.191967
+ - - -1.501846
+ - -0.504041
+ - 0.126373
+ - - -0.929193
+ - 1.185767
+ - -0.306845
+ - - 0.507345
+ - 1.27428
+ - 0.186468
+ - - 0.23369
+ - -1.582261
+ - -1.213639
+ - - 0.36082
+ - -2.022393
+ - 0.492867
+ - - -0.990218
+ - 1.329259
+ - -1.386416
+ - - -1.593104
+ - 1.899536
+ - 0.175108
+ - - 0.526616
+ - 1.482137
+ - 1.260669
+ - - 1.099114
+ - 2.042364
+ - -0.31174
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 5.839473100987926
+ value: 5.839473100987926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3855785424
+ - -0.2870299156
+ - -0.0367075117
+ - - 1.1877325781
+ - -0.0872982377
+ - 0.0172156865
+ - - 0.1418640315
+ - -1.2199416623
+ - -0.122369494
+ - - -1.5268847172
+ - -0.4950761972
+ - 0.1270583226
+ - - -0.9116963171
+ - 1.2072305093
+ - -0.3064249858
+ - - 0.5218259875
+ - 1.280123189
+ - 0.2298013414
+ - - 0.2499047482
+ - -1.6725277111
+ - -1.1210235358
+ - - 0.3431232909
+ - -1.9989168747
+ - 0.6257439442
+ - - -0.9365570558
+ - 1.3458738822
+ - -1.3968349136
+ - - -1.5844869255
+ - 1.9370812577
+ - 0.1597657619
+ - - 0.5050853783
+ - 1.4574747428
+ - 1.3183405713
+ - - 1.1301000194
+ - 2.0677903931
+ - -0.2346001844
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.187686614955107
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.367819
+ - -0.279393
+ - -0.007579
+ - - 1.175238
+ - -0.08391
+ - -0.003131
+ - - 0.142626
+ - -1.207449
+ - -0.191498
+ - - -1.5062
+ - -0.50655
+ - 0.126015
+ - - -0.931494
+ - 1.188264
+ - -0.307306
+ - - 0.507689
+ - 1.277991
+ - 0.186111
+ - - 0.233668
+ - -1.588693
+ - -1.217171
+ - - 0.35857
+ - -2.028848
+ - 0.496505
+ - - -0.992388
+ - 1.332653
+ - -1.391516
+ - - -1.600164
+ - 1.902187
+ - 0.177911
+ - - 0.526988
+ - 1.484551
+ - 1.265123
+ - - 1.100951
+ - 2.050832
+ - -0.312387
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.268486392406523
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.372515
+ - -0.280974
+ - -0.00592
+ - - 1.174919
+ - -0.085333
+ - -0.00341
+ - - 0.143651
+ - -1.211385
+ - -0.192404
+ - - -1.509275
+ - -0.508711
+ - 0.11784
+ - - -0.933996
+ - 1.191935
+ - -0.307849
+ - - 0.507468
+ - 1.27881
+ - 0.184543
+ - - 0.240386
+ - -1.60225
+ - -1.219355
+ - - 0.358195
+ - -2.033154
+ - 0.503779
+ - - -1.000998
+ - 1.346595
+ - -1.395244
+ - - -1.606741
+ - 1.903346
+ - 0.186677
+ - - 0.530573
+ - 1.489323
+ - 1.268086
+ - - 1.106605
+ - 2.053431
+ - -0.315665
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.250660582793575
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.346227
+ - -0.273527
+ - -0.007245
+ - - 1.163356
+ - -0.082653
+ - -0.002594
+ - - 0.142984
+ - -1.198376
+ - -0.191656
+ - - -1.492049
+ - -0.498913
+ - 0.123779
+ - - -0.92682
+ - 1.17885
+ - -0.305486
+ - - 0.506429
+ - 1.27073
+ - 0.186192
+ - - 0.234682
+ - -1.576381
+ - -1.211724
+ - - 0.360322
+ - -2.015594
+ - 0.492313
+ - - -0.987725
+ - 1.326157
+ - -1.383799
+ - - -1.588989
+ - 1.894373
+ - 0.175107
+ - - 0.527173
+ - 1.479705
+ - 1.259049
+ - - 1.097713
+ - 2.037264
+ - -0.312857
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.56711843292995
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.36218
+ - -0.273716
+ - -0.020992
+ - - 1.174456
+ - -0.084147
+ - -0.008824
+ - - 0.14709
+ - -1.212238
+ - -0.192141
+ - - -1.511291
+ - -0.509165
+ - 0.111098
+ - - -0.931958
+ - 1.193695
+ - -0.308692
+ - - 0.507665
+ - 1.276824
+ - 0.188739
+ - - 0.240047
+ - -1.605558
+ - -1.208801
+ - - 0.358562
+ - -2.020558
+ - 0.508081
+ - - -0.993835
+ - 1.345441
+ - -1.388405
+ - - -1.598081
+ - 1.902289
+ - 0.18141
+ - - 0.526365
+ - 1.480878
+ - 1.265418
+ - - 1.102103
+ - 2.04789
+ - -0.305814
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.86038525390739
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.349802
+ - -0.278941
+ - 0.025786
+ - - 1.164741
+ - -0.083058
+ - 0.010277
+ - - 0.140106
+ - -1.194634
+ - -0.196712
+ - - -1.484624
+ - -0.495832
+ - 0.168036
+ - - -0.926175
+ - 1.171889
+ - -0.304936
+ - - 0.508815
+ - 1.275489
+ - 0.186946
+ - - 0.211105
+ - -1.53714
+ - -1.231737
+ - - 0.367431
+ - -2.033242
+ - 0.457498
+ - - -0.985715
+ - 1.288755
+ - -1.387699
+ - - -1.590372
+ - 1.897931
+ - 0.157296
+ - - 0.527413
+ - 1.495025
+ - 1.258191
+ - - 1.100776
+ - 2.03539
+ - -0.321868
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.57619036233514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.349802
+ - -0.278941
+ - 0.025786
+ - - 1.164741
+ - -0.083058
+ - 0.010277
+ - - 0.140106
+ - -1.194634
+ - -0.196712
+ - - -1.484624
+ - -0.495832
+ - 0.168036
+ - - -0.926175
+ - 1.171889
+ - -0.304936
+ - - 0.508815
+ - 1.275489
+ - 0.186946
+ - - 0.211105
+ - -1.53714
+ - -1.231737
+ - - 0.367431
+ - -2.033242
+ - 0.457498
+ - - -0.985715
+ - 1.288755
+ - -1.387699
+ - - -1.590372
+ - 1.897931
+ - 0.157296
+ - - 0.527413
+ - 1.495025
+ - 1.258191
+ - - 1.100776
+ - 2.03539
+ - -0.321868
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.013400955572386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.349802
+ - -0.278941
+ - 0.025786
+ - - 1.164741
+ - -0.083058
+ - 0.010277
+ - - 0.140106
+ - -1.194634
+ - -0.196712
+ - - -1.484624
+ - -0.495832
+ - 0.168036
+ - - -0.926175
+ - 1.171889
+ - -0.304936
+ - - 0.508815
+ - 1.275489
+ - 0.186946
+ - - 0.211105
+ - -1.53714
+ - -1.231737
+ - - 0.367431
+ - -2.033242
+ - 0.457498
+ - - -0.985715
+ - 1.288755
+ - -1.387699
+ - - -1.590372
+ - 1.897931
+ - 0.157296
+ - - 0.527413
+ - 1.495025
+ - 1.258191
+ - - 1.100776
+ - 2.03539
+ - -0.321868
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.903704222285015
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.3855785424
- - -0.2870299156
- - -0.0367075117
- - - 1.1877325781
- - -0.0872982377
- - 0.0172156865
- - - 0.1418640315
- - -1.2199416623
- - -0.122369494
- - - -1.5268847172
- - -0.4950761972
- - 0.1270583226
- - - -0.9116963171
- - 1.2072305093
- - -0.3064249858
- - - 0.5218259875
- - 1.280123189
- - 0.2298013414
- - - 0.2499047482
- - -1.6725277111
- - -1.1210235358
- - - 0.3431232909
- - -1.9989168747
- - 0.6257439442
- - - -0.9365570558
- - 1.3458738822
- - -1.3968349136
- - - -1.5844869255
- - 1.9370812577
- - 0.1597657619
- - - 0.5050853783
- - 1.4574747428
- - 1.3183405713
- - - 1.1301000194
- - 2.0677903931
- - -0.2346001844
+ - - 2.362776
+ - -0.267903
+ - -0.064814
+ - - 1.175827
+ - -0.082185
+ - -0.022975
+ - - 0.146935
+ - -1.214917
+ - -0.185976
+ - - -1.511932
+ - -0.507415
+ - 0.086779
+ - - -0.930421
+ - 1.197307
+ - -0.311888
+ - - 0.506995
+ - 1.275761
+ - 0.19335
+ - - 0.24962
+ - -1.637785
+ - -1.19093
+ - - 0.35165
+ - -2.008233
+ - 0.535659
+ - - -0.987582
+ - 1.364108
+ - -1.391097
+ - - -1.599815
+ - 1.901612
+ - 0.182856
+ - - 0.517845
+ - 1.462615
+ - 1.274746
+ - - 1.101405
+ - 2.058669
+ - -0.284633
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.904628680335996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.347676
+ - -0.275472
+ - 0.004458
+ - - 1.166102
+ - -0.081117
+ - 0.003294
+ - - 0.139659
+ - -1.196144
+ - -0.193491
+ - - -1.486221
+ - -0.495028
+ - 0.161514
+ - - -0.923834
+ - 1.174279
+ - -0.307265
+ - - 0.508871
+ - 1.27683
+ - 0.189566
+ - - 0.211714
+ - -1.547148
+ - -1.225331
+ - - 0.366273
+ - -2.027786
+ - 0.469934
+ - - -0.979737
+ - 1.290482
+ - -1.38986
+ - - -1.590315
+ - 1.89768
+ - 0.155449
+ - - 0.52138
+ - 1.483478
+ - 1.263258
+ - - 1.101735
+ - 2.04158
+ - -0.310447
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.837000829201504
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.348638
+ - -0.275018
+ - -0.004926
+ - - 1.165
+ - -0.081547
+ - -0.002074
+ - - 0.141083
+ - -1.194814
+ - -0.191085
+ - - -1.486693
+ - -0.49525
+ - 0.135211
+ - - -0.924639
+ - 1.176997
+ - -0.30673
+ - - 0.505715
+ - 1.270551
+ - 0.184814
+ - - 0.22823
+ - -1.569627
+ - -1.216072
+ - - 0.360375
+ - -2.018205
+ - 0.488824
+ - - -0.986853
+ - 1.317188
+ - -1.388656
+ - - -1.591008
+ - 1.894178
+ - 0.171068
+ - - 0.523958
+ - 1.476207
+ - 1.261036
+ - - 1.099496
+ - 2.040973
+ - -0.310331
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.935307964732956
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.369628
+ - -0.279266
+ - -0.008775
+ - - 1.173706
+ - -0.083398
+ - -0.003242
+ - - 0.144578
+ - -1.209598
+ - -0.193356
+ - - -1.50263
+ - -0.504437
+ - 0.13522
+ - - -0.930591
+ - 1.189695
+ - -0.310219
+ - - 0.509009
+ - 1.27999
+ - 0.188552
+ - - 0.227303
+ - -1.588955
+ - -1.219576
+ - - 0.359477
+ - -2.031263
+ - 0.493741
+ - - -0.992516
+ - 1.327817
+ - -1.394427
+ - - -1.60085
+ - 1.902348
+ - 0.173543
+ - - 0.522218
+ - 1.485894
+ - 1.267342
+ - - 1.103972
+ - 2.052807
+ - -0.307723
isotopes:
- 16
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.611787088038795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3498021994
+ - -0.278940515
+ - 0.025786031
+ - - 1.1647410449
+ - -0.0830582601
+ - 0.0102766945
+ - - 0.1401055428
+ - -1.1946340361
+ - -0.196711672
+ - - -1.4846236803
+ - -0.4958319436
+ - 0.168036454
+ - - -0.9261747122
+ - 1.171888756
+ - -0.3049362035
+ - - 0.5088153783
+ - 1.2754892829
+ - 0.1869458625
+ - - 0.2111051138
+ - -1.5371395529
+ - -1.2317371129
+ - - 0.3674312923
+ - -2.0332415268
+ - 0.4574979129
+ - - -0.9857147
+ - 1.2887546903
+ - -1.3876994674
+ - - -1.5903721275
+ - 1.8979313739
+ - 0.1572959543
+ - - 0.5274126711
+ - 1.4950253688
+ - 1.2581910523
+ - - 1.1007755171
+ - 2.0353904081
+ - -0.3218679398
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.522916340202713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.349335
+ - -0.274959
+ - -0.005482
+ - - 1.166495
+ - -0.082685
+ - -0.001674
+ - - 0.141852
+ - -1.199497
+ - -0.191939
+ - - -1.491471
+ - -0.499226
+ - 0.125859
+ - - -0.927064
+ - 1.178479
+ - -0.306026
+ - - 0.507219
+ - 1.272691
+ - 0.186714
+ - - 0.231903
+ - -1.574574
+ - -1.214234
+ - - 0.358381
+ - -2.018421
+ - 0.491641
+ - - -0.987151
+ - 1.323497
+ - -1.385546
+ - - -1.589894
+ - 1.894116
+ - 0.175265
+ - - 0.527424
+ - 1.481536
+ - 1.260425
+ - - 1.096276
+ - 2.040678
+ - -0.313926
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dihydrogen.yml b/input/reference_sets/main/Dihydrogen.yml
index 817c317412..242c0920c7 100644
--- a/input/reference_sets/main/Dihydrogen.yml
+++ b/input/reference_sets/main/Dihydrogen.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.981379832902674
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370376
+ - - 0.0
+ - 0.0
+ - -0.370376
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.8790645235838441
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.371989
+ - - 0.0
+ - 0.0
+ - -0.371989
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.097890670185417
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.372876
+ - - 0.0
+ - 0.0
+ - -0.372876
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.56465165299989
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.375803
+ - - 0.0
+ - 0.0
+ - -0.375803
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5084080244324133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.373209
+ - - 0.0
+ - 0.0
+ - -0.373209
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.47714421720056494
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.372087
+ - - 0.0
+ - 0.0
+ - -0.372087
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.278320724122467
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370932
+ - - 0.0
+ - 0.0
+ - -0.370932
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.007280253070032346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370932
+ - - 0.0
+ - 0.0
+ - -0.370932
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.4695215879854784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370932
+ - - 0.0
+ - 0.0
+ - -0.370932
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.2720460950634287
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.371395
+ - - 0.0
+ - 0.0
+ - -0.371395
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.024339779643227
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370078
+ - - 0.0
+ - 0.0
+ - -0.370078
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.06224997075911445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.373056
+ - - 0.0
+ - 0.0
+ - -0.373056
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.081754715743211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.371848
+ - - 0.0
+ - 0.0
+ - -0.371848
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.4520778912161064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.370931658
+ - - 0.0
+ - 0.0
+ - -0.370931658
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.20633209141183745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.372078
+ - - 0.0
+ - 0.0
+ - -0.372078
+ isotopes:
+ - 1
+ - 1
+ symbols:
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethoxymethane.yml b/input/reference_sets/main/Dimethoxymethane.yml
index 31812d920c..b08bdd76a6 100644
--- a/input/reference_sets/main/Dimethoxymethane.yml
+++ b/input/reference_sets/main/Dimethoxymethane.yml
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.99578953929395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.796556
+ - -0.569004
+ - 0.242157
+ - - -0.974322
+ - 0.164886
+ - -0.653183
+ - - 8.0e-06
+ - 0.929856
+ - 1.4e-05
+ - - 0.974326
+ - 0.164854
+ - 0.65319
+ - - 1.796549
+ - -0.569023
+ - -0.24217
+ - - -2.542069
+ - -1.080278
+ - -0.361271
+ - - -2.299251
+ - 0.10261
+ - 0.946055
+ - - -1.217732
+ - -1.301622
+ - 0.807279
+ - - -0.450706
+ - 1.551004
+ - 0.779639
+ - - 0.45073
+ - 1.551019
+ - -0.779594
+ - - 1.217715
+ - -1.301618
+ - -0.807313
+ - - 2.299254
+ - 0.102603
+ - -0.94605
+ - - 2.542055
+ - -1.080325
+ - 0.361243
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.22152442450155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.806108
+ - -0.569004
+ - 0.243688
+ - - -0.980013
+ - 0.1663
+ - -0.646542
+ - - 8.0e-06
+ - 0.930623
+ - 1.4e-05
+ - - 0.980017
+ - 0.166268
+ - 0.646549
+ - - 1.806101
+ - -0.569023
+ - -0.243702
+ - - -2.550745
+ - -1.079409
+ - -0.363998
+ - - -2.313044
+ - 0.100776
+ - 0.948718
+ - - -1.230434
+ - -1.305094
+ - 0.810334
+ - - -0.444589
+ - 1.553643
+ - 0.783627
+ - - 0.444613
+ - 1.553658
+ - -0.783582
+ - - 1.230417
+ - -1.305089
+ - -0.810368
+ - - 2.313047
+ - 0.100769
+ - -0.948713
+ - - 2.550731
+ - -1.079456
+ - 0.363971
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -69.7789642302677
+ value: -69.7789642302677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7639289391
+ - -0.5976569941
+ - 0.2455505527
+ - - -0.9869870917
+ - 0.1925130334
+ - -0.6574125399
+ - - 0.0001098473
+ - 0.9586994524
+ - -0.0005305886
+ - - 0.9878032873
+ - 0.1940399105
+ - 0.6572353339
+ - - 1.7633420044
+ - -0.5985565507
+ - -0.244872257
+ - - -2.5292477333
+ - -1.1024360011
+ - -0.3577494924
+ - - -2.2598421595
+ - 0.03302196
+ - 1.0080276921
+ - - -1.1467780366
+ - -1.3492044917
+ - 0.7640457712
+ - - -0.4415520472
+ - 1.5874451418
+ - 0.7939232999
+ - - 0.4410854409
+ - 1.5867578554
+ - -0.7959167256
+ - - 1.1453881186
+ - -1.3520754054
+ - -0.7595695802
+ - - 2.2569524475
+ - 0.0299920443
+ - -1.0105831036
+ - - 2.5303269291
+ - -1.1008400994
+ - 0.3583535445
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -70.14625673919703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.818253
+ - -0.568815
+ - 0.244815
+ - - -0.987109
+ - 0.164819
+ - -0.65419
+ - - 7.0e-06
+ - 0.928788
+ - 1.4e-05
+ - - 0.987113
+ - 0.164786
+ - 0.654196
+ - - 1.818247
+ - -0.568834
+ - -0.244828
+ - - -2.569756
+ - -1.076293
+ - -0.365218
+ - - -2.32157
+ - 0.107055
+ - 0.954499
+ - - -1.242489
+ - -1.311441
+ - 0.812133
+ - - -0.445531
+ - 1.552805
+ - 0.789672
+ - - 0.445555
+ - 1.55282
+ - -0.789627
+ - - 1.242472
+ - -1.311437
+ - -0.812167
+ - - 2.321573
+ - 0.107048
+ - -0.954494
+ - - 2.569742
+ - -1.07634
+ - 0.36519
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -72.12061856522307
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.845313
+ - -0.560393
+ - 0.255556
+ - - -0.990689
+ - 0.139457
+ - -0.653411
+ - - 7.0e-06
+ - 0.905371
+ - 1.4e-05
+ - - 0.990693
+ - 0.139424
+ - 0.653417
+ - - 1.845307
+ - -0.560412
+ - -0.25557
+ - - -2.592906
+ - -1.084032
+ - -0.353575
+ - - -2.359218
+ - 0.144982
+ - 0.935431
+ - - -1.285058
+ - -1.292382
+ - 0.860051
+ - - -0.446515
+ - 1.532207
+ - 0.793926
+ - - 0.446538
+ - 1.532223
+ - -0.79388
+ - - 1.285041
+ - -1.292376
+ - -0.860086
+ - - 2.359222
+ - 0.144974
+ - -0.935425
+ - - 2.592892
+ - -1.08408
+ - 0.353546
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.527519128423
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.812277
+ - -0.562189
+ - 0.247459
+ - - -0.975858
+ - 0.150791
+ - -0.63944
+ - - 7.0e-06
+ - 0.913131
+ - 1.4e-05
+ - - 0.975861
+ - 0.150759
+ - 0.639446
+ - - 1.81227
+ - -0.562209
+ - -0.247473
+ - - -2.554736
+ - -1.077388
+ - -0.357526
+ - - -2.321816
+ - 0.121003
+ - 0.93604
+ - - -1.248524
+ - -1.293004
+ - 0.831133
+ - - -0.444638
+ - 1.536744
+ - 0.782181
+ - - 0.444662
+ - 1.536759
+ - -0.782136
+ - - 1.248507
+ - -1.292998
+ - -0.831167
+ - - 2.321819
+ - 0.120995
+ - -0.936034
+ - - 2.554722
+ - -1.077435
+ - 0.357497
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.69514493367673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.83243
+ - -0.560419
+ - 0.261761
+ - - -0.986171
+ - 0.141563
+ - -0.641475
+ - - 7.0e-06
+ - 0.907582
+ - 1.4e-05
+ - - 0.986175
+ - 0.141531
+ - 0.641481
+ - - 1.832423
+ - -0.560438
+ - -0.261775
+ - - -2.541784
+ - -1.124644
+ - -0.343169
+ - - -2.385088
+ - 0.137879
+ - 0.90538
+ - - -1.262602
+ - -1.248421
+ - 0.894055
+ - - -0.437307
+ - 1.532774
+ - 0.788004
+ - - 0.437331
+ - 1.53279
+ - -0.787958
+ - - 1.262585
+ - -1.248414
+ - -0.894088
+ - - 2.385091
+ - 0.13787
+ - -0.905374
+ - - 2.541769
+ - -1.124691
+ - 0.343139
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.39693196291766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.781703
+ - -0.570466
+ - 0.23639
+ - - -0.966801
+ - 0.168878
+ - -0.656484
+ - - 2.0e-06
+ - 0.935084
+ - -0.0
+ - - 0.9668
+ - 0.168877
+ - 0.656487
+ - - 1.781702
+ - -0.570468
+ - -0.236392
+ - - -2.535757
+ - -1.074575
+ - -0.363015
+ - - -2.27559
+ - 0.095682
+ - 0.952272
+ - - -1.201039
+ - -1.311493
+ - 0.789943
+ - - -0.457874
+ - 1.556922
+ - 0.775821
+ - - 0.457887
+ - 1.556911
+ - -0.775824
+ - - 1.201011
+ - -1.311413
+ - -0.790024
+ - - 2.275678
+ - 0.095695
+ - -0.9522
+ - - 2.535685
+ - -1.074673
+ - 0.363021
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -79.91859379551491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.781703
+ - -0.570466
+ - 0.23639
+ - - -0.966801
+ - 0.168878
+ - -0.656484
+ - - 2.0e-06
+ - 0.935084
+ - -0.0
+ - - 0.9668
+ - 0.168877
+ - 0.656486
+ - - 1.781702
+ - -0.570468
+ - -0.236392
+ - - -2.535757
+ - -1.074575
+ - -0.363015
+ - - -2.27559
+ - 0.095682
+ - 0.952272
+ - - -1.201039
+ - -1.311493
+ - 0.789943
+ - - -0.457874
+ - 1.556922
+ - 0.775821
+ - - 0.457887
+ - 1.556911
+ - -0.775824
+ - - 1.201011
+ - -1.311413
+ - -0.790024
+ - - 2.275678
+ - 0.095695
+ - -0.9522
+ - - 2.535685
+ - -1.074673
+ - 0.363021
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -82.63736090073732
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.781703
+ - -0.570466
+ - 0.23639
+ - - -0.966801
+ - 0.168878
+ - -0.656484
+ - - 2.0e-06
+ - 0.935084
+ - -0.0
+ - - 0.9668
+ - 0.168877
+ - 0.656486
+ - - 1.781702
+ - -0.570468
+ - -0.236392
+ - - -2.535757
+ - -1.074575
+ - -0.363015
+ - - -2.27559
+ - 0.095682
+ - 0.952272
+ - - -1.201039
+ - -1.311493
+ - 0.789943
+ - - -0.457874
+ - 1.556922
+ - 0.775821
+ - - 0.457887
+ - 1.556911
+ - -0.775824
+ - - 1.201011
+ - -1.311413
+ - -0.790024
+ - - 2.275678
+ - 0.095695
+ - -0.9522
+ - - 2.535685
+ - -1.074673
+ - 0.363021
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.77704978756064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.81477
+ - -0.562481
+ - 0.252841
+ - - -0.98077
+ - 0.151268
+ - -0.643679
+ - - 7.0e-06
+ - 0.915495
+ - 1.4e-05
+ - - 0.980774
+ - 0.151235
+ - 0.643685
+ - - 1.814764
+ - -0.5625
+ - -0.252855
+ - - -2.536308
+ - -1.115528
+ - -0.352276
+ - - -2.358589
+ - 0.123246
+ - 0.920352
+ - - -1.2415
+ - -1.265417
+ - 0.868654
+ - - -0.440907
+ - 1.543688
+ - 0.787594
+ - - 0.440931
+ - 1.543704
+ - -0.787548
+ - - 1.241483
+ - -1.265411
+ - -0.868688
+ - - 2.358592
+ - 0.123237
+ - -0.920346
+ - - 2.536293
+ - -1.115575
+ - 0.352247
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.12443252295311
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.7639289391
- - -0.5976569941
- - 0.2455505527
- - - -0.9869870917
- - 0.1925130334
- - -0.6574125399
- - - 0.0001098473
- - 0.9586994524
- - -0.0005305886
- - - 0.9878032873
- - 0.1940399105
- - 0.6572353339
- - - 1.7633420044
- - -0.5985565507
- - -0.244872257
- - - -2.5292477333
- - -1.1024360011
- - -0.3577494924
- - - -2.2598421595
- - 0.03302196
- - 1.0080276921
- - - -1.1467780366
- - -1.3492044917
- - 0.7640457712
- - - -0.4415520472
- - 1.5874451418
- - 0.7939232999
- - - 0.4410854409
- - 1.5867578554
- - -0.7959167256
- - - 1.1453881186
- - -1.3520754054
- - -0.7595695802
- - - 2.2569524475
- - 0.0299920443
- - -1.0105831036
- - - 2.5303269291
- - -1.1008400994
- - 0.3583535445
+ - - -1.749402
+ - -0.578567
+ - 0.2262
+ - - -0.961622
+ - 0.192035
+ - -0.656213
+ - - 8.0e-06
+ - 0.958301
+ - 1.4e-05
+ - - 0.961627
+ - 0.192003
+ - 0.65622
+ - - 1.749395
+ - -0.578586
+ - -0.226214
+ - - -2.501923
+ - -1.084423
+ - -0.374224
+ - - -2.245512
+ - 0.062787
+ - 0.963091
+ - - -1.145587
+ - -1.31882
+ - 0.756219
+ - - -0.460206
+ - 1.580362
+ - 0.774676
+ - - 0.460231
+ - 1.580376
+ - -0.774632
+ - - 1.14557
+ - -1.318816
+ - -0.756252
+ - - 2.245515
+ - 0.06278
+ - -0.963087
+ - - 2.501909
+ - -1.084469
+ - 0.374197
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -77.08505300137762
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.80736
+ - -0.559134
+ - 0.246251
+ - - -0.973963
+ - 0.147841
+ - -0.643144
+ - - 7.0e-06
+ - 0.906263
+ - 1.4e-05
+ - - 0.973967
+ - 0.147809
+ - 0.64315
+ - - 1.807353
+ - -0.559153
+ - -0.246265
+ - - -2.550834
+ - -1.080972
+ - -0.355739
+ - - -2.320947
+ - 0.12713
+ - 0.932716
+ - - -1.244192
+ - -1.288054
+ - 0.837393
+ - - -0.446922
+ - 1.532582
+ - 0.782725
+ - - 0.446946
+ - 1.532597
+ - -0.78268
+ - - 1.244175
+ - -1.288048
+ - -0.837427
+ - - 2.32095
+ - 0.127122
+ - -0.93271
+ - - 2.55082
+ - -1.08102
+ - 0.355711
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -68.51283711184298
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.837367
+ - -0.56378
+ - 0.25663
+ - - -0.987545
+ - 0.142828
+ - -0.654815
+ - - 8.0e-06
+ - 0.912651
+ - 1.4e-05
+ - - 0.987549
+ - 0.142795
+ - 0.654821
+ - - 1.837361
+ - -0.5638
+ - -0.256644
+ - - -2.576231
+ - -1.087424
+ - -0.353051
+ - - -2.349048
+ - 0.138425
+ - 0.931675
+ - - -1.268432
+ - -1.286069
+ - 0.853894
+ - - -0.446878
+ - 1.532218
+ - 0.789462
+ - - 0.446902
+ - 1.532234
+ - -0.789416
+ - - 1.268415
+ - -1.286064
+ - -0.853928
+ - - 2.349051
+ - 0.138417
+ - -0.93167
+ - - 2.576217
+ - -1.087471
+ - 0.353022
isotopes:
- 12
- 16
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.56041666926319
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.7817025849
+ - -0.5704662138
+ - 0.2363904747
+ - - -0.9668013318
+ - 0.1688782986
+ - -0.6564843394
+ - - 2.014e-06
+ - 0.9350844152
+ - -3.781e-07
+ - - 0.9668002646
+ - 0.168876859
+ - 0.6564865016
+ - - 1.7817018891
+ - -0.570467764
+ - -0.2363920428
+ - - -2.5357574306
+ - -1.0745747422
+ - -0.3630145478
+ - - -2.2755903713
+ - 0.0956816476
+ - 0.9522718885
+ - - -1.2010393743
+ - -1.3114926693
+ - 0.7899425879
+ - - -0.4578735805
+ - 1.5569215081
+ - 0.7758209425
+ - - 0.4578865987
+ - 1.556911092
+ - -0.7758236942
+ - - 1.2010113507
+ - -1.3114128548
+ - -0.7900240814
+ - - 2.2756780317
+ - 0.0956950116
+ - -0.9521997558
+ - - 2.5356854041
+ - -1.074672878
+ - 0.3630210399
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.89351329865667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.787565
+ - -0.568303
+ - 0.236605
+ - - -0.973086
+ - 0.171912
+ - -0.644385
+ - - 8.0e-06
+ - 0.931524
+ - 1.4e-05
+ - - 0.97309
+ - 0.17188
+ - 0.644392
+ - - 1.787559
+ - -0.568322
+ - -0.236619
+ - - -2.538927
+ - -1.071632
+ - -0.369131
+ - - -2.289293
+ - 0.09163
+ - 0.955242
+ - - -1.209844
+ - -1.313488
+ - 0.790624
+ - - -0.446354
+ - 1.556642
+ - 0.782133
+ - - 0.446378
+ - 1.556657
+ - -0.782088
+ - - 1.209826
+ - -1.313483
+ - -0.790658
+ - - 2.289296
+ - 0.091623
+ - -0.955238
+ - - 2.538913
+ - -1.071679
+ - 0.369103
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl disulfide.yml b/input/reference_sets/main/Dimethyl disulfide.yml
index de9df94ec1..32e7c6fe54 100644
--- a/input/reference_sets/main/Dimethyl disulfide.yml
+++ b/input/reference_sets/main/Dimethyl disulfide.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0519300903244886
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.830897
+ - -0.805537
+ - 0.379326
+ - - 0.897905
+ - 0.490307
+ - -0.487356
+ - - -0.897898
+ - 0.490315
+ - 0.487353
+ - - -1.830909
+ - -0.805507
+ - -0.379342
+ - - 2.824634
+ - -0.818233
+ - -0.069374
+ - - 1.366059
+ - -1.77939
+ - 0.243601
+ - - 1.912072
+ - -0.570326
+ - 1.437444
+ - - -1.912081
+ - -0.570285
+ - -1.437458
+ - - -1.366085
+ - -1.779368
+ - -0.243627
+ - - -2.824646
+ - -0.818193
+ - 0.069358
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.0716450468608136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.840721
+ - -0.806388
+ - 0.380443
+ - - 0.902727
+ - 0.492897
+ - -0.485846
+ - - -0.902721
+ - 0.492905
+ - 0.485843
+ - - -1.840733
+ - -0.806358
+ - -0.380459
+ - - 2.836506
+ - -0.811785
+ - -0.06569
+ - - 1.380356
+ - -1.782164
+ - 0.23786
+ - - 1.91768
+ - -0.57574
+ - 1.440628
+ - - -1.917689
+ - -0.575698
+ - -1.440642
+ - - -1.380382
+ - -1.782141
+ - -0.237885
+ - - -2.836518
+ - -0.811744
+ - 0.065674
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.043222890006837024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.848368
+ - -0.80717
+ - 0.381504
+ - - 0.902277
+ - 0.49578
+ - -0.482923
+ - - -0.90227
+ - 0.495788
+ - 0.482919
+ - - -1.84838
+ - -0.80714
+ - -0.381521
+ - - 2.848948
+ - -0.804219
+ - -0.065221
+ - - 1.390344
+ - -1.788011
+ - 0.23161
+ - - 1.921573
+ - -0.579559
+ - 1.447264
+ - - -1.921581
+ - -0.579518
+ - -1.447279
+ - - -1.39037
+ - -1.787989
+ - -0.231636
+ - - -2.84896
+ - -0.804178
+ - 0.065205
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.269670822668723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.882514
+ - -0.805707
+ - 0.388903
+ - - 0.905119
+ - 0.471789
+ - -0.483965
+ - - -0.905113
+ - 0.471797
+ - 0.48396
+ - - -1.882526
+ - -0.805676
+ - -0.38892
+ - - 2.888287
+ - -0.767961
+ - -0.05628
+ - - 1.459804
+ - -1.806732
+ - 0.236643
+ - - 1.948599
+ - -0.574568
+ - 1.45904
+ - - -1.948608
+ - -0.574527
+ - -1.459055
+ - - -1.459831
+ - -1.806709
+ - -0.236668
+ - - -2.888298
+ - -0.76792
+ - 0.056264
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5981672355119381
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.838659
+ - -0.80238
+ - 0.381326
+ - - 0.896101
+ - 0.475103
+ - -0.483894
+ - - -0.896095
+ - 0.475112
+ - 0.48389
+ - - -1.838671
+ - -0.80235
+ - -0.381342
+ - - 2.832232
+ - -0.805802
+ - -0.06734
+ - - 1.388928
+ - -1.783827
+ - 0.250129
+ - - 1.922486
+ - -0.566274
+ - 1.438995
+ - - -1.922494
+ - -0.566232
+ - -1.439009
+ - - -1.388954
+ - -1.783805
+ - -0.250155
+ - - -2.832244
+ - -0.805761
+ - 0.067324
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.0281341334403935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.870214
+ - -0.807726
+ - 0.385854
+ - - 0.915087
+ - 0.483732
+ - -0.492334
+ - - -0.915081
+ - 0.48374
+ - 0.49233
+ - - -1.870226
+ - -0.807696
+ - -0.38587
+ - - 2.869846
+ - -0.790054
+ - -0.055499
+ - - 1.431343
+ - -1.793918
+ - 0.237746
+ - - 1.938127
+ - -0.575214
+ - 1.447529
+ - - -1.938135
+ - -0.575172
+ - -1.447543
+ - - -1.431369
+ - -1.793895
+ - -0.237772
+ - - -2.869857
+ - -0.790013
+ - 0.055483
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8016933690573125
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.806755
+ - -0.804043
+ - 0.377582
+ - - 0.895894
+ - 0.500228
+ - -0.483701
+ - - -0.895887
+ - 0.500208
+ - 0.483712
+ - - -1.806763
+ - -0.804022
+ - -0.377599
+ - - 2.795519
+ - -0.844074
+ - -0.080536
+ - - 1.319666
+ - -1.768673
+ - 0.251883
+ - - 1.905763
+ - -0.566594
+ - 1.434048
+ - - -1.905747
+ - -0.566561
+ - -1.434064
+ - - -1.319712
+ - -1.76867
+ - -0.251899
+ - - -2.79554
+ - -0.844014
+ - 0.080498
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.178588975540914
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.806755
+ - -0.804043
+ - 0.377582
+ - - 0.895894
+ - 0.500228
+ - -0.483702
+ - - -0.895887
+ - 0.500208
+ - 0.483712
+ - - -1.806763
+ - -0.804022
+ - -0.377599
+ - - 2.795519
+ - -0.844074
+ - -0.080536
+ - - 1.319666
+ - -1.768673
+ - 0.251883
+ - - 1.905763
+ - -0.566594
+ - 1.434048
+ - - -1.905747
+ - -0.566561
+ - -1.434064
+ - - -1.319712
+ - -1.76867
+ - -0.251899
+ - - -2.79554
+ - -0.844014
+ - 0.080498
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.629325877041174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.806755
+ - -0.804043
+ - 0.377582
+ - - 0.895894
+ - 0.500228
+ - -0.483702
+ - - -0.895887
+ - 0.500208
+ - 0.483712
+ - - -1.806763
+ - -0.804022
+ - -0.377599
+ - - 2.795519
+ - -0.844074
+ - -0.080536
+ - - 1.319666
+ - -1.768673
+ - 0.251883
+ - - 1.905763
+ - -0.566594
+ - 1.434048
+ - - -1.905747
+ - -0.566561
+ - -1.434064
+ - - -1.319712
+ - -1.76867
+ - -0.251899
+ - - -2.79554
+ - -0.844014
+ - 0.080498
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.991917963842571
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.868887
+ - -0.806574
+ - 0.38733
+ - - 0.908538
+ - 0.481377
+ - -0.488107
+ - - -0.908531
+ - 0.481385
+ - 0.488103
+ - - -1.868899
+ - -0.806543
+ - -0.387346
+ - - 2.86708
+ - -0.791481
+ - -0.05997
+ - - 1.427362
+ - -1.79406
+ - 0.244613
+ - - 1.942048
+ - -0.572443
+ - 1.449858
+ - - -1.942057
+ - -0.572401
+ - -1.449872
+ - - -1.427388
+ - -1.794037
+ - -0.244639
+ - - -2.867091
+ - -0.79144
+ - 0.059954
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.862030103326694
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.80729
+ - -0.804895
+ - 0.375996
+ - - 0.892019
+ - 0.494421
+ - -0.489393
+ - - -0.892013
+ - 0.494429
+ - 0.489389
+ - - -1.807302
+ - -0.804865
+ - -0.376012
+ - - 2.797608
+ - -0.840049
+ - -0.078299
+ - - 1.322468
+ - -1.770598
+ - 0.250088
+ - - 1.897999
+ - -0.562057
+ - 1.431736
+ - - -1.898008
+ - -0.562015
+ - -1.43175
+ - - -1.322494
+ - -1.770577
+ - -0.250114
+ - - -2.797621
+ - -0.840009
+ - 0.078282
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.756782761915042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.84018
+ - -0.802586
+ - 0.379998
+ - - 0.892944
+ - 0.471247
+ - -0.480528
+ - - -0.892937
+ - 0.471255
+ - 0.480524
+ - - -1.840192
+ - -0.802555
+ - -0.380014
+ - - 2.838082
+ - -0.790407
+ - -0.064933
+ - - 1.400877
+ - -1.789559
+ - 0.236893
+ - - 1.915819
+ - -0.571875
+ - 1.441799
+ - - -1.915828
+ - -0.571833
+ - -1.441813
+ - - -1.400904
+ - -1.789537
+ - -0.236919
+ - - -2.838094
+ - -0.790367
+ - 0.064917
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.74989305052778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.875899
+ - -0.807709
+ - 0.388952
+ - - 0.90138
+ - 0.470839
+ - -0.486033
+ - - -0.901374
+ - 0.470848
+ - 0.486028
+ - - -1.875911
+ - -0.807678
+ - -0.388968
+ - - 2.875029
+ - -0.775069
+ - -0.05817
+ - - 1.445567
+ - -1.800259
+ - 0.240968
+ - - 1.941293
+ - -0.570983
+ - 1.452294
+ - - -1.941302
+ - -0.570941
+ - -1.452308
+ - - -1.445594
+ - -1.800236
+ - -0.240994
+ - - -2.87504
+ - -0.775028
+ - 0.058154
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.379122592835913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8067545033
+ - -0.8040430241
+ - 0.37758167
+ - - 0.8958936689
+ - 0.5002278871
+ - -0.483701498
+ - - -0.8958874907
+ - 0.500208379
+ - 0.4837123755
+ - - -1.8067626081
+ - -0.8040224939
+ - -0.3775990024
+ - - 2.7955191369
+ - -0.8440743976
+ - -0.0805363366
+ - - 1.3196663289
+ - -1.7686734993
+ - 0.2518827714
+ - - 1.9057628145
+ - -0.5665937906
+ - 1.4340481878
+ - - -1.9057465731
+ - -0.5665612638
+ - -1.4340641578
+ - - -1.3197123078
+ - -1.7686700914
+ - -0.2518987515
+ - - -2.7955396215
+ - -0.8440141066
+ - 0.0804982402
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.070480405947594
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.824457
+ - -0.803736
+ - 0.377717
+ - - 0.897495
+ - 0.491312
+ - -0.479911
+ - - -0.897488
+ - 0.49132
+ - 0.479908
+ - - -1.824469
+ - -0.803706
+ - -0.377734
+ - - 2.818895
+ - -0.816834
+ - -0.070983
+ - - 1.359843
+ - -1.77828
+ - 0.237333
+ - - 1.909224
+ - -0.575641
+ - 1.438251
+ - - -1.909233
+ - -0.575599
+ - -1.438265
+ - - -1.359869
+ - -1.778258
+ - -0.237359
+ - - -2.818907
+ - -0.816794
+ - 0.070967
+ isotopes:
+ - 12
+ - 32
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl ester sulfurous acid.yml b/input/reference_sets/main/Dimethyl ester sulfurous acid.yml
index 438fa792c5..e32a497497 100644
--- a/input/reference_sets/main/Dimethyl ester sulfurous acid.yml
+++ b/input/reference_sets/main/Dimethyl ester sulfurous acid.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.99164143528593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.553375
+ - 1.709176
+ - -0.23381
+ - - 0.019958
+ - 0.508893
+ - 0.37054
+ - - 0.751456
+ - -0.78773
+ - -0.339569
+ - - 2.132944
+ - -0.932608
+ - 0.029568
+ - - -1.394409
+ - 0.257197
+ - -0.379071
+ - - -2.142146
+ - -0.881437
+ - 0.084841
+ - - 2.448339
+ - -1.8947
+ - -0.362539
+ - - 2.728914
+ - -0.135613
+ - -0.412371
+ - - 2.252559
+ - -0.926103
+ - 1.115222
+ - - -2.125929
+ - -0.941554
+ - 1.174436
+ - - -3.161213
+ - -0.726356
+ - -0.255532
+ - - -1.73381
+ - -1.794873
+ - -0.342611
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -98.52786516999446
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.546208
+ - 1.711891
+ - -0.237938
+ - - 0.019652
+ - 0.513998
+ - 0.373585
+ - - 0.762206
+ - -0.785491
+ - -0.32889
+ - - 2.144464
+ - -0.932996
+ - 0.028899
+ - - -1.395385
+ - 0.249825
+ - -0.378192
+ - - -2.153267
+ - -0.880826
+ - 0.084719
+ - - 2.45887
+ - -1.89293
+ - -0.373126
+ - - 2.739894
+ - -0.132711
+ - -0.411194
+ - - 2.273782
+ - -0.93603
+ - 1.114883
+ - - -2.148649
+ - -0.936441
+ - 1.176005
+ - - -3.170011
+ - -0.722845
+ - -0.265553
+ - - -1.747725
+ - -1.801152
+ - -0.334094
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -77.90879562836979
+ value: -77.90879562836979
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6035064372
+ - 1.7214035358
+ - -0.2699563192
+ - - 0.0175288018
+ - 0.5391894463
+ - 0.4001512063
+ - - 0.7502574835
+ - -0.8740239569
+ - -0.262513344
+ - - 2.1676309453
+ - -0.9425968297
+ - -0.0054817086
+ - - -1.4432849887
+ - 0.2629353416
+ - -0.3989798889
+ - - -2.1732508733
+ - -0.8955599338
+ - 0.0689708725
+ - - 2.5124926526
+ - -1.8575309179
+ - -0.5028304219
+ - - 2.6926019304
+ - -0.0738592701
+ - -0.430727483
+ - - 2.3895849616
+ - -1.0139263205
+ - 1.073648896
+ - - -2.239194835
+ - -0.9222887934
+ - 1.1697623539
+ - - -3.1823014301
+ - -0.7932387344
+ - -0.3479098985
+ - - -1.7037559973
+ - -1.8197658875
+ - -0.2937013135
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.077691475923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.535414
+ - 1.737273
+ - -0.239471
+ - - 0.020694
+ - 0.518856
+ - 0.361492
+ - - 0.779595
+ - -0.786395
+ - -0.368977
+ - - 2.157191
+ - -0.937177
+ - 0.03187
+ - - -1.41319
+ - 0.25268
+ - -0.397979
+ - - -2.163986
+ - -0.88319
+ - 0.088281
+ - - 2.481722
+ - -1.900073
+ - -0.368339
+ - - 2.770686
+ - -0.132622
+ - -0.387697
+ - - 2.256083
+ - -0.947187
+ - 1.12606
+ - - -2.128247
+ - -0.941396
+ - 1.183648
+ - - -3.193944
+ - -0.718437
+ - -0.234223
+ - - -1.77198
+ - -1.80804
+ - -0.345563
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -97.98464242995574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.52558
+ - 1.757128
+ - -0.235463
+ - - 0.021375
+ - 0.524002
+ - 0.361302
+ - - 0.785595
+ - -0.775302
+ - -0.388035
+ - - 2.159161
+ - -0.93937
+ - 0.030976
+ - - -1.416846
+ - 0.253677
+ - -0.402178
+ - - -2.164104
+ - -0.885089
+ - 0.089154
+ - - 2.479687
+ - -1.91201
+ - -0.361601
+ - - 2.79121
+ - -0.142238
+ - -0.387461
+ - - 2.247476
+ - -0.946106
+ - 1.130696
+ - - -2.123498
+ - -0.94489
+ - 1.188937
+ - - -3.200864
+ - -0.720995
+ - -0.227839
+ - - -1.774735
+ - -1.814516
+ - -0.349387
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.96887473054035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.547464
+ - 1.689778
+ - -0.230681
+ - - 0.019534
+ - 0.498603
+ - 0.373807
+ - - 0.75929
+ - -0.782192
+ - -0.319442
+ - - 2.137463
+ - -0.92746
+ - 0.026011
+ - - -1.378709
+ - 0.237811
+ - -0.37394
+ - - -2.147778
+ - -0.87665
+ - 0.084264
+ - - 2.453865
+ - -1.884241
+ - -0.379506
+ - - 2.727005
+ - -0.124826
+ - -0.415539
+ - - 2.274034
+ - -0.932545
+ - 1.110179
+ - - -2.158494
+ - -0.923949
+ - 1.175085
+ - - -3.158533
+ - -0.716686
+ - -0.279663
+ - - -1.745103
+ - -1.80335
+ - -0.321472
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.88730034261646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.53848
+ - 1.75217
+ - -0.240333
+ - - 0.021567
+ - 0.551142
+ - 0.381317
+ - - 0.761556
+ - -0.780801
+ - -0.334861
+ - - 2.143112
+ - -0.944899
+ - 0.026276
+ - - -1.419459
+ - 0.270918
+ - -0.36633
+ - - -2.149569
+ - -0.88548
+ - 0.08662
+ - - 2.444877
+ - -1.912634
+ - -0.371811
+ - - 2.755211
+ - -0.156846
+ - -0.418273
+ - - 2.275333
+ - -0.946905
+ - 1.114099
+ - - -2.165139
+ - -0.941336
+ - 1.179923
+ - - -3.165763
+ - -0.756236
+ - -0.281829
+ - - -1.710169
+ - -1.794801
+ - -0.325694
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.38743730593835
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.561968
+ - 1.68884
+ - -0.229115
+ - - 0.019875
+ - 0.497792
+ - 0.370171
+ - - 0.741487
+ - -0.787875
+ - -0.333002
+ - - 2.122056
+ - -0.927942
+ - 0.028966
+ - - -1.385029
+ - 0.25785
+ - -0.374681
+ - - -2.133485
+ - -0.878634
+ - 0.082217
+ - - 2.440575
+ - -1.892836
+ - -0.354156
+ - - 2.714212
+ - -0.133395
+ - -0.423052
+ - - 2.247011
+ - -0.910472
+ - 1.114591
+ - - -2.115477
+ - -0.945808
+ - 1.172215
+ - - -3.154052
+ - -0.721674
+ - -0.253655
+ - - -1.729103
+ - -1.791554
+ - -0.351396
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.93680291245786
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.561968
+ - 1.68884
+ - -0.229115
+ - - 0.019875
+ - 0.497792
+ - 0.370171
+ - - 0.741487
+ - -0.787875
+ - -0.333002
+ - - 2.122056
+ - -0.927942
+ - 0.028966
+ - - -1.385029
+ - 0.25785
+ - -0.374681
+ - - -2.133485
+ - -0.878634
+ - 0.082217
+ - - 2.440575
+ - -1.892836
+ - -0.354156
+ - - 2.714212
+ - -0.133395
+ - -0.423052
+ - - 2.247011
+ - -0.910472
+ - 1.114591
+ - - -2.115477
+ - -0.945808
+ - 1.172215
+ - - -3.154052
+ - -0.721674
+ - -0.253655
+ - - -1.729103
+ - -1.791554
+ - -0.351396
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.42367460064827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.561968
+ - 1.68884
+ - -0.229115
+ - - 0.019875
+ - 0.497792
+ - 0.370171
+ - - 0.741487
+ - -0.787875
+ - -0.333002
+ - - 2.122056
+ - -0.927942
+ - 0.028966
+ - - -1.385029
+ - 0.25785
+ - -0.374681
+ - - -2.133485
+ - -0.878634
+ - 0.082217
+ - - 2.440575
+ - -1.892836
+ - -0.354156
+ - - 2.714212
+ - -0.133395
+ - -0.423052
+ - - 2.247011
+ - -0.910472
+ - 1.114591
+ - - -2.115477
+ - -0.945808
+ - 1.172215
+ - - -3.154052
+ - -0.721674
+ - -0.253655
+ - - -1.729103
+ - -1.791554
+ - -0.351396
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.6650588847253
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.6035064372
- - 1.7214035358
- - -0.2699563192
- - - 0.0175288018
- - 0.5391894463
- - 0.4001512063
- - - 0.7502574835
- - -0.8740239569
- - -0.262513344
- - - 2.1676309453
- - -0.9425968297
- - -0.0054817086
- - - -1.4432849887
- - 0.2629353416
- - -0.3989798889
- - - -2.1732508733
- - -0.8955599338
- - 0.0689708725
- - - 2.5124926526
- - -1.8575309179
- - -0.5028304219
- - - 2.6926019304
- - -0.0738592701
- - -0.430727483
- - - 2.3895849616
- - -1.0139263205
- - 1.073648896
- - - -2.239194835
- - -0.9222887934
- - 1.1697623539
- - - -3.1823014301
- - -0.7932387344
- - -0.3479098985
- - - -1.7037559973
- - -1.8197658875
- - -0.2937013135
+ - - 0.550017
+ - 1.720526
+ - -0.253562
+ - - 0.022013
+ - 0.528348
+ - 0.376234
+ - - 0.755921
+ - -0.790836
+ - -0.314497
+ - - 2.139153
+ - -0.937927
+ - 0.026028
+ - - -1.398957
+ - 0.253144
+ - -0.377029
+ - - -2.150298
+ - -0.876601
+ - 0.088721
+ - - 2.463013
+ - -1.881332
+ - -0.41649
+ - - 2.730827
+ - -0.115374
+ - -0.386813
+ - - 2.284502
+ - -0.983331
+ - 1.112879
+ - - -2.187404
+ - -0.907888
+ - 1.184052
+ - - -3.16117
+ - -0.748048
+ - -0.300807
+ - - -1.717578
+ - -1.80639
+ - -0.289614
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.20067381475661
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.578282
+ - 1.667676
+ - -0.230019
+ - - 0.018291
+ - 0.496678
+ - 0.386084
+ - - 0.729694
+ - -0.80318
+ - -0.292192
+ - - 2.115695
+ - -0.925384
+ - 0.027559
+ - - -1.379311
+ - 0.257819
+ - -0.363521
+ - - -2.130563
+ - -0.875136
+ - 0.076614
+ - - 2.43479
+ - -1.889311
+ - -0.358589
+ - - 2.683168
+ - -0.125223
+ - -0.446563
+ - - 2.271528
+ - -0.898515
+ - 1.109238
+ - - -2.129783
+ - -0.943409
+ - 1.166986
+ - - -3.14641
+ - -0.721166
+ - -0.275766
+ - - -1.715343
+ - -1.786557
+ - -0.350727
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.78085584592336
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.537944
+ - 1.700899
+ - -0.229462
+ - - 0.020806
+ - 0.494337
+ - 0.358987
+ - - 0.763198
+ - -0.774713
+ - -0.357958
+ - - 2.1259
+ - -0.927751
+ - 0.028833
+ - - -1.38207
+ - 0.238996
+ - -0.387714
+ - - -2.135542
+ - -0.875935
+ - 0.084888
+ - - 2.449521
+ - -1.890906
+ - -0.361886
+ - - 2.738497
+ - -0.131244
+ - -0.398206
+ - - 2.232681
+ - -0.928773
+ - 1.118893
+ - - -2.108307
+ - -0.937129
+ - 1.177184
+ - - -3.161103
+ - -0.71073
+ - -0.240168
+ - - -1.751486
+ - -1.802757
+ - -0.344289
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.00380481248447
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.529499
+ - 1.747517
+ - -0.237152
+ - - 0.020552
+ - 0.522319
+ - 0.363177
+ - - 0.775103
+ - -0.776154
+ - -0.37576
+ - - 2.155971
+ - -0.939647
+ - 0.032405
+ - - -1.40887
+ - 0.254036
+ - -0.398109
+ - - -2.159192
+ - -0.888742
+ - 0.090593
+ - - 2.467112
+ - -1.905995
+ - -0.366931
+ - - 2.772519
+ - -0.140344
+ - -0.38904
+ - - 2.244617
+ - -0.947195
+ - 1.125886
+ - - -2.121506
+ - -0.939695
+ - 1.184842
+ - - -3.186289
+ - -0.72334
+ - -0.236842
+ - - -1.759478
+ - -1.808468
+ - -0.343965
isotopes:
- 16
- 32
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.03213738791541
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.561967745
+ - 1.6888404151
+ - -0.2291146087
+ - - 0.0198749203
+ - 0.4977923801
+ - 0.3701707561
+ - - 0.7414872203
+ - -0.7878752881
+ - -0.3330018471
+ - - 2.1220561982
+ - -0.927942446
+ - 0.0289664028
+ - - -1.3850286888
+ - 0.2578499543
+ - -0.3746807616
+ - - -2.1334854018
+ - -0.8786342352
+ - 0.0822167194
+ - - 2.4405753639
+ - -1.8928361688
+ - -0.3541555374
+ - - 2.714211765
+ - -0.1333951245
+ - -0.4230519172
+ - - 2.2470108274
+ - -0.9104718378
+ - 1.1145906106
+ - - -2.1154767787
+ - -0.9458082194
+ - 1.1722148567
+ - - -3.1540517807
+ - -0.7216737533
+ - -0.2536551647
+ - - -1.7291031111
+ - -1.7915535422
+ - -0.3513959402
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.38811678264838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.533593
+ - 1.704185
+ - -0.234812
+ - - 0.020682
+ - 0.503313
+ - 0.361044
+ - - 0.761707
+ - -0.766281
+ - -0.346952
+ - - 2.127042
+ - -0.92949
+ - 0.028876
+ - - -1.380395
+ - 0.241248
+ - -0.376816
+ - - -2.135291
+ - -0.878111
+ - 0.085342
+ - - 2.439037
+ - -1.894097
+ - -0.364174
+ - - 2.740624
+ - -0.138195
+ - -0.404017
+ - - 2.241726
+ - -0.930653
+ - 1.117071
+ - - -2.120012
+ - -0.941093
+ - 1.176772
+ - - -3.156153
+ - -0.715473
+ - -0.251298
+ - - -1.742523
+ - -1.80106
+ - -0.341932
+ isotopes:
+ - 16
+ - 32
+ - 16
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - S
+ - O
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl ether.yml b/input/reference_sets/main/Dimethyl ether.yml
index 820536dc51..3aaa9772ce 100644
--- a/input/reference_sets/main/Dimethyl ether.yml
+++ b/input/reference_sets/main/Dimethyl ether.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.158593274824895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167948
+ - -0.197229
+ - -5.0e-05
+ - - -0.0
+ - 0.592166
+ - -2.6e-05
+ - - -1.167948
+ - -0.197229
+ - 4.4e-05
+ - - 1.217766
+ - -0.836592
+ - 0.889477
+ - - 2.019076
+ - 0.479768
+ - -0.000104
+ - - 1.217695
+ - -0.836645
+ - -0.889542
+ - - -1.217695
+ - -0.836592
+ - 0.889574
+ - - -1.217766
+ - -0.836645
+ - -0.889445
+ - - -2.019076
+ - 0.479768
+ - 5.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.99545654199765
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.171853
+ - -0.197188
+ - -5.0e-05
+ - - -0.0
+ - 0.585892
+ - -2.6e-05
+ - - -1.171853
+ - -0.197188
+ - 4.4e-05
+ - - 1.227002
+ - -0.837627
+ - 0.890537
+ - - 2.020754
+ - 0.484928
+ - -0.000101
+ - - 1.226934
+ - -0.837674
+ - -0.890608
+ - - -1.226933
+ - -0.837621
+ - 0.89064
+ - - -1.227002
+ - -0.837679
+ - -0.890505
+ - - -2.020754
+ - 0.484928
+ - 5.5e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.16260812355286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174211
+ - -0.197054
+ - -5.1e-05
+ - - -0.0
+ - 0.594784
+ - -2.7e-05
+ - - -1.174211
+ - -0.197054
+ - 4.5e-05
+ - - 1.228124
+ - -0.841132
+ - 0.894536
+ - - 2.027289
+ - 0.487354
+ - -9.9e-05
+ - - 1.228058
+ - -0.841175
+ - -0.89461
+ - - -1.228057
+ - -0.841123
+ - 0.894642
+ - - -1.228125
+ - -0.841185
+ - -0.894503
+ - - -2.027289
+ - 0.487354
+ - 5.4e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.88817936693858
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174477
+ - -0.19644
+ - -5.3e-05
+ - - -0.0
+ - 0.599649
+ - -2.8e-05
+ - - -1.174477
+ - -0.196441
+ - 4.7e-05
+ - - 1.228169
+ - -0.843306
+ - 0.898167
+ - - 2.03264
+ - 0.488646
+ - -9.4e-05
+ - - 1.228108
+ - -0.843339
+ - -0.898252
+ - - -1.228106
+ - -0.843286
+ - 0.898285
+ - - -1.228171
+ - -0.843359
+ - -0.898135
+ - - -2.03264
+ - 0.488646
+ - 5.0e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.72377879519613
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.166707
+ - -0.196381
+ - -4.9e-05
+ - - -0.0
+ - 0.581499
+ - -2.6e-05
+ - - -1.166707
+ - -0.196381
+ - 4.4e-05
+ - - 1.221596
+ - -0.836156
+ - 0.889639
+ - - 2.0164
+ - 0.483382
+ - -0.000103
+ - - 1.221525
+ - -0.836209
+ - -0.889704
+ - - -1.221525
+ - -0.836157
+ - 0.889736
+ - - -1.221596
+ - -0.836209
+ - -0.889606
+ - - -2.0164
+ - 0.483382
+ - 5.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.13168328411923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.172938
+ - -0.197363
+ - -5.0e-05
+ - - -0.0
+ - 0.587176
+ - -2.6e-05
+ - - -1.172938
+ - -0.197363
+ - 4.4e-05
+ - - 1.233348
+ - -0.83902
+ - 0.892087
+ - - 2.021846
+ - 0.48725
+ - -0.000101
+ - - 1.233279
+ - -0.839069
+ - -0.892155
+ - - -1.233279
+ - -0.839016
+ - 0.892188
+ - - -1.233348
+ - -0.839073
+ - -0.892054
+ - - -2.021846
+ - 0.487249
+ - 5.5e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.235160021099894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16484
+ - -0.196329
+ - 0.0
+ - - 0.0
+ - 0.593217
+ - 2.0e-06
+ - - -1.16484
+ - -0.196329
+ - 0.0
+ - - 1.213069
+ - -0.835797
+ - 0.889889
+ - - 2.019158
+ - 0.477098
+ - -0.000284
+ - - 1.2128
+ - -0.836195
+ - -0.889616
+ - - -1.212844
+ - -0.836146
+ - 0.88965
+ - - -1.213025
+ - -0.835846
+ - -0.889856
+ - - -2.019159
+ - 0.477098
+ - 0.000201
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.764505960803625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16484
+ - -0.196329
+ - 0.0
+ - - 0.0
+ - 0.593217
+ - 2.0e-06
+ - - -1.16484
+ - -0.196329
+ - 0.0
+ - - 1.213069
+ - -0.835797
+ - 0.889889
+ - - 2.019158
+ - 0.477098
+ - -0.000284
+ - - 1.2128
+ - -0.836195
+ - -0.889616
+ - - -1.212844
+ - -0.836146
+ - 0.88965
+ - - -1.213025
+ - -0.835846
+ - -0.889856
+ - - -2.019159
+ - 0.477098
+ - 0.000201
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.12255394517314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.16484
+ - -0.196329
+ - 0.0
+ - - 0.0
+ - 0.593217
+ - 2.0e-06
+ - - -1.16484
+ - -0.196329
+ - 0.0
+ - - 1.213069
+ - -0.835797
+ - 0.889889
+ - - 2.019158
+ - 0.477098
+ - -0.000284
+ - - 1.2128
+ - -0.836195
+ - -0.889616
+ - - -1.212844
+ - -0.836146
+ - 0.88965
+ - - -1.213025
+ - -0.835846
+ - -0.889856
+ - - -2.019159
+ - 0.477098
+ - 0.000201
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.67180547574782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168753
+ - -0.195201
+ - -5.0e-05
+ - - 0.0
+ - 0.586497
+ - -2.6e-05
+ - - -1.168753
+ - -0.195201
+ - 4.4e-05
+ - - 1.230773
+ - -0.840547
+ - 0.891459
+ - - 2.021351
+ - 0.488483
+ - -0.000102
+ - - 1.230703
+ - -0.840598
+ - -0.891526
+ - - -1.230703
+ - -0.840545
+ - 0.891559
+ - - -1.230773
+ - -0.8406
+ - -0.891426
+ - - -2.021351
+ - 0.488483
+ - 5.6e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -46.300982817733384
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.162486
+ - -0.195779
+ - -5.0e-05
+ - - -0.0
+ - 0.588835
+ - -2.6e-05
+ - - -1.162486
+ - -0.195779
+ - 4.4e-05
+ - - 1.209628
+ - -0.835579
+ - 0.889758
+ - - 2.016996
+ - 0.477959
+ - -0.000105
+ - - 1.209555
+ - -0.835633
+ - -0.889822
+ - - -1.209556
+ - -0.835581
+ - 0.889854
+ - - -1.209627
+ - -0.835632
+ - -0.889726
+ - - -2.016996
+ - 0.477959
+ - 5.9e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.962054117549904
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.160807
+ - -0.194877
+ - -5.0e-05
+ - - -0.0
+ - 0.586184
+ - -2.6e-05
+ - - -1.160807
+ - -0.194877
+ - 4.4e-05
+ - - 1.215851
+ - -0.837362
+ - 0.890746
+ - - 2.015687
+ - 0.481944
+ - -0.000102
+ - - 1.215781
+ - -0.837412
+ - -0.890814
+ - - -1.215781
+ - -0.837359
+ - 0.890846
+ - - -1.215851
+ - -0.837415
+ - -0.890714
+ - - -2.015687
+ - 0.481944
+ - 5.7e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.136553002611194
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175981
+ - -0.199345
+ - -5.2e-05
+ - - -0.0
+ - 0.598749
+ - -2.8e-05
+ - - -1.175981
+ - -0.199345
+ - 4.6e-05
+ - - 1.224156
+ - -0.840443
+ - 0.895004
+ - - 2.026451
+ - 0.486279
+ - -9.5e-05
+ - - 1.224094
+ - -0.84048
+ - -0.895086
+ - - -1.224092
+ - -0.840427
+ - 0.895118
+ - - -1.224158
+ - -0.840496
+ - -0.894972
+ - - -2.026451
+ - 0.486279
+ - 5.1e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.83237556809869
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1648399778
+ - -0.1963291348
+ - 8.82e-08
+ - - 3.92e-08
+ - 0.5932172011
+ - 1.658e-06
+ - - -1.1648400562
+ - -0.196329102
+ - 2.3e-07
+ - - 1.2130694207
+ - -0.8357967336
+ - 0.8898891369
+ - - 2.0191584334
+ - 0.4770980208
+ - -0.0002839333
+ - - 1.2127997654
+ - -0.836195296
+ - -0.8896163876
+ - - -1.2128438819
+ - -0.8361457992
+ - 0.8896500682
+ - - -1.2130249632
+ - -0.8358462889
+ - -0.8898555059
+ - - -2.0191586184
+ - 0.4770979087
+ - 0.0002014485
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.91730619906361
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.163899
+ - -0.195629
+ - -5.0e-05
+ - - -0.0
+ - 0.582948
+ - -2.6e-05
+ - - -1.163899
+ - -0.195629
+ - 4.4e-05
+ - - 1.219238
+ - -0.836871
+ - 0.890356
+ - - 2.015484
+ - 0.483333
+ - -0.000102
+ - - 1.219168
+ - -0.836921
+ - -0.890424
+ - - -1.219168
+ - -0.836869
+ - 0.890457
+ - - -1.219238
+ - -0.836924
+ - -0.890324
+ - - -2.015484
+ - 0.483333
+ - 5.6e-05
+ isotopes:
+ - 12
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl sulfate.yml b/input/reference_sets/main/Dimethyl sulfate.yml
index 3022dd15ac..2d055a9486 100644
--- a/input/reference_sets/main/Dimethyl sulfate.yml
+++ b/input/reference_sets/main/Dimethyl sulfate.yml
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -151.11171853426174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.929005
+ - -1.153041
+ - -0.034032
+ - - -0.934658
+ - -0.435243
+ - -0.801914
+ - - 3.0e-06
+ - 0.562122
+ - 2.0e-06
+ - - -0.75772
+ - 1.241787
+ - 0.995463
+ - - 0.757733
+ - 1.241779
+ - -0.99546
+ - - 0.934654
+ - -0.435252
+ - 0.801919
+ - - 1.928994
+ - -1.153061
+ - 0.034037
+ - - -2.452308
+ - -1.767566
+ - -0.758679
+ - - -2.608
+ - -0.450162
+ - 0.440266
+ - - -1.445197
+ - -1.77654
+ - 0.715706
+ - - 2.607996
+ - -0.450188
+ - -0.440261
+ - - 2.452291
+ - -1.767591
+ - 0.758685
+ - - 1.44518
+ - -1.776556
+ - -0.715701
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -145.99252733776507
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.933295
+ - -1.155745
+ - -0.038438
+ - - -0.94057
+ - -0.428771
+ - -0.798968
+ - - 3.0e-06
+ - 0.569994
+ - 2.0e-06
+ - - -0.751164
+ - 1.250761
+ - 0.998939
+ - - 0.751177
+ - 1.250752
+ - -0.998935
+ - - 0.940566
+ - -0.42878
+ - 0.798973
+ - - 1.933284
+ - -1.155765
+ - 0.038443
+ - - -2.467318
+ - -1.753123
+ - -0.771434
+ - - -2.605984
+ - -0.459028
+ - 0.456335
+ - - -1.448088
+ - -1.798795
+ - 0.695449
+ - - 2.60598
+ - -0.459055
+ - -0.45633
+ - - 2.4673
+ - -1.753148
+ - 0.77144
+ - - 1.44807
+ - -1.79881
+ - -0.695443
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -108.68566346170954
+ value: -108.68566346170954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.914552955
+ - -1.194993494
+ - -0.0329338052
+ - - -0.9562332462
+ - -0.4617977369
+ - -0.8460185308
+ - - -7.84381e-05
+ - 0.5978000952
+ - 2.197e-07
+ - - -0.787981071
+ - 1.2771753949
+ - 1.0276701834
+ - - 0.787126475
+ - 1.2777902107
+ - -1.0277941617
+ - - 0.9571605786
+ - -0.4607749277
+ - 0.8461910482
+ - - 1.9146945228
+ - -1.1948447501
+ - 0.0329033529
+ - - -2.4769336671
+ - -1.8043487329
+ - -0.7486810149
+ - - -2.5825142595
+ - -0.5007812097
+ - 0.4920517001
+ - - -1.3932069197
+ - -1.8373652488
+ - 0.6906031664
+ - - 2.5806324794
+ - -0.5011289149
+ - -0.4953164915
+ - - 2.4793836662
+ - -1.8016529951
+ - 0.7489861096
+ - - 1.3924624122
+ - -1.8396384851
+ - -0.6878525842
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -137.37336315813783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.931021
+ - -1.161128
+ - -0.038642
+ - - -0.947596
+ - -0.423541
+ - -0.815305
+ - - 3.0e-06
+ - 0.585654
+ - 2.0e-06
+ - - -0.753484
+ - 1.267803
+ - 1.007998
+ - - 0.753498
+ - 1.267795
+ - -1.007994
+ - - 0.947592
+ - -0.42355
+ - 0.815309
+ - - 1.931009
+ - -1.161148
+ - 0.038647
+ - - -2.458484
+ - -1.775289
+ - -0.769663
+ - - -2.617033
+ - -0.467757
+ - 0.452772
+ - - -1.43211
+ - -1.79262
+ - 0.702814
+ - - 2.617029
+ - -0.467784
+ - -0.452767
+ - - 2.458467
+ - -1.775313
+ - 0.769669
+ - - 1.432093
+ - -1.792635
+ - -0.702808
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -141.94449142249326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.968091
+ - -1.151686
+ - -0.039651
+ - - -0.95645
+ - -0.448594
+ - -0.816063
+ - - 3.0e-06
+ - 0.563037
+ - 2.0e-06
+ - - -0.754561
+ - 1.246241
+ - 1.016904
+ - - 0.754574
+ - 1.246233
+ - -1.016901
+ - - 0.956446
+ - -0.448604
+ - 0.816068
+ - - 1.96808
+ - -1.151706
+ - 0.039656
+ - - -2.520469
+ - -1.746389
+ - -0.775536
+ - - -2.632604
+ - -0.432491
+ - 0.455111
+ - - -1.494275
+ - -1.808303
+ - 0.703667
+ - - 2.6326
+ - -0.432518
+ - -0.455106
+ - - 2.520452
+ - -1.746414
+ - 0.775542
+ - - 1.494257
+ - -1.808318
+ - -0.703661
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -150.64180193577522
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.950088
+ - -1.144934
+ - -0.036037
+ - - -0.939784
+ - -0.445247
+ - -0.783564
+ - - 3.0e-06
+ - 0.543544
+ - 2.0e-06
+ - - -0.744155
+ - 1.221767
+ - 0.995113
+ - - 0.744168
+ - 1.221759
+ - -0.995109
+ - - 0.939781
+ - -0.445256
+ - 0.783569
+ - - 1.950077
+ - -1.144954
+ - 0.036042
+ - - -2.486416
+ - -1.739856
+ - -0.768363
+ - - -2.61655
+ - -0.433022
+ - 0.443917
+ - - -1.487935
+ - -1.790184
+ - 0.709877
+ - - 2.616546
+ - -0.433049
+ - -0.443912
+ - - 2.486399
+ - -1.73988
+ - 0.768368
+ - - 1.487917
+ - -1.7902
+ - -0.709871
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -165.278946380062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.958927
+ - -1.153242
+ - -0.038864
+ - - -0.951287
+ - -0.44409
+ - -0.803982
+ - - 3.0e-06
+ - 0.569884
+ - 2.0e-06
+ - - -0.751723
+ - 1.244245
+ - 1.008722
+ - - 0.751737
+ - 1.244237
+ - -1.008719
+ - - 0.951283
+ - -0.444099
+ - 0.803987
+ - - 1.958916
+ - -1.153262
+ - 0.038869
+ - - -2.505106
+ - -1.739344
+ - -0.774545
+ - - -2.619883
+ - -0.443857
+ - 0.45734
+ - - -1.485189
+ - -1.808359
+ - 0.694245
+ - - 2.619879
+ - -0.443884
+ - -0.457335
+ - - 2.505088
+ - -1.739369
+ - 0.77455
+ - - 1.485172
+ - -1.808374
+ - -0.694239
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -152.21388900579942
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.915258
+ - -1.151379
+ - -0.034784
+ - - -0.924982
+ - -0.433578
+ - -0.801984
+ - - 5.0e-06
+ - 0.558347
+ - -0.0
+ - - -0.76328
+ - 1.237756
+ - 0.98445
+ - - 0.763311
+ - 1.237731
+ - -0.984453
+ - - 0.924955
+ - -0.433596
+ - 0.801978
+ - - 1.915245
+ - -1.151396
+ - 0.034791
+ - - -2.443452
+ - -1.766232
+ - -0.755973
+ - - -2.592746
+ - -0.449082
+ - 0.443692
+ - - -1.429229
+ - -1.776362
+ - 0.71342
+ - - 2.592746
+ - -0.449096
+ - -0.443662
+ - - 2.443419
+ - -1.766257
+ - 0.755986
+ - - 1.429229
+ - -1.776368
+ - -0.71343
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -163.86353953326062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.915258
+ - -1.151379
+ - -0.034784
+ - - -0.924982
+ - -0.433578
+ - -0.801984
+ - - 5.0e-06
+ - 0.558347
+ - -0.0
+ - - -0.76328
+ - 1.237756
+ - 0.98445
+ - - 0.763311
+ - 1.237731
+ - -0.984453
+ - - 0.924955
+ - -0.433596
+ - 0.801978
+ - - 1.915245
+ - -1.151396
+ - 0.034791
+ - - -2.443452
+ - -1.766232
+ - -0.755973
+ - - -2.592746
+ - -0.449082
+ - 0.443692
+ - - -1.429229
+ - -1.776362
+ - 0.71342
+ - - 2.592746
+ - -0.449096
+ - -0.443662
+ - - 2.443419
+ - -1.766257
+ - 0.755986
+ - - 1.429229
+ - -1.776368
+ - -0.71343
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -165.61856060084253
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.915258
+ - -1.151379
+ - -0.034784
+ - - -0.924982
+ - -0.433578
+ - -0.801984
+ - - 5.0e-06
+ - 0.558347
+ - -0.0
+ - - -0.76328
+ - 1.237756
+ - 0.98445
+ - - 0.763311
+ - 1.237731
+ - -0.984453
+ - - 0.924955
+ - -0.433596
+ - 0.801978
+ - - 1.915245
+ - -1.151396
+ - 0.034791
+ - - -2.443452
+ - -1.766232
+ - -0.755973
+ - - -2.592746
+ - -0.449082
+ - 0.443692
+ - - -1.429229
+ - -1.776362
+ - 0.71342
+ - - 2.592746
+ - -0.449096
+ - -0.443662
+ - - 2.443419
+ - -1.766257
+ - 0.755986
+ - - 1.429229
+ - -1.776368
+ - -0.71343
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -165.05127108098807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.940775
+ - -1.154381
+ - 0.030939
+ - - 0.946614
+ - -0.441261
+ - 0.797621
+ - - 0.0
+ - 0.565209
+ - 0.0
+ - - 0.747765
+ - 1.242435
+ - -1.009615
+ - - -0.747765
+ - 1.242435
+ - 1.009615
+ - - -0.946614
+ - -0.441261
+ - -0.797621
+ - - -1.940775
+ - -1.154381
+ - -0.030939
+ - - 2.505137
+ - -1.732067
+ - 0.762853
+ - - 2.592046
+ - -0.450099
+ - -0.488899
+ - - 1.459896
+ - -1.8227
+ - -0.688422
+ - - -2.592046
+ - -0.450099
+ - 0.488899
+ - - -2.505137
+ - -1.732067
+ - -0.762853
+ - - -1.459896
+ - -1.8227
+ - 0.688422
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -161.38986785252436
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - -1.914552955
- - -1.194993494
- - -0.0329338052
- - - -0.9562332462
- - -0.4617977369
- - -0.8460185308
- - - -7.84381e-05
- - 0.5978000952
- - 2.197e-07
- - - -0.787981071
- - 1.2771753949
- - 1.0276701834
- - - 0.787126475
- - 1.2777902107
- - -1.0277941617
- - - 0.9571605786
- - -0.4607749277
- - 0.8461910482
- - - 1.9146945228
- - -1.1948447501
- - 0.0329033529
- - - -2.4769336671
- - -1.8043487329
- - -0.7486810149
- - - -2.5825142595
- - -0.5007812097
- - 0.4920517001
- - - -1.3932069197
- - -1.8373652488
- - 0.6906031664
- - - 2.5806324794
- - -0.5011289149
- - -0.4953164915
- - - 2.4793836662
- - -1.8016529951
- - 0.7489861096
- - - 1.3924624122
- - -1.8396384851
- - -0.6878525842
+ - - -1.908991
+ - -1.150802
+ - -0.032621
+ - - -0.924181
+ - -0.432791
+ - -0.794853
+ - - 3.0e-06
+ - 0.557739
+ - 2.0e-06
+ - - -0.761382
+ - 1.236195
+ - 0.981857
+ - - 0.761395
+ - 1.236187
+ - -0.981854
+ - - 0.924177
+ - -0.432799
+ - 0.794858
+ - - 1.90898
+ - -1.150821
+ - 0.032626
+ - - -2.422789
+ - -1.78291
+ - -0.749928
+ - - -2.599145
+ - -0.449621
+ - 0.430431
+ - - -1.421248
+ - -1.758647
+ - 0.729252
+ - - 2.599141
+ - -0.449648
+ - -0.430426
+ - - 2.422771
+ - -1.782934
+ - 0.749934
+ - - 1.421231
+ - -1.758662
+ - -0.729246
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -150.68909705167823
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.93525
+ - -1.144074
+ - -0.038796
+ - - -0.935989
+ - -0.443671
+ - -0.792808
+ - - 3.0e-06
+ - 0.545306
+ - 2.0e-06
+ - - -0.747916
+ - 1.223571
+ - 0.995002
+ - - 0.747929
+ - 1.223563
+ - -0.994998
+ - - 0.935985
+ - -0.44368
+ - 0.792813
+ - - 1.935239
+ - -1.144094
+ - 0.038802
+ - - -2.477736
+ - -1.742001
+ - -0.767542
+ - - -2.603221
+ - -0.434932
+ - 0.448416
+ - - -1.46758
+ - -1.791251
+ - 0.705408
+ - - 2.603218
+ - -0.434959
+ - -0.448411
+ - - 2.477719
+ - -1.742026
+ - 0.767548
+ - - 1.467562
+ - -1.791266
+ - -0.705403
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -139.8081892951042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.971828
+ - -1.150973
+ - -0.034776
+ - - -0.951114
+ - -0.453993
+ - -0.812814
+ - - 3.0e-06
+ - 0.552378
+ - 2.0e-06
+ - - -0.755338
+ - 1.233645
+ - 1.01219
+ - - 0.755351
+ - 1.233636
+ - -1.012186
+ - - 0.95111
+ - -0.454003
+ - 0.812818
+ - - 1.971817
+ - -1.150993
+ - 0.034781
+ - - -2.515694
+ - -1.743905
+ - -0.769896
+ - - -2.627468
+ - -0.423833
+ - 0.446804
+ - - -1.498565
+ - -1.796833
+ - 0.709615
+ - - 2.627464
+ - -0.42386
+ - -0.446799
+ - - 2.515677
+ - -1.743931
+ - 0.769902
+ - - 1.498548
+ - -1.796848
+ - -0.70961
isotopes:
- 12
- 16
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -159.71950433408435
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.91525774
+ - -1.1513792274
+ - -0.0347843747
+ - - -0.9249819763
+ - -0.4335781454
+ - -0.801984357
+ - - 5.2947e-06
+ - 0.5583465489
+ - -1.245e-07
+ - - -0.763280381
+ - 1.2377564501
+ - 0.9844502949
+ - - 0.7633106559
+ - 1.2377308347
+ - -0.9844530962
+ - - 0.9249551053
+ - -0.4335960471
+ - 0.8019778947
+ - - 1.9152445241
+ - -1.1513961389
+ - 0.0347914381
+ - - -2.4434515616
+ - -1.7662317115
+ - -0.7559728256
+ - - -2.5927464847
+ - -0.4490824232
+ - 0.4436924346
+ - - -1.429229435
+ - -1.776362164
+ - 0.7134201153
+ - - 2.592746051
+ - -0.4490959627
+ - -0.4436617357
+ - - 2.4434193258
+ - -1.7662571351
+ - 0.75598617
+ - - 1.4292294537
+ - -1.7763679266
+ - -0.7134304374
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -151.5066264163261
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.919086
+ - -1.151572
+ - -0.03836
+ - - -0.9353
+ - -0.423864
+ - -0.788222
+ - - 3.0e-06
+ - 0.564191
+ - 2.0e-06
+ - - -0.743313
+ - 1.242696
+ - 0.993996
+ - - 0.743326
+ - 1.242688
+ - -0.993993
+ - - 0.935297
+ - -0.423873
+ - 0.788227
+ - - 1.919075
+ - -1.151591
+ - 0.038366
+ - - -2.444862
+ - -1.758893
+ - -0.769647
+ - - -2.604451
+ - -0.461225
+ - 0.449776
+ - - -1.435958
+ - -1.788944
+ - 0.703129
+ - - 2.604447
+ - -0.461252
+ - -0.449771
+ - - 2.444844
+ - -1.758917
+ - 0.769653
+ - - 1.43594
+ - -1.788959
+ - -0.703124
+ isotopes:
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - S
+ - O
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl sulfide.yml b/input/reference_sets/main/Dimethyl sulfide.yml
index 2e27640f8d..6aca8e9069 100644
--- a/input/reference_sets/main/Dimethyl sulfide.yml
+++ b/input/reference_sets/main/Dimethyl sulfide.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.276393449983912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.374057
+ - -0.513242
+ - -1.1e-05
+ - - -0.0
+ - 0.659915
+ - 0.000485
+ - - -1.374057
+ - -0.513243
+ - 4.4e-05
+ - - 1.352897
+ - -1.140703
+ - 0.890533
+ - - 2.294509
+ - 0.067432
+ - 0.000203
+ - - 1.352863
+ - -1.13999
+ - -0.891055
+ - - -1.352898
+ - -1.13999
+ - -0.891002
+ - - -2.294509
+ - 0.067431
+ - 0.000294
+ - - -1.352862
+ - -1.140703
+ - 0.890586
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.955913828023926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.380535
+ - -0.513904
+ - -1.1e-05
+ - - -0.0
+ - 0.658478
+ - 0.000501
+ - - -1.380535
+ - -0.513905
+ - 4.5e-05
+ - - 1.361844
+ - -1.141912
+ - 0.89138
+ - - 2.299083
+ - 0.071225
+ - 0.000196
+ - - 1.36179
+ - -1.141194
+ - -0.891907
+ - - -1.361821
+ - -1.141199
+ - -0.891848
+ - - -2.299083
+ - 0.071224
+ - 0.000282
+ - - -1.361812
+ - -1.141907
+ - 0.891439
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.939985640803996
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.382536
+ - -0.513635
+ - -1.1e-05
+ - - -0.0
+ - 0.661752
+ - 0.000505
+ - - -1.382536
+ - -0.513636
+ - 4.5e-05
+ - - 1.363423
+ - -1.144445
+ - 0.895166
+ - - 2.304527
+ - 0.074381
+ - 0.000197
+ - - 1.363365
+ - -1.143722
+ - -0.895696
+ - - -1.363397
+ - -1.143728
+ - -0.895636
+ - - -2.304527
+ - 0.07438
+ - 0.000282
+ - - -1.363391
+ - -1.14444
+ - 0.895226
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.565207756808865
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389182
+ - -0.514614
+ - -1.1e-05
+ - - -0.0
+ - 0.656314
+ - 0.000487
+ - - -1.389182
+ - -0.514614
+ - 4.3e-05
+ - - 1.378484
+ - -1.147506
+ - 0.89927
+ - - 2.309684
+ - 0.084199
+ - 0.000212
+ - - 1.378449
+ - -1.146781
+ - -0.899802
+ - - -1.378484
+ - -1.146782
+ - -0.899748
+ - - -2.309684
+ - 0.084198
+ - 0.000302
+ - - -1.378449
+ - -1.147506
+ - 0.899324
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.061596466004849
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.373387
+ - -0.51238
+ - -1.0e-05
+ - - -0.0
+ - 0.649632
+ - 0.000483
+ - - -1.373387
+ - -0.51238
+ - 4.4e-05
+ - - 1.358632
+ - -1.140629
+ - 0.890071
+ - - 2.291722
+ - 0.071561
+ - 0.000206
+ - - 1.358597
+ - -1.139914
+ - -0.890595
+ - - -1.358632
+ - -1.139914
+ - -0.890541
+ - - -2.291722
+ - 0.07156
+ - 0.000296
+ - - -1.358597
+ - -1.140629
+ - 0.890124
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.167955267462604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.391937
+ - -0.516555
+ - -1.2e-05
+ - - -0.0
+ - 0.656663
+ - 0.000514
+ - - -1.391937
+ - -0.516555
+ - 4.6e-05
+ - - 1.378667
+ - -1.143437
+ - 0.893788
+ - - 2.306446
+ - 0.077824
+ - 0.000194
+ - - 1.378599
+ - -1.142709
+ - -0.894321
+ - - -1.378626
+ - -1.14272
+ - -0.894256
+ - - -2.306446
+ - 0.077824
+ - 0.000274
+ - - -1.378639
+ - -1.143427
+ - 0.893853
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.821509180162879
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.366527
+ - -0.511855
+ - -3.0e-06
+ - - -0.0
+ - 0.660776
+ - -2.0e-06
+ - - -1.366527
+ - -0.511855
+ - -5.0e-06
+ - - 1.342794
+ - -1.139271
+ - 0.890608
+ - - 2.290814
+ - 0.062869
+ - 0.000475
+ - - 1.343353
+ - -1.138677
+ - -0.891046
+ - - -1.343488
+ - -1.138523
+ - -0.89116
+ - - -2.290814
+ - 0.062868
+ - 0.000718
+ - - -1.342659
+ - -1.139425
+ - 0.890494
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.021931772547573
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.366527
+ - -0.511855
+ - -3.0e-06
+ - - -0.0
+ - 0.660776
+ - -2.0e-06
+ - - -1.366527
+ - -0.511855
+ - -5.0e-06
+ - - 1.342794
+ - -1.139271
+ - 0.890608
+ - - 2.290814
+ - 0.062869
+ - 0.000474
+ - - 1.343353
+ - -1.138677
+ - -0.891046
+ - - -1.343488
+ - -1.138523
+ - -0.89116
+ - - -2.290814
+ - 0.062868
+ - 0.000718
+ - - -1.342659
+ - -1.139425
+ - 0.890494
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.379618590706448
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.366527
+ - -0.511855
+ - -3.0e-06
+ - - -0.0
+ - 0.660776
+ - -2.0e-06
+ - - -1.366527
+ - -0.511855
+ - -5.0e-06
+ - - 1.342794
+ - -1.139271
+ - 0.890608
+ - - 2.290814
+ - 0.062869
+ - 0.000474
+ - - 1.343353
+ - -1.138677
+ - -0.891046
+ - - -1.343488
+ - -1.138523
+ - -0.89116
+ - - -2.290814
+ - 0.062868
+ - 0.000718
+ - - -1.342659
+ - -1.139425
+ - 0.890494
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.924401039571332
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.389849
+ - -0.515163
+ - -1.2e-05
+ - - 0.0
+ - 0.658197
+ - 0.000489
+ - - -1.389849
+ - -0.515164
+ - 4.3e-05
+ - - 1.374657
+ - -1.144169
+ - 0.893951
+ - - 2.307131
+ - 0.077138
+ - 0.000207
+ - - 1.374619
+ - -1.14345
+ - -0.894479
+ - - -1.374653
+ - -1.143451
+ - -0.894425
+ - - -2.307131
+ - 0.077138
+ - 0.000296
+ - - -1.374622
+ - -1.144169
+ - 0.894006
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.710610683647221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.364314
+ - -0.512149
+ - -1.1e-05
+ - - -0.0
+ - 0.662832
+ - 0.000485
+ - - -1.364314
+ - -0.51215
+ - 4.4e-05
+ - - 1.336446
+ - -1.138984
+ - 0.890865
+ - - 2.28905
+ - 0.061444
+ - 0.0002
+ - - 1.336411
+ - -1.138273
+ - -0.891385
+ - - -1.336447
+ - -1.138273
+ - -0.891332
+ - - -2.28905
+ - 0.061444
+ - 0.000292
+ - - -1.33641
+ - -1.138984
+ - 0.890919
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.336411104610803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.371205
+ - -0.512655
+ - -1.0e-05
+ - - -0.0
+ - 0.646648
+ - 0.000483
+ - - -1.371205
+ - -0.512655
+ - 4.4e-05
+ - - 1.358224
+ - -1.141738
+ - 0.89242
+ - - 2.289475
+ - 0.075544
+ - 0.000208
+ - - 1.358188
+ - -1.141021
+ - -0.892946
+ - - -1.358223
+ - -1.141021
+ - -0.892892
+ - - -2.289475
+ - 0.075543
+ - 0.000298
+ - - -1.358188
+ - -1.141738
+ - 0.892474
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.34377064878631
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.387814
+ - -0.516319
+ - -1.2e-05
+ - - -0.0
+ - 0.657137
+ - 0.000512
+ - - -1.387814
+ - -0.51632
+ - 4.5e-05
+ - - 1.37109
+ - -1.144593
+ - 0.895771
+ - - 2.303817
+ - 0.079664
+ - 0.000195
+ - - 1.371022
+ - -1.143866
+ - -0.896303
+ - - -1.371052
+ - -1.143874
+ - -0.896241
+ - - -2.303817
+ - 0.079664
+ - 0.000278
+ - - -1.371059
+ - -1.144586
+ - 0.895833
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.984283945255994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3665266809
+ - -0.5118550718
+ - -3.4273e-06
+ - - -3.34e-08
+ - 0.6607762168
+ - -2.4457e-06
+ - - -1.3665266741
+ - -0.5118550288
+ - -4.7681e-06
+ - - 1.342794231
+ - -1.1392705378
+ - 0.8906079107
+ - - 2.2908139625
+ - 0.0628686348
+ - 0.0004745026
+ - - 1.3433527425
+ - -1.1386771699
+ - -0.8910461939
+ - - -1.3434875571
+ - -1.1385230611
+ - -0.8911597494
+ - - -2.2908141959
+ - 0.0628677794
+ - 0.0007177393
+ - - -1.3426586898
+ - -1.1394245101
+ - 0.8904940941
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.13255324975756
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.372225
+ - -0.512478
+ - -1.0e-05
+ - - -0.0
+ - 0.652399
+ - 0.000484
+ - - -1.372225
+ - -0.512478
+ - 4.4e-05
+ - - 1.35416
+ - -1.140755
+ - 0.891231
+ - - 2.292212
+ - 0.070529
+ - 0.000205
+ - - 1.354124
+ - -1.140041
+ - -0.891754
+ - - -1.35416
+ - -1.140041
+ - -0.891701
+ - - -2.292212
+ - 0.070529
+ - 0.000296
+ - - -1.354124
+ - -1.140756
+ - 0.891284
+ isotopes:
+ - 12
+ - 32
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethyl sulfoxide.yml b/input/reference_sets/main/Dimethyl sulfoxide.yml
index d6d045df13..b200e3f475 100644
--- a/input/reference_sets/main/Dimethyl sulfoxide.yml
+++ b/input/reference_sets/main/Dimethyl sulfoxide.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.770583965238938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.345528
+ - -0.798817
+ - 0.182638
+ - - -9.0e-06
+ - 0.235968
+ - -0.443684
+ - - -7.3e-05
+ - 1.479028
+ - 0.377602
+ - - 1.345614
+ - -0.79868
+ - 0.18264
+ - - -2.273432
+ - -0.283194
+ - -0.055253
+ - - -1.325394
+ - -1.772397
+ - -0.306326
+ - - -1.24189
+ - -0.896923
+ - 1.262682
+ - - 1.241985
+ - -0.896797
+ - 1.262683
+ - - 1.32558
+ - -1.772263
+ - -0.306324
+ - - 2.273466
+ - -0.282963
+ - -0.05525
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.016049542018425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.353095
+ - -0.799478
+ - 0.18374
+ - - -9.0e-06
+ - 0.237871
+ - -0.444332
+ - - -7.3e-05
+ - 1.480601
+ - 0.37511
+ - - 1.353181
+ - -0.79934
+ - 0.183741
+ - - -2.279865
+ - -0.281372
+ - -0.055913
+ - - -1.333355
+ - -1.772937
+ - -0.306823
+ - - -1.250988
+ - -0.899285
+ - 1.264308
+ - - 1.251083
+ - -0.899158
+ - 1.26431
+ - - 1.333541
+ - -1.772802
+ - -0.306822
+ - - 2.279899
+ - -0.28114
+ - -0.05591
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.642320878850157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.358391
+ - -0.802224
+ - 0.184976
+ - - -1.0e-05
+ - 0.249143
+ - -0.447146
+ - - -7.4e-05
+ - 1.498835
+ - 0.372606
+ - - 1.358477
+ - -0.802086
+ - 0.184977
+ - - -2.289554
+ - -0.284189
+ - -0.056762
+ - - -1.332168
+ - -1.778294
+ - -0.309582
+ - - -1.254028
+ - -0.903119
+ - 1.26934
+ - - 1.254124
+ - -0.902992
+ - 1.269341
+ - - 1.332355
+ - -1.778158
+ - -0.309581
+ - - 2.289588
+ - -0.283956
+ - -0.05676
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.45559276665645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.361846
+ - -0.802786
+ - 0.185205
+ - - -1.0e-05
+ - 0.246297
+ - -0.449594
+ - - -7.4e-05
+ - 1.504058
+ - 0.370725
+ - - 1.361933
+ - -0.802648
+ - 0.185207
+ - - -2.294661
+ - -0.27777
+ - -0.056794
+ - - -1.343713
+ - -1.782658
+ - -0.312634
+ - - -1.25893
+ - -0.905801
+ - 1.274357
+ - - 1.259026
+ - -0.905673
+ - 1.274358
+ - - 1.3439
+ - -1.782522
+ - -0.312632
+ - - 2.294695
+ - -0.277537
+ - -0.056791
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.448766860541014
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.344133
+ - -0.795768
+ - 0.182258
+ - - -9.0e-06
+ - 0.226243
+ - -0.438775
+ - - -7.2e-05
+ - 1.46205
+ - 0.376764
+ - - 1.344219
+ - -0.795632
+ - 0.18226
+ - - -2.269802
+ - -0.277019
+ - -0.05727
+ - - -1.330687
+ - -1.769699
+ - -0.305798
+ - - -1.246546
+ - -0.895495
+ - 1.262515
+ - - 1.246641
+ - -0.895368
+ - 1.262517
+ - - 1.330873
+ - -1.769564
+ - -0.305796
+ - - 2.269836
+ - -0.276788
+ - -0.057267
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.470825839906766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.362836
+ - -0.802176
+ - 0.179906
+ - - -1.0e-05
+ - 0.254479
+ - -0.433096
+ - - -7.3e-05
+ - 1.488316
+ - 0.41168
+ - - 1.362922
+ - -0.802037
+ - 0.179908
+ - - -2.291796
+ - -0.297684
+ - -0.086146
+ - - -1.320417
+ - -1.783084
+ - -0.297747
+ - - -1.282642
+ - -0.882292
+ - 1.265396
+ - - 1.282735
+ - -0.882162
+ - 1.265397
+ - - 1.320604
+ - -1.782949
+ - -0.297746
+ - - 2.291831
+ - -0.297451
+ - -0.086143
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.117725225293096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.338923
+ - -0.795809
+ - 0.181781
+ - - -1.0e-05
+ - 0.231658
+ - -0.440349
+ - - -8.7e-05
+ - 1.467082
+ - 0.383714
+ - - 1.33901
+ - -0.795674
+ - 0.181784
+ - - -2.26881
+ - -0.285419
+ - -0.059827
+ - - -1.313782
+ - -1.770374
+ - -0.305452
+ - - -1.236351
+ - -0.891595
+ - 1.262511
+ - - 1.236453
+ - -0.891461
+ - 1.262515
+ - - 1.313967
+ - -1.770248
+ - -0.305438
+ - - 2.268851
+ - -0.285202
+ - -0.059832
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.65139738748094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.338923
+ - -0.795809
+ - 0.181781
+ - - -1.0e-05
+ - 0.231658
+ - -0.440349
+ - - -8.7e-05
+ - 1.467082
+ - 0.383714
+ - - 1.33901
+ - -0.795674
+ - 0.181784
+ - - -2.26881
+ - -0.285419
+ - -0.059827
+ - - -1.313782
+ - -1.770374
+ - -0.305452
+ - - -1.236351
+ - -0.891595
+ - 1.262511
+ - - 1.236453
+ - -0.891461
+ - 1.262515
+ - - 1.313967
+ - -1.770248
+ - -0.305438
+ - - 2.268851
+ - -0.285202
+ - -0.059832
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.195589794568825
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.338923
+ - -0.795809
+ - 0.181781
+ - - -1.0e-05
+ - 0.231658
+ - -0.440349
+ - - -8.7e-05
+ - 1.467082
+ - 0.383714
+ - - 1.33901
+ - -0.795674
+ - 0.181784
+ - - -2.26881
+ - -0.285419
+ - -0.059827
+ - - -1.313782
+ - -1.770374
+ - -0.305452
+ - - -1.236351
+ - -0.891595
+ - 1.262511
+ - - 1.236453
+ - -0.891461
+ - 1.262515
+ - - 1.313967
+ - -1.770248
+ - -0.305438
+ - - 2.268851
+ - -0.285202
+ - -0.059832
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.18352839282016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.357874
+ - -0.800876
+ - 0.183653
+ - - -1.0e-05
+ - 0.254815
+ - -0.437328
+ - - -7.4e-05
+ - 1.49994
+ - 0.38131
+ - - 1.357961
+ - -0.800738
+ - 0.183654
+ - - -2.290793
+ - -0.29348
+ - -0.068257
+ - - -1.322559
+ - -1.777884
+ - -0.305173
+ - - -1.269923
+ - -0.898975
+ - 1.268486
+ - - 1.270018
+ - -0.898846
+ - 1.268488
+ - - 1.322745
+ - -1.777749
+ - -0.305171
+ - - 2.290829
+ - -0.293247
+ - -0.068254
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.95274126008011
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.341147
+ - -0.797329
+ - 0.180231
+ - - -9.0e-06
+ - 0.229469
+ - -0.443432
+ - - -7.2e-05
+ - 1.458431
+ - 0.388699
+ - - 1.341233
+ - -0.797193
+ - 0.180232
+ - - -2.268047
+ - -0.28008
+ - -0.058336
+ - - -1.321431
+ - -1.772772
+ - -0.304407
+ - - -1.232769
+ - -0.887602
+ - 1.260579
+ - - 1.232863
+ - -0.887477
+ - 1.260581
+ - - 1.321617
+ - -1.772638
+ - -0.304405
+ - - 2.268081
+ - -0.27985
+ - -0.058333
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.33914568798954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.341891
+ - -0.796496
+ - 0.183202
+ - - -9.0e-06
+ - 0.229083
+ - -0.437382
+ - - -7.2e-05
+ - 1.468687
+ - 0.373657
+ - - 1.341977
+ - -0.79636
+ - 0.183203
+ - - -2.269546
+ - -0.277677
+ - -0.058262
+ - - -1.325134
+ - -1.771074
+ - -0.307927
+ - - -1.244278
+ - -0.897472
+ - 1.26555
+ - - 1.244373
+ - -0.897346
+ - 1.265552
+ - - 1.32532
+ - -1.77094
+ - -0.307925
+ - - 2.269579
+ - -0.277446
+ - -0.05826
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.88100700709181
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.358367
+ - -0.802885
+ - 0.185472
+ - - -1.0e-05
+ - 0.247474
+ - -0.448683
+ - - -7.4e-05
+ - 1.501761
+ - 0.372116
+ - - 1.358454
+ - -0.802747
+ - 0.185474
+ - - -2.288381
+ - -0.283519
+ - -0.055646
+ - - -1.334128
+ - -1.778087
+ - -0.310004
+ - - -1.252645
+ - -0.903963
+ - 1.269162
+ - - 1.252741
+ - -0.903836
+ - 1.269163
+ - - 1.334314
+ - -1.777952
+ - -0.310002
+ - - 2.288415
+ - -0.283286
+ - -0.055643
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.1082929908145
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.3389227885
+ - -0.7958086759
+ - 0.1817811689
+ - - -9.6864e-06
+ - 0.2316583122
+ - -0.4403485895
+ - - -8.73335e-05
+ - 1.4670823696
+ - 0.3837136467
+ - - 1.3390102333
+ - -0.7956735169
+ - 0.1817838424
+ - - -2.2688096307
+ - -0.2854189559
+ - -0.0598268917
+ - - -1.3137815543
+ - -1.770373577
+ - -0.3054517883
+ - - -1.2363510088
+ - -0.8915951329
+ - 1.262510951
+ - - 1.2364533246
+ - -0.8914611372
+ - 1.2625154984
+ - - 1.313966553
+ - -1.7702482733
+ - -0.3054376947
+ - - 2.2688512977
+ - -0.2852017195
+ - -0.0598318843
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.43148065558851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -1.343942
+ - -0.796098
+ - 0.183057
+ - - -9.0e-06
+ - 0.232356
+ - -0.436836
+ - - -7.2e-05
+ - 1.467523
+ - 0.374743
+ - - 1.344028
+ - -0.795962
+ - 0.183059
+ - - -2.271757
+ - -0.280631
+ - -0.059183
+ - - -1.323184
+ - -1.770137
+ - -0.306466
+ - - -1.247701
+ - -0.896908
+ - 1.264339
+ - - 1.247796
+ - -0.896782
+ - 1.264341
+ - - 1.32337
+ - -1.770003
+ - -0.306465
+ - - 2.271791
+ - -0.2804
+ - -0.05918
+ isotopes:
+ - 12
+ - 32
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - S
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dimethylamine.yml b/input/reference_sets/main/Dimethylamine.yml
index 25b74d4bc6..2ce702d100 100644
--- a/input/reference_sets/main/Dimethylamine.yml
+++ b/input/reference_sets/main/Dimethylamine.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.7804511603391349
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.208319
+ - -0.223604
+ - 0.019706
+ - - -2.0e-06
+ - 0.566967
+ - -0.149483
+ - - -1.208324
+ - -0.223594
+ - 0.019756
+ - - 2.084064
+ - 0.420418
+ - -0.052721
+ - - 1.253208
+ - -0.766569
+ - 0.976267
+ - - 1.270234
+ - -0.962292
+ - -0.781242
+ - - 1.4e-05
+ - 1.330464
+ - 0.514783
+ - - -1.270278
+ - -0.962281
+ - -0.78119
+ - - -1.253178
+ - -0.766559
+ - 0.976319
+ - - -2.084066
+ - 0.420435
+ - -0.052636
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.430714184880431
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.212104
+ - -0.223817
+ - 0.020416
+ - - -2.0e-06
+ - 0.561093
+ - -0.143454
+ - - -1.212108
+ - -0.223807
+ - 0.020465
+ - - 2.085668
+ - 0.425051
+ - -0.053864
+ - - 1.26482
+ - -0.769736
+ - 0.977209
+ - - 1.277109
+ - -0.962456
+ - -0.782347
+ - - 1.4e-05
+ - 1.33416
+ - 0.509948
+ - - -1.277152
+ - -0.962446
+ - -0.782295
+ - - -1.264789
+ - -0.769726
+ - 0.977261
+ - - -2.08567
+ - 0.425068
+ - -0.053779
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.8236034214478045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.21408
+ - -0.223251
+ - 0.019724
+ - - -2.0e-06
+ - 0.566691
+ - -0.150969
+ - - -1.214084
+ - -0.223241
+ - 0.019774
+ - - 2.091932
+ - 0.427544
+ - -0.054431
+ - - 1.265288
+ - -0.771132
+ - 0.981781
+ - - 1.278454
+ - -0.966412
+ - -0.784996
+ - - 1.4e-05
+ - 1.333148
+ - 0.516134
+ - - -1.278497
+ - -0.966401
+ - -0.784944
+ - - -1.265258
+ - -0.771121
+ - 0.981833
+ - - -2.091934
+ - 0.427561
+ - -0.054346
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.8607351115849555
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.215762
+ - -0.22335
+ - 0.020165
+ - - -2.0e-06
+ - 0.567091
+ - -0.152411
+ - - -1.215767
+ - -0.22334
+ - 0.020215
+ - - 2.097401
+ - 0.429748
+ - -0.053607
+ - - 1.268252
+ - -0.775022
+ - 0.98536
+ - - 1.283766
+ - -0.968683
+ - -0.788548
+ - - 1.4e-05
+ - 1.340864
+ - 0.51502
+ - - -1.283809
+ - -0.968673
+ - -0.788496
+ - - -1.268221
+ - -0.775011
+ - 0.985412
+ - - -2.097403
+ - 0.429765
+ - -0.053522
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.353142418776573
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.208131
+ - -0.223578
+ - 0.020786
+ - - -2.0e-06
+ - 0.557147
+ - -0.13839
+ - - -1.208136
+ - -0.223568
+ - 0.020835
+ - - 2.081378
+ - 0.424082
+ - -0.053708
+ - - 1.261094
+ - -0.769304
+ - 0.97582
+ - - 1.273853
+ - -0.960705
+ - -0.782087
+ - - 1.4e-05
+ - 1.335202
+ - 0.506093
+ - - -1.273896
+ - -0.960695
+ - -0.782035
+ - - -1.261064
+ - -0.769294
+ - 0.975871
+ - - -2.08138
+ - 0.424099
+ - -0.053623
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.001654912757383
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.215444
+ - -0.223227
+ - 0.020111
+ - - -2.0e-06
+ - 0.563536
+ - -0.146849
+ - - -1.215449
+ - -0.223217
+ - 0.020161
+ - - 2.089716
+ - 0.427352
+ - -0.060068
+ - - 1.275552
+ - -0.767992
+ - 0.97994
+ - - 1.28263
+ - -0.964811
+ - -0.782243
+ - - 1.4e-05
+ - 1.327157
+ - 0.520692
+ - - -1.282673
+ - -0.964801
+ - -0.782191
+ - - -1.275522
+ - -0.767982
+ - 0.979992
+ - - -2.089718
+ - 0.427369
+ - -0.059984
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.7730015727441172
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.206287
+ - -0.223611
+ - 0.020142
+ - - 0.0
+ - 0.567122
+ - -0.148496
+ - - -1.206286
+ - -0.223612
+ - 0.020142
+ - - 2.083987
+ - 0.418263
+ - -0.049559
+ - - 1.246427
+ - -0.767805
+ - 0.976065
+ - - 1.269732
+ - -0.961295
+ - -0.782247
+ - - 2.0e-06
+ - 1.335145
+ - 0.509251
+ - - -1.26987
+ - -0.961122
+ - -0.782396
+ - - -1.246312
+ - -0.768006
+ - 0.975956
+ - - -2.083974
+ - 0.418306
+ - -0.049297
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.763627318825539
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.206287
+ - -0.223611
+ - 0.020142
+ - - 0.0
+ - 0.567122
+ - -0.148496
+ - - -1.206286
+ - -0.223612
+ - 0.020142
+ - - 2.083987
+ - 0.418263
+ - -0.049559
+ - - 1.246427
+ - -0.767805
+ - 0.976065
+ - - 1.269732
+ - -0.961295
+ - -0.782247
+ - - 2.0e-06
+ - 1.335145
+ - 0.509251
+ - - -1.26987
+ - -0.961122
+ - -0.782396
+ - - -1.246312
+ - -0.768006
+ - 0.975956
+ - - -2.083974
+ - 0.418306
+ - -0.049297
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.970610421378744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.206287
+ - -0.223611
+ - 0.020142
+ - - 0.0
+ - 0.567122
+ - -0.148496
+ - - -1.206286
+ - -0.223612
+ - 0.020142
+ - - 2.083987
+ - 0.418263
+ - -0.049559
+ - - 1.246427
+ - -0.767805
+ - 0.976065
+ - - 1.269732
+ - -0.961295
+ - -0.782247
+ - - 2.0e-06
+ - 1.335145
+ - 0.509251
+ - - -1.26987
+ - -0.961122
+ - -0.782396
+ - - -1.246312
+ - -0.768006
+ - 0.975956
+ - - -2.083974
+ - 0.418306
+ - -0.049297
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.987938099976124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.212891
+ - -0.222168
+ - 0.019942
+ - - -2.0e-06
+ - 0.564148
+ - -0.148348
+ - - -1.212895
+ - -0.222159
+ - 0.019991
+ - - 2.089665
+ - 0.427846
+ - -0.057439
+ - - 1.271909
+ - -0.768867
+ - 0.979716
+ - - 1.278721
+ - -0.966133
+ - -0.782851
+ - - 1.4e-05
+ - 1.327833
+ - 0.518939
+ - - -1.278764
+ - -0.966123
+ - -0.782799
+ - - -1.271878
+ - -0.768856
+ - 0.979768
+ - - -2.089667
+ - 0.427863
+ - -0.057354
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.507636507946211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.204405
+ - -0.223095
+ - 0.020068
+ - - -2.0e-06
+ - 0.569073
+ - -0.145013
+ - - -1.204409
+ - -0.223085
+ - 0.020118
+ - - 2.083409
+ - 0.41623
+ - -0.055918
+ - - 1.246844
+ - -0.765883
+ - 0.97634
+ - - 1.258485
+ - -0.962261
+ - -0.781757
+ - - 1.5e-05
+ - 1.334282
+ - 0.516867
+ - - -1.258528
+ - -0.962251
+ - -0.781705
+ - - -1.246813
+ - -0.765873
+ - 0.976392
+ - - -2.083411
+ - 0.416247
+ - -0.055832
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.0215505386015
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.203668
+ - -0.221786
+ - 0.020398
+ - - -2.0e-06
+ - 0.560406
+ - -0.143311
+ - - -1.203672
+ - -0.221776
+ - 0.020448
+ - - 2.081021
+ - 0.423793
+ - -0.055449
+ - - 1.257517
+ - -0.768657
+ - 0.977741
+ - - 1.269058
+ - -0.962299
+ - -0.782317
+ - - 1.4e-05
+ - 1.33083
+ - 0.511887
+ - - -1.269101
+ - -0.96229
+ - -0.782264
+ - - -1.257487
+ - -0.768645
+ - 0.977793
+ - - -2.081023
+ - 0.42381
+ - -0.055364
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.5766594583931746
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.216706
+ - -0.225237
+ - 0.019851
+ - - -2.0e-06
+ - 0.569058
+ - -0.152539
+ - - -1.21671
+ - -0.225228
+ - 0.019901
+ - - 2.091979
+ - 0.427169
+ - -0.056843
+ - - 1.266456
+ - -0.769321
+ - 0.9823
+ - - 1.276034
+ - -0.966905
+ - -0.785156
+ - - 1.4e-05
+ - 1.33287
+ - 0.521554
+ - - -1.276077
+ - -0.966895
+ - -0.785104
+ - - -1.266425
+ - -0.769311
+ - 0.982352
+ - - -2.091981
+ - 0.427186
+ - -0.056757
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,6 +1099,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.327982727822736
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2062871683
+ - -0.2236113867
+ - 0.0201415408
+ - - 3.678e-07
+ - 0.5671221547
+ - -0.1484960502
+ - - -1.2062862461
+ - -0.2236122579
+ - 0.0201415628
+ - - 2.0839867187
+ - 0.4182630543
+ - -0.0495585481
+ - - 1.2464265781
+ - -0.7678049169
+ - 0.976064861
+ - - 1.2697315837
+ - -0.9612949682
+ - -0.7822465919
+ - - 2.1952e-06
+ - 1.3351451938
+ - 0.5092506405
+ - - -1.2698698062
+ - -0.9611221318
+ - -0.7823958418
+ - - -1.2463115367
+ - -0.7680058455
+ - 0.9759558008
+ - - -2.0839738406
+ - 0.4183063989
+ - -0.0492965906
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.2063473922666175
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.206934
+ - -0.22282
+ - 0.020088
+ - - -2.0e-06
+ - 0.561111
+ - -0.142138
+ - - -1.206938
+ - -0.222811
+ - 0.020137
+ - - 2.082272
+ - 0.423356
+ - -0.055674
+ - - 1.258092
+ - -0.767267
+ - 0.977232
+ - - 1.270102
+ - -0.962186
+ - -0.78219
+ - - 1.4e-05
+ - 1.330061
+ - 0.512548
+ - - -1.270145
+ - -0.962175
+ - -0.782137
+ - - -1.258061
+ - -0.767257
+ - 0.977284
+ - - -2.082274
+ - 0.423373
+ - -0.055589
+ isotopes:
+ - 12
+ - 14
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dinitrogen dioxide.yml b/input/reference_sets/main/Dinitrogen dioxide.yml
index f0c66c9b7f..50238f9730 100644
--- a/input/reference_sets/main/Dinitrogen dioxide.yml
+++ b/input/reference_sets/main/Dinitrogen dioxide.yml
@@ -73,6 +73,448 @@ calculated_data:
- N
- N
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.02945902993601
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.679088
+ - -0.102473
+ - 0.030091
+ - - 0.527853
+ - -0.030395
+ - -0.022258
+ - - 0.31533
+ - 0.097905
+ - -2.036909
+ - - 1.429493
+ - 0.048204
+ - -2.335987
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.630258770708735
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.671995
+ - -0.106685
+ - 0.110705
+ - - 0.539621
+ - -0.02903
+ - -0.058529
+ - - 0.334398
+ - 0.094883
+ - -2.003996
+ - - 1.405749
+ - 0.054074
+ - -2.413242
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.274229747907754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.681054
+ - -0.105102
+ - 0.073831
+ - - 0.532493
+ - -0.031764
+ - -0.003357
+ - - 0.315924
+ - 0.098993
+ - -2.05638
+ - - 1.422292
+ - 0.051114
+ - -2.379156
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.79899543837203
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.682963
+ - -0.104233
+ - 0.056681
+ - - 0.527797
+ - -0.030947
+ - -0.012635
+ - - 0.313269
+ - 0.098571
+ - -2.046301
+ - - 1.427735
+ - 0.049851
+ - -2.362807
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.24931564223783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.666212
+ - -0.101819
+ - 0.031979
+ - - 0.533055
+ - -0.026435
+ - -0.096895
+ - - 0.335981
+ - 0.092555
+ - -1.965086
+ - - 1.416515
+ - 0.048939
+ - -2.335059
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.48716471602928
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.676062
+ - -0.102846
+ - 0.039501
+ - - 0.531031
+ - -0.030113
+ - -0.030227
+ - - 0.320096
+ - 0.097196
+ - -2.029805
+ - - 1.424575
+ - 0.049004
+ - -2.344531
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.67446149162382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.666247
+ - -0.102443
+ - 0.033706
+ - - 0.531242
+ - -0.024633
+ - -0.114809
+ - - 0.338052
+ - 0.090732
+ - -1.947071
+ - - 1.416223
+ - 0.049585
+ - -2.336888
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.45740008399089
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.666247
+ - -0.102443
+ - 0.033706
+ - - 0.531242
+ - -0.024633
+ - -0.114809
+ - - 0.338052
+ - 0.090732
+ - -1.947071
+ - - 1.416223
+ - 0.049585
+ - -2.336888
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 47.727464093526045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.666247
+ - -0.102443
+ - 0.033706
+ - - 0.531242
+ - -0.024633
+ - -0.114809
+ - - 0.338052
+ - 0.090732
+ - -1.947071
+ - - 1.416223
+ - 0.049585
+ - -2.336888
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.65108368932911
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.676024
+ - -0.102246
+ - 0.029118
+ - - 0.528131
+ - -0.028939
+ - -0.047694
+ - - 0.320905
+ - 0.096135
+ - -2.01211
+ - - 1.426703
+ - 0.048291
+ - -2.334376
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.184110124854385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.663211
+ - -0.101622
+ - 0.031586
+ - - 0.533403
+ - -0.025043
+ - -0.121652
+ - - 0.341486
+ - 0.090849
+ - -1.940966
+ - - 1.413664
+ - 0.049057
+ - -2.33403
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.85833466716397
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.667828
+ - -0.102035
+ - 0.034097
+ - - 0.533275
+ - -0.027322
+ - -0.0816
+ - - 0.333007
+ - 0.093591
+ - -1.980081
+ - - 1.417653
+ - 0.049008
+ - -2.337478
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.00353790176985
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.681427
+ - -0.103607
+ - 0.047382
+ - - 0.528037
+ - -0.030788
+ - -0.015627
+ - - 0.314127
+ - 0.098353
+ - -2.043428
+ - - 1.428172
+ - 0.049283
+ - -2.353388
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +549,74 @@ calculated_data:
- N
- N
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.878207628026054
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.6662469432
+ - -0.1024431763
+ - 0.0337055878
+ - - 0.5312424355
+ - -0.0246328553
+ - -0.1148088199
+ - - 0.3380517243
+ - 0.0907318637
+ - -1.9470706107
+ - - 1.4162228077
+ - 0.0495853245
+ - -2.3368879394
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.32623740093733
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.665536
+ - -0.104091
+ - 0.072103
+ - - 0.537134
+ - -0.026235
+ - -0.104757
+ - - 0.341608
+ - 0.091834
+ - -1.958282
+ - - 1.407486
+ - 0.051734
+ - -2.374126
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dinitrogen pentoxide.yml b/input/reference_sets/main/Dinitrogen pentoxide.yml
index 38cbe80cd2..2cac1e104b 100644
--- a/input/reference_sets/main/Dinitrogen pentoxide.yml
+++ b/input/reference_sets/main/Dinitrogen pentoxide.yml
@@ -106,13 +106,111 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.12870243298341202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.173518
+ - -1.042074
+ - 0.640965
+ - - 1.266951
+ - 0.008514
+ - 0.089494
+ - - 2.179677
+ - 0.613957
+ - -0.374237
+ - - 0.000728
+ - 0.835339
+ - -1.8e-05
+ - - -1.266938
+ - 0.010716
+ - -0.089504
+ - - -1.175349
+ - -1.040015
+ - -0.641012
+ - - -2.178594
+ - 0.617728
+ - 0.37428
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.3210628211677926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177866
+ - -1.019318
+ - 0.677762
+ - - 1.263614
+ - 0.012378
+ - 0.100548
+ - - 2.171118
+ - 0.606693
+ - -0.37488
+ - - -0.000482
+ - 0.822417
+ - -0.0128
+ - - -1.263627
+ - 0.007764
+ - -0.100852
+ - - -1.176657
+ - -1.041312
+ - -0.645647
+ - - -2.171838
+ - 0.615541
+ - 0.355837
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -29.227205681858045
+ value: -29.227205681858024
class: ThermoData
xyz_dict:
coords:
@@ -155,6 +253,545 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.295487094520816
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.24536
+ - -1.080686
+ - 0.568847
+ - - 1.318937
+ - 0.004008
+ - 0.089345
+ - - 2.219368
+ - 0.676097
+ - -0.299603
+ - - -0.000167
+ - 0.81851
+ - -0.013024
+ - - -1.318941
+ - 0.000617
+ - -0.089409
+ - - -1.244919
+ - -1.098743
+ - -0.534181
+ - - -2.219644
+ - 0.684362
+ - 0.277992
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.533236870484984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.25304
+ - -1.104767
+ - 0.523743
+ - - 1.322024
+ - 0.004571
+ - 0.083569
+ - - 2.226494
+ - 0.703801
+ - -0.269901
+ - - -0.000422
+ - 0.81343
+ - -0.014169
+ - - -1.322027
+ - 0.000291
+ - -0.083642
+ - - -1.251891
+ - -1.123627
+ - -0.484932
+ - - -2.227223
+ - 0.710465
+ - 0.245298
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.5774649176780136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.143235
+ - -0.996977
+ - 0.70079
+ - - 1.229493
+ - 0.013533
+ - 0.096279
+ - - 2.134087
+ - 0.572427
+ - -0.412565
+ - - 0.000699
+ - 0.818546
+ - -6.3e-05
+ - - -1.229471
+ - 0.015622
+ - -0.096291
+ - - -1.144935
+ - -0.995139
+ - -0.700625
+ - - -2.133114
+ - 0.576153
+ - 0.412442
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.022083461699139
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187928
+ - -1.045814
+ - 0.638852
+ - - 1.27395
+ - 0.007711
+ - 0.096802
+ - - 2.182642
+ - 0.623868
+ - -0.352598
+ - - 0.001358
+ - 0.820394
+ - -0.0034
+ - - -1.273923
+ - 0.011132
+ - -0.096885
+ - - -1.191403
+ - -1.047119
+ - -0.630203
+ - - -2.180559
+ - 0.633993
+ - 0.347398
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.556469936762852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.121355
+ - -0.978921
+ - 0.733589
+ - - 1.216248
+ - 0.016054
+ - 0.098649
+ - - 2.127376
+ - 0.54683
+ - -0.434974
+ - - 0.001024
+ - 0.831592
+ - -0.004131
+ - - -1.216296
+ - 0.01726
+ - -0.098914
+ - - -1.126073
+ - -0.977844
+ - -0.734185
+ - - -2.12364
+ - 0.549193
+ - 0.439932
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.650568978054602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.121355
+ - -0.978921
+ - 0.733589
+ - - 1.216248
+ - 0.016054
+ - 0.098649
+ - - 2.127376
+ - 0.54683
+ - -0.434974
+ - - 0.001024
+ - 0.831592
+ - -0.004131
+ - - -1.216296
+ - 0.01726
+ - -0.098914
+ - - -1.126073
+ - -0.977844
+ - -0.734185
+ - - -2.12364
+ - 0.549193
+ - 0.439932
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.072765581696514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.121355
+ - -0.978921
+ - 0.733589
+ - - 1.216248
+ - 0.016054
+ - 0.098649
+ - - 2.127376
+ - 0.54683
+ - -0.434974
+ - - 0.001024
+ - 0.831592
+ - -0.004131
+ - - -1.216296
+ - 0.01726
+ - -0.098914
+ - - -1.126073
+ - -0.977844
+ - -0.734185
+ - - -2.12364
+ - 0.549193
+ - 0.439932
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.31308808381803843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177842
+ - -1.048196
+ - 0.627449
+ - - 1.25821
+ - 0.009801
+ - 0.088725
+ - - 2.168479
+ - 0.62892
+ - -0.362453
+ - - 0.000642
+ - 0.816073
+ - -0.000289
+ - - -1.258194
+ - 0.011731
+ - -0.088742
+ - - -1.179504
+ - -1.046758
+ - -0.626746
+ - - -2.167482
+ - 0.632593
+ - 0.362024
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.878512834656754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.113189
+ - -0.972493
+ - 0.735196
+ - - 1.206792
+ - 0.017008
+ - 0.098764
+ - - 2.113448
+ - 0.541369
+ - -0.439366
+ - - 0.000705
+ - 0.824828
+ - -4.3e-05
+ - - -1.206763
+ - 0.019069
+ - -0.098775
+ - - -1.114849
+ - -0.97067
+ - -0.735083
+ - - -2.112528
+ - 0.545053
+ - 0.439274
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.678217165396753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.155843
+ - -1.008943
+ - 0.676748
+ - - 1.235676
+ - 0.013758
+ - 0.094141
+ - - 2.137866
+ - 0.59712
+ - -0.391045
+ - - -6.6e-05
+ - 0.807775
+ - -0.007138
+ - - -1.235684
+ - 0.011862
+ - -0.094369
+ - - -1.155723
+ - -1.020807
+ - -0.659096
+ - - -2.137917
+ - 0.6034
+ - 0.380726
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.50785279819102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.248472
+ - -1.099491
+ - 0.534001
+ - - 1.319803
+ - 0.004425
+ - 0.084562
+ - - 2.223935
+ - 0.696635
+ - -0.277951
+ - - -0.000382
+ - 0.816761
+ - -0.013755
+ - - -1.319807
+ - 0.000338
+ - -0.084632
+ - - -1.247436
+ - -1.118023
+ - -0.496634
+ - - -2.224591
+ - 0.703519
+ - 0.254375
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.393348054894782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1213546653
+ - -0.9789211101
+ - 0.733589161
+ - - 1.2162480436
+ - 0.0160538987
+ - 0.0986491089
+ - - 2.1273759881
+ - 0.5468304736
+ - -0.4349737908
+ - - 0.0010243956
+ - 0.8315921845
+ - -0.0041305651
+ - - -1.2162957891
+ - 0.0172598223
+ - -0.0989140083
+ - - -1.126073394
+ - -0.9778441305
+ - -0.7341848608
+ - - -2.1236398777
+ - 0.5491930766
+ - 0.4399318427
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4955104758474638
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.459628
+ - -0.929893
+ - 0.902749
+ - - 1.201074
+ - -0.056133
+ - 0.15844
+ - - 1.744308
+ - 0.405716
+ - -0.777452
+ - - -0.059817
+ - 0.678443
+ - 0.52873
+ - - -1.187755
+ - 0.090909
+ - -0.129493
+ - - -0.971856
+ - -0.841605
+ - -0.834202
+ - - -2.185588
+ - 0.656726
+ - 0.151195
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - O
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dinitrogen tetraoxide.yml b/input/reference_sets/main/Dinitrogen tetraoxide.yml
index 2f1e3d7b49..416c05bf83 100644
--- a/input/reference_sets/main/Dinitrogen tetraoxide.yml
+++ b/input/reference_sets/main/Dinitrogen tetraoxide.yml
@@ -57,7 +57,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 3.8020677554651
+ value: 3.8020677554650977
class: ThermoData
xyz_dict:
coords:
@@ -95,6 +95,578 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.463304291516027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.359645
+ - -1.099131
+ - -0.0
+ - - 0.900521
+ - 0.00092
+ - -0.0
+ - - 1.357259
+ - 1.101965
+ - -0.0
+ - - -0.900293
+ - -0.001032
+ - 0.0
+ - - -1.357031
+ - -1.102076
+ - 0.0
+ - - -1.359418
+ - 1.099019
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.5996789304796684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.357816
+ - -1.092189
+ - -0.0
+ - - 0.90118
+ - 0.000921
+ - -0.0
+ - - 1.355444
+ - 1.095019
+ - -0.0
+ - - -0.900953
+ - -0.001033
+ - 0.0
+ - - -1.355217
+ - -1.09513
+ - 0.0
+ - - -1.357588
+ - 1.092077
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.586897187590473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.41177
+ - -1.098053
+ - -0.0
+ - - 0.951844
+ - 0.000976
+ - -0.0
+ - - 1.409386
+ - 1.101
+ - -0.0
+ - - -0.951617
+ - -0.001088
+ - 0.0
+ - - -1.409159
+ - -1.101111
+ - 0.0
+ - - -1.411542
+ - 1.097942
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.83065768608068
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.398553
+ - -1.104495
+ - -0.0
+ - - 0.935351
+ - 0.000958
+ - -0.0
+ - - 1.396155
+ - 1.107413
+ - -0.0
+ - - -0.935124
+ - -0.00107
+ - 0.0
+ - - -1.395927
+ - -1.107525
+ - 0.0
+ - - -1.398325
+ - 1.104383
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.1168849740080455
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.320098
+ - -1.085906
+ - -0.0
+ - - 0.864574
+ - 0.000881
+ - -0.0
+ - - 1.31774
+ - 1.088654
+ - -0.0
+ - - -0.864347
+ - -0.000993
+ - 0.0
+ - - -1.317513
+ - -1.088765
+ - 0.0
+ - - -1.31987
+ - 1.085794
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8983190365524194
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.356581
+ - -1.095268
+ - -0.0
+ - - 0.898995
+ - 0.000919
+ - -0.0
+ - - 1.354203
+ - 1.098095
+ - -0.0
+ - - -0.898767
+ - -0.001031
+ - 0.0
+ - - -1.353976
+ - -1.098207
+ - 0.0
+ - - -1.356354
+ - 1.095156
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.133145927556768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.312761
+ - -1.088072
+ - 0.0
+ - - 0.854927
+ - 0.000871
+ - 0.0
+ - - 1.310398
+ - 1.090804
+ - 0.0
+ - - -0.854701
+ - -0.000982
+ - 0.0
+ - - -1.31017
+ - -1.090916
+ - 0.0
+ - - -1.312534
+ - 1.08796
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.54673277350225
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.312761
+ - -1.088072
+ - 0.0
+ - - 0.854927
+ - 0.000871
+ - 0.0
+ - - 1.310398
+ - 1.090804
+ - 0.0
+ - - -0.854701
+ - -0.000982
+ - 0.0
+ - - -1.31017
+ - -1.090916
+ - 0.0
+ - - -1.312534
+ - 1.08796
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.968088567698627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.312761
+ - -1.088072
+ - 0.0
+ - - 0.854927
+ - 0.000871
+ - 0.0
+ - - 1.310398
+ - 1.090804
+ - 0.0
+ - - -0.854701
+ - -0.000982
+ - 0.0
+ - - -1.31017
+ - -1.090916
+ - 0.0
+ - - -1.312534
+ - 1.08796
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.7099670806644279
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.348827
+ - -1.097082
+ - 0.0
+ - - 0.890973
+ - 0.000909
+ - 0.0
+ - - 1.346443
+ - 1.099891
+ - 0.0
+ - - -0.890746
+ - -0.001021
+ - 0.0
+ - - -1.346215
+ - -1.100003
+ - 0.0
+ - - -1.3486
+ - 1.09697
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.566796946036845
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.30121
+ - -1.084469
+ - -0.0
+ - - 0.846486
+ - 0.000862
+ - -0.0
+ - - 1.298856
+ - 1.087176
+ - -0.0
+ - - -0.846259
+ - -0.000973
+ - 0.0
+ - - -1.298629
+ - -1.087288
+ - 0.0
+ - - -1.300983
+ - 1.084357
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.053536776760426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.327029
+ - -1.086077
+ - -0.0
+ - - 0.872564
+ - 0.00089
+ - -0.0
+ - - 1.324671
+ - 1.08884
+ - -0.0
+ - - -0.872337
+ - -0.001001
+ - 0.0
+ - - -1.324443
+ - -1.088952
+ - 0.0
+ - - -1.326802
+ - 1.085966
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.08178942613929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.400946
+ - -1.103159
+ - -0.0
+ - - 0.938615
+ - 0.000962
+ - -0.0
+ - - 1.398551
+ - 1.106082
+ - -0.0
+ - - -0.938387
+ - -0.001073
+ - 0.0
+ - - -1.398324
+ - -1.106194
+ - 0.0
+ - - -1.400719
+ - 1.103047
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +711,94 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.4134942884513215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.3127608414
+ - -1.0880721679
+ - 0.0
+ - - 0.8549272279
+ - 0.0008706665
+ - 0.0
+ - - 1.3103984456
+ - 1.0908043638
+ - 0.0
+ - - -0.8547008155
+ - -0.0009821621
+ - 0.0
+ - - -1.3101699475
+ - -1.0909160089
+ - 0.0
+ - - -1.3125336038
+ - 1.0879603244
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.5039937194459709
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.321965
+ - -1.08569
+ - -0.0
+ - - 0.865069
+ - 0.000875
+ - -0.0
+ - - 1.319596
+ - 1.088437
+ - -0.0
+ - - -0.864842
+ - -0.000987
+ - 0.0
+ - - -1.319369
+ - -1.088549
+ - 0.0
+ - - -1.321737
+ - 1.085578
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 16
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - O
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dinitrogen trioxide.yml b/input/reference_sets/main/Dinitrogen trioxide.yml
index 3366d18886..6053f2a47d 100644
--- a/input/reference_sets/main/Dinitrogen trioxide.yml
+++ b/input/reference_sets/main/Dinitrogen trioxide.yml
@@ -84,6 +84,513 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.812505721366303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.57894
+ - -1.223923
+ - 0.0
+ - - -0.64435
+ - -0.020224
+ - 0.0
+ - - 1.071883
+ - 0.744698
+ - -0.0
+ - - 1.790692
+ - -0.138838
+ - -0.0
+ - - -1.59046
+ - 0.724925
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.972856928241168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.594725
+ - -1.225861
+ - 0.0
+ - - -0.643441
+ - -0.028707
+ - 0.0
+ - - 1.065459
+ - 0.739555
+ - -0.0
+ - - 1.795189
+ - -0.12386
+ - -0.0
+ - - -1.573657
+ - 0.72551
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.701353854633216
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.623234
+ - -1.235678
+ - 0.0
+ - - -0.679406
+ - -0.031255
+ - 0.0
+ - - 1.126643
+ - 0.758234
+ - -0.0
+ - - 1.845941
+ - -0.12299
+ - -0.0
+ - - -1.621119
+ - 0.718327
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.08430122413358342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.604167
+ - -1.235551
+ - 0.0
+ - - -0.668499
+ - -0.024784
+ - 0.0
+ - - 1.111496
+ - 0.756902
+ - -0.0
+ - - 1.830125
+ - -0.133436
+ - -0.0
+ - - -1.62013
+ - 0.723506
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.685111504587645
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.572795
+ - -1.218272
+ - 0.0
+ - - -0.60983
+ - -0.028677
+ - 0.0
+ - - 1.002788
+ - 0.721596
+ - -0.0
+ - - 1.753216
+ - -0.121934
+ - -0.0
+ - - -1.524552
+ - 0.733924
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.173936439331616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.583941
+ - -1.224254
+ - 0.0
+ - - -0.645527
+ - -0.024719
+ - 0.0
+ - - 1.068864
+ - 0.742813
+ - -0.0
+ - - 1.791039
+ - -0.132832
+ - -0.0
+ - - -1.581611
+ - 0.72563
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.448494923804702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.569575
+ - -1.220254
+ - 0.0
+ - - -0.601589
+ - -0.027324
+ - 0.0
+ - - 0.992191
+ - 0.720427
+ - 0.0
+ - - 1.747365
+ - -0.123102
+ - 0.0
+ - - -1.519567
+ - 0.736892
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.8258063702668
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.569575
+ - -1.220254
+ - 0.0
+ - - -0.601589
+ - -0.027324
+ - 0.0
+ - - 0.992191
+ - 0.720427
+ - 0.0
+ - - 1.747365
+ - -0.123102
+ - 0.0
+ - - -1.519567
+ - 0.736892
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.429198295342797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.569575
+ - -1.220254
+ - 0.0
+ - - -0.601589
+ - -0.027324
+ - 0.0
+ - - 0.992191
+ - 0.720427
+ - 0.0
+ - - 1.747365
+ - -0.123102
+ - 0.0
+ - - -1.519567
+ - 0.736892
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.009636534361082
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.19787
+ - 0.614432
+ - 0.0
+ - - -0.003594
+ - 0.636219
+ - 0.0
+ - - -0.701913
+ - -1.082681
+ - 0.0
+ - - 0.205736
+ - -1.771756
+ - 0.0
+ - - -0.78598
+ - 1.547336
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.466528308754647
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.562868
+ - -1.216106
+ - 0.0
+ - - -0.594776
+ - -0.028382
+ - 0.0
+ - - 0.976523
+ - 0.714722
+ - -0.0
+ - - 1.734487
+ - -0.121768
+ - -0.0
+ - - -1.504541
+ - 0.738173
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.798391273080215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.576215
+ - -1.217678
+ - 0.0
+ - - -0.618976
+ - -0.028612
+ - 0.0
+ - - 1.017283
+ - 0.725724
+ - -0.0
+ - - 1.762098
+ - -0.12352
+ - -0.0
+ - - -1.535365
+ - 0.730724
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.674054718638244
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.598336
+ - -1.230493
+ - 0.0
+ - - -0.668872
+ - -0.021012
+ - 0.0
+ - - 1.117201
+ - 0.757182
+ - -0.0
+ - - 1.824433
+ - -0.138156
+ - -0.0
+ - - -1.625601
+ - 0.719118
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +630,84 @@ calculated_data:
- N
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.239719052624555
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.5695749504
+ - -1.2202544315
+ - 0.0
+ - - -0.6015885268
+ - -0.0273240615
+ - 0.0
+ - - 0.9921910594
+ - 0.7204268002
+ - 0.0
+ - - 1.7473649258
+ - -0.1231020162
+ - 0.0
+ - - -1.5195671914
+ - 0.7368915513
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.0688886746626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.576518
+ - -1.219721
+ - 0.0
+ - - -0.610564
+ - -0.029548
+ - 0.0
+ - - 1.003448
+ - 0.721935
+ - -0.0
+ - - 1.757003
+ - -0.120127
+ - -0.0
+ - - -1.524543
+ - 0.734099
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 14
+ - 16
+ - 16
+ symbols:
+ - O
+ - N
+ - N
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dinitrogen.yml b/input/reference_sets/main/Dinitrogen.yml
index 72b6384933..301b0af2ad 100644
--- a/input/reference_sets/main/Dinitrogen.yml
+++ b/input/reference_sets/main/Dinitrogen.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- N
- N
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.39417118894456016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.549421
+ - - 0.0
+ - 0.0
+ - -0.549421
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.2241448562080006
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.545451
+ - - 0.0
+ - 0.0
+ - -0.545451
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- N
- N
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0678902849156398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.549426
+ - - 0.0
+ - 0.0
+ - -0.549426
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.6287516274418214
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.551558
+ - - 0.0
+ - 0.0
+ - -0.551558
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9700265371443593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.543162
+ - - 0.0
+ - 0.0
+ - -0.543162
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.05417023344139568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.54772
+ - - 0.0
+ - -0.0
+ - -0.54772
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.054272569497983605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.54465
+ - - 0.0
+ - 0.0
+ - -0.54465
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.09129011572178437
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.54465
+ - - 0.0
+ - 0.0
+ - -0.54465
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.2529951249336719
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.54465
+ - - 0.0
+ - 0.0
+ - -0.54465
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.10483870966440935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.549396
+ - - 0.0
+ - 0.0
+ - -0.549396
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.30352518272425627
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.54303
+ - - 0.0
+ - 0.0
+ - -0.54303
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.8632662714391623
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.544742
+ - - 0.0
+ - 0.0
+ - -0.544742
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.326744610709592
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.55006
+ - - 0.0
+ - 0.0
+ - -0.55006
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,13 +411,61 @@ calculated_data:
symbols:
- N
- N
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.509794280356096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5446495561
+ - - 0.0
+ - 0.0
+ - -0.5446495561
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0357560429600665
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.543939
+ - - 0.0
+ - 0.0
+ - -0.543939
+ isotopes:
+ - 14
+ - 14
+ symbols:
+ - N
+ - N
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.9736574916259182
+ value: 0.973657491625918
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Dioxidanide.yml b/input/reference_sets/main/Dioxidanide.yml
index d415e11949..0689e820a6 100644
--- a/input/reference_sets/main/Dioxidanide.yml
+++ b/input/reference_sets/main/Dioxidanide.yml
@@ -62,6 +62,64 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.673965282786789
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.705208
+ - 0.126262
+ - 0.0
+ - - -0.811667
+ - -0.02456
+ - 0.0
+ - - 0.923374
+ - -0.810365
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.54406572457432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.701038
+ - 0.123401
+ - 0.0
+ - - -0.8145
+ - -0.020619
+ - 0.0
+ - - 0.930377
+ - -0.811445
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.595377934067899
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.711317
+ - 0.12901
+ - 0.0
+ - - -0.820494
+ - -0.024192
+ - 0.0
+ - - 0.926093
+ - -0.813482
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.22558279196761
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.710971
+ - 0.131932
+ - 0.0
+ - - -0.821229
+ - -0.024096
+ - 0.0
+ - - 0.927172
+ - -0.8165
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.912320479963599
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.689486
+ - 0.120263
+ - 0.0
+ - - -0.80247
+ - -0.019483
+ - 0.0
+ - - 0.929899
+ - -0.809443
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.517190917668778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.709574
+ - 0.126293
+ - 0.0
+ - - -0.815047
+ - -0.025355
+ - 0.0
+ - - 0.922388
+ - -0.809602
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.76207269175949
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683709
+ - 0.118285
+ - -0.0
+ - - -0.800411
+ - -0.017047
+ - 0.0
+ - - 0.933617
+ - -0.809901
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.39780341975656
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683709
+ - 0.118285
+ - -0.0
+ - - -0.800411
+ - -0.017047
+ - 0.0
+ - - 0.933617
+ - -0.809901
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.755691318287393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683709
+ - 0.118285
+ - -0.0
+ - - -0.800411
+ - -0.017047
+ - 0.0
+ - - 0.933617
+ - -0.809901
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.397763774699932
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.699583
+ - 0.123346
+ - 0.0
+ - - -0.813133
+ - -0.020457
+ - 0.0
+ - - 0.930465
+ - -0.811553
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.104616088061716
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.68092
+ - 0.1178
+ - 0.0
+ - - -0.79559
+ - -0.017689
+ - 0.0
+ - - 0.931585
+ - -0.808775
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.107253361772759
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.686395
+ - 0.120132
+ - 0.0
+ - - -0.797668
+ - -0.020006
+ - 0.0
+ - - 0.928188
+ - -0.80879
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.629612422284506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.713338
+ - 0.13087
+ - 0.0
+ - - -0.823354
+ - -0.024236
+ - 0.0
+ - - 0.926931
+ - -0.815298
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,13 +497,71 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.22336692600297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6837088229
+ - 0.1182848894
+ - -0.0
+ - - -0.8004109657
+ - -0.0170472311
+ - 0.0
+ - - 0.9336171421
+ - -0.8099012663
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.130814199299959
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.686213
+ - 0.118809
+ - 0.0
+ - - -0.798001
+ - -0.019565
+ - 0.0
+ - - 0.928703
+ - -0.807908
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -8.107153783640598
+ value: -8.107153783640596
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Dioxidanyl.yml b/input/reference_sets/main/Dioxidanyl.yml
index 2cc485ac75..b21b0d1b6b 100644
--- a/input/reference_sets/main/Dioxidanyl.yml
+++ b/input/reference_sets/main/Dioxidanyl.yml
@@ -63,6 +63,64 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.190023326605389
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.598742
+ - 0.126845
+ - 0.0
+ - - -0.718797
+ - -0.028246
+ - 0.0
+ - - 0.96021
+ - -0.780034
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.7810603218924848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.596508
+ - 0.125234
+ - 0.0
+ - - -0.720839
+ - -0.02577
+ - 0.0
+ - - 0.964485
+ - -0.780898
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.5491835450198326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.599207
+ - 0.128729
+ - 0.0
+ - - -0.725694
+ - -0.025813
+ - 0.0
+ - - 0.966642
+ - -0.784351
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.7068565753984778
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.600479
+ - 0.131556
+ - 0.0
+ - - -0.730015
+ - -0.025179
+ - 0.0
+ - - 0.96969
+ - -0.787812
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.985323159982542
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.591425
+ - 0.1234
+ - 0.0
+ - - -0.713574
+ - -0.025886
+ - 0.0
+ - - 0.962303
+ - -0.778948
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.0452000848401664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.597972
+ - 0.124411
+ - 0.0
+ - - -0.721635
+ - -0.026022
+ - 0.0
+ - - 0.963818
+ - -0.779823
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.657055759430713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.593527
+ - 0.124655
+ - -0.0
+ - - -0.713549
+ - -0.027307
+ - -0.0
+ - - 0.960177
+ - -0.778782
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.6914396270807344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.593527
+ - 0.124655
+ - -0.0
+ - - -0.713549
+ - -0.027307
+ - -0.0
+ - - 0.960177
+ - -0.778782
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.206587012854042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.593527
+ - 0.124655
+ - -0.0
+ - - -0.713549
+ - -0.027307
+ - -0.0
+ - - 0.960177
+ - -0.778782
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.8425876985608283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.596493
+ - 0.125723
+ - 0.0
+ - - -0.718976
+ - -0.026706
+ - 0.0
+ - - 0.962637
+ - -0.780452
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.1077075274105574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.587824
+ - 0.121993
+ - 0.0
+ - - -0.709035
+ - -0.025672
+ - 0.0
+ - - 0.961365
+ - -0.777755
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.2365315468187394
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.589762
+ - 0.123268
+ - 0.0
+ - - -0.710377
+ - -0.026395
+ - 0.0
+ - - 0.960769
+ - -0.778307
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.15259313122646614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.603664
+ - 0.13075
+ - 0.0
+ - - -0.730453
+ - -0.026525
+ - 0.0
+ - - 0.966943
+ - -0.785659
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.0017468692849296
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5935271057
+ - 0.1246549104
+ - -0.0
+ - - -0.7135491823
+ - -0.0273071381
+ - -0.0
+ - - 0.9601766126
+ - -0.7787821783
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.9238233084725187
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.590627
+ - 0.122251
+ - 0.0
+ - - -0.710279
+ - -0.026683
+ - 0.0
+ - - 0.959807
+ - -0.777002
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 1
+ symbols:
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dioxirane.yml b/input/reference_sets/main/Dioxirane.yml
index 75bc46ee6c..2399ecb0fe 100644
--- a/input/reference_sets/main/Dioxirane.yml
+++ b/input/reference_sets/main/Dioxirane.yml
@@ -84,6 +84,84 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.233886659957805
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.729366
+ - -3.3e-05
+ - 0.0
+ - - -0.435192
+ - 0.755279
+ - 0.0
+ - - -0.435264
+ - -0.755235
+ - 0.0
+ - - 1.29984
+ - -6.1e-05
+ - -0.925706
+ - - 1.29984
+ - -6.1e-05
+ - 0.925706
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.4582977566637485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.729299
+ - -3.3e-05
+ - 0.0
+ - - -0.43747
+ - 0.749023
+ - 0.0
+ - - -0.437541
+ - -0.748978
+ - 0.0
+ - - 1.302141
+ - -6.1e-05
+ - -0.926591
+ - - 1.302141
+ - -6.1e-05
+ - 0.926591
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.927017044632145
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.729436
+ - -3.3e-05
+ - 0.0
+ - - -0.442028
+ - 0.755234
+ - 0.0
+ - - -0.442101
+ - -0.755189
+ - 0.0
+ - - 1.306635
+ - -6.1e-05
+ - -0.931275
+ - - 1.306635
+ - -6.1e-05
+ - 0.931275
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.0146741141455724
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.731095
+ - -3.3e-05
+ - 0.0
+ - - -0.444996
+ - 0.75749
+ - 0.0
+ - - -0.445069
+ - -0.757445
+ - 0.0
+ - - 1.308761
+ - -6.1e-05
+ - -0.935844
+ - - 1.308761
+ - -6.1e-05
+ - 0.935844
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.951560263610459
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.729576
+ - -3.3e-05
+ - 0.0
+ - - -0.435505
+ - 0.73838
+ - 0.0
+ - - -0.435576
+ - -0.738336
+ - 0.0
+ - - 1.30002
+ - -6.1e-05
+ - -0.926574
+ - - 1.30002
+ - -6.1e-05
+ - 0.926574
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4614729569980804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.729461
+ - -3.3e-05
+ - 0.0
+ - - -0.43835
+ - 0.750025
+ - 0.0
+ - - -0.438421
+ - -0.74998
+ - 0.0
+ - - 1.30294
+ - -6.1e-05
+ - -0.927323
+ - - 1.30294
+ - -6.1e-05
+ - 0.927323
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.471741701230437
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.732248
+ - -3.8e-05
+ - 0.0
+ - - -0.437087
+ - 0.738359
+ - 0.0
+ - - -0.437166
+ - -0.738316
+ - 0.0
+ - - 1.300265
+ - -5.7e-05
+ - -0.927324
+ - - 1.300265
+ - -5.7e-05
+ - 0.927324
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.5815582920605396
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.732248
+ - -3.8e-05
+ - 0.0
+ - - -0.437087
+ - 0.738359
+ - 0.0
+ - - -0.437166
+ - -0.738316
+ - 0.0
+ - - 1.300265
+ - -5.7e-05
+ - -0.927324
+ - - 1.300265
+ - -5.7e-05
+ - 0.927324
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.720830752322216
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.732248
+ - -3.8e-05
+ - 0.0
+ - - -0.437087
+ - 0.738359
+ - 0.0
+ - - -0.437166
+ - -0.738316
+ - 0.0
+ - - 1.300265
+ - -5.7e-05
+ - -0.927324
+ - - 1.300265
+ - -5.7e-05
+ - 0.927324
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.13613207423167378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.727399
+ - -3.3e-05
+ - 0.0
+ - - -0.440214
+ - 0.746827
+ - 0.0
+ - - -0.440285
+ - -0.746782
+ - 0.0
+ - - 1.30584
+ - -6.1e-05
+ - -0.927268
+ - - 1.30584
+ - -6.1e-05
+ - 0.927268
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9345840860812564
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.732218
+ - -3.4e-05
+ - 0.0
+ - - -0.435534
+ - 0.731162
+ - 0.0
+ - - -0.435603
+ - -0.731118
+ - 0.0
+ - - 1.298726
+ - -6.1e-05
+ - -0.927981
+ - - 1.298726
+ - -6.1e-05
+ - 0.927981
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.000628437341741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.728329
+ - -3.3e-05
+ - 0.0
+ - - -0.435668
+ - 0.735513
+ - 0.0
+ - - -0.435739
+ - -0.735469
+ - 0.0
+ - - 1.300805
+ - -6.1e-05
+ - -0.928376
+ - - 1.300805
+ - -6.1e-05
+ - 0.928376
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.9042938135234624
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.732897
+ - -3.3e-05
+ - 0.0
+ - - -0.44153
+ - 0.757029
+ - 0.0
+ - - -0.441603
+ - -0.756984
+ - 0.0
+ - - 1.30439
+ - -6.1e-05
+ - -0.93144
+ - - 1.30439
+ - -6.1e-05
+ - 0.93144
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,13 +669,91 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.484005692400926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.7322483708
+ - -3.77563e-05
+ - 0.0
+ - - -0.4370869929
+ - 0.7383586533
+ - 0.0
+ - - -0.4371656089
+ - -0.738315986
+ - 0.0
+ - - 1.3002652792
+ - -5.74595e-05
+ - -0.9273244625
+ - - 1.3002652792
+ - -5.74595e-05
+ - 0.9273244625
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.821621836754203
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.728312
+ - -3.3e-05
+ - 0.0
+ - - -0.435567
+ - 0.734462
+ - 0.0
+ - - -0.435637
+ - -0.734418
+ - 0.0
+ - - 1.300711
+ - -6.1e-05
+ - -0.927103
+ - - 1.300711
+ - -6.1e-05
+ - 0.927103
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 5.754096707940225
+ value: 5.754096707940222
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Dioxygen.yml b/input/reference_sets/main/Dioxygen.yml
index 25c54ffa6e..08ee029fc3 100644
--- a/input/reference_sets/main/Dioxygen.yml
+++ b/input/reference_sets/main/Dioxygen.yml
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.8198423338861038
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.606879
+ - - 0.0
+ - 0.0
+ - -0.606879
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.9978817347442621
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.602138
+ - - 0.0
+ - 0.0
+ - -0.602138
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,270 @@ calculated_data:
symbols:
- O
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.0386026565758426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.607161
+ - - 0.0
+ - 0.0
+ - -0.607161
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.668427701102366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.610584
+ - - 0.0
+ - 0.0
+ - -0.610584
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.0057993704792865
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.597475
+ - - 0.0
+ - 0.0
+ - -0.597475
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.07108169143227887
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.602818
+ - - 0.0
+ - 0.0
+ - -0.602818
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.9930330656588073
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.598563
+ - - 0.0
+ - 0.0
+ - -0.598563
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.160666148117048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.598563
+ - - 0.0
+ - 0.0
+ - -0.598563
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.07368672827423513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.598563
+ - - 0.0
+ - 0.0
+ - -0.598563
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.04591608670829848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.603195
+ - - 0.0
+ - 0.0
+ - -0.603195
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1511163905791935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.594124
+ - - 0.0
+ - 0.0
+ - -0.594124
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.1970645957541923
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.596403
+ - - 0.0
+ - 0.0
+ - -0.596403
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.488963492809901
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.609671
+ - - 0.0
+ - 0.0
+ - -0.609671
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +412,54 @@ calculated_data:
symbols:
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8429617538995031
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5985634757
+ - - 0.0
+ - 0.0
+ - -0.5985634757
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.0097002179133843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.597272
+ - - 0.0
+ - 0.0
+ - -0.597272
+ isotopes:
+ - 16
+ - 16
+ symbols:
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Dioxymethyl.yml b/input/reference_sets/main/Dioxymethyl.yml
index 62e0c9967e..ef0499b9f3 100644
--- a/input/reference_sets/main/Dioxymethyl.yml
+++ b/input/reference_sets/main/Dioxymethyl.yml
@@ -84,13 +84,91 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.184481560250617
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.179999
+ - -0.173255
+ - 0.0
+ - - 0.007634
+ - 0.458778
+ - 0.0
+ - - -1.064723
+ - -0.217278
+ - -0.0
+ - - -1.003214
+ - -1.297495
+ - -0.0
+ - - -1.970728
+ - 0.368257
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.811209124418998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.185659
+ - -0.177738
+ - 0.0
+ - - 0.000278
+ - 0.458647
+ - 0.0
+ - - -1.059829
+ - -0.212246
+ - -0.0
+ - - -1.003013
+ - -1.294783
+ - -0.0
+ - - -1.974127
+ - 0.365128
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 27.73995222636044
+ value: 27.739952226360437
class: ThermoData
xyz_dict:
coords:
@@ -123,6 +201,435 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.122542190737416
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193727
+ - -0.168323
+ - 0.0
+ - - 0.010387
+ - 0.461163
+ - 0.0
+ - - -1.066162
+ - -0.219547
+ - -0.0
+ - - -1.012984
+ - -1.306104
+ - -0.0
+ - - -1.976
+ - 0.371819
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.001245836704875
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.197165
+ - -0.170998
+ - 0.0
+ - - 0.011063
+ - 0.46442
+ - 0.0
+ - - -1.067875
+ - -0.219172
+ - -0.0
+ - - -1.010081
+ - -1.310142
+ - -0.0
+ - - -1.981304
+ - 0.3749
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.328966942749354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.170629
+ - -0.185057
+ - 0.0
+ - - -0.004505
+ - 0.457521
+ - 0.0
+ - - -1.0547
+ - -0.207778
+ - -0.0
+ - - -0.990166
+ - -1.289859
+ - -0.0
+ - - -1.972289
+ - 0.364181
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.13941947282808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187446
+ - -0.175977
+ - 0.0
+ - - 0.003222
+ - 0.45777
+ - 0.0
+ - - -1.063017
+ - -0.213481
+ - -0.0
+ - - -1.00278
+ - -1.296739
+ - -0.0
+ - - -1.975903
+ - 0.367435
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.7138845734924
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168922
+ - -0.194835
+ - 0.0
+ - - -0.008157
+ - 0.464959
+ - -0.0
+ - - -1.054863
+ - -0.205976
+ - 0.0
+ - - -0.982201
+ - -1.287871
+ - 0.0
+ - - -1.974732
+ - 0.362731
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.376312212352374
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168922
+ - -0.194835
+ - 0.0
+ - - -0.008157
+ - 0.464959
+ - -0.0
+ - - -1.054863
+ - -0.205976
+ - 0.0
+ - - -0.982201
+ - -1.287871
+ - 0.0
+ - - -1.974732
+ - 0.362731
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.287131218221685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168922
+ - -0.194835
+ - 0.0
+ - - -0.008157
+ - 0.464959
+ - -0.0
+ - - -1.054863
+ - -0.205976
+ - 0.0
+ - - -0.982201
+ - -1.287871
+ - 0.0
+ - - -1.974732
+ - 0.362731
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.829582222474983
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.180298
+ - -0.175424
+ - 0.0
+ - - 0.006664
+ - 0.457496
+ - 0.0
+ - - -1.060849
+ - -0.212971
+ - 0.0
+ - - -1.001777
+ - -1.296953
+ - 0.0
+ - - -1.975368
+ - 0.366861
+ - 0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.36388710740872
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.165959
+ - -0.187036
+ - 0.0
+ - - -0.005957
+ - 0.456137
+ - 0.0
+ - - -1.053554
+ - -0.206211
+ - -0.0
+ - - -0.985178
+ - -1.28878
+ - -0.0
+ - - -1.972303
+ - 0.364899
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.77146061196589
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168551
+ - -0.172407
+ - 0.0
+ - - 0.003179
+ - 0.452263
+ - 0.0
+ - - -1.055824
+ - -0.213272
+ - -0.0
+ - - -0.998998
+ - -1.297106
+ - -0.0
+ - - -1.96794
+ - 0.369531
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.49591567190094
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.198599
+ - -0.174384
+ - 0.0
+ - - 0.006337
+ - 0.46508
+ - 0.0
+ - - -1.067614
+ - -0.218248
+ - -0.0
+ - - -1.009988
+ - -1.303184
+ - -0.0
+ - - -1.978366
+ - 0.369745
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,13 +669,91 @@ calculated_data:
- C
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.012166933094058
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1689216208
+ - -0.1948345624
+ - 0.0
+ - - -0.0081574712
+ - 0.4649594805
+ - -0.0
+ - - -1.0548633896
+ - -0.2059764792
+ - 0.0
+ - - -0.9822006131
+ - -1.2878714868
+ - 0.0
+ - - -1.9747322464
+ - 0.3627310179
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.83376321922942
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.167102
+ - -0.178459
+ - 0.0
+ - - -0.000593
+ - 0.454882
+ - 0.0
+ - - -1.05417
+ - -0.210557
+ - -0.0
+ - - -0.994515
+ - -1.293631
+ - -0.0
+ - - -1.968856
+ - 0.366773
+ - -0.0
+ isotopes:
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - C
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 32.85809074832331
+ value: 32.858090748323306
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Disulfur monoxide.yml b/input/reference_sets/main/Disulfur monoxide.yml
index 67f736b9a1..adf8a65776 100644
--- a/input/reference_sets/main/Disulfur monoxide.yml
+++ b/input/reference_sets/main/Disulfur monoxide.yml
@@ -10,7 +10,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -13.33151839422071
+ value: -13.331518394220705
class: ThermoData
xyz_dict:
coords:
@@ -62,6 +62,64 @@ calculated_data:
- S
- S
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.25239308791704
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.29642
+ - -0.165684
+ - -0.0
+ - - -0.501378
+ - 0.448524
+ - 0.0
+ - - -1.569846
+ - -0.559865
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.149905438004588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.291729
+ - -0.166215
+ - -0.0
+ - - -0.502636
+ - 0.447021
+ - 0.0
+ - - -1.563897
+ - -0.557833
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- S
- S
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.910842280683297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.302056
+ - -0.165151
+ - -0.0
+ - - -0.501406
+ - 0.449152
+ - 0.0
+ - - -1.575454
+ - -0.561027
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.75247521792337
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.30976
+ - -0.165324
+ - -0.0
+ - - -0.502681
+ - 0.451256
+ - 0.0
+ - - -1.581883
+ - -0.562958
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.251411589478314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.27376
+ - -0.165802
+ - -0.0
+ - - -0.498662
+ - 0.443036
+ - 0.0
+ - - -1.549902
+ - -0.55426
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.525910169744439
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.307132
+ - -0.166862
+ - -0.0
+ - - -0.508687
+ - 0.448724
+ - 0.0
+ - - -1.573249
+ - -0.558888
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.106151857707678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.271345
+ - -0.165014
+ - 0.0
+ - - -0.496541
+ - 0.44204
+ - -0.0
+ - - -1.549607
+ - -0.554052
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.475557208061549
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.271345
+ - -0.165014
+ - 0.0
+ - - -0.496541
+ - 0.44204
+ - -0.0
+ - - -1.549607
+ - -0.554052
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.33066948330914
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.271345
+ - -0.165014
+ - 0.0
+ - - -0.496541
+ - 0.44204
+ - -0.0
+ - - -1.549607
+ - -0.554052
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.312007472590533
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.303087
+ - -0.164814
+ - 0.0
+ - - -0.505002
+ - 0.44523
+ - 0.0
+ - - -1.572888
+ - -0.557442
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.405336859308535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.271097
+ - -0.16632
+ - -0.0
+ - - -0.498642
+ - 0.44346
+ - 0.0
+ - - -1.547259
+ - -0.554166
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.305811744933802
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.280071
+ - -0.16495
+ - -0.0
+ - - -0.499099
+ - 0.442673
+ - 0.0
+ - - -1.555775
+ - -0.554749
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.806305406312513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.303667
+ - -0.164909
+ - -0.0
+ - - -0.500847
+ - 0.449627
+ - 0.0
+ - - -1.577624
+ - -0.561744
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- S
- S
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.908885515557067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2713448285
+ - -0.1650143531
+ - 0.0
+ - - -0.4965411868
+ - 0.4420402379
+ - -0.0
+ - - -1.5496072832
+ - -0.5540517697
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.037221369578027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.274046
+ - -0.165448
+ - -0.0
+ - - -0.498911
+ - 0.441958
+ - 0.0
+ - - -1.549939
+ - -0.553536
+ - 0.0
+ isotopes:
+ - 32
+ - 32
+ - 16
+ symbols:
+ - S
+ - S
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Disulfur.yml b/input/reference_sets/main/Disulfur.yml
index 38f379f0e7..f8ab73693f 100644
--- a/input/reference_sets/main/Disulfur.yml
+++ b/input/reference_sets/main/Disulfur.yml
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- S
- S
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.304431413030162
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.951667
+ - - 0.0
+ - 0.0
+ - -0.951667
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.245210490379023
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.951835
+ - - 0.0
+ - 0.0
+ - -0.951835
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,270 @@ calculated_data:
symbols:
- S
- S
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.899411226597067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.955095
+ - - 0.0
+ - 0.0
+ - -0.955095
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.021249114424492
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.957914
+ - - 0.0
+ - 0.0
+ - -0.957914
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.76353821591458
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.942068
+ - - 0.0
+ - 0.0
+ - -0.942068
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.609275561963077
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.961175
+ - - 0.0
+ - 0.0
+ - -0.961175
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.074566280837022
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.941018
+ - - 0.0
+ - 0.0
+ - -0.941018
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.11501989859049
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.941018
+ - - 0.0
+ - 0.0
+ - -0.941018
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.01368228304036
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.941018
+ - - 0.0
+ - 0.0
+ - -0.941018
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.6344678371894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.95608
+ - - 0.0
+ - 0.0
+ - -0.95608
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.497373068437014
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.942095
+ - - 0.0
+ - 0.0
+ - -0.942095
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.331194795896153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.943215
+ - - 0.0
+ - 0.0
+ - -0.943215
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.507512663361517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.954014
+ - - 0.0
+ - 0.0
+ - -0.954014
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +412,54 @@ calculated_data:
symbols:
- S
- S
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.02858692933944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.9410184307
+ - - 0.0
+ - 0.0
+ - -0.9410184307
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.86792206772856
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.942168
+ - - 0.0
+ - 0.0
+ - -0.942168
+ isotopes:
+ - 32
+ - 32
+ symbols:
+ - S
+ - S
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethane.yml b/input/reference_sets/main/Ethane.yml
index 0748141174..48360fbe45 100644
--- a/input/reference_sets/main/Ethane.yml
+++ b/input/reference_sets/main/Ethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.043073515683982
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.762547
+ - 1.3e-05
+ - -4.2e-05
+ - - 0.762547
+ - -1.3e-05
+ - 4.2e-05
+ - - -1.158352
+ - 0.043086
+ - -1.01524
+ - - -1.158446
+ - -0.900682
+ - 0.470228
+ - - -1.158423
+ - 0.857655
+ - 0.544821
+ - - 1.158446
+ - 0.900682
+ - -0.470229
+ - - 1.158422
+ - -0.857656
+ - -0.54482
+ - - 1.158352
+ - -0.043085
+ - 1.01524
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.841178522790695
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.763093
+ - 1.3e-05
+ - -4.2e-05
+ - - 0.763093
+ - -1.3e-05
+ - 4.2e-05
+ - - -1.160081
+ - 0.043131
+ - -1.016264
+ - - -1.160174
+ - -0.901592
+ - 0.470701
+ - - -1.160151
+ - 0.85852
+ - 0.545371
+ - - 1.160174
+ - 0.90159
+ - -0.470705
+ - - 1.160151
+ - -0.858523
+ - -0.545368
+ - - 1.160081
+ - -0.043127
+ - 1.016264
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.88506157921121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.7651
+ - 1.2e-05
+ - -4.3e-05
+ - - 0.7651
+ - -1.2e-05
+ - 4.3e-05
+ - - -1.163697
+ - 0.043296
+ - -1.020332
+ - - -1.163795
+ - -0.905195
+ - 0.472593
+ - - -1.163769
+ - 0.861956
+ - 0.54755
+ - - 1.163795
+ - 0.905199
+ - -0.472585
+ - - 1.163769
+ - -0.861951
+ - -0.547558
+ - - 1.163697
+ - -0.043306
+ - 1.020332
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.110513975440618
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.765477
+ - 1.3e-05
+ - -4.2e-05
+ - - 0.765477
+ - -1.3e-05
+ - 4.2e-05
+ - - -1.167409
+ - 0.043426
+ - -1.023585
+ - - -1.167503
+ - -0.908078
+ - 0.474105
+ - - -1.16748
+ - 0.864712
+ - 0.549287
+ - - 1.167503
+ - 0.908091
+ - -0.474081
+ - - 1.16748
+ - -0.864698
+ - -0.549309
+ - - 1.167409
+ - -0.043453
+ - 1.023583
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.471770591103677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.760466
+ - 1.3e-05
+ - -4.2e-05
+ - - 0.760466
+ - -1.3e-05
+ - 4.2e-05
+ - - -1.157442
+ - 0.043077
+ - -1.015056
+ - - -1.157536
+ - -0.900519
+ - 0.470144
+ - - -1.157512
+ - 0.8575
+ - 0.544721
+ - - 1.157536
+ - 0.900519
+ - -0.470143
+ - - 1.157512
+ - -0.8575
+ - -0.544722
+ - - 1.157442
+ - -0.043078
+ - 1.015056
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.885859508428727
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.765212
+ - 1.3e-05
+ - -4.1e-05
+ - - 0.765212
+ - -1.3e-05
+ - 4.1e-05
+ - - -1.163554
+ - 0.04318
+ - -1.017564
+ - - -1.163651
+ - -0.902743
+ - 0.471308
+ - - -1.163626
+ - 0.859621
+ - 0.546065
+ - - 1.163651
+ - 0.902746
+ - -0.471303
+ - - 1.163626
+ - -0.859618
+ - -0.546071
+ - - 1.163554
+ - -0.043187
+ - 1.017564
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.35275489556753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.761818
+ - 5.0e-06
+ - 1.9e-05
+ - - 0.761819
+ - -5.0e-06
+ - -1.9e-05
+ - - -1.158308
+ - 0.043213
+ - -1.015085
+ - - -1.158471
+ - -0.900816
+ - 0.470042
+ - - -1.158409
+ - 0.857634
+ - 0.544854
+ - - 1.158472
+ - 0.900692
+ - -0.470279
+ - - 1.158408
+ - -0.857778
+ - -0.544628
+ - - 1.158308
+ - -0.042946
+ - 1.015096
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.083007416035983
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.761818
+ - 5.0e-06
+ - 1.9e-05
+ - - 0.761819
+ - -5.0e-06
+ - -1.9e-05
+ - - -1.158308
+ - 0.043213
+ - -1.015085
+ - - -1.158471
+ - -0.900816
+ - 0.470042
+ - - -1.158409
+ - 0.857634
+ - 0.544854
+ - - 1.158472
+ - 0.900692
+ - -0.470279
+ - - 1.158408
+ - -0.857778
+ - -0.544628
+ - - 1.158308
+ - -0.042946
+ - 1.015096
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.434727702943174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.761818
+ - 5.0e-06
+ - 1.9e-05
+ - - 0.761819
+ - -5.0e-06
+ - -1.9e-05
+ - - -1.158308
+ - 0.043213
+ - -1.015085
+ - - -1.158471
+ - -0.900816
+ - 0.470042
+ - - -1.158409
+ - 0.857634
+ - 0.544854
+ - - 1.158472
+ - 0.900692
+ - -0.470279
+ - - 1.158408
+ - -0.857778
+ - -0.544628
+ - - 1.158308
+ - -0.042946
+ - 1.015096
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.285448987961182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.765016
+ - 1.3e-05
+ - -4.3e-05
+ - - 0.765016
+ - -1.3e-05
+ - 4.3e-05
+ - - -1.163988
+ - 0.04323
+ - -1.018691
+ - - -1.164084
+ - -0.903743
+ - 0.471829
+ - - -1.164059
+ - 0.86057
+ - 0.546672
+ - - 1.164084
+ - 0.903744
+ - -0.471827
+ - - 1.164059
+ - -0.860569
+ - -0.546674
+ - - 1.163988
+ - -0.043233
+ - 1.018691
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.208917130205222
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.761781
+ - 2.1e-05
+ - -4.4e-05
+ - - 0.761781
+ - -2.1e-05
+ - 4.4e-05
+ - - -1.156734
+ - 0.043073
+ - -1.015488
+ - - -1.156844
+ - -0.900886
+ - 0.470334
+ - - -1.156803
+ - 0.857852
+ - 0.544971
+ - - 1.156844
+ - 0.900885
+ - -0.470334
+ - - 1.156803
+ - -0.857852
+ - -0.544971
+ - - 1.156733
+ - -0.043073
+ - 1.015488
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.298836941434654
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.759395
+ - 1.2e-05
+ - -4.0e-05
+ - - 0.759394
+ - -1.2e-05
+ - 4.0e-05
+ - - -1.158159
+ - 0.043136
+ - -1.016434
+ - - -1.158258
+ - -0.901743
+ - 0.470783
+ - - -1.158231
+ - 0.858665
+ - 0.545462
+ - - 1.158258
+ - 0.901743
+ - -0.470783
+ - - 1.158231
+ - -0.858665
+ - -0.545462
+ - - 1.158159
+ - -0.043136
+ - 1.016434
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.463041760310658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.765989
+ - 1.3e-05
+ - -4.2e-05
+ - - 0.765989
+ - -1.3e-05
+ - 4.2e-05
+ - - -1.16287
+ - 0.043297
+ - -1.020351
+ - - -1.16297
+ - -0.905213
+ - 0.472602
+ - - -1.162946
+ - 0.861974
+ - 0.547561
+ - - 1.16297
+ - 0.905217
+ - -0.472594
+ - - 1.162946
+ - -0.861969
+ - -0.547569
+ - - 1.16287
+ - -0.043307
+ - 1.02035
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.094181984639686
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.7618184927
+ - 5.4733e-06
+ - 1.90321e-05
+ - - 0.7618185082
+ - -5.2972e-06
+ - -1.90041e-05
+ - - -1.1583083924
+ - 0.0432126439
+ - -1.0150849208
+ - - -1.1584713443
+ - -0.9008158131
+ - 0.4700418466
+ - - -1.1584091334
+ - 0.857634319
+ - 0.5448544668
+ - - 1.1584723686
+ - 0.9006915262
+ - -0.4702794688
+ - - 1.1584080295
+ - -0.8577781862
+ - -0.5446283722
+ - - 1.158308379
+ - -0.0429455461
+ - 1.0150962805
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.073441214892608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.761393
+ - 1.1e-05
+ - -3.8e-05
+ - - 0.761393
+ - -1.1e-05
+ - 3.8e-05
+ - - -1.157191
+ - 0.043128
+ - -1.016256
+ - - -1.157288
+ - -0.901594
+ - 0.470699
+ - - -1.157261
+ - 0.858524
+ - 0.545366
+ - - 1.157288
+ - 0.901594
+ - -0.470699
+ - - 1.157261
+ - -0.858524
+ - -0.545366
+ - - 1.157191
+ - -0.043128
+ - 1.016256
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethanedithioamide.yml b/input/reference_sets/main/Ethanedithioamide.yml
index de023f7b70..cd5f219f19 100644
--- a/input/reference_sets/main/Ethanedithioamide.yml
+++ b/input/reference_sets/main/Ethanedithioamide.yml
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.7371314145832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.150763
+ - -0.234009
+ - 2.2e-05
+ - - 0.632627
+ - 0.428905
+ - 2.0e-05
+ - - 0.384348
+ - 1.733968
+ - 1.9e-05
+ - - -0.632636
+ - -0.428908
+ - 2.0e-05
+ - - -0.384357
+ - -1.733971
+ - 1.9e-05
+ - - -2.150772
+ - 0.234006
+ - 2.1e-05
+ - - 1.148894
+ - 2.386886
+ - 1.9e-05
+ - - -0.58325
+ - 2.037776
+ - 1.9e-05
+ - - 0.58324
+ - -2.037779
+ - 1.9e-05
+ - - -1.148904
+ - -2.386888
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.928977520898133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.151363
+ - -0.232345
+ - 2.2e-05
+ - - 0.631962
+ - 0.430434
+ - 2.0e-05
+ - - 0.385578
+ - 1.734232
+ - 1.9e-05
+ - - -0.631971
+ - -0.430437
+ - 2.0e-05
+ - - -0.385587
+ - -1.734235
+ - 1.9e-05
+ - - -2.151372
+ - 0.232342
+ - 2.2e-05
+ - - 1.149468
+ - 2.387934
+ - 1.9e-05
+ - - -0.582413
+ - 2.039616
+ - 1.9e-05
+ - - 0.582404
+ - -2.039619
+ - 1.9e-05
+ - - -1.149478
+ - -2.387936
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.600074618627982
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.158455
+ - -0.235092
+ - 2.5e-05
+ - - 0.63467
+ - 0.42916
+ - 2.1e-05
+ - - 0.387628
+ - 1.739633
+ - 1.7e-05
+ - - -0.634679
+ - -0.429163
+ - 2.1e-05
+ - - -0.387638
+ - -1.739636
+ - 1.7e-05
+ - - -2.158465
+ - 0.235089
+ - 2.5e-05
+ - - 1.153146
+ - 2.395446
+ - 1.8e-05
+ - - -0.586461
+ - 2.040298
+ - 1.7e-05
+ - - 0.586452
+ - -2.0403
+ - 1.8e-05
+ - - -1.153156
+ - -2.395448
+ - 1.9e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.631236661818633
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.160971
+ - -0.250975
+ - 2.0e-05
+ - - 0.637268
+ - 0.426976
+ - 2.0e-05
+ - - 0.388328
+ - 1.739053
+ - 2.0e-05
+ - - -0.637277
+ - -0.426979
+ - 2.0e-05
+ - - -0.388338
+ - -1.739056
+ - 2.0e-05
+ - - -2.16098
+ - 0.250973
+ - 2.0e-05
+ - - 1.154227
+ - 2.403771
+ - 2.0e-05
+ - - -0.598102
+ - 2.028705
+ - 2.0e-05
+ - - 0.598092
+ - -2.028707
+ - 2.0e-05
+ - - -1.154236
+ - -2.403773
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.61560343904331
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.142195
+ - -0.229397
+ - 2.0e-05
+ - - 0.63227
+ - 0.430609
+ - 2.0e-05
+ - - 0.384983
+ - 1.728248
+ - 2.0e-05
+ - - -0.632279
+ - -0.430611
+ - 2.0e-05
+ - - -0.384992
+ - -1.72825
+ - 2.0e-05
+ - - -2.142204
+ - 0.229395
+ - 1.9e-05
+ - - 1.148479
+ - 2.381825
+ - 2.0e-05
+ - - -0.581619
+ - 2.033844
+ - 2.0e-05
+ - - 0.58161
+ - -2.033847
+ - 2.0e-05
+ - - -1.148489
+ - -2.381827
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.86844624001903
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.161163
+ - -0.231534
+ - 3.1e-05
+ - - 0.633694
+ - 0.433017
+ - 2.2e-05
+ - - 0.386226
+ - 1.738525
+ - 1.5e-05
+ - - -0.633704
+ - -0.43302
+ - 2.2e-05
+ - - -0.386235
+ - -1.738527
+ - 1.5e-05
+ - - -2.161172
+ - 0.231532
+ - 3.1e-05
+ - - 1.151992
+ - 2.392983
+ - 1.7e-05
+ - - -0.582209
+ - 2.047835
+ - 1.4e-05
+ - - 0.5822
+ - -2.047837
+ - 1.5e-05
+ - - -1.152001
+ - -2.392986
+ - 1.7e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.68822480197437
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.145153
+ - -0.229061
+ - -2.6e-05
+ - - 0.634136
+ - 0.431192
+ - 1.0e-05
+ - - 0.385129
+ - 1.730679
+ - 3.9e-05
+ - - -0.634131
+ - -0.431191
+ - 1.0e-05
+ - - -0.385139
+ - -1.730682
+ - 3.9e-05
+ - - -2.145148
+ - 0.229062
+ - -2.6e-05
+ - - 1.149045
+ - 2.383971
+ - 3.3e-05
+ - - -0.581166
+ - 2.036918
+ - 4.3e-05
+ - - 0.581147
+ - -2.036949
+ - 4.4e-05
+ - - -1.149073
+ - -2.383953
+ - 3.3e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.69024899963907
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.145153
+ - -0.229061
+ - -2.6e-05
+ - - 0.634136
+ - 0.431192
+ - 1.0e-05
+ - - 0.385129
+ - 1.730679
+ - 3.9e-05
+ - - -0.634131
+ - -0.431191
+ - 1.0e-05
+ - - -0.385139
+ - -1.730682
+ - 3.9e-05
+ - - -2.145148
+ - 0.229062
+ - -2.6e-05
+ - - 1.149045
+ - 2.383971
+ - 3.3e-05
+ - - -0.581166
+ - 2.036918
+ - 4.3e-05
+ - - 0.581147
+ - -2.036949
+ - 4.4e-05
+ - - -1.149073
+ - -2.383953
+ - 3.3e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.93489563354127
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.145153
+ - -0.229061
+ - -2.6e-05
+ - - 0.634136
+ - 0.431192
+ - 1.0e-05
+ - - 0.385129
+ - 1.730679
+ - 3.9e-05
+ - - -0.634131
+ - -0.431191
+ - 1.0e-05
+ - - -0.385139
+ - -1.730682
+ - 3.9e-05
+ - - -2.145148
+ - 0.229062
+ - -2.6e-05
+ - - 1.149045
+ - 2.383971
+ - 3.3e-05
+ - - -0.581166
+ - 2.036918
+ - 4.3e-05
+ - - 0.581147
+ - -2.036949
+ - 4.4e-05
+ - - -1.149073
+ - -2.383953
+ - 3.3e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.751931891870917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.159095
+ - -0.233961
+ - 2.7e-05
+ - - 0.633329
+ - 0.43115
+ - 2.1e-05
+ - - 0.385893
+ - 1.735675
+ - 1.6e-05
+ - - -0.633338
+ - -0.431153
+ - 2.1e-05
+ - - -0.385903
+ - -1.735677
+ - 1.7e-05
+ - - -2.159104
+ - 0.233959
+ - 2.7e-05
+ - - 1.150063
+ - 2.390956
+ - 1.8e-05
+ - - -0.582955
+ - 2.041915
+ - 1.6e-05
+ - - 0.582946
+ - -2.041918
+ - 1.7e-05
+ - - -1.150072
+ - -2.390959
+ - 1.8e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.313342961194685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.146052
+ - -0.223285
+ - 2.0e-05
+ - - 0.634009
+ - 0.432573
+ - 2.0e-05
+ - - 0.384462
+ - 1.732307
+ - 2.0e-05
+ - - -0.634018
+ - -0.432575
+ - 2.0e-05
+ - - -0.384471
+ - -1.73231
+ - 2.0e-05
+ - - -2.146061
+ - 0.223283
+ - 2.0e-05
+ - - 1.151244
+ - 2.383473
+ - 2.0e-05
+ - - -0.579137
+ - 2.046237
+ - 2.0e-05
+ - - 0.579127
+ - -2.04624
+ - 2.0e-05
+ - - -1.151253
+ - -2.383475
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.592206000538926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.140568
+ - -0.243616
+ - 2.0e-05
+ - - 0.632376
+ - 0.427382
+ - 2.0e-05
+ - - 0.384379
+ - 1.724738
+ - 2.0e-05
+ - - -0.632386
+ - -0.427384
+ - 2.0e-05
+ - - -0.384389
+ - -1.724741
+ - 2.0e-05
+ - - -2.140578
+ - 0.243613
+ - 2.0e-05
+ - - 1.144677
+ - 2.381827
+ - 2.0e-05
+ - - -0.588829
+ - 2.017468
+ - 1.9e-05
+ - - 0.58882
+ - -2.017471
+ - 2.0e-05
+ - - -1.144686
+ - -2.381829
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.0617180912851
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.15735
+ - -0.251284
+ - 2.0e-05
+ - - 0.636385
+ - 0.42552
+ - 2.0e-05
+ - - 0.386717
+ - 1.735058
+ - 2.0e-05
+ - - -0.636394
+ - -0.425523
+ - 2.0e-05
+ - - -0.386726
+ - -1.73506
+ - 2.0e-05
+ - - -2.157359
+ - 0.251281
+ - 2.0e-05
+ - - 1.148285
+ - 2.39912
+ - 2.0e-05
+ - - -0.593842
+ - 2.02761
+ - 2.0e-05
+ - - 0.593833
+ - -2.027613
+ - 2.0e-05
+ - - -1.148294
+ - -2.399123
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,13 +1099,141 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.857133026134566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.145153312
+ - -0.2290607125
+ - -2.56166e-05
+ - - 0.6341363902
+ - 0.4311915931
+ - 9.7265e-06
+ - - 0.385129012
+ - 1.7306794387
+ - 3.94539e-05
+ - - -0.6341311441
+ - -0.4311905956
+ - 9.6912e-06
+ - - -0.3851388744
+ - -1.7306816053
+ - 3.92463e-05
+ - - -2.1451480173
+ - 0.229062083
+ - -2.55908e-05
+ - - 1.1490449972
+ - 2.3839709293
+ - 3.27592e-05
+ - - -0.581166034
+ - 2.0369184588
+ - 4.25606e-05
+ - - 0.5811466041
+ - -2.0369491468
+ - 4.35202e-05
+ - - -1.1490727226
+ - -2.3839529879
+ - 3.30716e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.273021873883494
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.146279
+ - -0.230304
+ - 2.0e-05
+ - - 0.634067
+ - 0.431345
+ - 2.0e-05
+ - - 0.38595
+ - 1.729462
+ - 2.0e-05
+ - - -0.634077
+ - -0.431348
+ - 2.0e-05
+ - - -0.385959
+ - -1.729465
+ - 2.0e-05
+ - - -2.146289
+ - 0.230301
+ - 2.0e-05
+ - - 1.1476
+ - 2.383657
+ - 2.0e-05
+ - - -0.580712
+ - 2.033555
+ - 2.0e-05
+ - - 0.580703
+ - -2.033557
+ - 2.0e-05
+ - - -1.147609
+ - -2.383659
+ - 2.0e-05
+ isotopes:
+ - 32
+ - 12
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - S
+ - C
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 24.846310958222492
+ value: 24.846310958222478
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethanethiol.yml b/input/reference_sets/main/Ethanethiol.yml
index a05b42ce75..1aae47dc71 100644
--- a/input/reference_sets/main/Ethanethiol.yml
+++ b/input/reference_sets/main/Ethanethiol.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.115254932464313
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.635156
+ - -0.349966
+ - -0.054853
+ - - 0.493037
+ - 0.642358
+ - 0.090851
+ - - -1.162378
+ - -0.103286
+ - -0.083198
+ - - 1.584398
+ - -0.862381
+ - -1.014594
+ - - 1.598559
+ - -1.104568
+ - 0.731449
+ - - 2.596949
+ - 0.162483
+ - 0.01562
+ - - 0.530378
+ - 1.394095
+ - -0.697972
+ - - 0.54518
+ - 1.170832
+ - 1.041687
+ - - -1.075203
+ - -0.924767
+ - 0.971992
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.769327332603212
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.637353
+ - -0.349877
+ - -0.05531
+ - - 0.49436
+ - 0.642155
+ - 0.090877
+ - - -1.16822
+ - -0.101434
+ - -0.083271
+ - - 1.587136
+ - -0.864323
+ - -1.015188
+ - - 1.603359
+ - -1.104657
+ - 0.732379
+ - - 2.59983
+ - 0.164138
+ - 0.013547
+ - - 0.530412
+ - 1.395005
+ - -0.697899
+ - - 0.545694
+ - 1.171032
+ - 1.042413
+ - - -1.08385
+ - -0.927239
+ - 0.973433
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.553040556624353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.637886
+ - -0.351541
+ - -0.054947
+ - - 0.493333
+ - 0.644731
+ - 0.091126
+ - - -1.17446
+ - -0.09913
+ - -0.083364
+ - - 1.585519
+ - -0.86948
+ - -1.017616
+ - - 1.602783
+ - -1.107444
+ - 0.73748
+ - - 2.604696
+ - 0.164146
+ - 0.012821
+ - - 0.529429
+ - 1.400183
+ - -0.701459
+ - - 0.544765
+ - 1.175993
+ - 1.046784
+ - - -1.077877
+ - -0.932657
+ - 0.970156
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.08308563849787
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.642396
+ - -0.351693
+ - -0.05682
+ - - 0.493169
+ - 0.64067
+ - 0.091881
+ - - -1.177409
+ - -0.101204
+ - -0.090606
+ - - 1.59302
+ - -0.871386
+ - -1.023976
+ - - 1.614481
+ - -1.112884
+ - 0.737092
+ - - 2.611796
+ - 0.168901
+ - 0.010249
+ - - 0.526938
+ - 1.402681
+ - -0.701278
+ - - 0.540948
+ - 1.174087
+ - 1.05193
+ - - -1.099264
+ - -0.924371
+ - 0.982509
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.254138415199335
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.634788
+ - -0.34856
+ - -0.055498
+ - - 0.491746
+ - 0.637014
+ - 0.090405
+ - - -1.157835
+ - -0.102131
+ - -0.083202
+ - - 1.587957
+ - -0.860982
+ - -1.015708
+ - - 1.602367
+ - -1.105106
+ - 0.729385
+ - - 2.595088
+ - 0.166399
+ - 0.01558
+ - - 0.530828
+ - 1.390933
+ - -0.696064
+ - - 0.545271
+ - 1.166725
+ - 1.040297
+ - - -1.084135
+ - -0.919494
+ - 0.975785
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.429884597948082
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.644286
+ - -0.351195
+ - -0.057068
+ - - 0.495332
+ - 0.640248
+ - 0.092213
+ - - -1.178392
+ - -0.104069
+ - -0.086948
+ - - 1.595447
+ - -0.866615
+ - -1.018348
+ - - 1.619252
+ - -1.107954
+ - 0.731387
+ - - 2.605913
+ - 0.168652
+ - 0.008687
+ - - 0.52946
+ - 1.395881
+ - -0.695967
+ - - 0.542122
+ - 1.167928
+ - 1.046192
+ - - -1.107345
+ - -0.918075
+ - 0.980834
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.12314432899964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.630233
+ - -0.349678
+ - -0.053193
+ - - 0.491429
+ - 0.644984
+ - 0.090379
+ - - -1.156959
+ - -0.100089
+ - -0.079127
+ - - 1.578498
+ - -0.862385
+ - -1.013251
+ - - 1.588355
+ - -1.104765
+ - 0.732945
+ - - 2.59403
+ - 0.158444
+ - 0.019047
+ - - 0.531516
+ - 1.395143
+ - -0.700094
+ - - 0.545688
+ - 1.177103
+ - 1.039034
+ - - -1.056715
+ - -0.933958
+ - 0.965241
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.258966824151708
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.630233
+ - -0.349678
+ - -0.053193
+ - - 0.491429
+ - 0.644984
+ - 0.090379
+ - - -1.156959
+ - -0.100089
+ - -0.079127
+ - - 1.578498
+ - -0.862385
+ - -1.013251
+ - - 1.588355
+ - -1.104765
+ - 0.732945
+ - - 2.59403
+ - 0.158444
+ - 0.019047
+ - - 0.531516
+ - 1.395143
+ - -0.700094
+ - - 0.545688
+ - 1.177103
+ - 1.039034
+ - - -1.056715
+ - -0.933958
+ - 0.965241
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.643381684649636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.630233
+ - -0.349678
+ - -0.053193
+ - - 0.491429
+ - 0.644984
+ - 0.090379
+ - - -1.156959
+ - -0.100089
+ - -0.079127
+ - - 1.578498
+ - -0.862385
+ - -1.013251
+ - - 1.588355
+ - -1.104765
+ - 0.732945
+ - - 2.59403
+ - 0.158444
+ - 0.019047
+ - - 0.531516
+ - 1.395143
+ - -0.700094
+ - - 0.545688
+ - 1.177103
+ - 1.039034
+ - - -1.056715
+ - -0.933958
+ - 0.965241
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.861186272495274
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.640594
+ - -0.351746
+ - -0.05555
+ - - 0.494558
+ - 0.644203
+ - 0.091313
+ - - -1.178297
+ - -0.096528
+ - -0.079168
+ - - 1.592304
+ - -0.867998
+ - -1.017879
+ - - 1.609641
+ - -1.10876
+ - 0.734363
+ - - 2.604753
+ - 0.165312
+ - 0.013567
+ - - 0.528036
+ - 1.397397
+ - -0.701227
+ - - 0.546798
+ - 1.177313
+ - 1.043775
+ - - -1.092312
+ - -0.934393
+ - 0.971788
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.283634734477513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.629535
+ - -0.349711
+ - -0.052631
+ - - 0.491988
+ - 0.646097
+ - 0.090604
+ - - -1.155282
+ - -0.100503
+ - -0.079508
+ - - 1.574527
+ - -0.862522
+ - -1.012277
+ - - 1.585159
+ - -1.103395
+ - 0.734577
+ - - 2.593983
+ - 0.156885
+ - 0.018691
+ - - 0.530713
+ - 1.395154
+ - -0.700499
+ - - 0.545055
+ - 1.176858
+ - 1.040007
+ - - -1.049603
+ - -0.934062
+ - 0.962017
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.12800792592682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.632211
+ - -0.348708
+ - -0.054399
+ - - 0.492384
+ - 0.637596
+ - 0.091639
+ - - -1.155297
+ - -0.098409
+ - -0.085015
+ - - 1.581592
+ - -0.865028
+ - -1.014513
+ - - 1.601
+ - -1.104378
+ - 0.734012
+ - - 2.59565
+ - 0.165528
+ - 0.012832
+ - - 0.529811
+ - 1.393073
+ - -0.697007
+ - - 0.544018
+ - 1.170083
+ - 1.043103
+ - - -1.075294
+ - -0.924956
+ - 0.970329
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.275632300493974
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.641698
+ - -0.35274
+ - -0.056142
+ - - 0.494592
+ - 0.643932
+ - 0.092139
+ - - -1.174284
+ - -0.101612
+ - -0.08638
+ - - 1.589485
+ - -0.867731
+ - -1.019769
+ - - 1.608911
+ - -1.109035
+ - 0.735248
+ - - 2.606366
+ - 0.16614
+ - 0.011763
+ - - 0.52745
+ - 1.398121
+ - -0.700601
+ - - 0.541965
+ - 1.172689
+ - 1.048336
+ - - -1.090107
+ - -0.924964
+ - 0.976387
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,13 +1013,131 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.097580419701675
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.6302330856
+ - -0.349677839
+ - -0.0531933421
+ - - 0.4914288279
+ - 0.6449842747
+ - 0.0903788739
+ - - -1.1569589469
+ - -0.1000888523
+ - -0.0791272631
+ - - 1.5784981831
+ - -0.862384625
+ - -1.013250785
+ - - 1.5883548003
+ - -1.1047650145
+ - 0.7329451839
+ - - 2.5940295587
+ - 0.1584442382
+ - 0.0190470855
+ - - 0.531515532
+ - 1.395142678
+ - -0.7000941256
+ - - 0.545688384
+ - 1.1771032919
+ - 1.0390344533
+ - - -1.0567147895
+ - -0.9339575461
+ - 0.9652412056
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.254133726175768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.633764
+ - -0.349939
+ - -0.054751
+ - - 0.491183
+ - 0.639902
+ - 0.090335
+ - - -1.160336
+ - -0.098472
+ - -0.080283
+ - - 1.585415
+ - -0.863476
+ - -1.01528
+ - - 1.599124
+ - -1.10487
+ - 0.732769
+ - - 2.594614
+ - 0.165371
+ - 0.015809
+ - - 0.531145
+ - 1.39254
+ - -0.698428
+ - - 0.545898
+ - 1.16991
+ - 1.041012
+ - - -1.074732
+ - -0.926163
+ - 0.969798
+ isotopes:
+ - 12
+ - 12
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -10.81609148124776
+ value: -10.816091481247753
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethanol.yml b/input/reference_sets/main/Ethanol.yml
index 2e4db83db3..07d5c7618d 100644
--- a/input/reference_sets/main/Ethanol.yml
+++ b/input/reference_sets/main/Ethanol.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -50.570323602555284
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.217939
+ - -0.222822
+ - -9.0e-06
+ - - -0.082045
+ - 0.548282
+ - -3.0e-05
+ - - -1.149465
+ - -0.397639
+ - 7.6e-05
+ - - 1.283035
+ - -0.857154
+ - 0.883528
+ - - 1.282979
+ - -0.857294
+ - -0.88345
+ - - 2.067093
+ - 0.461398
+ - -9.0e-05
+ - - -0.139412
+ - 1.191389
+ - 0.885046
+ - - -0.139466
+ - 1.191251
+ - -0.885202
+ - - -1.983222
+ - 0.082167
+ - 6.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.956962384747634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.219236
+ - -0.223408
+ - -9.0e-06
+ - - -0.082771
+ - 0.547395
+ - -3.0e-05
+ - - -1.153556
+ - -0.395854
+ - 7.6e-05
+ - - 1.286512
+ - -0.858716
+ - 0.884312
+ - - 1.286459
+ - -0.858854
+ - -0.884235
+ - - 2.068446
+ - 0.462588
+ - -8.8e-05
+ - - -0.138885
+ - 1.192428
+ - 0.885889
+ - - -0.138939
+ - 1.192289
+ - -0.886048
+ - - -1.989066
+ - 0.081712
+ - 6.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,6 +305,655 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.01922074415084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.221899
+ - -0.225402
+ - -9.0e-06
+ - - -0.085132
+ - 0.545907
+ - -3.1e-05
+ - - -1.16172
+ - -0.402082
+ - 8.0e-05
+ - - 1.292528
+ - -0.862414
+ - 0.888031
+ - - 1.292483
+ - -0.862545
+ - -0.88796
+ - - 2.071449
+ - 0.466971
+ - -8.2e-05
+ - - -0.140564
+ - 1.19484
+ - 0.890032
+ - - -0.14062
+ - 1.194694
+ - -0.890198
+ - - -1.992888
+ - 0.089609
+ - 6.7e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.97199980719538
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.222148
+ - -0.22496
+ - -9.0e-06
+ - - -0.08512
+ - 0.547298
+ - -3.0e-05
+ - - -1.160883
+ - -0.405378
+ - 7.7e-05
+ - - 1.292793
+ - -0.865245
+ - 0.89121
+ - - 1.292739
+ - -0.865385
+ - -0.891133
+ - - 2.077403
+ - 0.467152
+ - -8.9e-05
+ - - -0.141397
+ - 1.19916
+ - 0.893459
+ - - -0.141451
+ - 1.199019
+ - -0.893618
+ - - -1.998796
+ - 0.087918
+ - 6.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.77625059156286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.21612
+ - -0.221782
+ - -9.0e-06
+ - - -0.081682
+ - 0.546257
+ - -3.0e-05
+ - - -1.146411
+ - -0.392065
+ - 7.5e-05
+ - - 1.281736
+ - -0.85694
+ - 0.883285
+ - - 1.281683
+ - -0.857078
+ - -0.883208
+ - - 2.065765
+ - 0.461966
+ - -8.8e-05
+ - - -0.137949
+ - 1.19047
+ - 0.884977
+ - - -0.138002
+ - 1.190331
+ - -0.885135
+ - - -1.983824
+ - 0.078418
+ - 6.3e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.41505073312054
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.219557
+ - -0.222281
+ - -9.0e-06
+ - - -0.087454
+ - 0.548783
+ - -3.0e-05
+ - - -1.15213
+ - -0.401329
+ - 7.7e-05
+ - - 1.283848
+ - -0.859671
+ - 0.884941
+ - - 1.283796
+ - -0.859808
+ - -0.884865
+ - - 2.073357
+ - 0.460752
+ - -8.8e-05
+ - - -0.139895
+ - 1.196131
+ - 0.887492
+ - - -0.139949
+ - 1.195991
+ - -0.887651
+ - - -1.983693
+ - 0.081012
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.632452283219365
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.217998
+ - -0.222639
+ - -3.0e-06
+ - - -0.081456
+ - 0.548023
+ - 6.0e-06
+ - - -1.148592
+ - -0.395214
+ - 8.0e-06
+ - - 1.282552
+ - -0.857239
+ - 0.883836
+ - - 1.282295
+ - -0.857575
+ - -0.883618
+ - - 2.067039
+ - 0.461768
+ - -0.000257
+ - - -0.139429
+ - 1.190914
+ - 0.885274
+ - - -0.139432
+ - 1.190921
+ - -0.885256
+ - - -1.983539
+ - 0.08062
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.888724741289614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.217998
+ - -0.222639
+ - -3.0e-06
+ - - -0.081456
+ - 0.548023
+ - 6.0e-06
+ - - -1.148592
+ - -0.395214
+ - 8.0e-06
+ - - 1.282552
+ - -0.857239
+ - 0.883836
+ - - 1.282295
+ - -0.857575
+ - -0.883618
+ - - 2.067039
+ - 0.461768
+ - -0.000257
+ - - -0.139429
+ - 1.190914
+ - 0.885274
+ - - -0.139432
+ - 1.190921
+ - -0.885256
+ - - -1.983539
+ - 0.08062
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.21917073205378
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.217998
+ - -0.222639
+ - -3.0e-06
+ - - -0.081456
+ - 0.548023
+ - 6.0e-06
+ - - -1.148592
+ - -0.395214
+ - 8.0e-06
+ - - 1.282552
+ - -0.857239
+ - 0.883836
+ - - 1.282295
+ - -0.857575
+ - -0.883618
+ - - 2.067039
+ - 0.461768
+ - -0.000257
+ - - -0.139429
+ - 1.190914
+ - 0.885274
+ - - -0.139432
+ - 1.190921
+ - -0.885256
+ - - -1.983539
+ - 0.08062
+ - -6.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.41954235715488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.219957
+ - -0.224362
+ - -9.0e-06
+ - - -0.090669
+ - 0.545249
+ - -3.0e-05
+ - - -1.151783
+ - -0.399366
+ - 7.7e-05
+ - - 1.287252
+ - -0.862542
+ - 0.88587
+ - - 1.2872
+ - -0.86268
+ - -0.885793
+ - - 2.070821
+ - 0.463555
+ - -8.8e-05
+ - - -0.141034
+ - 1.198158
+ - 0.886366
+ - - -0.141088
+ - 1.198019
+ - -0.886526
+ - - -1.983221
+ - 0.083549
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -56.306220991484125
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.217575
+ - -0.221747
+ - -1.0e-05
+ - - -0.082485
+ - 0.548905
+ - -3.0e-05
+ - - -1.142114
+ - -0.39332
+ - 7.8e-05
+ - - 1.27745
+ - -0.856789
+ - 0.883698
+ - - 1.277396
+ - -0.856926
+ - -0.883622
+ - - 2.068209
+ - 0.460186
+ - -8.8e-05
+ - - -0.1392
+ - 1.19195
+ - 0.885381
+ - - -0.139255
+ - 1.19181
+ - -0.885539
+ - - -1.980141
+ - 0.075511
+ - 6.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.99496686388713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.214226
+ - -0.222113
+ - -9.0e-06
+ - - -0.085241
+ - 0.541938
+ - -3.0e-05
+ - - -1.146589
+ - -0.394041
+ - 7.7e-05
+ - - 1.28357
+ - -0.858292
+ - 0.884683
+ - - 1.283519
+ - -0.858428
+ - -0.884607
+ - - 2.062961
+ - 0.465496
+ - -8.6e-05
+ - - -0.138414
+ - 1.190173
+ - 0.885992
+ - - -0.138468
+ - 1.190032
+ - -0.886153
+ - - -1.97813
+ - 0.084813
+ - 6.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.69267490140163
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22274
+ - -0.225321
+ - -1.0e-05
+ - - -0.081846
+ - 0.551975
+ - -3.3e-05
+ - - -1.157114
+ - -0.404066
+ - 8.3e-05
+ - - 1.288722
+ - -0.861907
+ - 0.88793
+ - - 1.288684
+ - -0.86203
+ - -0.887864
+ - - 2.074987
+ - 0.463089
+ - -7.5e-05
+ - - -0.142219
+ - 1.196506
+ - 0.890567
+ - - -0.142278
+ - 1.196354
+ - -0.890739
+ - - -1.994241
+ - 0.084978
+ - 7.1e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -246,6 +1013,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -55.32478856696062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2179978232
+ - -0.2226390037
+ - -2.686e-06
+ - - -0.0814557941
+ - 0.5480229782
+ - 5.8864e-06
+ - - -1.1485922342
+ - -0.3952140833
+ - 7.7864e-06
+ - - 1.2825518289
+ - -0.8572387543
+ - 0.8838356219
+ - - 1.282295146
+ - -0.8575751274
+ - -0.8836180677
+ - - 2.0670387049
+ - 0.4617682755
+ - -0.000256659
+ - - -0.1394291808
+ - 1.1909137817
+ - 0.8852738017
+ - - -0.1394322368
+ - 1.1909209668
+ - -0.8852564723
+ - - -1.9835385636
+ - 0.0806196767
+ - -5.97185e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -52.73385635524168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.216716
+ - -0.22326
+ - -9.0e-06
+ - - -0.08567
+ - 0.543198
+ - -3.1e-05
+ - - -1.149337
+ - -0.391627
+ - 7.7e-05
+ - - 1.284836
+ - -0.858026
+ - 0.884352
+ - - 1.284787
+ - -0.85816
+ - -0.884278
+ - - 2.063369
+ - 0.465199
+ - -8.5e-05
+ - - -0.138485
+ - 1.189277
+ - 0.885595
+ - - -0.138539
+ - 1.189135
+ - -0.885757
+ - - -1.98024
+ - 0.083843
+ - 6.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethenol.yml b/input/reference_sets/main/Ethenol.yml
index 68e8422ea8..d3ac1277ce 100644
--- a/input/reference_sets/main/Ethenol.yml
+++ b/input/reference_sets/main/Ethenol.yml
@@ -106,6 +106,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.433077648463613
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.197005
+ - -0.209154
+ - 0.0
+ - - 0.036766
+ - 0.440817
+ - 0.0
+ - - -1.206232
+ - -0.110484
+ - 0.0
+ - - 1.251538
+ - -1.290346
+ - 0.0
+ - - 2.12186
+ - 0.345108
+ - 0.0
+ - - -0.026176
+ - 1.520326
+ - 0.0
+ - - -1.124849
+ - -1.072355
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.53714323947159
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.19705
+ - -0.207602
+ - 0.0
+ - - 0.037831
+ - 0.439757
+ - 0.0
+ - - -1.205174
+ - -0.110663
+ - 0.0
+ - - 1.254646
+ - -1.289858
+ - 0.0
+ - - 2.124038
+ - 0.345315
+ - 0.0
+ - - -0.026424
+ - 1.520548
+ - 0.0
+ - - -1.132057
+ - -1.073585
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -155,6 +253,545 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.640120208856306
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.200735
+ - -0.210293
+ - 0.0
+ - - 0.034928
+ - 0.441257
+ - 0.0
+ - - -1.214985
+ - -0.108583
+ - 0.0
+ - - 1.259444
+ - -1.296962
+ - 0.0
+ - - 2.131028
+ - 0.345906
+ - 0.0
+ - - -0.030657
+ - 1.526758
+ - 0.0
+ - - -1.130582
+ - -1.07417
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.46143177850325
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.20182
+ - -0.210703
+ - 0.0
+ - - 0.033866
+ - 0.442571
+ - 0.0
+ - - -1.21862
+ - -0.106852
+ - 0.0
+ - - 1.260857
+ - -1.301859
+ - 0.0
+ - - 2.136261
+ - 0.347092
+ - 0.0
+ - - -0.032082
+ - 1.532746
+ - 0.0
+ - - -1.132191
+ - -1.079082
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.394819243557095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.192858
+ - -0.206418
+ - 0.0
+ - - 0.038962
+ - 0.438991
+ - 0.0
+ - - -1.197697
+ - -0.112053
+ - 0.0
+ - - 1.247731
+ - -1.288259
+ - 0.0
+ - - 2.119656
+ - 0.345534
+ - 0.0
+ - - -0.024613
+ - 1.519442
+ - 0.0
+ - - -1.126986
+ - -1.073323
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.15660633244214
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.198509
+ - -0.20874
+ - 0.0
+ - - 0.035537
+ - 0.438272
+ - 0.0
+ - - -1.209962
+ - -0.108844
+ - 0.0
+ - - 1.258609
+ - -1.292522
+ - 0.0
+ - - 2.126687
+ - 0.345196
+ - 0.0
+ - - -0.029172
+ - 1.52068
+ - 0.0
+ - - -1.130296
+ - -1.07013
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.554032043158927
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193752
+ - -0.207591
+ - 0.0
+ - - 0.03902
+ - 0.441334
+ - 0.0
+ - - -1.201968
+ - -0.113232
+ - 0.0
+ - - 1.244181
+ - -1.290186
+ - 0.0
+ - - 2.119943
+ - 0.345778
+ - 0.0
+ - - -0.024214
+ - 1.521849
+ - 0.0
+ - - -1.120804
+ - -1.074038
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.321021894163565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193752
+ - -0.207591
+ - 0.0
+ - - 0.03902
+ - 0.441334
+ - 0.0
+ - - -1.201968
+ - -0.113232
+ - 0.0
+ - - 1.244181
+ - -1.290186
+ - 0.0
+ - - 2.119943
+ - 0.345778
+ - 0.0
+ - - -0.024214
+ - 1.521849
+ - 0.0
+ - - -1.120804
+ - -1.074038
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.754890365148164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193752
+ - -0.207591
+ - 0.0
+ - - 0.03902
+ - 0.441334
+ - 0.0
+ - - -1.201968
+ - -0.113232
+ - 0.0
+ - - 1.244181
+ - -1.290186
+ - 0.0
+ - - 2.119943
+ - 0.345778
+ - 0.0
+ - - -0.024214
+ - 1.521849
+ - 0.0
+ - - -1.120804
+ - -1.074038
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.044015305208912
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.197668
+ - -0.20884
+ - 0.0
+ - - 0.035039
+ - 0.436831
+ - 0.0
+ - - -1.209275
+ - -0.107456
+ - 0.0
+ - - 1.259479
+ - -1.29281
+ - 0.0
+ - - 2.127094
+ - 0.344408
+ - 0.0
+ - - -0.031055
+ - 1.520619
+ - 0.0
+ - - -1.12904
+ - -1.068839
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.977118585846753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193436
+ - -0.207284
+ - 0.0
+ - - 0.037843
+ - 0.440129
+ - 0.0
+ - - -1.199131
+ - -0.112724
+ - 0.0
+ - - 1.244217
+ - -1.289455
+ - 0.0
+ - - 2.119767
+ - 0.345418
+ - 0.0
+ - - -0.02481
+ - 1.520959
+ - 0.0
+ - - -1.12141
+ - -1.073131
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.462483866587075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193155
+ - -0.209089
+ - 0.0
+ - - 0.034291
+ - 0.436851
+ - 0.0
+ - - -1.200732
+ - -0.109235
+ - 0.0
+ - - 1.251603
+ - -1.292655
+ - 0.0
+ - - 2.119479
+ - 0.347267
+ - 0.0
+ - - -0.025556
+ - 1.519804
+ - 0.0
+ - - -1.122329
+ - -1.06903
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.97587790806551
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.201442
+ - -0.210247
+ - 0.0
+ - - 0.037135
+ - 0.442662
+ - 0.0
+ - - -1.215989
+ - -0.107337
+ - 0.0
+ - - 1.260623
+ - -1.296036
+ - 0.0
+ - - 2.131719
+ - 0.344839
+ - 0.0
+ - - -0.032101
+ - 1.526396
+ - 0.0
+ - - -1.132917
+ - -1.076363
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -204,6 +841,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.558664099603178
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1937524318
+ - -0.2075912415
+ - 0.0
+ - - 0.0390200961
+ - 0.4413335287
+ - 0.0
+ - - -1.2019676735
+ - -0.1132319923
+ - 0.0
+ - - 1.2441806427
+ - -1.2901860258
+ - 0.0
+ - - 2.1199429493
+ - 0.345777628
+ - 0.0
+ - - -0.0242137354
+ - 1.5218486678
+ - 0.0
+ - - -1.1208036352
+ - -1.0740380554
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.73536134442354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193312
+ - -0.208465
+ - 0.0
+ - - 0.035887
+ - 0.437117
+ - 0.0
+ - - -1.199333
+ - -0.111073
+ - 0.0
+ - - 1.251251
+ - -1.291035
+ - 0.0
+ - - 2.118568
+ - 0.3476
+ - 0.0
+ - - -0.024477
+ - 1.518591
+ - 0.0
+ - - -1.125298
+ - -1.068822
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethoxide.yml b/input/reference_sets/main/Ethoxide.yml
index 0c1613686c..b621124e45 100644
--- a/input/reference_sets/main/Ethoxide.yml
+++ b/input/reference_sets/main/Ethoxide.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.92281869794199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174696
+ - -0.206254
+ - -3.0e-06
+ - - -0.221879
+ - 0.482745
+ - 4.0e-06
+ - - -1.240441
+ - -0.366276
+ - 8.6e-05
+ - - 1.261602
+ - -0.84604
+ - 0.88398
+ - - 1.261544
+ - -0.84614
+ - -0.88392
+ - - 2.004363
+ - 0.519027
+ - -7.1e-05
+ - - -0.179832
+ - 1.195918
+ - 0.886888
+ - - -0.179891
+ - 1.195817
+ - -0.886963
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -36.076643644393634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175398
+ - -0.207852
+ - -3.0e-06
+ - - -0.225325
+ - 0.480813
+ - 5.0e-06
+ - - -1.242768
+ - -0.363057
+ - 8.6e-05
+ - - 1.265578
+ - -0.848812
+ - 0.884709
+ - - 1.26552
+ - -0.848912
+ - -0.884648
+ - - 2.004466
+ - 0.520092
+ - -7.1e-05
+ - - -0.181323
+ - 1.198312
+ - 0.888642
+ - - -0.181382
+ - 1.198211
+ - -0.888717
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.217194502156794
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177213
+ - -0.210597
+ - -3.0e-06
+ - - -0.234519
+ - 0.477496
+ - 5.0e-06
+ - - -1.252574
+ - -0.362924
+ - 8.6e-05
+ - - 1.272373
+ - -0.854568
+ - 0.888624
+ - - 1.272314
+ - -0.854669
+ - -0.888562
+ - - 2.007967
+ - 0.524452
+ - -7.2e-05
+ - - -0.181276
+ - 1.204853
+ - 0.895299
+ - - -0.181335
+ - 1.204751
+ - -0.895375
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.71665329887179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.176786
+ - -0.209516
+ - -3.0e-06
+ - - -0.233556
+ - 0.477997
+ - 5.0e-06
+ - - -1.253496
+ - -0.368419
+ - 8.6e-05
+ - - 1.270811
+ - -0.85692
+ - 0.891521
+ - - 1.270752
+ - -0.857021
+ - -0.89146
+ - - 2.012609
+ - 0.526333
+ - -7.2e-05
+ - - -0.181841
+ - 1.208222
+ - 0.897709
+ - - -0.1819
+ - 1.20812
+ - -0.897785
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.657548256219854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.172883
+ - -0.205184
+ - -3.0e-06
+ - - -0.218064
+ - 0.481373
+ - 4.0e-06
+ - - -1.233315
+ - -0.364521
+ - 9.1e-05
+ - - 1.259051
+ - -0.845538
+ - 0.883518
+ - - 1.258997
+ - -0.845631
+ - -0.883462
+ - - 2.002574
+ - 0.518696
+ - -6.7e-05
+ - - -0.18095
+ - 1.194854
+ - 0.885998
+ - - -0.181012
+ - 1.194747
+ - -0.886077
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.63422823565124
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.178169
+ - -0.204232
+ - -3.0e-06
+ - - -0.238816
+ - 0.474739
+ - 5.0e-06
+ - - -1.240841
+ - -0.370204
+ - 8.6e-05
+ - - 1.263329
+ - -0.850967
+ - 0.88415
+ - - 1.263271
+ - -0.851066
+ - -0.884089
+ - - 2.014995
+ - 0.519307
+ - -7.1e-05
+ - - -0.179942
+ - 1.20566
+ - 0.893774
+ - - -0.180001
+ - 1.205559
+ - -0.89385
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.18131763276946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175227
+ - -0.205905
+ - -0.0
+ - - -0.2113
+ - 0.486978
+ - 1.0e-06
+ - - -1.242828
+ - -0.362023
+ - -1.0e-06
+ - - 1.261376
+ - -0.84574
+ - 0.884054
+ - - 1.261224
+ - -0.845968
+ - -0.883903
+ - - 2.003308
+ - 0.519395
+ - -0.000162
+ - - -0.183423
+ - 1.191022
+ - 0.885416
+ - - -0.183419
+ - 1.191036
+ - -0.885402
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.845813144340624
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175227
+ - -0.205905
+ - -0.0
+ - - -0.2113
+ - 0.486978
+ - 1.0e-06
+ - - -1.242828
+ - -0.362023
+ - -1.0e-06
+ - - 1.261376
+ - -0.84574
+ - 0.884054
+ - - 1.261224
+ - -0.845968
+ - -0.883903
+ - - 2.003308
+ - 0.519395
+ - -0.000162
+ - - -0.183423
+ - 1.191022
+ - 0.885416
+ - - -0.183419
+ - 1.191036
+ - -0.885402
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.29874941188854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175227
+ - -0.205905
+ - -0.0
+ - - -0.2113
+ - 0.486978
+ - 1.0e-06
+ - - -1.242828
+ - -0.362023
+ - -1.0e-06
+ - - 1.261376
+ - -0.84574
+ - 0.884054
+ - - 1.261224
+ - -0.845968
+ - -0.883903
+ - - 2.003308
+ - 0.519395
+ - -0.000162
+ - - -0.183423
+ - 1.191022
+ - 0.885416
+ - - -0.183419
+ - 1.191036
+ - -0.885402
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.88776821579583
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174258
+ - -0.2066
+ - -3.0e-06
+ - - -0.247866
+ - 0.469978
+ - 6.0e-06
+ - - -1.249141
+ - -0.366857
+ - 8.6e-05
+ - - 1.274456
+ - -0.854117
+ - 0.883922
+ - - 1.274399
+ - -0.854216
+ - -0.883861
+ - - 2.00928
+ - 0.518816
+ - -7.0e-05
+ - - -0.177582
+ - 1.210946
+ - 0.888259
+ - - -0.177641
+ - 1.210845
+ - -0.888336
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.84872958178275
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.175674
+ - -0.203213
+ - -3.0e-06
+ - - -0.218098
+ - 0.485645
+ - 4.0e-06
+ - - -1.232618
+ - -0.36834
+ - 8.7e-05
+ - - 1.256204
+ - -0.844227
+ - 0.883584
+ - - 1.256147
+ - -0.844325
+ - -0.883524
+ - - 2.009334
+ - 0.514908
+ - -7.0e-05
+ - - -0.18321
+ - 1.194224
+ - 0.884344
+ - - -0.18327
+ - 1.194123
+ - -0.884419
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.1585111948758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.171072
+ - -0.205159
+ - -3.0e-06
+ - - -0.222916
+ - 0.477082
+ - 5.0e-06
+ - - -1.235013
+ - -0.364061
+ - 8.6e-05
+ - - 1.261397
+ - -0.847626
+ - 0.884718
+ - - 1.261339
+ - -0.847726
+ - -0.884657
+ - - 2.001565
+ - 0.521478
+ - -7.1e-05
+ - - -0.178611
+ - 1.197454
+ - 0.887503
+ - - -0.17867
+ - 1.197353
+ - -0.887579
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.89715048303944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.177912
+ - -0.208585
+ - -3.0e-06
+ - - -0.230178
+ - 0.483258
+ - 5.0e-06
+ - - -1.249807
+ - -0.367939
+ - 8.6e-05
+ - - 1.268541
+ - -0.852292
+ - 0.887845
+ - - 1.268482
+ - -0.852393
+ - -0.887784
+ - - 2.014364
+ - 0.519208
+ - -7.2e-05
+ - - -0.184546
+ - 1.20382
+ - 0.893655
+ - - -0.184605
+ - 1.203719
+ - -0.89373
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.13406693931866
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1752267163
+ - -0.2059046348
+ - -1.937e-07
+ - - -0.2113003312
+ - 0.4869782474
+ - 1.1655e-06
+ - - -1.2428279213
+ - -0.3620233531
+ - -1.0141e-06
+ - - 1.2613756989
+ - -0.8457398926
+ - 0.8840535765
+ - - 1.261224207
+ - -0.8459676549
+ - -0.8839027099
+ - - 2.0033079765
+ - 0.5193953552
+ - -0.000162375
+ - - -0.1834234588
+ - 1.1910216712
+ - 0.8854155279
+ - - -0.1834193639
+ - 1.1910356704
+ - -0.8854017379
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.10381200717026
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.174061
+ - -0.206667
+ - -3.0e-06
+ - - -0.223215
+ - 0.479571
+ - 5.0e-06
+ - - -1.238777
+ - -0.361602
+ - 8.6e-05
+ - - 1.263189
+ - -0.847192
+ - 0.884789
+ - - 1.26313
+ - -0.847292
+ - -0.884728
+ - - 2.002497
+ - 0.520301
+ - -7.2e-05
+ - - -0.180331
+ - 1.195888
+ - 0.8873
+ - - -0.18039
+ - 1.195788
+ - -0.887375
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethoxy.yml b/input/reference_sets/main/Ethoxy.yml
index b22e7f6d3f..658ff1b7e3 100644
--- a/input/reference_sets/main/Ethoxy.yml
+++ b/input/reference_sets/main/Ethoxy.yml
@@ -16,7 +16,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -3.348993480696464
+ value: -3.348993480696461
class: ThermoData
xyz_dict:
coords:
@@ -70,7 +70,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -3.7459110452024076
+ value: -3.7459110452024063
class: ThermoData
xyz_dict:
coords:
@@ -118,6 +118,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.13745518243084104
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.182354
+ - -0.194711
+ - -0.001557
+ - - -0.178282
+ - 0.482706
+ - -0.016294
+ - - -1.252153
+ - -0.365026
+ - 0.022685
+ - - 1.286373
+ - -0.820713
+ - 0.883806
+ - - 1.301217
+ - -0.824219
+ - -0.882937
+ - - 1.981982
+ - 0.547684
+ - -0.00037
+ - - -0.292803
+ - 1.167638
+ - -0.871248
+ - - -0.305609
+ - 1.137155
+ - 0.86594
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.657270314154071
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.183879
+ - -0.196474
+ - 0.000466
+ - - -0.181422
+ - 0.475376
+ - 0.004464
+ - - -1.256361
+ - -0.362459
+ - -0.006243
+ - - 1.300352
+ - -0.825199
+ - 0.884263
+ - - 1.296261
+ - -0.82518
+ - -0.883765
+ - - 1.982494
+ - 0.548899
+ - -0.000325
+ - - -0.302607
+ - 1.153584
+ - -0.863692
+ - - -0.299518
+ - 1.161969
+ - 0.864857
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.36909863670392207
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187521
+ - -0.199805
+ - 1.5e-05
+ - - -0.18798
+ - 0.465322
+ - -1.1e-05
+ - - -1.266508
+ - -0.359103
+ - 0.00083
+ - - 1.305676
+ - -0.829967
+ - 0.887755
+ - - 1.305149
+ - -0.831129
+ - -0.886968
+ - - 1.984344
+ - 0.553892
+ - -0.000713
+ - - -0.302817
+ - 1.165082
+ - -0.862654
+ - - -0.302307
+ - 1.166223
+ - 0.861771
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1982104234710809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.188079
+ - -0.200648
+ - 0.000128
+ - - -0.189819
+ - 0.460427
+ - -0.000111
+ - - -1.267839
+ - -0.360121
+ - 0.000316
+ - - 1.30813
+ - -0.834282
+ - 0.890674
+ - - 1.308041
+ - -0.835112
+ - -0.88984
+ - - 1.988423
+ - 0.555558
+ - -0.000264
+ - - -0.306011
+ - 1.171943
+ - -0.861693
+ - - -0.305927
+ - 1.172749
+ - 0.860815
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.5822577302895984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.180905
+ - -0.194564
+ - -3.0e-06
+ - - -0.177426
+ - 0.477647
+ - -1.8e-05
+ - - -1.247566
+ - -0.362591
+ - 0.000161
+ - - 1.293762
+ - -0.823012
+ - 0.883136
+ - - 1.2937
+ - -0.823173
+ - -0.883036
+ - - 1.980936
+ - 0.547595
+ - -0.000104
+ - - -0.30065
+ - 1.154248
+ - -0.864744
+ - - -0.300583
+ - 1.154364
+ - 0.864634
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.5230604077557146
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.186072
+ - -0.195542
+ - -1.0e-06
+ - - -0.184119
+ - 0.478162
+ - 1.1e-05
+ - - -1.258466
+ - -0.365521
+ - 0.00012
+ - - 1.298997
+ - -0.826612
+ - 0.884613
+ - - 1.298904
+ - -0.826772
+ - -0.884512
+ - - 1.989959
+ - 0.546746
+ - -0.000108
+ - - -0.304176
+ - 1.159944
+ - -0.866025
+ - - -0.304092
+ - 1.160108
+ - 0.865926
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.2637851181430433
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.182672
+ - -0.195407
+ - 0.0
+ - - -0.177344
+ - 0.478775
+ - -1.0e-06
+ - - -1.24996
+ - -0.363908
+ - -3.0e-06
+ - - 1.294371
+ - -0.823419
+ - 0.883594
+ - - 1.294167
+ - -0.823794
+ - -0.883353
+ - - 1.981793
+ - 0.547615
+ - -0.000251
+ - - -0.301302
+ - 1.155352
+ - -0.864657
+ - - -0.301319
+ - 1.155299
+ - 0.864695
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.1225064999763323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.182672
+ - -0.195407
+ - 0.0
+ - - -0.177344
+ - 0.478775
+ - -1.0e-06
+ - - -1.24996
+ - -0.363908
+ - -3.0e-06
+ - - 1.294371
+ - -0.823419
+ - 0.883594
+ - - 1.294167
+ - -0.823794
+ - -0.883353
+ - - 1.981793
+ - 0.547615
+ - -0.000251
+ - - -0.301302
+ - 1.155352
+ - -0.864657
+ - - -0.301319
+ - 1.155299
+ - 0.864695
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.1573892520775484
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.160999
+ - -0.198009
+ - -1.0e-06
+ - - -0.212449
+ - 0.531321
+ - 3.0e-06
+ - - -1.166628
+ - -0.443399
+ - 0.00013
+ - - 1.255903
+ - -0.823663
+ - 0.889613
+ - - 1.255818
+ - -0.823814
+ - -0.889518
+ - - 1.953361
+ - 0.555127
+ - -0.000103
+ - - -0.262006
+ - 1.166398
+ - -0.901446
+ - - -0.261919
+ - 1.166553
+ - 0.901348
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.1971996311959225
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.180331
+ - -0.195342
+ - 9.8e-05
+ - - -0.179975
+ - 0.472489
+ - -7.2e-05
+ - - -1.250072
+ - -0.360479
+ - 0.000253
+ - - 1.296484
+ - -0.82444
+ - 0.884695
+ - - 1.296375
+ - -0.825119
+ - -0.88403
+ - - 1.979763
+ - 0.550117
+ - -0.000232
+ - - -0.299964
+ - 1.156297
+ - -0.863746
+ - - -0.299863
+ - 1.156992
+ - 0.863059
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.4648272637025066
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187567
+ - -0.198099
+ - -0.00138
+ - - -0.184828
+ - 0.477543
+ - -0.023214
+ - - -1.264069
+ - -0.363328
+ - 0.031847
+ - - 1.290405
+ - -0.827497
+ - 0.887572
+ - - 1.310798
+ - -0.82868
+ - -0.887566
+ - - 1.986936
+ - 0.552063
+ - 0.00231
+ - - -0.295685
+ - 1.179005
+ - -0.87555
+ - - -0.308045
+ - 1.139506
+ - 0.866006
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -172,6 +766,60 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.106389085506062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1826721286
+ - -0.1954070024
+ - 8.61e-08
+ - - -0.1773440859
+ - 0.4787754644
+ - -9.833e-07
+ - - -1.2499597668
+ - -0.3639080302
+ - -2.9131e-06
+ - - 1.2943711427
+ - -0.8234192322
+ - 0.8835939676
+ - - 1.2941666284
+ - -0.8237941003
+ - -0.8833530718
+ - - 1.9817933632
+ - 0.5476151756
+ - -0.0002508531
+ - - -0.3013022599
+ - 1.1553521897
+ - -0.864656667
+ - - -0.3013189963
+ - 1.1552994359
+ - 0.8646953125
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethoxyacetonitrile.yml b/input/reference_sets/main/Ethoxyacetonitrile.yml
index 5a9d9fffbc..8efd24dc04 100644
--- a/input/reference_sets/main/Ethoxyacetonitrile.yml
+++ b/input/reference_sets/main/Ethoxyacetonitrile.yml
@@ -99,7 +99,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -17.604895708560008
+ value: -17.60489570855999
class: ThermoData
xyz_dict:
coords:
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.945137464722815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.507454
+ - -1.02599
+ - -0.115186
+ - - 1.788198
+ - -0.125192
+ - -0.014889
+ - - 0.853689
+ - 1.009908
+ - 0.116135
+ - - -0.430434
+ - 0.713181
+ - -0.361376
+ - - -1.114286
+ - -0.267967
+ - 0.420311
+ - - -2.489933
+ - -0.458429
+ - -0.171501
+ - - 1.233139
+ - 1.842454
+ - -0.474541
+ - - 0.83446
+ - 1.314
+ - 1.169581
+ - - -0.549343
+ - -1.205703
+ - 0.409197
+ - - -1.174601
+ - 0.078591
+ - 1.459222
+ - - -3.043028
+ - -1.201842
+ - 0.402737
+ - - -2.416137
+ - -0.802574
+ - -1.202156
+ - - -3.047663
+ - 0.477095
+ - -0.157052
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.547207802733418
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.514716
+ - -1.015159
+ - -0.122117
+ - - 1.797353
+ - -0.122952
+ - -0.019071
+ - - 0.858967
+ - 1.007117
+ - 0.116113
+ - - -0.426806
+ - 0.709818
+ - -0.3553
+ - - -1.118841
+ - -0.268766
+ - 0.4236
+ - - -2.493702
+ - -0.458812
+ - -0.173283
+ - - 1.234567
+ - 1.843031
+ - -0.474935
+ - - 0.845614
+ - 1.312657
+ - 1.170901
+ - - -0.556051
+ - -1.209026
+ - 0.41753
+ - - -1.183701
+ - 0.078709
+ - 1.463188
+ - - -3.050718
+ - -1.200094
+ - 0.401897
+ - - -2.418116
+ - -0.807056
+ - -1.203745
+ - - -3.051767
+ - 0.478065
+ - -0.164297
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 11.109211124980204
+ value: 11.109211124980204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.539418515
+ - -1.0233017955
+ - -0.1236367318
+ - - 1.8090141085
+ - -0.1157870229
+ - -0.0150956176
+ - - 0.850807036
+ - 1.0126474956
+ - 0.1243915425
+ - - -0.4427393369
+ - 0.7146206189
+ - -0.3574792724
+ - - -1.1251953274
+ - -0.2932257727
+ - 0.4132132122
+ - - -2.5239743321
+ - -0.4447794466
+ - -0.1706342931
+ - - 1.221056895
+ - 1.8637790963
+ - -0.4656852448
+ - - 0.8390955956
+ - 1.3133131074
+ - 1.1910137903
+ - - -0.5697501543
+ - -1.2466587856
+ - 0.3613574879
+ - - -1.1690007532
+ - 0.0161544993
+ - 1.4754500754
+ - - -3.0818102005
+ - -1.2115845352
+ - 0.3853759464
+ - - -2.4656714429
+ - -0.747415074
+ - -1.2249903951
+ - - -3.0718437587
+ - 0.5054277886
+ - -0.1084794229
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.6385133210552367
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.513847
+ - -1.030975
+ - -0.121915
+ - - 1.801782
+ - -0.122494
+ - -0.015782
+ - - 0.864476
+ - 1.012212
+ - 0.117301
+ - - -0.427667
+ - 0.719858
+ - -0.363071
+ - - -1.119532
+ - -0.267383
+ - 0.421439
+ - - -2.498935
+ - -0.461612
+ - -0.17438
+ - - 1.244073
+ - 1.852107
+ - -0.474839
+ - - 0.848268
+ - 1.318651
+ - 1.177677
+ - - -0.550489
+ - -1.209459
+ - 0.413157
+ - - -1.182682
+ - 0.081183
+ - 1.466121
+ - - -3.051793
+ - -1.208011
+ - 0.406293
+ - - -2.425859
+ - -0.812488
+ - -1.208526
+ - - -3.063974
+ - 0.475945
+ - -0.162992
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.2349965638506224
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.540514
+ - -1.021295
+ - -0.134922
+ - - 1.811673
+ - -0.12187
+ - -0.021222
+ - - 0.867147
+ - 1.007032
+ - 0.118415
+ - - -0.427323
+ - 0.714679
+ - -0.367795
+ - - -1.124127
+ - -0.267205
+ - 0.423846
+ - - -2.503523
+ - -0.461144
+ - -0.175147
+ - - 1.246048
+ - 1.856415
+ - -0.469891
+ - - 0.84817
+ - 1.309513
+ - 1.185138
+ - - -0.554873
+ - -1.215496
+ - 0.424423
+ - - -1.189163
+ - 0.090271
+ - 1.470817
+ - - -3.064854
+ - -1.203846
+ - 0.41033
+ - - -2.429867
+ - -0.821403
+ - -1.210796
+ - - -3.068306
+ - 0.481881
+ - -0.172714
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.421163150587362
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.527938
+ - -0.998017
+ - -0.132784
+ - - 1.798432
+ - -0.123536
+ - -0.026357
+ - - 0.852489
+ - 0.998401
+ - 0.116445
+ - - -0.424597
+ - 0.69811
+ - -0.353309
+ - - -1.120028
+ - -0.266629
+ - 0.424686
+ - - -2.489809
+ - -0.455828
+ - -0.172942
+ - - 1.226092
+ - 1.838556
+ - -0.467876
+ - - 0.838757
+ - 1.295936
+ - 1.172073
+ - - -0.56225
+ - -1.209218
+ - 0.427932
+ - - -1.188211
+ - 0.087644
+ - 1.460885
+ - - -3.052008
+ - -1.189889
+ - 0.404471
+ - - -2.412228
+ - -0.810815
+ - -1.199929
+ - - -3.043061
+ - 0.482817
+ - -0.172814
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.61828803501221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.556159
+ - -0.995566
+ - -0.148887
+ - - 1.821208
+ - -0.115774
+ - -0.031482
+ - - 0.862974
+ - 0.998858
+ - 0.118545
+ - - -0.42256
+ - 0.692907
+ - -0.35748
+ - - -1.126008
+ - -0.271793
+ - 0.433508
+ - - -2.50161
+ - -0.45762
+ - -0.175363
+ - - 1.225635
+ - 1.846974
+ - -0.465528
+ - - 0.84801
+ - 1.295768
+ - 1.177546
+ - - -0.571968
+ - -1.219199
+ - 0.444701
+ - - -1.198445
+ - 0.090554
+ - 1.469413
+ - - -3.075175
+ - -1.18638
+ - 0.402812
+ - - -2.41797
+ - -0.818659
+ - -1.202396
+ - - -3.048735
+ - 0.487465
+ - -0.184907
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.591481025380515
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.488338
+ - -1.028622
+ - -0.115769
+ - - 1.778043
+ - -0.13305
+ - -0.017946
+ - - 0.848458
+ - 1.010595
+ - 0.11572
+ - - -0.43309
+ - 0.720905
+ - -0.359289
+ - - -1.111319
+ - -0.261511
+ - 0.419614
+ - - -2.485165
+ - -0.460461
+ - -0.171557
+ - - 1.237689
+ - 1.840683
+ - -0.471755
+ - - 0.834814
+ - 1.310126
+ - 1.17073
+ - - -0.540575
+ - -1.196557
+ - 0.408986
+ - - -1.174357
+ - 0.08458
+ - 1.459253
+ - - -3.03419
+ - -1.207127
+ - 0.402226
+ - - -2.408664
+ - -0.804187
+ - -1.20265
+ - - -3.048467
+ - 0.472159
+ - -0.15708
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.753404264963107
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.488338
+ - -1.028622
+ - -0.115769
+ - - 1.778043
+ - -0.13305
+ - -0.017946
+ - - 0.848458
+ - 1.010595
+ - 0.11572
+ - - -0.43309
+ - 0.720905
+ - -0.359289
+ - - -1.111319
+ - -0.261511
+ - 0.419614
+ - - -2.485165
+ - -0.460461
+ - -0.171557
+ - - 1.237689
+ - 1.840683
+ - -0.471755
+ - - 0.834814
+ - 1.310126
+ - 1.17073
+ - - -0.540575
+ - -1.196557
+ - 0.408986
+ - - -1.174357
+ - 0.08458
+ - 1.459253
+ - - -3.03419
+ - -1.207127
+ - 0.402226
+ - - -2.408664
+ - -0.804187
+ - -1.20265
+ - - -3.048467
+ - 0.472159
+ - -0.15708
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.571697076846444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.488338
+ - -1.028622
+ - -0.115769
+ - - 1.778043
+ - -0.13305
+ - -0.017946
+ - - 0.848458
+ - 1.010595
+ - 0.11572
+ - - -0.43309
+ - 0.720905
+ - -0.359289
+ - - -1.111319
+ - -0.261511
+ - 0.419614
+ - - -2.485165
+ - -0.460461
+ - -0.171557
+ - - 1.237689
+ - 1.840683
+ - -0.471755
+ - - 0.834814
+ - 1.310126
+ - 1.17073
+ - - -0.540575
+ - -1.196557
+ - 0.408986
+ - - -1.174357
+ - 0.08458
+ - 1.459253
+ - - -3.03419
+ - -1.207127
+ - 0.402226
+ - - -2.408664
+ - -0.804187
+ - -1.20265
+ - - -3.048467
+ - 0.472159
+ - -0.15708
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.399314763129233
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.544626
+ - -1.006646
+ - -0.142361
+ - - 1.8105
+ - -0.12173
+ - -0.029254
+ - - 0.858116
+ - 1.000252
+ - 0.117348
+ - - -0.425217
+ - 0.700801
+ - -0.354304
+ - - -1.121261
+ - -0.266301
+ - 0.429591
+ - - -2.498999
+ - -0.458072
+ - -0.176454
+ - - 1.227321
+ - 1.848037
+ - -0.467836
+ - - 0.849041
+ - 1.301019
+ - 1.177446
+ - - -0.562171
+ - -1.213204
+ - 0.439814
+ - - -1.19372
+ - 0.088039
+ - 1.47059
+ - - -3.065278
+ - -1.192531
+ - 0.40341
+ - - -2.41799
+ - -0.81654
+ - -1.206127
+ - - -3.053453
+ - 0.484409
+ - -0.181381
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.769255707104342
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.539418515
- - -1.0233017955
- - -0.1236367318
- - - 1.8090141085
- - -0.1157870229
- - -0.0150956176
- - - 0.850807036
- - 1.0126474956
- - 0.1243915425
- - - -0.4427393369
- - 0.7146206189
- - -0.3574792724
- - - -1.1251953274
- - -0.2932257727
- - 0.4132132122
- - - -2.5239743321
- - -0.4447794466
- - -0.1706342931
- - - 1.221056895
- - 1.8637790963
- - -0.4656852448
- - - 0.8390955956
- - 1.3133131074
- - 1.1910137903
- - - -0.5697501543
- - -1.2466587856
- - 0.3613574879
- - - -1.1690007532
- - 0.0161544993
- - 1.4754500754
- - - -3.0818102005
- - -1.2115845352
- - 0.3853759464
- - - -2.4656714429
- - -0.747415074
- - -1.2249903951
- - - -3.0718437587
- - 0.5054277886
- - -0.1084794229
+ - - 2.489393
+ - -1.023454
+ - -0.09909
+ - - 1.776137
+ - -0.131578
+ - -0.010478
+ - - 0.84412
+ - 1.011265
+ - 0.11231
+ - - -0.432711
+ - 0.714123
+ - -0.357452
+ - - -1.107945
+ - -0.267164
+ - 0.416417
+ - - -2.485758
+ - -0.457699
+ - -0.169668
+ - - 1.233576
+ - 1.836366
+ - -0.482903
+ - - 0.829751
+ - 1.317656
+ - 1.165289
+ - - -0.54024
+ - -1.204198
+ - 0.397054
+ - - -1.164899
+ - 0.072411
+ - 1.45832
+ - - -3.035286
+ - -1.206292
+ - 0.400618
+ - - -2.41211
+ - -0.792364
+ - -1.203685
+ - - -3.042513
+ - 0.47846
+ - -0.14625
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.4878603326702855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.513334
+ - -1.010381
+ - -0.127245
+ - - 1.786077
+ - -0.126719
+ - -0.022168
+ - - 0.847552
+ - 0.998389
+ - 0.115974
+ - - -0.428969
+ - 0.709102
+ - -0.356087
+ - - -1.115341
+ - -0.260153
+ - 0.419347
+ - - -2.485507
+ - -0.456705
+ - -0.172616
+ - - 1.231349
+ - 1.837942
+ - -0.467965
+ - - 0.83674
+ - 1.298321
+ - 1.174299
+ - - -0.551319
+ - -1.202336
+ - 0.419539
+ - - -1.182739
+ - 0.08886
+ - 1.460315
+ - - -3.040419
+ - -1.19687
+ - 0.407342
+ - - -2.411575
+ - -0.810791
+ - -1.202215
+ - - -3.047668
+ - 0.478873
+ - -0.168038
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.684388635020002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.519896
+ - -1.028706
+ - -0.136538
+ - - 1.80364
+ - -0.123954
+ - -0.021515
+ - - 0.867183
+ - 1.01237
+ - 0.120567
+ - - -0.42947
+ - 0.718684
+ - -0.363639
+ - - -1.122338
+ - -0.268491
+ - 0.429045
+ - - -2.499655
+ - -0.462734
+ - -0.175871
+ - - 1.241781
+ - 1.852951
+ - -0.471103
+ - - 0.847029
+ - 1.311033
+ - 1.181092
+ - - -0.550021
+ - -1.207362
+ - 0.424292
+ - - -1.188773
+ - 0.08999
+ - 1.468665
+ - - -3.057779
+ - -1.204739
+ - 0.40475
+ - - -2.419214
+ - -0.818102
+ - -1.207317
+ - - -3.060764
+ - 0.476593
+ - -0.171946
isotopes:
- 14
- 12
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.744656190941896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4883377593
+ - -1.0286224261
+ - -0.1157693236
+ - - 1.7780429486
+ - -0.1330499436
+ - -0.0179458677
+ - - 0.8484582479
+ - 1.0105948616
+ - 0.1157198881
+ - - -0.4330895363
+ - 0.7209052916
+ - -0.3592885917
+ - - -1.1113188117
+ - -0.2615111839
+ - 0.4196141823
+ - - -2.4851653246
+ - -0.4604608055
+ - -0.1715574405
+ - - 1.2376892514
+ - 1.8406832886
+ - -0.4717552291
+ - - 0.8348142142
+ - 1.310126464
+ - 1.170730384
+ - - -0.5405752548
+ - -1.1965574503
+ - 0.4089860283
+ - - -1.174357186
+ - 0.0845798383
+ - 1.4592527126
+ - - -3.0341902854
+ - -1.2071269237
+ - 0.4022257369
+ - - -2.408664146
+ - -0.8041868139
+ - -1.2026501526
+ - - -3.0484669789
+ - 0.4721586745
+ - -0.1570800547
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.326353029479664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.515866
+ - -1.009859
+ - -0.119181
+ - - 1.791681
+ - -0.126459
+ - -0.019864
+ - - 0.84867
+ - 1.002955
+ - 0.11497
+ - - -0.426638
+ - 0.706469
+ - -0.353947
+ - - -1.114788
+ - -0.2639
+ - 0.419603
+ - - -2.48916
+ - -0.456038
+ - -0.172853
+ - - 1.229445
+ - 1.837768
+ - -0.473905
+ - - 0.838837
+ - 1.304655
+ - 1.170951
+ - - -0.555168
+ - -1.20713
+ - 0.414927
+ - - -1.181575
+ - 0.081731
+ - 1.460132
+ - - -3.042339
+ - -1.197384
+ - 0.405065
+ - - -2.415309
+ - -0.805367
+ - -1.202817
+ - - -3.048006
+ - 0.480091
+ - -0.1626
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethoxyethene.yml b/input/reference_sets/main/Ethoxyethene.yml
index f6322e046c..a5aa06859b 100644
--- a/input/reference_sets/main/Ethoxyethene.yml
+++ b/input/reference_sets/main/Ethoxyethene.yml
@@ -172,57 +172,1084 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.12853102013877
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.041393
+ - -0.588746
+ - 2.0e-06
+ - - 1.352921
+ - 0.55393
+ - -2.0e-06
+ - - 0.011131
+ - 0.72134
+ - -1.5e-05
+ - - -0.783334
+ - -0.463131
+ - -2.3e-05
+ - - -2.234929
+ - -0.046385
+ - -3.4e-05
+ - - 3.119043
+ - -0.540364
+ - 1.2e-05
+ - - 1.581278
+ - -1.564042
+ - -4.0e-06
+ - - 1.847349
+ - 1.516501
+ - 4.0e-06
+ - - -0.539944
+ - -1.058731
+ - -0.88515
+ - - -0.539958
+ - -1.058734
+ - 0.885106
+ - - -2.463969
+ - 0.547346
+ - 0.883998
+ - - -2.463957
+ - 0.54734
+ - -0.884073
+ - - -2.875671
+ - -0.928528
+ - -3.5e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.937443073922957
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.050277
+ - -0.585268
+ - 2.0e-06
+ - - 1.356711
+ - 0.55143
+ - -0.0
+ - - 0.015388
+ - 0.713541
+ - -1.5e-05
+ - - -0.787566
+ - -0.465405
+ - -2.5e-05
+ - - -2.239188
+ - -0.043871
+ - -3.4e-05
+ - - 3.128807
+ - -0.535706
+ - 1.5e-05
+ - - 1.595149
+ - -1.564065
+ - -8.0e-06
+ - - 1.846403
+ - 1.517705
+ - 1.0e-05
+ - - -0.547616
+ - -1.064085
+ - -0.885431
+ - - -0.547628
+ - -1.064092
+ - 0.885379
+ - - -2.46808
+ - 0.551259
+ - 0.884665
+ - - -2.468078
+ - 0.551237
+ - -0.884747
+ - - -2.883224
+ - -0.924887
+ - -2.4e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -9.151497158573271
+ value: -9.151497158573271
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0732690502
+ - -0.582375628
+ - -0.0003602798
+ - - 1.3594218139
+ - 0.560322439
+ - -8.59046e-05
+ - - 0.0066275219
+ - 0.721844932
+ - 0.0004266983
+ - - -0.7942192304
+ - -0.4739156061
+ - 0.0007944219
+ - - -2.2561000524
+ - -0.0449434633
+ - -0.0006254152
+ - - 3.1601118543
+ - -0.5227041029
+ - -0.0008931879
+ - - 1.6236793464
+ - -1.5734842915
+ - -0.0001449176
+ - - 1.84167486
+ - 1.5399776045
+ - -0.000344307
+ - - -0.5525236123
+ - -1.077895226
+ - -0.8914184068
+ - - -0.5536225785
+ - -1.0766108574
+ - 0.8941921165
+ - - -2.4804927114
+ - 0.5565208378
+ - 0.8908588818
+ - - -2.4788165074
+ - 0.5557140088
+ - -0.8930858737
+ - - -2.9072603144
+ - -0.9308038787
+ - -0.0009148255
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.174854909473602
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.057616
+ - -0.590779
+ - 2.0e-06
+ - - 1.362178
+ - 0.553701
+ - -3.0e-06
+ - - 0.015821
+ - 0.725125
+ - -1.5e-05
+ - - -0.7907
+ - -0.462987
+ - -2.2e-05
+ - - -2.247326
+ - -0.043674
+ - -3.4e-05
+ - - 3.140699
+ - -0.540515
+ - 1.1e-05
+ - - 1.600994
+ - -1.573685
+ - -2.0e-06
+ - - 1.855069
+ - 1.523919
+ - 1.0e-06
+ - - -0.546409
+ - -1.062432
+ - -0.889537
+ - - -0.546424
+ - -1.062433
+ - 0.889497
+ - - -2.480739
+ - 0.551735
+ - 0.888431
+ - - -2.480724
+ - 0.551737
+ - -0.888503
+ - - -2.8887
+ - -0.931918
+ - -4.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.379847299212443
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.057007
+ - -0.592192
+ - 2.0e-06
+ - - 1.36404
+ - 0.557153
+ - -3.0e-06
+ - - 0.014645
+ - 0.731305
+ - -1.5e-05
+ - - -0.789534
+ - -0.461381
+ - -2.2e-05
+ - - -2.248336
+ - -0.044955
+ - -3.4e-05
+ - - 3.14472
+ - -0.546334
+ - 1.1e-05
+ - - 1.594489
+ - -1.577693
+ - -2.0e-06
+ - - 1.860137
+ - 1.530965
+ - 2.0e-06
+ - - -0.541569
+ - -1.063615
+ - -0.89315
+ - - -0.541584
+ - -1.063616
+ - 0.893109
+ - - -2.485273
+ - 0.55246
+ - 0.891688
+ - - -2.485258
+ - 0.552461
+ - -0.891759
+ - - -2.892131
+ - -0.936765
+ - -4.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.514415701295285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.041838
+ - -0.582904
+ - 2.0e-06
+ - - 1.351263
+ - 0.549117
+ - -3.0e-06
+ - - 0.014563
+ - 0.70758
+ - -1.5e-05
+ - - -0.784179
+ - -0.464
+ - -2.2e-05
+ - - -2.231826
+ - -0.044438
+ - -3.4e-05
+ - - 3.119775
+ - -0.532701
+ - 1.1e-05
+ - - 1.586029
+ - -1.560894
+ - -2.0e-06
+ - - 1.841367
+ - 1.514754
+ - 1.0e-06
+ - - -0.545642
+ - -1.063143
+ - -0.884596
+ - - -0.545657
+ - -1.063144
+ - 0.884556
+ - - -2.459913
+ - 0.550684
+ - 0.883692
+ - - -2.459898
+ - 0.550683
+ - -0.883764
+ - - -2.876367
+ - -0.923801
+ - -3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.11548235469603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.063129
+ - -0.584174
+ - 3.0e-06
+ - - 1.359111
+ - 0.549047
+ - -4.0e-06
+ - - 0.013948
+ - 0.708519
+ - -1.5e-05
+ - - -0.791949
+ - -0.472381
+ - -2.2e-05
+ - - -2.245682
+ - -0.040872
+ - -3.4e-05
+ - - 3.142984
+ - -0.526583
+ - 1.2e-05
+ - - 1.616758
+ - -1.568867
+ - -1.0e-06
+ - - 1.841615
+ - 1.520683
+ - 0.0
+ - - -0.555686
+ - -1.073332
+ - -0.886986
+ - - -0.555701
+ - -1.073332
+ - 0.886945
+ - - -2.468839
+ - 0.557965
+ - 0.885513
+ - - -2.468824
+ - 0.557964
+ - -0.885586
+ - - -2.899509
+ - -0.916844
+ - -3.9e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.806523647735055
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.030724
+ - -0.587418
+ - -2.2e-05
+ - - 1.351397
+ - 0.55475
+ - -1.4e-05
+ - - 0.011156
+ - 0.723896
+ - 5.9e-05
+ - - -0.777584
+ - -0.459215
+ - 4.5e-05
+ - - -2.230426
+ - -0.04913
+ - -4.8e-05
+ - - 3.109467
+ - -0.544636
+ - -0.000107
+ - - 1.5634
+ - -1.560659
+ - 6.0e-05
+ - - 1.850498
+ - 1.51576
+ - -8.5e-05
+ - - -0.533213
+ - -1.055494
+ - -0.885332
+ - - -0.533307
+ - -1.055466
+ - 0.885467
+ - - -2.461313
+ - 0.544263
+ - 0.884193
+ - - -2.461117
+ - 0.544447
+ - -0.884218
+ - - -2.868329
+ - -0.933303
+ - -0.000212
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.779146517630316
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.030724
+ - -0.587418
+ - -2.2e-05
+ - - 1.351397
+ - 0.55475
+ - -1.4e-05
+ - - 0.011156
+ - 0.723896
+ - 5.9e-05
+ - - -0.777584
+ - -0.459215
+ - 4.5e-05
+ - - -2.230426
+ - -0.04913
+ - -4.8e-05
+ - - 3.109467
+ - -0.544636
+ - -0.000107
+ - - 1.5634
+ - -1.560659
+ - 6.0e-05
+ - - 1.850498
+ - 1.51576
+ - -8.5e-05
+ - - -0.533213
+ - -1.055494
+ - -0.885332
+ - - -0.533307
+ - -1.055466
+ - 0.885467
+ - - -2.461313
+ - 0.544263
+ - 0.884193
+ - - -2.461117
+ - 0.544447
+ - -0.884218
+ - - -2.868329
+ - -0.933303
+ - -0.000212
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.15434116919117
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.030724
+ - -0.587418
+ - -2.2e-05
+ - - 1.351397
+ - 0.55475
+ - -1.4e-05
+ - - 0.011156
+ - 0.723896
+ - 5.9e-05
+ - - -0.777584
+ - -0.459215
+ - 4.5e-05
+ - - -2.230426
+ - -0.04913
+ - -4.8e-05
+ - - 3.109467
+ - -0.544636
+ - -0.000107
+ - - 1.5634
+ - -1.560659
+ - 6.0e-05
+ - - 1.850498
+ - 1.51576
+ - -8.5e-05
+ - - -0.533213
+ - -1.055494
+ - -0.885332
+ - - -0.533307
+ - -1.055466
+ - 0.885467
+ - - -2.461313
+ - 0.544263
+ - 0.884193
+ - - -2.461117
+ - 0.544447
+ - -0.884218
+ - - -2.868329
+ - -0.933303
+ - -0.000212
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.5968989018545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.056041
+ - -0.586022
+ - 2.0e-06
+ - - 1.355225
+ - 0.54785
+ - -3.0e-06
+ - - 0.013918
+ - 0.712886
+ - -1.5e-05
+ - - -0.785911
+ - -0.464543
+ - -2.2e-05
+ - - -2.24372
+ - -0.041389
+ - -3.4e-05
+ - - 3.136799
+ - -0.532287
+ - 1.1e-05
+ - - 1.607662
+ - -1.570114
+ - -2.0e-06
+ - - 1.841518
+ - 1.51927
+ - 1.0e-06
+ - - -0.547338
+ - -1.068998
+ - -0.886603
+ - - -0.547354
+ - -1.068998
+ - 0.886563
+ - - -2.472195
+ - 0.556679
+ - 0.88646
+ - - -2.47218
+ - 0.556679
+ - -0.886532
+ - - -2.891112
+ - -0.923217
+ - -4.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.88805585916572
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.0732690502
- - -0.582375628
- - -0.0003602798
- - - 1.3594218139
- - 0.560322439
- - -8.59046e-05
- - - 0.0066275219
- - 0.721844932
- - 0.0004266983
- - - -0.7942192304
- - -0.4739156061
- - 0.0007944219
- - - -2.2561000524
- - -0.0449434633
- - -0.0006254152
- - - 3.1601118543
- - -0.5227041029
- - -0.0008931879
- - - 1.6236793464
- - -1.5734842915
- - -0.0001449176
- - - 1.84167486
- - 1.5399776045
- - -0.000344307
- - - -0.5525236123
- - -1.077895226
- - -0.8914184068
- - - -0.5536225785
- - -1.0766108574
- - 0.8941921165
- - - -2.4804927114
- - 0.5565208378
- - 0.8908588818
- - - -2.4788165074
- - 0.5557140088
- - -0.8930858737
- - - -2.9072603144
- - -0.9308038787
- - -0.0009148255
+ - - 2.029752
+ - -0.586615
+ - 2.0e-06
+ - - 1.347452
+ - 0.553605
+ - -3.0e-06
+ - - 0.010065
+ - 0.718228
+ - -1.5e-05
+ - - -0.776898
+ - -0.459645
+ - -2.2e-05
+ - - -2.229881
+ - -0.048559
+ - -3.4e-05
+ - - 3.108031
+ - -0.542712
+ - 1.1e-05
+ - - 1.564463
+ - -1.560766
+ - -3.0e-06
+ - - 1.845088
+ - 1.515687
+ - 2.0e-06
+ - - -0.531943
+ - -1.056183
+ - -0.885411
+ - - -0.531958
+ - -1.056184
+ - 0.88537
+ - - -2.456802
+ - 0.546098
+ - 0.884204
+ - - -2.456787
+ - 0.5461
+ - -0.884275
+ - - -2.869227
+ - -0.93126
+ - -4.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.282390024165853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.034229
+ - -0.587889
+ - 2.0e-06
+ - - 1.346192
+ - 0.550758
+ - -3.0e-06
+ - - 0.013081
+ - 0.717472
+ - -1.5e-05
+ - - -0.77899
+ - -0.455537
+ - -2.2e-05
+ - - -2.228563
+ - -0.046212
+ - -3.4e-05
+ - - 3.114162
+ - -0.539988
+ - 1.2e-05
+ - - 1.574112
+ - -1.566263
+ - -3.0e-06
+ - - 1.843707
+ - 1.515146
+ - 3.0e-06
+ - - -0.536465
+ - -1.056327
+ - -0.885816
+ - - -0.53648
+ - -1.056329
+ - 0.885774
+ - - -2.463348
+ - 0.547567
+ - 0.885203
+ - - -2.463334
+ - 0.547566
+ - -0.885276
+ - - -2.866948
+ - -0.93217
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.336273106178925
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.049949
+ - -0.590959
+ - 3.0e-06
+ - - 1.363279
+ - 0.558156
+ - -0.0
+ - - 0.013421
+ - 0.732379
+ - -1.6e-05
+ - - -0.787025
+ - -0.46512
+ - -2.6e-05
+ - - -2.245621
+ - -0.046513
+ - -3.4e-05
+ - - 3.132926
+ - -0.550984
+ - 1.6e-05
+ - - 1.584647
+ - -1.569624
+ - -8.0e-06
+ - - 1.856176
+ - 1.526746
+ - 1.0e-05
+ - - -0.537394
+ - -1.059017
+ - -0.89047
+ - - -0.537406
+ - -1.059025
+ - 0.890417
+ - - -2.477849
+ - 0.548443
+ - 0.888358
+ - - -2.477846
+ - 0.548424
+ - -0.888439
+ - - -2.885904
+ - -0.935111
+ - -2.5e-05
isotopes:
- 12
- 12
@@ -330,6 +1357,164 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.94002565281914
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0307238593
+ - -0.5874177918
+ - -2.1791e-05
+ - - 1.3513973947
+ - 0.5547501743
+ - -1.41857e-05
+ - - 0.0111555635
+ - 0.7238959884
+ - 5.85589e-05
+ - - -0.7775835792
+ - -0.4592153952
+ - 4.46706e-05
+ - - -2.2304262467
+ - -0.0491302778
+ - -4.78799e-05
+ - - 3.1094672022
+ - -0.5446358978
+ - -0.0001074678
+ - - 1.5634001339
+ - -1.5606589545
+ - 6.04341e-05
+ - - 1.8504976406
+ - 1.5157596468
+ - -8.48975e-05
+ - - -0.5332129362
+ - -1.0554936706
+ - -0.8853318103
+ - - -0.5333065028
+ - -1.0554655904
+ - 0.8854666894
+ - - -2.4613129405
+ - 0.5442630416
+ - 0.8841930956
+ - - -2.4611169066
+ - 0.5444465165
+ - -0.884217517
+ - - -2.8683287673
+ - -0.9333032564
+ - -0.0002118818
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.730444747718312
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.040929
+ - -0.585715
+ - 2.0e-06
+ - - 1.349276
+ - 0.54902
+ - -3.0e-06
+ - - 0.015083
+ - 0.711041
+ - -1.4e-05
+ - - -0.781441
+ - -0.45955
+ - -2.2e-05
+ - - -2.232839
+ - -0.043797
+ - -3.4e-05
+ - - 3.119574
+ - -0.533598
+ - 1.1e-05
+ - - 1.585323
+ - -1.565229
+ - -2.0e-06
+ - - 1.842493
+ - 1.513981
+ - 1.0e-06
+ - - -0.543964
+ - -1.060252
+ - -0.885621
+ - - -0.54398
+ - -1.060252
+ - 0.885581
+ - - -2.463481
+ - 0.549918
+ - 0.884875
+ - - -2.463466
+ - 0.549918
+ - -0.884947
+ - - -2.872152
+ - -0.92769
+ - -4.0e-05
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethyl acetate.yml b/input/reference_sets/main/Ethyl acetate.yml
index d4f14b5df8..1b8bb7d0ed 100644
--- a/input/reference_sets/main/Ethyl acetate.yml
+++ b/input/reference_sets/main/Ethyl acetate.yml
@@ -15,6 +15,1098 @@ adjacency_list: |
13 H u0 p0 c0 {5,S}
14 H u0 p0 c0 {5,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -95.35169145098457
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.135335
+ - -0.877479
+ - -2.0e-06
+ - - 1.03729
+ - 0.148878
+ - 5.0e-05
+ - - -0.17496
+ - -0.442996
+ - 6.3e-05
+ - - -1.308456
+ - 0.452093
+ - 0.000111
+ - - -2.554543
+ - -0.399386
+ - 0.00012
+ - - 1.194833
+ - 1.345743
+ - 7.7e-05
+ - - 2.045398
+ - -1.515311
+ - 0.878619
+ - - 3.098425
+ - -0.377309
+ - -1.3e-05
+ - - 2.045355
+ - -1.515269
+ - -0.878649
+ - - -1.248172
+ - 1.091708
+ - -0.880145
+ - - -1.248131
+ - 1.091665
+ - 0.880396
+ - - -2.590734
+ - -1.034948
+ - 0.88416
+ - - -3.437298
+ - 0.240532
+ - 0.000155
+ - - -2.590774
+ - -1.034906
+ - -0.883949
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.73313932359932
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.137909
+ - -0.878454
+ - -3.0e-06
+ - - 1.041304
+ - 0.151644
+ - 5.0e-05
+ - - -0.172273
+ - -0.434607
+ - 6.0e-05
+ - - -1.311391
+ - 0.453593
+ - 0.000112
+ - - -2.556962
+ - -0.400805
+ - 0.00012
+ - - 1.203973
+ - 1.34511
+ - 8.2e-05
+ - - 2.047207
+ - -1.517857
+ - 0.879029
+ - - 3.103309
+ - -0.380729
+ - -1.6e-05
+ - - 2.047162
+ - -1.517815
+ - -0.879062
+ - - -1.25411
+ - 1.095014
+ - -0.880409
+ - - -1.254067
+ - 1.094969
+ - 0.880663
+ - - -2.593343
+ - -1.037587
+ - 0.884862
+ - - -3.441763
+ - 0.238084
+ - 0.000158
+ - - -2.593386
+ - -1.037541
+ - -0.884654
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.29708501009152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.148123
+ - -0.880222
+ - -4.0e-06
+ - - 1.049192
+ - 0.15687
+ - 5.2e-05
+ - - -0.171153
+ - -0.44127
+ - 5.8e-05
+ - - -1.317627
+ - 0.45364
+ - 0.000112
+ - - -2.567595
+ - -0.401721
+ - 0.000118
+ - - 1.212894
+ - 1.356455
+ - 8.7e-05
+ - - 2.05785
+ - -1.522841
+ - 0.882055
+ - - 3.117918
+ - -0.381991
+ - -2.4e-05
+ - - 2.057795
+ - -1.522808
+ - -0.88208
+ - - -1.258074
+ - 1.097014
+ - -0.884588
+ - - -1.25803
+ - 1.096964
+ - 0.884845
+ - - -2.607235
+ - -1.040314
+ - 0.888565
+ - - -3.453209
+ - 0.243505
+ - 0.000159
+ - - -2.607279
+ - -1.040264
+ - -0.888363
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.47114522681314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.152937
+ - -0.881046
+ - -0.00422
+ - - 1.047357
+ - 0.148912
+ - 0.011842
+ - - -0.174998
+ - -0.452436
+ - -0.030719
+ - - -1.318098
+ - 0.449452
+ - 0.017591
+ - - -2.574058
+ - -0.397439
+ - -0.039702
+ - - 1.204326
+ - 1.352885
+ - 0.072201
+ - - 2.228526
+ - -1.347008
+ - 0.990166
+ - - 3.103462
+ - -0.390763
+ - -0.239904
+ - - 1.939857
+ - -1.679012
+ - -0.72762
+ - - -1.248523
+ - 1.148762
+ - -0.829378
+ - - -1.257868
+ - 1.042689
+ - 0.942772
+ - - -2.623779
+ - -1.091524
+ - 0.811373
+ - - -3.460415
+ - 0.253178
+ - -0.004603
+ - - -2.615157
+ - -0.983633
+ - -0.968808
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -97.20962038378892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.130613
+ - -0.875931
+ - -2.0e-06
+ - - 1.034283
+ - 0.146711
+ - 4.8e-05
+ - - -0.17378
+ - -0.43388
+ - 6.7e-05
+ - - -1.305334
+ - 0.449813
+ - 0.000114
+ - - -2.549397
+ - -0.399191
+ - 0.000119
+ - - 1.193531
+ - 1.336282
+ - 6.9e-05
+ - - 2.041403
+ - -1.514285
+ - 0.878449
+ - - 3.093293
+ - -0.374699
+ - -1.9e-05
+ - - 2.041354
+ - -1.514254
+ - -0.87847
+ - - -1.248264
+ - 1.091672
+ - -0.879251
+ - - -1.248227
+ - 1.091626
+ - 0.879511
+ - - -2.586675
+ - -1.035522
+ - 0.883958
+ - - -3.432519
+ - 0.240149
+ - 0.000155
+ - - -2.586713
+ - -1.035475
+ - -0.883753
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.58111549864181
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.141726
+ - -0.881254
+ - -6.0e-06
+ - - 1.044728
+ - 0.154932
+ - 4.9e-05
+ - - -0.17222
+ - -0.433978
+ - 6.3e-05
+ - - -1.313206
+ - 0.457745
+ - 0.000115
+ - - -2.560897
+ - -0.401558
+ - 0.000121
+ - - 1.207118
+ - 1.348741
+ - 7.7e-05
+ - - 2.049494
+ - -1.521435
+ - 0.880184
+ - - 3.109245
+ - -0.383979
+ - -9.0e-06
+ - - 2.049459
+ - -1.521378
+ - -0.880233
+ - - -1.25671
+ - 1.100636
+ - -0.881525
+ - - -1.256668
+ - 1.100589
+ - 0.881786
+ - - -2.59398
+ - -1.039915
+ - 0.885747
+ - - -3.450497
+ - 0.233738
+ - 0.00016
+ - - -2.594022
+ - -1.039867
+ - -0.885537
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.5122535534356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.134723
+ - -0.875655
+ - -8.0e-06
+ - - 1.031666
+ - 0.143479
+ - -0.000183
+ - - -0.176198
+ - -0.446954
+ - 0.000227
+ - - -1.303667
+ - 0.448479
+ - 0.000787
+ - - -2.55308
+ - -0.397217
+ - -0.000537
+ - - 1.183086
+ - 1.337175
+ - -0.000411
+ - - 2.048631
+ - -1.511039
+ - 0.88094
+ - - 3.094199
+ - -0.368487
+ - -0.003364
+ - - 2.044799
+ - -1.516078
+ - -0.87687
+ - - -1.242164
+ - 1.090475
+ - -0.878415
+ - - -1.242754
+ - 1.08852
+ - 0.881466
+ - - -2.591491
+ - -1.034058
+ - 0.882964
+ - - -3.433163
+ - 0.24624
+ - 2.4e-05
+ - - -2.591019
+ - -1.031865
+ - -0.885628
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -101.22458982829546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.134723
+ - -0.875655
+ - -8.0e-06
+ - - 1.031666
+ - 0.143479
+ - -0.000183
+ - - -0.176198
+ - -0.446954
+ - 0.000227
+ - - -1.303667
+ - 0.448479
+ - 0.000787
+ - - -2.55308
+ - -0.397217
+ - -0.000537
+ - - 1.183086
+ - 1.337175
+ - -0.000411
+ - - 2.048631
+ - -1.511039
+ - 0.88094
+ - - 3.094199
+ - -0.368487
+ - -0.003364
+ - - 2.044799
+ - -1.516078
+ - -0.87687
+ - - -1.242164
+ - 1.090475
+ - -0.878415
+ - - -1.242754
+ - 1.08852
+ - 0.881466
+ - - -2.591491
+ - -1.034058
+ - 0.882964
+ - - -3.433163
+ - 0.24624
+ - 2.4e-05
+ - - -2.591019
+ - -1.031865
+ - -0.885628
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.20424702937406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.134723
+ - -0.875655
+ - -8.0e-06
+ - - 1.031666
+ - 0.143479
+ - -0.000183
+ - - -0.176198
+ - -0.446954
+ - 0.000227
+ - - -1.303667
+ - 0.448479
+ - 0.000787
+ - - -2.55308
+ - -0.397217
+ - -0.000537
+ - - 1.183086
+ - 1.337175
+ - -0.000411
+ - - 2.048631
+ - -1.511039
+ - 0.88094
+ - - 3.094199
+ - -0.368487
+ - -0.003364
+ - - 2.044799
+ - -1.516078
+ - -0.87687
+ - - -1.242164
+ - 1.090475
+ - -0.878415
+ - - -1.242754
+ - 1.08852
+ - 0.881466
+ - - -2.591491
+ - -1.034058
+ - 0.882964
+ - - -3.433163
+ - 0.24624
+ - 2.4e-05
+ - - -2.591019
+ - -1.031865
+ - -0.885628
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.15760316054954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.139489
+ - -0.879206
+ - -2.0e-06
+ - - 1.03913
+ - 0.155529
+ - 5.0e-05
+ - - -0.172791
+ - -0.437803
+ - 6.4e-05
+ - - -1.306533
+ - 0.452101
+ - 0.000113
+ - - -2.560263
+ - -0.401255
+ - 0.000119
+ - - 1.198328
+ - 1.350148
+ - 7.5e-05
+ - - 2.050721
+ - -1.521816
+ - 0.880536
+ - - 3.107251
+ - -0.379343
+ - -9.0e-06
+ - - 2.050683
+ - -1.521767
+ - -0.880572
+ - - -1.250172
+ - 1.098723
+ - -0.881321
+ - - -1.250132
+ - 1.098678
+ - 0.881577
+ - - -2.597849
+ - -1.040715
+ - 0.886582
+ - - -3.446403
+ - 0.240412
+ - 0.000156
+ - - -2.59789
+ - -1.040669
+ - -0.886375
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.11569989967994
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.131505
+ - -0.875736
+ - -0.0
+ - - 1.029963
+ - 0.14531
+ - 4.9e-05
+ - - -0.17686
+ - -0.440716
+ - 6.2e-05
+ - - -1.301335
+ - 0.448356
+ - 0.000111
+ - - -2.5504
+ - -0.398467
+ - 0.000118
+ - - 1.183527
+ - 1.335217
+ - 7.6e-05
+ - - 2.038914
+ - -1.512394
+ - 0.879287
+ - - 3.09182
+ - -0.370334
+ - -2.6e-05
+ - - 2.038856
+ - -1.512377
+ - -0.879294
+ - - -1.240794
+ - 1.0899
+ - -0.880058
+ - - -1.240754
+ - 1.089854
+ - 0.880311
+ - - -2.58451
+ - -1.03415
+ - 0.884429
+ - - -3.431811
+ - 0.242658
+ - 0.000155
+ - - -2.584551
+ - -1.034104
+ - -0.884225
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -96.66384557117115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.128757
+ - -0.873019
+ - 2.0e-06
+ - - 1.030633
+ - 0.147044
+ - 4.7e-05
+ - - -0.173891
+ - -0.440978
+ - 7.0e-05
+ - - -1.300421
+ - 0.443847
+ - 0.000106
+ - - -2.547975
+ - -0.398395
+ - 0.000127
+ - - 1.186991
+ - 1.338433
+ - 5.9e-05
+ - - 2.041214
+ - -1.514008
+ - 0.879255
+ - - 3.092122
+ - -0.369532
+ - 3.4e-05
+ - - 2.041226
+ - -1.513907
+ - -0.879326
+ - - -1.242448
+ - 1.088812
+ - -0.880215
+ - - -1.242406
+ - 1.088794
+ - 0.880438
+ - - -2.590726
+ - -1.035657
+ - 0.885414
+ - - -3.428739
+ - 0.247221
+ - 0.000154
+ - - -2.590768
+ - -1.035639
+ - -0.885171
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.45364920199013
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.15153
+ - -0.879603
+ - -0.001294
+ - - 1.044551
+ - 0.148534
+ - 0.002831
+ - - -0.17467
+ - -0.454476
+ - -0.009854
+ - - -1.317142
+ - 0.45356
+ - 0.00543
+ - - -2.571393
+ - -0.398261
+ - -0.011694
+ - - 1.195835
+ - 1.352748
+ - 0.020898
+ - - 2.110376
+ - -1.470541
+ - 0.919714
+ - - 3.114243
+ - -0.37354
+ - -0.0714
+ - - 2.024649
+ - -1.570307
+ - -0.84033
+ - - -1.246788
+ - 1.109126
+ - -0.868036
+ - - -1.248998
+ - 1.076773
+ - 0.902488
+ - - -2.613331
+ - -1.05218
+ - 0.864725
+ - - -3.453933
+ - 0.250469
+ - -0.000673
+ - - -2.611361
+ - -1.019285
+ - -0.911811
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +1191,174 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.44383602727605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1347231523
+ - -0.8756549902
+ - -8.1136e-06
+ - - 1.0316661001
+ - 0.1434792673
+ - -0.0001828413
+ - - -0.1761977158
+ - -0.4469538643
+ - 0.0002270548
+ - - -1.3036665862
+ - 0.4484792436
+ - 0.0007872741
+ - - -2.5530803819
+ - -0.3972167884
+ - -0.000536793
+ - - 1.1830862021
+ - 1.3371752545
+ - -0.0004114014
+ - - 2.0486313255
+ - -1.5110387206
+ - 0.8809402801
+ - - 3.0941985581
+ - -0.3684872053
+ - -0.0033635696
+ - - 2.0447992939
+ - -1.5160782173
+ - -0.8768699834
+ - - -1.2421638885
+ - 1.0904753287
+ - -0.8784146355
+ - - -1.2427541237
+ - 1.0885200082
+ - 0.8814657568
+ - - -2.5914907863
+ - -1.0340581758
+ - 0.8829640204
+ - - -3.4331633094
+ - 0.2462400098
+ - 2.3974e-05
+ - - -2.5910186649
+ - -1.0318645433
+ - -0.8856282273
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.35997287452355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.130366
+ - -0.876889
+ - -4.0e-06
+ - - 1.034178
+ - 0.150612
+ - 5.0e-05
+ - - -0.172584
+ - -0.431221
+ - 6.4e-05
+ - - -1.303013
+ - 0.449251
+ - 0.000114
+ - - -2.5493
+ - -0.401375
+ - 0.000118
+ - - 1.196825
+ - 1.340374
+ - 7.9e-05
+ - - 2.039254
+ - -1.514929
+ - 0.879453
+ - - 3.095149
+ - -0.378028
+ - -3.0e-05
+ - - 2.039193
+ - -1.514906
+ - -0.879472
+ - - -1.250774
+ - 1.092041
+ - -0.880453
+ - - -1.250735
+ - 1.091991
+ - 0.880715
+ - - -2.586898
+ - -1.037332
+ - 0.885101
+ - - -3.431154
+ - 0.24071
+ - 0.000155
+ - - -2.586936
+ - -1.037283
+ - -0.884898
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
charge: 0
class: ReferenceSpecies
datetime: 2020-02-24 11:05
diff --git a/input/reference_sets/main/Ethyl bromide.yml b/input/reference_sets/main/Ethyl bromide.yml
index d908a78de0..40baa063dc 100644
--- a/input/reference_sets/main/Ethyl bromide.yml
+++ b/input/reference_sets/main/Ethyl bromide.yml
@@ -9,6 +9,114 @@ adjacency_list: |
7 H u0 p0 c0 {3,S}
8 H u0 p0 c0 {3,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.239025516312369
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.063322
+ - -0.399431
+ - -1.2e-05
+ - - 1.013764
+ - 0.687954
+ - -7.3e-05
+ - - -0.798887
+ - -0.065207
+ - 0.000469
+ - - 1.975524
+ - -1.030309
+ - -0.882933
+ - - 3.05594
+ - 0.057057
+ - -0.00032
+ - - 1.975871
+ - -1.029875
+ - 0.883254
+ - - 1.063636
+ - 1.313377
+ - 0.88585
+ - - 1.063287
+ - 1.312941
+ - -0.886323
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.359132008774948
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.064728
+ - -0.39978
+ - -1.2e-05
+ - - 1.016987
+ - 0.688517
+ - -7.4e-05
+ - - -0.811125
+ - -0.063587
+ - 0.00047
+ - - 1.978607
+ - -1.031547
+ - -0.883728
+ - - 3.058738
+ - 0.057124
+ - -0.000319
+ - - 1.978954
+ - -1.031113
+ - 0.884048
+ - - 1.062959
+ - 1.313664
+ - 0.886768
+ - - 1.062611
+ - 1.313228
+ - -0.887241
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -63,6 +171,492 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.925371111031803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.066667
+ - -0.401879
+ - -1.2e-05
+ - - 1.018422
+ - 0.690099
+ - -7.5e-05
+ - - -0.821032
+ - -0.063169
+ - 0.000471
+ - - 1.980822
+ - -1.035519
+ - -0.887553
+ - - 3.064318
+ - 0.05824
+ - -0.00032
+ - - 1.98117
+ - -1.035083
+ - 0.887875
+ - - 1.06122
+ - 1.317127
+ - 0.891371
+ - - 1.06087
+ - 1.316689
+ - -0.891846
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.762587967618048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.066083
+ - -0.402314
+ - -1.2e-05
+ - - 1.015125
+ - 0.689078
+ - -7.4e-05
+ - - -0.820805
+ - -0.060929
+ - 0.000471
+ - - 1.982656
+ - -1.039746
+ - -0.890793
+ - - 3.068028
+ - 0.059093
+ - -0.000322
+ - - 1.983006
+ - -1.039307
+ - 0.891117
+ - - 1.059358
+ - 1.320536
+ - 0.894196
+ - - 1.059007
+ - 1.320096
+ - -0.894673
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.433988052419702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.061329
+ - -0.397972
+ - -1.2e-05
+ - - 1.011253
+ - 0.684063
+ - -7.2e-05
+ - - -0.796365
+ - -0.06087
+ - 0.000467
+ - - 1.976726
+ - -1.030151
+ - -0.882625
+ - - 3.053273
+ - 0.059718
+ - -0.00032
+ - - 1.977074
+ - -1.029716
+ - 0.882945
+ - - 1.064758
+ - 1.310934
+ - 0.884407
+ - - 1.06441
+ - 1.310498
+ - -0.88488
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.391098641687062
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.06755
+ - -0.401923
+ - -1.2e-05
+ - - 1.016493
+ - 0.689489
+ - -7.5e-05
+ - - -0.823857
+ - -0.059191
+ - 0.000475
+ - - 1.983735
+ - -1.03481
+ - -0.885106
+ - - 3.062486
+ - 0.057416
+ - -0.000313
+ - - 1.984075
+ - -1.03438
+ - 0.885422
+ - - 1.061164
+ - 1.315174
+ - 0.888271
+ - - 1.060812
+ - 1.314732
+ - -0.88875
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.822774538884426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.061775
+ - -0.398528
+ - 6.0e-06
+ - - 1.010688
+ - 0.687215
+ - 7.0e-06
+ - - -0.787493
+ - -0.067351
+ - 1.0e-06
+ - - 1.972108
+ - -1.030352
+ - -0.882587
+ - - 3.054655
+ - 0.056882
+ - -0.000812
+ - - 1.973116
+ - -1.029439
+ - 0.883356
+ - - 1.063823
+ - 1.314094
+ - 0.884998
+ - - 1.063785
+ - 1.313986
+ - -0.885057
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.572081283359324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.066404
+ - -0.402294
+ - -1.2e-05
+ - - 1.014333
+ - 0.689442
+ - -7.4e-05
+ - - -0.815732
+ - -0.060997
+ - 0.000473
+ - - 1.981754
+ - -1.035904
+ - -0.886173
+ - - 3.062106
+ - 0.057848
+ - -0.000317
+ - - 1.982099
+ - -1.03547
+ - 0.886492
+ - - 1.060922
+ - 1.317161
+ - 0.888795
+ - - 1.060571
+ - 1.316721
+ - -0.889272
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.043600184253968
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.062726
+ - -0.398561
+ - -1.4e-05
+ - - 1.012979
+ - 0.688014
+ - -7.6e-05
+ - - -0.788602
+ - -0.06893
+ - 0.000487
+ - - 1.97096
+ - -1.02881
+ - -0.883304
+ - - 3.055682
+ - 0.05636
+ - -0.000302
+ - - 1.971284
+ - -1.028394
+ - 0.883608
+ - - 1.063894
+ - 1.313637
+ - 0.885842
+ - - 1.063534
+ - 1.31319
+ - -0.88633
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.325438993776041
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.059981
+ - -0.397941
+ - -1.2e-05
+ - - 1.012137
+ - 0.683504
+ - -7.2e-05
+ - - -0.790787
+ - -0.06121
+ - 0.000467
+ - - 1.975304
+ - -1.031195
+ - -0.884197
+ - - 3.0542
+ - 0.060098
+ - -0.000321
+ - - 1.975653
+ - -1.030759
+ - 0.884518
+ - - 1.06316
+ - 1.312223
+ - 0.88657
+ - - 1.06281
+ - 1.311786
+ - -0.887044
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.242288119733987
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.067228
+ - -0.403141
+ - -1.2e-05
+ - - 1.018082
+ - 0.691674
+ - -7.5e-05
+ - - -0.8151
+ - -0.062381
+ - 0.000471
+ - - 1.979947
+ - -1.035533
+ - -0.887596
+ - - 3.064268
+ - 0.057263
+ - -0.000321
+ - - 1.980296
+ - -1.035097
+ - 0.887918
+ - - 1.059044
+ - 1.31708
+ - 0.891475
+ - - 1.058694
+ - 1.316641
+ - -0.891949
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -117,6 +711,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.111347283985637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0617751734
+ - -0.3985284498
+ - 6.24e-06
+ - - 1.0106878612
+ - 0.687215063
+ - 7.377e-06
+ - - -0.7874933197
+ - -0.0673511439
+ - 6.139e-07
+ - - 1.9721081887
+ - -1.030352123
+ - -0.8825872497
+ - - 3.0546553229
+ - 0.0568816298
+ - -0.0008124405
+ - - 1.9731164072
+ - -1.0294391962
+ - 0.8833556739
+ - - 1.0638230333
+ - 1.3140938211
+ - 0.8849980513
+ - - 1.0637850285
+ - 1.313986224
+ - -0.8850572237
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.736876007557823
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.061974
+ - -0.399656
+ - -1.1e-05
+ - - 1.008919
+ - 0.683658
+ - -7.1e-05
+ - - -0.797582
+ - -0.058242
+ - 0.000467
+ - - 1.978317
+ - -1.03159
+ - -0.883962
+ - - 3.052702
+ - 0.061947
+ - -0.00032
+ - - 1.978665
+ - -1.031154
+ - 0.884283
+ - - 1.064906
+ - 1.31099
+ - 0.88546
+ - - 1.064557
+ - 1.310553
+ - -0.885934
+ isotopes:
+ - 12
+ - 12
+ - 79
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - Br
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethyl methyl sulfite.yml b/input/reference_sets/main/Ethyl methyl sulfite.yml
index 6e401324a5..1875aa2f4c 100644
--- a/input/reference_sets/main/Ethyl methyl sulfite.yml
+++ b/input/reference_sets/main/Ethyl methyl sulfite.yml
@@ -194,63 +194,1131 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.98559651580129
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.032391
+ - 0.262507
+ - -0.23779
+ - - 1.558915
+ - 0.337903
+ - -0.552269
+ - - 0.855494
+ - -0.351805
+ - 0.523112
+ - - -0.651899
+ - -0.835533
+ - 0.272168
+ - - -0.769523
+ - -1.435589
+ - -1.04888
+ - - -1.259629
+ - 0.696768
+ - 0.135889
+ - - -2.629966
+ - 0.737441
+ - -0.29288
+ - - 3.248856
+ - 0.729098
+ - 0.722232
+ - - 3.367982
+ - -0.772959
+ - -0.205866
+ - - 3.596678
+ - 0.78572
+ - -1.010762
+ - - 1.317954
+ - -0.154241
+ - -1.493222
+ - - 1.197383
+ - 1.364166
+ - -0.58186
+ - - -2.727765
+ - 0.340117
+ - -1.301608
+ - - -2.914835
+ - 1.785124
+ - -0.273145
+ - - -3.269858
+ - 0.174684
+ - 0.390207
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -107.01556202062308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.853809
+ - -0.011687
+ - -0.46738
+ - - 1.605826
+ - 0.806835
+ - -0.23092
+ - - 0.843717
+ - 0.237941
+ - 0.878989
+ - - -0.506443
+ - -0.567202
+ - 0.570386
+ - - -0.33434
+ - -1.389884
+ - -0.617286
+ - - -1.351693
+ - 0.771325
+ - 0.073785
+ - - -2.625637
+ - 0.484937
+ - -0.521131
+ - - 3.454924
+ - -0.073128
+ - 0.440484
+ - - 2.593788
+ - -1.020445
+ - -0.786362
+ - - 3.457323
+ - 0.455934
+ - -1.248565
+ - - 0.973828
+ - 0.842875
+ - -1.116314
+ - - 1.832788
+ - 1.825919
+ - 0.078632
+ - - -2.503582
+ - -0.103456
+ - -1.430349
+ - - -3.066513
+ - 1.450319
+ - -0.75778
+ - - -3.275619
+ - -0.046881
+ - 0.179136
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -83.62042462855294
+ value: -83.62042462855294
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.6877324538
+ - 0.0106750229
+ - -0.6593090519
+ - - 1.5866045286
+ - 0.9031115453
+ - -0.0985177595
+ - - 0.8951086725
+ - 0.2263620228
+ - 1.0074685134
+ - - -0.4771361924
+ - -0.6357044685
+ - 0.607449304
+ - - -0.2945996324
+ - -1.3475809051
+ - -0.6910622678
+ - - -1.4056905925
+ - 0.7826763612
+ - 0.2471470117
+ - - -2.4943258637
+ - 0.5671593479
+ - -0.6737016158
+ - - 3.3765218918
+ - -0.2982775932
+ - 0.1391565967
+ - - 2.2445112723
+ - -0.8829657197
+ - -1.1145847121
+ - - 3.2616526216
+ - 0.5558217162
+ - -1.4242584586
+ - - 0.8546601009
+ - 1.1844869667
+ - -0.8681606711
+ - - 1.9834592131
+ - 1.8197910246
+ - 0.356366876
+ - - -2.1625860243
+ - 0.020178479
+ - -1.567651457
+ - - -2.8338904121
+ - 1.5704823565
+ - -0.9612030452
+ - - -3.3287638783
+ - 0.0244189377
+ - -0.198109488
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.8689710355007
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.887002
+ - -0.007902
+ - -0.453387
+ - - 1.618252
+ - 0.793348
+ - -0.243981
+ - - 0.85112
+ - 0.22698
+ - 0.876322
+ - - -0.515347
+ - -0.580744
+ - 0.552332
+ - - -0.354152
+ - -1.399981
+ - -0.649394
+ - - -1.370399
+ - 0.788578
+ - 0.072506
+ - - -2.655345
+ - 0.495958
+ - -0.512047
+ - - 3.483538
+ - -0.042464
+ - 0.463851
+ - - 2.64885
+ - -1.030431
+ - -0.759315
+ - - 3.490871
+ - 0.460393
+ - -1.240113
+ - - 0.991451
+ - 0.800171
+ - -1.139477
+ - - 1.82215
+ - 1.826559
+ - 0.051675
+ - - -2.542036
+ - -0.075896
+ - -1.43876
+ - - -3.109738
+ - 1.466256
+ - -0.724674
+ - - -3.294038
+ - -0.057425
+ - 0.189789
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.29935717461831
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.069093
+ - 0.244613
+ - -0.22988
+ - - 1.589181
+ - 0.365523
+ - -0.534221
+ - - 0.861409
+ - -0.326717
+ - 0.539201
+ - - -0.65488
+ - -0.847677
+ - 0.24215
+ - - -0.745611
+ - -1.423341
+ - -1.1075
+ - - -1.307285
+ - 0.707311
+ - 0.139843
+ - - -2.684803
+ - 0.724587
+ - -0.292882
+ - - 3.31145
+ - 0.69132
+ - 0.744652
+ - - 3.385481
+ - -0.807692
+ - -0.221909
+ - - 3.645667
+ - 0.773474
+ - -1.003978
+ - - 1.327269
+ - -0.106243
+ - -1.492724
+ - - 1.253289
+ - 1.412414
+ - -0.545065
+ - - -2.783968
+ - 0.316065
+ - -1.30911
+ - - -2.984336
+ - 1.779813
+ - -0.284725
+ - - -3.329778
+ - 0.159952
+ - 0.401472
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.06494842318293
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.027863
+ - 0.274042
+ - -0.217517
+ - - 1.564881
+ - 0.317818
+ - -0.570686
+ - - 0.844529
+ - -0.375001
+ - 0.478296
+ - - -0.653401
+ - -0.846248
+ - 0.230252
+ - - -0.773085
+ - -1.414113
+ - -1.094196
+ - - -1.258559
+ - 0.672253
+ - 0.12546
+ - - -2.628149
+ - 0.742379
+ - -0.270712
+ - - 3.210821
+ - 0.753161
+ - 0.743662
+ - - 3.383539
+ - -0.754268
+ - -0.166062
+ - - 3.603577
+ - 0.80045
+ - -0.979631
+ - - 1.360941
+ - -0.181405
+ - -1.516906
+ - - 1.188753
+ - 1.338675
+ - -0.619221
+ - - -2.756193
+ - 0.356838
+ - -1.281237
+ - - -2.89853
+ - 1.794046
+ - -0.236622
+ - - -3.264809
+ - 0.184775
+ - 0.420447
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -122.24580421981804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.038482
+ - 0.250481
+ - -0.287141
+ - - 1.545894
+ - 0.384893
+ - -0.506844
+ - - 0.87872
+ - -0.322861
+ - 0.585142
+ - - -0.638518
+ - -0.866176
+ - 0.360119
+ - - -0.761019
+ - -1.48918
+ - -0.953206
+ - - -1.296045
+ - 0.683757
+ - 0.208297
+ - - -2.627214
+ - 0.724853
+ - -0.330275
+ - - 3.329629
+ - 0.667447
+ - 0.679163
+ - - 3.343222
+ - -0.797321
+ - -0.319499
+ - - 3.574856
+ - 0.791619
+ - -1.071744
+ - - 1.233111
+ - -0.063352
+ - -1.45179
+ - - 1.216522
+ - 1.424406
+ - -0.476597
+ - - -2.665712
+ - 0.247096
+ - -1.31115
+ - - -2.87484
+ - 1.78154
+ - -0.423942
+ - - -3.344911
+ - 0.2462
+ - 0.344791
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -109.41225028328766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.815407
+ - -0.029485
+ - -0.474109
+ - - 1.59745
+ - 0.824676
+ - -0.217471
+ - - 0.835423
+ - 0.273818
+ - 0.895074
+ - - -0.499249
+ - -0.529211
+ - 0.574665
+ - - -0.299743
+ - -1.351902
+ - -0.602716
+ - - -1.328094
+ - 0.786502
+ - 0.05685
+ - - -2.596167
+ - 0.467976
+ - -0.530369
+ - - 3.424242
+ - -0.113025
+ - 0.425863
+ - - 2.518077
+ - -1.026785
+ - -0.79445
+ - - 3.422108
+ - 0.423468
+ - -1.259832
+ - - 0.956228
+ - 0.885912
+ - -1.095015
+ - - 1.859987
+ - 1.833584
+ - 0.094978
+ - - -2.460732
+ - -0.104329
+ - -1.446969
+ - - -3.073804
+ - 1.4186
+ - -0.749018
+ - - -3.218956
+ - -0.096397
+ - 0.167845
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -118.66770616295003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.815407
+ - -0.029485
+ - -0.474109
+ - - 1.59745
+ - 0.824676
+ - -0.217471
+ - - 0.835423
+ - 0.273818
+ - 0.895074
+ - - -0.499249
+ - -0.529211
+ - 0.574665
+ - - -0.299743
+ - -1.351902
+ - -0.602716
+ - - -1.328094
+ - 0.786502
+ - 0.05685
+ - - -2.596167
+ - 0.467976
+ - -0.530369
+ - - 3.424242
+ - -0.113025
+ - 0.425863
+ - - 2.518077
+ - -1.026785
+ - -0.79445
+ - - 3.422108
+ - 0.423468
+ - -1.259832
+ - - 0.956228
+ - 0.885912
+ - -1.095015
+ - - 1.859987
+ - 1.833584
+ - 0.094978
+ - - -2.460732
+ - -0.104329
+ - -1.446969
+ - - -3.073804
+ - 1.4186
+ - -0.749018
+ - - -3.218956
+ - -0.096397
+ - 0.167845
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -120.84792886980861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.815407
+ - -0.029485
+ - -0.474109
+ - - 1.59745
+ - 0.824676
+ - -0.217471
+ - - 0.835423
+ - 0.273818
+ - 0.895074
+ - - -0.499249
+ - -0.529211
+ - 0.574665
+ - - -0.299743
+ - -1.351902
+ - -0.602716
+ - - -1.328094
+ - 0.786502
+ - 0.05685
+ - - -2.596167
+ - 0.467976
+ - -0.530369
+ - - 3.424242
+ - -0.113025
+ - 0.425863
+ - - 2.518077
+ - -1.026785
+ - -0.79445
+ - - 3.422108
+ - 0.423468
+ - -1.259832
+ - - 0.956228
+ - 0.885912
+ - -1.095015
+ - - 1.859987
+ - 1.833584
+ - 0.094978
+ - - -2.460732
+ - -0.104329
+ - -1.446969
+ - - -3.073804
+ - 1.4186
+ - -0.749018
+ - - -3.218956
+ - -0.096397
+ - 0.167845
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -121.08887608065771
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.6877324538
- - 0.0106750229
- - -0.6593090519
- - - 1.5866045286
- - 0.9031115453
- - -0.0985177595
- - - 0.8951086725
- - 0.2263620228
- - 1.0074685134
- - - -0.4771361924
- - -0.6357044685
- - 0.607449304
- - - -0.2945996324
- - -1.3475809051
- - -0.6910622678
- - - -1.4056905925
- - 0.7826763612
- - 0.2471470117
- - - -2.4943258637
- - 0.5671593479
- - -0.6737016158
- - - 3.3765218918
- - -0.2982775932
- - 0.1391565967
- - - 2.2445112723
- - -0.8829657197
- - -1.1145847121
- - - 3.2616526216
- - 0.5558217162
- - -1.4242584586
- - - 0.8546601009
- - 1.1844869667
- - -0.8681606711
- - - 1.9834592131
- - 1.8197910246
- - 0.356366876
- - - -2.1625860243
- - 0.020178479
- - -1.567651457
- - - -2.8338904121
- - 1.5704823565
- - -0.9612030452
- - - -3.3287638783
- - 0.0244189377
- - -0.198109488
+ - - 3.036936
+ - 0.22843
+ - -0.283655
+ - - 1.545823
+ - 0.407494
+ - -0.494372
+ - - 0.863053
+ - -0.284966
+ - 0.588746
+ - - -0.633086
+ - -0.835286
+ - 0.33988
+ - - -0.725009
+ - -1.461457
+ - -0.973277
+ - - -1.29305
+ - 0.686224
+ - 0.17552
+ - - -2.631762
+ - 0.710434
+ - -0.329583
+ - - 3.344652
+ - 0.62429
+ - 0.688056
+ - - 3.311885
+ - -0.828569
+ - -0.330572
+ - - 3.585766
+ - 0.764769
+ - -1.064166
+ - - 1.216239
+ - -0.02152
+ - -1.444323
+ - - 1.250102
+ - 1.459462
+ - -0.458074
+ - - -2.694014
+ - 0.208429
+ - -1.299103
+ - - -2.892252
+ - 1.764511
+ - -0.441616
+ - - -3.333105
+ - 0.241156
+ - 0.371865
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -120.16681104677731
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.787976
+ - -0.038077
+ - -0.487304
+ - - 1.594104
+ - 0.842208
+ - -0.202712
+ - - 0.835004
+ - 0.297199
+ - 0.906454
+ - - -0.488284
+ - -0.5174
+ - 0.591629
+ - - -0.276003
+ - -1.340661
+ - -0.580326
+ - - -1.325411
+ - 0.781981
+ - 0.063712
+ - - -2.577072
+ - 0.455767
+ - -0.53978
+ - - 3.405118
+ - -0.14485
+ - 0.404339
+ - - 2.458306
+ - -1.023971
+ - -0.811294
+ - - 3.393983
+ - 0.407636
+ - -1.277192
+ - - 0.943699
+ - 0.931171
+ - -1.071857
+ - - 1.885935
+ - 1.840187
+ - 0.119336
+ - - -2.42196
+ - -0.124584
+ - -1.448478
+ - - -3.054965
+ - 1.40274
+ - -0.774783
+ - - -3.208252
+ - -0.105945
+ - 0.153582
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -99.84341906447678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.057664
+ - 0.247732
+ - -0.244136
+ - - 1.575377
+ - 0.365722
+ - -0.538777
+ - - 0.861722
+ - -0.325769
+ - 0.549909
+ - - -0.650142
+ - -0.84384
+ - 0.274579
+ - - -0.752963
+ - -1.434731
+ - -1.063871
+ - - -1.293101
+ - 0.703152
+ - 0.153829
+ - - -2.667704
+ - 0.727069
+ - -0.300329
+ - - 3.302302
+ - 0.698027
+ - 0.722415
+ - - 3.370998
+ - -0.800124
+ - -0.233537
+ - - 3.623268
+ - 0.771803
+ - -1.022877
+ - - 1.302988
+ - -0.114449
+ - -1.482803
+ - - 1.234867
+ - 1.404458
+ - -0.545002
+ - - -2.750223
+ - 0.283913
+ - -1.296723
+ - - -2.942193
+ - 1.782653
+ - -0.33175
+ - - -3.320683
+ - 0.197785
+ - 0.404399
isotopes:
- 12
- 12
@@ -372,13 +1440,191 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -119.74046100310109
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.8154073481
+ - -0.0294845556
+ - -0.4741094458
+ - - 1.5974497442
+ - 0.8246756476
+ - -0.217470522
+ - - 0.8354233308
+ - 0.2738179108
+ - 0.8950735924
+ - - -0.4992486754
+ - -0.5292109409
+ - 0.5746645551
+ - - -0.2997433763
+ - -1.3519017262
+ - -0.6027160253
+ - - -1.3280937782
+ - 0.7865016604
+ - 0.0568496127
+ - - -2.5961673027
+ - 0.4679763817
+ - -0.5303688204
+ - - 3.4242422536
+ - -0.1130251009
+ - 0.425863023
+ - - 2.518077141
+ - -1.0267845713
+ - -0.7944499882
+ - - 3.42210813
+ - 0.4234682278
+ - -1.2598315534
+ - - 0.9562276551
+ - 0.8859115596
+ - -1.0950154836
+ - - 1.8599872884
+ - 1.8335836149
+ - 0.0949781388
+ - - -2.460731739
+ - -0.1043289606
+ - -1.4469690224
+ - - -3.0738042585
+ - 1.4186001387
+ - -0.7490179476
+ - - -3.2189558131
+ - -0.096397456
+ - 0.1678452422
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.6627608436255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 3.029303
+ - 0.260696
+ - -0.227241
+ - - 1.558415
+ - 0.339632
+ - -0.551802
+ - - 0.841747
+ - -0.349572
+ - 0.49857
+ - - -0.650011
+ - -0.832079
+ - 0.248427
+ - - -0.759815
+ - -1.431318
+ - -1.061956
+ - - -1.259327
+ - 0.680216
+ - 0.110732
+ - - -2.626651
+ - 0.733526
+ - -0.285628
+ - - 3.240789
+ - 0.722277
+ - 0.737485
+ - - 3.36465
+ - -0.776064
+ - -0.199484
+ - - 3.598635
+ - 0.78811
+ - -0.994268
+ - - 1.330734
+ - -0.141038
+ - -1.503814
+ - - 1.205411
+ - 1.370766
+ - -0.58125
+ - - -2.751374
+ - 0.349689
+ - -1.298814
+ - - -2.910879
+ - 1.782531
+ - -0.248916
+ - - -3.25945
+ - 0.16603
+ - 0.403285
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 32
+ - 16
+ - 16
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - S
+ - O
+ - O
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -111.55700724941123
+ value: -111.55700724941113
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethyl propyl sulfide.yml b/input/reference_sets/main/Ethyl propyl sulfide.yml
index 9919d75d3f..c1071b52ae 100644
--- a/input/reference_sets/main/Ethyl propyl sulfide.yml
+++ b/input/reference_sets/main/Ethyl propyl sulfide.yml
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.494840982423838
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.512874
+ - -0.176728
+ - 0.696334
+ - - -1.554265
+ - -0.84706
+ - -0.279609
+ - - -0.650916
+ - 0.128941
+ - -1.028604
+ - - 0.463288
+ - 1.127933
+ - 0.005714
+ - - 1.490379
+ - -0.150836
+ - 0.788333
+ - - 2.320417
+ - -0.981798
+ - -0.178652
+ - - -1.969612
+ - 0.375457
+ - 1.462105
+ - - -3.147083
+ - -0.913779
+ - 1.18956
+ - - -3.162724
+ - 0.530803
+ - 0.177544
+ - - -2.122273
+ - -1.409087
+ - -1.027069
+ - - -0.941699
+ - -1.583384
+ - 0.246283
+ - - -0.063433
+ - -0.393536
+ - -1.783946
+ - - -1.254221
+ - 0.872695
+ - -1.553605
+ - - 2.13792
+ - 0.413694
+ - 1.460558
+ - - 0.863799
+ - -0.787389
+ - 1.414289
+ - - 2.96029
+ - -1.67579
+ - 0.370091
+ - - 1.688873
+ - -1.572949
+ - -0.841605
+ - - 2.951524
+ - -0.342221
+ - -0.794873
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.444256294416038
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.52825
+ - -0.172539
+ - 0.694692
+ - - -1.565273
+ - -0.845203
+ - -0.276974
+ - - -0.65524
+ - 0.126207
+ - -1.025352
+ - - 0.46518
+ - 1.125265
+ - 0.010463
+ - - 1.501748
+ - -0.156051
+ - 0.787773
+ - - 2.336855
+ - -0.979942
+ - -0.181719
+ - - -1.986466
+ - 0.386949
+ - 1.457667
+ - - -3.16034
+ - -0.90935
+ - 1.192977
+ - - -3.181335
+ - 0.530566
+ - 0.171813
+ - - -2.130665
+ - -1.40998
+ - -1.025659
+ - - -0.955818
+ - -1.581818
+ - 0.253552
+ - - -0.066896
+ - -0.400601
+ - -1.777444
+ - - -1.252405
+ - 0.872483
+ - -1.554184
+ - - 2.145121
+ - 0.408852
+ - 1.46433
+ - - 0.876124
+ - -0.797935
+ - 1.410067
+ - - 2.978879
+ - -1.675077
+ - 0.3652
+ - - 1.708427
+ - -1.570964
+ - -0.849227
+ - - 2.967747
+ - -0.335896
+ - -0.795127
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 1.4860742175559196
+ value: 1.4860742175559196
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4728832968
+ - 0.2080720056
+ - 0.7160213271
+ - - 1.5223379752
+ - 0.8605598202
+ - -0.2985113646
+ - - 0.6501279675
+ - -0.148593029
+ - -1.0660567941
+ - - -0.4667287092
+ - -1.1840414847
+ - -0.0256243204
+ - - -1.4828586338
+ - 0.1109462256
+ - 0.8041437495
+ - - -2.2620063187
+ - 1.0218554508
+ - -0.1532837156
+ - - 1.9059495477
+ - -0.3605053167
+ - 1.4662180255
+ - - 3.0794751627
+ - 0.9658233827
+ - 1.2334742378
+ - - 3.1565495987
+ - -0.4922855025
+ - 0.2115688077
+ - - 2.1039866936
+ - 1.4305612501
+ - -1.0435059253
+ - - 0.8752133035
+ - 1.5934702082
+ - 0.2094118703
+ - - 0.0500053509
+ - 0.3619092505
+ - -1.8337048387
+ - - 1.2873779017
+ - -0.8823966986
+ - -1.5838513497
+ - - -2.1737993098
+ - -0.4611600309
+ - 1.440761452
+ - - -0.8407995361
+ - 0.7033651793
+ - 1.4729447155
+ - - -2.9000626541
+ - 1.7155794159
+ - 0.4169711042
+ - - -1.5804505143
+ - 1.6248295956
+ - -0.7701063902
+ - - -2.8986919205
+ - 0.4284301825
+ - -0.8240717954
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.996438506612082
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.521796
+ - -0.179798
+ - 0.700993
+ - - -1.565247
+ - -0.845705
+ - -0.287344
+ - - -0.656182
+ - 0.133599
+ - -1.035215
+ - - 0.466825
+ - 1.135485
+ - 0.002027
+ - - 1.499749
+ - -0.147729
+ - 0.790414
+ - - 2.332648
+ - -0.987347
+ - -0.173712
+ - - -1.968811
+ - 0.374431
+ - 1.465958
+ - - -3.152656
+ - -0.923297
+ - 1.200325
+ - - -3.180276
+ - 0.532087
+ - 0.188097
+ - - -2.138653
+ - -1.403782
+ - -1.0417
+ - - -0.950257
+ - -1.591704
+ - 0.232293
+ - - -0.066342
+ - -0.390762
+ - -1.7947
+ - - -1.258814
+ - 0.884912
+ - -1.56017
+ - - 2.148576
+ - 0.423862
+ - 1.463632
+ - - 0.868429
+ - -0.782832
+ - 1.42211
+ - - 2.979332
+ - -1.677422
+ - 0.383029
+ - - 1.698038
+ - -1.589789
+ - -0.831787
+ - - 2.962826
+ - -0.349243
+ - -0.8014
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.86463669750803
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.734068
+ - -0.02378
+ - 0.640394
+ - - -1.717998
+ - -0.857453
+ - -0.143305
+ - - -0.688038
+ - -0.019387
+ - -0.91165
+ - - 0.456037
+ - 0.970671
+ - 0.122861
+ - - 1.602893
+ - -0.31494
+ - 0.745188
+ - - 2.592978
+ - -0.846649
+ - -0.289852
+ - - -2.226791
+ - 0.629769
+ - 1.365255
+ - - -3.436489
+ - -0.666284
+ - 1.19142
+ - - -3.324197
+ - 0.616818
+ - -0.034322
+ - - -2.24435
+ - -1.497004
+ - -0.87457
+ - - -1.194349
+ - -1.549251
+ - 0.538046
+ - - -0.091511
+ - -0.648616
+ - -1.589728
+ - - -1.195864
+ - 0.729311
+ - -1.54083
+ - - 2.133376
+ - 0.183497
+ - 1.570781
+ - - 1.01586
+ - -1.130055
+ - 1.196006
+ - - 3.266975
+ - -1.589551
+ - 0.167346
+ - - 2.078733
+ - -1.34034
+ - -1.127503
+ - - 3.204194
+ - -0.031791
+ - -0.702689
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.375064977984836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.70722
+ - -0.037803
+ - 0.636074
+ - - -1.689415
+ - -0.853235
+ - -0.14487
+ - - -0.676664
+ - -0.006697
+ - -0.90599
+ - - 0.456245
+ - 0.970278
+ - 0.116918
+ - - 1.584178
+ - -0.300679
+ - 0.742683
+ - - 2.55313
+ - -0.856035
+ - -0.285952
+ - - -2.216075
+ - 0.603141
+ - 1.367722
+ - - -3.405624
+ - -0.68532
+ - 1.166812
+ - - -3.28848
+ - 0.60226
+ - -0.03105
+ - - -2.207258
+ - -1.487598
+ - -0.87043
+ - - -1.164654
+ - -1.535199
+ - 0.528554
+ - - -0.090592
+ - -0.62361
+ - -1.587048
+ - - -1.193798
+ - 0.731425
+ - -1.521773
+ - - 2.127843
+ - 0.196332
+ - 1.546567
+ - - 1.004435
+ - -1.098511
+ - 1.207605
+ - - 3.221715
+ - -1.586178
+ - 0.174777
+ - - 2.031163
+ - -1.358143
+ - -1.100555
+ - - 3.15846
+ - -0.059463
+ - -0.717195
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.906627698647203
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.731527
+ - -0.038784
+ - 0.642802
+ - - -1.708041
+ - -0.85312
+ - -0.151082
+ - - -0.688134
+ - -0.003441
+ - -0.918115
+ - - 0.464673
+ - 0.98731
+ - 0.111807
+ - - 1.607636
+ - -0.298668
+ - 0.748522
+ - - 2.581038
+ - -0.863931
+ - -0.283327
+ - - -2.239933
+ - 0.593892
+ - 1.384989
+ - - -3.432815
+ - -0.693981
+ - 1.166064
+ - - -3.313328
+ - 0.611383
+ - -0.0185
+ - - -2.229715
+ - -1.483308
+ - -0.882415
+ - - -1.183098
+ - -1.543394
+ - 0.518105
+ - - -0.098628
+ - -0.62117
+ - -1.599357
+ - - -1.201483
+ - 0.741331
+ - -1.533283
+ - - 2.150525
+ - 0.209045
+ - 1.549562
+ - - 1.021697
+ - -1.091498
+ - 1.219764
+ - - 3.250814
+ - -1.592895
+ - 0.185055
+ - - 2.058603
+ - -1.373977
+ - -1.096269
+ - - 3.189105
+ - -0.069826
+ - -0.721473
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.899514447336033
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.449033
+ - -0.21209
+ - 0.703967
+ - - -1.501957
+ - -0.845572
+ - -0.305553
+ - - -0.635469
+ - 0.16294
+ - -1.05195
+ - - 0.465307
+ - 1.164713
+ - -0.017805
+ - - 1.453976
+ - -0.114963
+ - 0.795837
+ - - 2.237083
+ - -1.007449
+ - -0.153456
+ - - -1.898497
+ - 0.333908
+ - 1.470046
+ - - -3.061408
+ - -0.968656
+ - 1.195367
+ - - -3.12009
+ - 0.496432
+ - 0.213584
+ - - -2.075698
+ - -1.404676
+ - -1.050563
+ - - -0.86335
+ - -1.580714
+ - 0.191915
+ - - -0.047885
+ - -0.333091
+ - -1.825094
+ - - -1.265732
+ - 0.899028
+ - -1.556072
+ - - 2.131619
+ - 0.446681
+ - 1.440087
+ - - 0.814768
+ - -0.706853
+ - 1.452985
+ - - 2.867817
+ - -1.699754
+ - 0.407413
+ - - 1.572513
+ - -1.603429
+ - -0.780086
+ - - 2.873425
+ - -0.411489
+ - -0.807772
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.227213982696004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.449033
+ - -0.21209
+ - 0.703967
+ - - -1.501957
+ - -0.845572
+ - -0.305553
+ - - -0.635469
+ - 0.16294
+ - -1.05195
+ - - 0.465307
+ - 1.164713
+ - -0.017805
+ - - 1.453976
+ - -0.114963
+ - 0.795837
+ - - 2.237083
+ - -1.007449
+ - -0.153456
+ - - -1.898497
+ - 0.333908
+ - 1.470046
+ - - -3.061408
+ - -0.968656
+ - 1.195367
+ - - -3.12009
+ - 0.496432
+ - 0.213584
+ - - -2.075698
+ - -1.404676
+ - -1.050563
+ - - -0.86335
+ - -1.580713
+ - 0.191915
+ - - -0.047885
+ - -0.333091
+ - -1.825094
+ - - -1.265732
+ - 0.899028
+ - -1.556072
+ - - 2.131619
+ - 0.446681
+ - 1.440087
+ - - 0.814768
+ - -0.706853
+ - 1.452985
+ - - 2.867817
+ - -1.699754
+ - 0.407413
+ - - 1.572513
+ - -1.603429
+ - -0.780086
+ - - 2.873425
+ - -0.411489
+ - -0.807772
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.98362811351045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.449033
+ - -0.21209
+ - 0.703967
+ - - -1.501957
+ - -0.845572
+ - -0.305553
+ - - -0.635469
+ - 0.16294
+ - -1.05195
+ - - 0.465307
+ - 1.164713
+ - -0.017805
+ - - 1.453976
+ - -0.114963
+ - 0.795837
+ - - 2.237083
+ - -1.007449
+ - -0.153456
+ - - -1.898497
+ - 0.333908
+ - 1.470046
+ - - -3.061408
+ - -0.968656
+ - 1.195367
+ - - -3.12009
+ - 0.496432
+ - 0.213584
+ - - -2.075698
+ - -1.404676
+ - -1.050563
+ - - -0.86335
+ - -1.580713
+ - 0.191915
+ - - -0.047885
+ - -0.333091
+ - -1.825094
+ - - -1.265732
+ - 0.899028
+ - -1.556072
+ - - 2.131619
+ - 0.446681
+ - 1.440087
+ - - 0.814768
+ - -0.706853
+ - 1.452985
+ - - 2.867817
+ - -1.699754
+ - 0.407413
+ - - 1.572513
+ - -1.603429
+ - -0.780086
+ - - 2.873425
+ - -0.411489
+ - -0.807772
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.02734499846221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.738028
+ - -0.029308
+ - 0.638293
+ - - -1.713235
+ - -0.855787
+ - -0.140971
+ - - -0.688488
+ - -0.013485
+ - -0.910396
+ - - 0.461744
+ - 0.977114
+ - 0.118687
+ - - 1.608327
+ - -0.307631
+ - 0.745311
+ - - 2.590489
+ - -0.852992
+ - -0.289971
+ - - -2.245709
+ - 0.614004
+ - 1.372908
+ - - -3.442898
+ - -0.676299
+ - 1.169289
+ - - -3.317154
+ - 0.613552
+ - -0.034475
+ - - -2.232007
+ - -1.494432
+ - -0.868972
+ - - -1.191043
+ - -1.539841
+ - 0.539027
+ - - -0.097706
+ - -0.638336
+ - -1.58639
+ - - -1.198522
+ - 0.729307
+ - -1.532855
+ - - 2.144546
+ - 0.191173
+ - 1.558087
+ - - 1.024906
+ - -1.112858
+ - 1.201866
+ - - 3.259862
+ - -1.588863
+ - 0.170839
+ - - 2.072949
+ - -1.351193
+ - -1.1152
+ - - 3.199356
+ - -0.049157
+ - -0.712228
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.63228589536574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.365778
+ - -0.242857
+ - 0.732317
+ - - -1.475064
+ - -0.848982
+ - -0.342859
+ - - -0.636873
+ - 0.176382
+ - -1.09884
+ - - 0.460621
+ - 1.194398
+ - -0.075335
+ - - 1.406193
+ - -0.079519
+ - 0.796549
+ - - 2.18022
+ - -1.018665
+ - -0.113789
+ - - -1.771735
+ - 0.239609
+ - 1.508571
+ - - -2.988207
+ - -1.006226
+ - 1.199269
+ - - -3.024497
+ - 0.516217
+ - 0.305475
+ - - -2.089081
+ - -1.377252
+ - -1.077649
+ - - -0.819303
+ - -1.604417
+ - 0.098431
+ - - -0.051021
+ - -0.308614
+ - -1.880459
+ - - -1.286836
+ - 0.90401
+ - -1.589274
+ - - 2.087307
+ - 0.485956
+ - 1.433366
+ - - 0.739301
+ - -0.634651
+ - 1.458814
+ - - 2.781801
+ - -1.712561
+ - 0.476069
+ - - 1.508064
+ - -1.611368
+ - -0.735545
+ - - 2.842278
+ - -0.456491
+ - -0.772264
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.256541915773507
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.4728832968
- - 0.2080720056
- - 0.7160213271
- - - 1.5223379752
- - 0.8605598202
- - -0.2985113646
- - - 0.6501279675
- - -0.148593029
- - -1.0660567941
- - - -0.4667287092
- - -1.1840414847
- - -0.0256243204
- - - -1.4828586338
- - 0.1109462256
- - 0.8041437495
- - - -2.2620063187
- - 1.0218554508
- - -0.1532837156
- - - 1.9059495477
- - -0.3605053167
- - 1.4662180255
- - - 3.0794751627
- - 0.9658233827
- - 1.2334742378
- - - 3.1565495987
- - -0.4922855025
- - 0.2115688077
- - - 2.1039866936
- - 1.4305612501
- - -1.0435059253
- - - 0.8752133035
- - 1.5934702082
- - 0.2094118703
- - - 0.0500053509
- - 0.3619092505
- - -1.8337048387
- - - 1.2873779017
- - -0.8823966986
- - -1.5838513497
- - - -2.1737993098
- - -0.4611600309
- - 1.440761452
- - - -0.8407995361
- - 0.7033651793
- - 1.4729447155
- - - -2.9000626541
- - 1.7155794159
- - 0.4169711042
- - - -1.5804505143
- - 1.6248295956
- - -0.7701063902
- - - -2.8986919205
- - 0.4284301825
- - -0.8240717954
+ - - -2.68236
+ - -0.049753
+ - 0.643789
+ - - -1.677557
+ - -0.853546
+ - -0.161603
+ - - -0.673547
+ - 0.003767
+ - -0.919005
+ - - 0.451631
+ - 0.980207
+ - 0.107523
+ - - 1.569067
+ - -0.288988
+ - 0.747511
+ - - 2.528774
+ - -0.866477
+ - -0.27462
+ - - -2.176405
+ - 0.586744
+ - 1.3727
+ - - -3.371276
+ - -0.703867
+ - 1.182583
+ - - -3.277623
+ - 0.597407
+ - -0.007047
+ - - -2.203953
+ - -1.477935
+ - -0.89334
+ - - -1.143943
+ - -1.548994
+ - 0.494796
+ - - -0.083269
+ - -0.602783
+ - -1.610173
+ - - -1.196445
+ - 0.748445
+ - -1.526752
+ - - 2.118225
+ - 0.220531
+ - 1.543377
+ - - 0.982652
+ - -1.075044
+ - 1.230297
+ - - 3.197175
+ - -1.593841
+ - 0.19577
+ - - 1.999387
+ - -1.38149
+ - -1.079007
+ - - 3.13686
+ - -0.079417
+ - -0.72395
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.0807974324369352
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.721443
+ - -0.026326
+ - 0.643241
+ - - -1.710157
+ - -0.8607
+ - -0.147519
+ - - -0.6859
+ - -0.017204
+ - -0.918837
+ - - 0.452683
+ - 0.974742
+ - 0.119641
+ - - 1.593589
+ - -0.312509
+ - 0.748895
+ - - 2.580947
+ - -0.84939
+ - -0.287662
+ - - -2.209783
+ - 0.62113
+ - 1.36262
+ - - -3.417336
+ - -0.669294
+ - 1.192556
+ - - -3.310263
+ - 0.611979
+ - -0.026682
+ - - -2.239091
+ - -1.492637
+ - -0.875501
+ - - -1.18437
+ - -1.54781
+ - 0.527856
+ - - -0.087735
+ - -0.640952
+ - -1.591224
+ - - -1.196092
+ - 0.727401
+ - -1.540683
+ - - 2.125281
+ - 0.18557
+ - 1.566283
+ - - 1.004644
+ - -1.120452
+ - 1.195966
+ - - 3.248121
+ - -1.590233
+ - 0.171132
+ - - 2.063686
+ - -1.339185
+ - -1.119053
+ - - 3.190608
+ - -0.039165
+ - -0.698179
isotopes:
- 12
- 12
@@ -435,6 +1787,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.800037664958154
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.4490329835
+ - -0.2120902314
+ - 0.7039671881
+ - - -1.5019571883
+ - -0.8455722249
+ - -0.305553331
+ - - -0.6354689954
+ - 0.1629401388
+ - -1.0519500906
+ - - 0.4653074255
+ - 1.1647134538
+ - -0.0178049184
+ - - 1.4539759313
+ - -0.1149627291
+ - 0.7958368401
+ - - 2.2370828641
+ - -1.0074486356
+ - -0.1534556568
+ - - -1.8984974371
+ - 0.3339079988
+ - 1.4700455595
+ - - -3.0614079893
+ - -0.9686560194
+ - 1.1953665211
+ - - -3.120090093
+ - 0.4964315879
+ - 0.213584036
+ - - -2.0756979982
+ - -1.4046761788
+ - -1.0505631802
+ - - -0.8633496578
+ - -1.5807135001
+ - 0.1919151132
+ - - -0.0478846417
+ - -0.3330906707
+ - -1.8250942563
+ - - -1.2657319044
+ - 0.8990277172
+ - -1.5560720404
+ - - 2.1316194289
+ - 0.4466806943
+ - 1.4400871417
+ - - 0.8147677522
+ - -0.706852885
+ - 1.4529850514
+ - - 2.8678173479
+ - -1.699753771
+ - 0.4074131836
+ - - 1.5725132612
+ - -1.6034289308
+ - -0.7800861692
+ - - 2.8734253543
+ - -0.4114892115
+ - -0.807771966
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.394510989678565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.445561
+ - -0.220137
+ - 0.714857
+ - - -1.517059
+ - -0.840108
+ - -0.318827
+ - - -0.645071
+ - 0.16603
+ - -1.063062
+ - - 0.470801
+ - 1.16502
+ - -0.041817
+ - - 1.457925
+ - -0.104815
+ - 0.788479
+ - - 2.250617
+ - -1.011468
+ - -0.138432
+ - - -1.88063
+ - 0.297805
+ - 1.490824
+ - - -3.062535
+ - -0.98326
+ - 1.19141
+ - - -3.112709
+ - 0.510188
+ - 0.250924
+ - - -2.106568
+ - -1.37803
+ - -1.067552
+ - - -0.881745
+ - -1.592928
+ - 0.156544
+ - - -0.065501
+ - -0.336445
+ - -1.839069
+ - - -1.271397
+ - 0.907227
+ - -1.565055
+ - - 2.130342
+ - 0.466295
+ - 1.43073
+ - - 0.814375
+ - -0.689749
+ - 1.448444
+ - - 2.875795
+ - -1.693444
+ - 0.442147
+ - - 1.591991
+ - -1.619703
+ - -0.76053
+ - - 2.89432
+ - -0.427512
+ - -0.797164
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 32
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - S
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethyl.yml b/input/reference_sets/main/Ethyl.yml
index ee2ef95bb6..9ac70ca6b0 100644
--- a/input/reference_sets/main/Ethyl.yml
+++ b/input/reference_sets/main/Ethyl.yml
@@ -107,6 +107,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.647634881393007
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.692263
+ - 6.1e-05
+ - -0.002891
+ - - 0.791841
+ - 0.000103
+ - -0.023804
+ - - -1.103482
+ - -0.8785
+ - -0.501935
+ - - -1.103259
+ - 0.889477
+ - -0.482511
+ - - -1.084717
+ - -0.011165
+ - 1.023302
+ - - 1.346837
+ - -0.924328
+ - 0.029718
+ - - 1.34707
+ - 0.922995
+ - 0.050007
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.69993441791368
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.691139
+ - 5.8e-05
+ - -0.002792
+ - - 0.79181
+ - 6.4e-05
+ - -0.020184
+ - - -1.103757
+ - -0.879878
+ - -0.501962
+ - - -1.103537
+ - 0.890851
+ - -0.482508
+ - - -1.088715
+ - -0.011172
+ - 1.023935
+ - - 1.348567
+ - -0.925518
+ - 0.027541
+ - - 1.348798
+ - 0.924236
+ - 0.047857
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -156,6 +254,496 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.64141058809685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.690629
+ - 6.1e-05
+ - -0.003175
+ - - 0.793496
+ - 5.6e-05
+ - -0.019275
+ - - -1.106311
+ - -0.883939
+ - -0.503143
+ - - -1.106092
+ - 0.894934
+ - -0.483599
+ - - -1.093872
+ - -0.011212
+ - 1.02736
+ - - 1.352603
+ - -0.929506
+ - 0.026664
+ - - 1.352832
+ - 0.928247
+ - 0.047055
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.08920306780406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.690495
+ - 5.4e-05
+ - -0.00239
+ - - 0.789562
+ - 4.4e-05
+ - -0.018321
+ - - -1.101634
+ - -0.878688
+ - -0.501898
+ - - -1.101413
+ - 0.889658
+ - -0.482476
+ - - -1.085982
+ - -0.011157
+ - 1.022852
+ - - 1.345879
+ - -0.925166
+ - 0.026908
+ - - 1.34611
+ - 0.923898
+ - 0.047212
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.369764170078685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.692643
+ - 5.9e-05
+ - -0.00278
+ - - 0.794839
+ - 9.4e-05
+ - -0.022968
+ - - -1.107264
+ - -0.880614
+ - -0.502843
+ - - -1.107041
+ - 0.891624
+ - -0.483347
+ - - -1.090702
+ - -0.011206
+ - 1.025616
+ - - 1.352301
+ - -0.926909
+ - 0.028959
+ - - 1.352537
+ - 0.925594
+ - 0.049249
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.917480633752966
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.691368
+ - 0.000267
+ - -0.002134
+ - - 0.790963
+ - 4.0e-06
+ - -0.016243
+ - - -1.10184
+ - -0.875911
+ - -0.506942
+ - - -1.101425
+ - 0.892753
+ - -0.477302
+ - - -1.087893
+ - -0.017681
+ - 1.022771
+ - - 1.346197
+ - -0.924838
+ - 0.035765
+ - - 1.347393
+ - 0.924047
+ - 0.035972
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.471969802018624
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.691368
+ - 0.000267
+ - -0.002134
+ - - 0.790963
+ - 4.0e-06
+ - -0.016243
+ - - -1.10184
+ - -0.875911
+ - -0.506942
+ - - -1.101425
+ - 0.892753
+ - -0.477302
+ - - -1.087893
+ - -0.017681
+ - 1.022771
+ - - 1.346197
+ - -0.924838
+ - 0.035765
+ - - 1.347393
+ - 0.924047
+ - 0.035972
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.057018130063792
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.691368
+ - 0.000267
+ - -0.002134
+ - - 0.790963
+ - 4.0e-06
+ - -0.016243
+ - - -1.10184
+ - -0.875911
+ - -0.506942
+ - - -1.101425
+ - 0.892753
+ - -0.477302
+ - - -1.087893
+ - -0.017681
+ - 1.022771
+ - - 1.346197
+ - -0.924838
+ - 0.035765
+ - - 1.347393
+ - 0.924047
+ - 0.035972
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.253736664073276
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.692101
+ - 6.4e-05
+ - -0.003162
+ - - 0.79534
+ - 0.000148
+ - -0.027985
+ - - -1.109211
+ - -0.881214
+ - -0.503022
+ - - -1.108986
+ - 0.892217
+ - -0.483537
+ - - -1.090239
+ - -0.011198
+ - 1.026441
+ - - 1.353494
+ - -0.927052
+ - 0.031402
+ - - 1.35373
+ - 0.925678
+ - 0.051751
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.025632320931884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.692352
+ - 6.6e-05
+ - -0.003294
+ - - 0.791502
+ - 0.000187
+ - -0.03162
+ - - -1.103917
+ - -0.87847
+ - -0.502163
+ - - -1.103692
+ - 0.889452
+ - -0.482746
+ - - -1.080638
+ - -0.011168
+ - 1.024041
+ - - 1.345444
+ - -0.924308
+ - 0.033689
+ - - 1.345679
+ - 0.922884
+ - 0.05398
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.1984821346138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.689406
+ - 5.9e-05
+ - -0.002781
+ - - 0.789272
+ - 7.9e-05
+ - -0.0216
+ - - -1.103022
+ - -0.879891
+ - -0.502434
+ - - -1.102799
+ - 0.890883
+ - -0.48297
+ - - -1.086
+ - -0.011183
+ - 1.02438
+ - - 1.346873
+ - -0.926402
+ - 0.028495
+ - - 1.347108
+ - 0.925097
+ - 0.048797
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.847717676392783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.694391
+ - 6.3e-05
+ - -0.003072
+ - - 0.794861
+ - 0.000111
+ - -0.024555
+ - - -1.10769
+ - -0.883147
+ - -0.503909
+ - - -1.107466
+ - 0.894166
+ - -0.484384
+ - - -1.090953
+ - -0.011218
+ - 1.028229
+ - - 1.353716
+ - -0.92944
+ - 0.029592
+ - - 1.353951
+ - 0.928107
+ - 0.049986
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -205,6 +793,104 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.864882663875886
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.69136801
+ - 0.0002671358
+ - -0.0021344628
+ - - 0.7909627042
+ - 4.424e-06
+ - -0.0162429431
+ - - -1.1018398216
+ - -0.8759110152
+ - -0.5069422397
+ - - -1.1014254411
+ - 0.8927532757
+ - -0.477301776
+ - - -1.0878929565
+ - -0.0176806527
+ - 1.0227712829
+ - - 1.3461972151
+ - -0.9248376857
+ - 0.0357647816
+ - - 1.3473928389
+ - 0.9240467193
+ - 0.0359723869
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.73217820024324
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.691314
+ - 6.0e-05
+ - -0.00287
+ - - 0.790352
+ - 6.6e-05
+ - -0.020504
+ - - -1.102341
+ - -0.879744
+ - -0.502422
+ - - -1.102118
+ - 0.890718
+ - -0.482997
+ - - -1.084879
+ - -0.011157
+ - 1.024054
+ - - 1.346047
+ - -0.926391
+ - 0.02813
+ - - 1.34628
+ - 0.925091
+ - 0.048496
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethylbenzene.yml b/input/reference_sets/main/Ethylbenzene.yml
index ae51b8ac97..2838746074 100644
--- a/input/reference_sets/main/Ethylbenzene.yml
+++ b/input/reference_sets/main/Ethylbenzene.yml
@@ -227,72 +227,1320 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.884571134611935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.311509
+ - 0.007301
+ - -0.23982
+ - - 1.623605
+ - 1.206497
+ - -0.084881
+ - - 0.262387
+ - 1.198123
+ - 0.200089
+ - - -0.43563
+ - -0.003029
+ - 0.335217
+ - - 0.267064
+ - -1.198933
+ - 0.179374
+ - - 1.628295
+ - -1.197069
+ - -0.105653
+ - - -1.919353
+ - -0.008136
+ - 0.591269
+ - - -2.729367
+ - 0.001516
+ - -0.708676
+ - - 3.371007
+ - 0.011256
+ - -0.458339
+ - - 2.147733
+ - 2.148385
+ - -0.181529
+ - - -0.266185
+ - 2.136077
+ - 0.323876
+ - - -0.25784
+ - -2.140942
+ - 0.286914
+ - - 2.156091
+ - -2.135094
+ - -0.218548
+ - - -2.184546
+ - -0.890547
+ - 1.177589
+ - - -2.187967
+ - 0.862969
+ - 1.192741
+ - - -2.494882
+ - -0.873393
+ - -1.316114
+ - - -2.498317
+ - 0.887699
+ - -1.300897
+ - - -3.800886
+ - -0.002343
+ - -0.503985
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.321224631938566
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.312832
+ - 0.007271
+ - -0.237362
+ - - 1.625084
+ - 1.20528
+ - -0.083658
+ - - 0.264743
+ - 1.196878
+ - 0.198947
+ - - -0.433408
+ - -0.003009
+ - 0.333228
+ - - 0.269407
+ - -1.197667
+ - 0.178258
+ - - 1.629761
+ - -1.195886
+ - -0.104404
+ - - -1.918098
+ - -0.008113
+ - 0.589355
+ - - -2.733993
+ - 0.001522
+ - -0.708602
+ - - 3.373163
+ - 0.011211
+ - -0.454366
+ - - 2.149375
+ - 2.147687
+ - -0.179925
+ - - -0.26414
+ - 2.13515
+ - 0.32109
+ - - -0.255813
+ - -2.139962
+ - 0.284152
+ - - 2.157716
+ - -2.134439
+ - -0.216923
+ - - -2.183372
+ - -0.890507
+ - 1.1769
+ - - -2.186785
+ - 0.862949
+ - 1.192062
+ - - -2.502432
+ - -0.873804
+ - -1.318191
+ - - -2.505862
+ - 0.888153
+ - -1.302955
+ - - -3.805458
+ - -0.002376
+ - -0.498981
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 77.59162192067855
+ value: 77.59162192067855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3318560239
+ - -0.0071696272
+ - -0.237222177
+ - - 1.6449720633
+ - 1.2093643178
+ - -0.0991302767
+ - - 0.2703073531
+ - 1.2130421889
+ - 0.1830686201
+ - - -0.4404446954
+ - 0.0068849491
+ - 0.3359150599
+ - - 0.2601359473
+ - -1.2055629619
+ - 0.1903747014
+ - - 1.6342287963
+ - -1.2165789036
+ - -0.092625296
+ - - -1.935275397
+ - 0.0095058204
+ - 0.5986174669
+ - - -2.7528148749
+ - -0.0066257007
+ - -0.7122116081
+ - - 3.401390988
+ - -0.0133328675
+ - -0.4528024741
+ - - 2.1797184351
+ - 2.1545670446
+ - -0.2074765027
+ - - -0.2607445624
+ - 2.1618124179
+ - 0.2918891609
+ - - -0.2792027636
+ - -2.1492985293
+ - 0.3042315041
+ - - 2.1593300426
+ - -2.1679331095
+ - -0.1960596006
+ - - -2.2061988887
+ - -0.8697373105
+ - 1.2051403964
+ - - -2.2079781511
+ - 0.8997869258
+ - 1.1876019802
+ - - -2.5167318825
+ - -0.9042883472
+ - -1.3025685598
+ - - -2.5139382861
+ - 0.8733495217
+ - -1.3273927593
+ - - -3.8334362296
+ - -0.0020862429
+ - -0.5032820887
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.504720462696664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.320268
+ - 0.00732
+ - -0.240028
+ - - 1.629981
+ - 1.210377
+ - -0.08482
+ - - 0.26459
+ - 1.201874
+ - 0.200986
+ - - -0.436142
+ - -0.003052
+ - 0.337818
+ - - 0.269282
+ - -1.202691
+ - 0.180208
+ - - 1.634686
+ - -1.200924
+ - -0.105656
+ - - -1.924017
+ - -0.008167
+ - 0.593745
+ - - -2.737964
+ - 0.001518
+ - -0.710795
+ - - 3.384921
+ - 0.011294
+ - -0.459429
+ - - 2.156476
+ - 2.156862
+ - -0.182484
+ - - -0.267302
+ - 2.143802
+ - 0.323587
+ - - -0.258925
+ - -2.148665
+ - 0.286495
+ - - 2.164869
+ - -2.143519
+ - -0.219644
+ - - -2.191703
+ - -0.894543
+ - 1.18246
+ - - -2.19514
+ - 0.86685
+ - 1.197681
+ - - -2.501589
+ - -0.877295
+ - -1.321115
+ - - -2.505041
+ - 0.891663
+ - -1.305828
+ - - -3.814532
+ - -0.002365
+ - -0.504557
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.72946226270168
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.333388
+ - 0.007232
+ - -0.233168
+ - - 1.6407
+ - 1.212349
+ - -0.081866
+ - - 0.270661
+ - 1.204011
+ - 0.195183
+ - - -0.43474
+ - -0.002937
+ - 0.326123
+ - - 0.275312
+ - -1.204714
+ - 0.174411
+ - - 1.645364
+ - -1.202981
+ - -0.102695
+ - - -1.925651
+ - -0.008051
+ - 0.585272
+ - - -2.758074
+ - 0.001504
+ - -0.71003
+ - - 3.404287
+ - 0.011134
+ - -0.44581
+ - - 2.170198
+ - 2.163142
+ - -0.174741
+ - - -0.26194
+ - 2.151336
+ - 0.318457
+ - - -0.253621
+ - -2.156075
+ - 0.281311
+ - - 2.178527
+ - -2.149979
+ - -0.211936
+ - - -2.190136
+ - -0.897242
+ - 1.18067
+ - - -2.19355
+ - 0.869718
+ - 1.195898
+ - - -2.534418
+ - -0.88053
+ - -1.328632
+ - - -2.537848
+ - 0.894926
+ - -1.313331
+ - - -3.835739
+ - -0.002504
+ - -0.486491
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.531639282766577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.309298
+ - 0.007192
+ - -0.23182
+ - - 1.623224
+ - 1.200617
+ - -0.081618
+ - - 0.266334
+ - 1.192263
+ - 0.193997
+ - - -0.430629
+ - -0.00292
+ - 0.32412
+ - - 0.270958
+ - -1.192967
+ - 0.173403
+ - - 1.627861
+ - -1.191299
+ - -0.102269
+ - - -1.913155
+ - -0.008022
+ - 0.582209
+ - - -2.735617
+ - 0.001502
+ - -0.704932
+ - - 3.370273
+ - 0.01108
+ - -0.443978
+ - - 2.147615
+ - 2.142855
+ - -0.175169
+ - - -0.261671
+ - 2.130921
+ - 0.315307
+ - - -0.253399
+ - -2.135619
+ - 0.27847
+ - - 2.155898
+ - -2.129742
+ - -0.212057
+ - - -2.174924
+ - -0.889041
+ - 1.171771
+ - - -2.178316
+ - 0.861661
+ - 1.186892
+ - - -2.511638
+ - -0.872982
+ - -1.317078
+ - - -2.515047
+ - 0.88729
+ - -1.301875
+ - - -3.804349
+ - -0.002452
+ - -0.486749
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.523019712712269
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.327486
+ - 0.007189
+ - -0.230497
+ - - 1.637093
+ - 1.208064
+ - -0.080889
+ - - 0.271504
+ - 1.200077
+ - 0.193858
+ - - -0.430846
+ - -0.002913
+ - 0.323815
+ - - 0.276137
+ - -1.200764
+ - 0.173158
+ - - 1.641738
+ - -1.198743
+ - -0.101641
+ - - -1.921699
+ - -0.008028
+ - 0.583424
+ - - -2.756153
+ - 0.001518
+ - -0.709255
+ - - 3.391054
+ - 0.011056
+ - -0.440954
+ - - 2.163034
+ - 2.152098
+ - -0.173277
+ - - -0.257063
+ - 2.140831
+ - 0.314718
+ - - -0.248793
+ - -2.145495
+ - 0.277761
+ - - 2.171314
+ - -2.139007
+ - -0.210275
+ - - -2.184108
+ - -0.89078
+ - 1.175359
+ - - -2.187491
+ - 0.863359
+ - 1.190496
+ - - -2.5353
+ - -0.875106
+ - -1.324091
+ - - -2.538703
+ - 0.889467
+ - -1.308864
+ - - -3.826487
+ - -0.002488
+ - -0.484221
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.43951499897393
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.305519
+ - 0.007533
+ - -0.238529
+ - - 1.616462
+ - 1.202726
+ - -0.090354
+ - - 0.258418
+ - 1.192194
+ - 0.192544
+ - - -0.43334
+ - -0.007146
+ - 0.333667
+ - - 0.2691
+ - -1.198887
+ - 0.183475
+ - - 1.627295
+ - -1.194816
+ - -0.099797
+ - - -1.917663
+ - -0.013814
+ - 0.592175
+ - - -2.724334
+ - 0.010143
+ - -0.706906
+ - - 3.365669
+ - 0.013135
+ - -0.457107
+ - - 2.138747
+ - 2.145629
+ - -0.192372
+ - - -0.274894
+ - 2.129134
+ - 0.310854
+ - - -0.255393
+ - -2.141531
+ - 0.295058
+ - - 2.158105
+ - -2.13216
+ - -0.20911
+ - - -2.181866
+ - -0.901974
+ - 1.17037
+ - - -2.183737
+ - 0.851236
+ - 1.203874
+ - - -2.489134
+ - -0.858987
+ - -1.323287
+ - - -2.489681
+ - 0.901825
+ - -1.29019
+ - - -3.796555
+ - 0.006097
+ - -0.505741
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.369283503737583
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.305519
+ - 0.007533
+ - -0.238529
+ - - 1.616462
+ - 1.202726
+ - -0.090354
+ - - 0.258418
+ - 1.192194
+ - 0.192544
+ - - -0.43334
+ - -0.007146
+ - 0.333667
+ - - 0.2691
+ - -1.198887
+ - 0.183475
+ - - 1.627295
+ - -1.194816
+ - -0.099797
+ - - -1.917663
+ - -0.013814
+ - 0.592175
+ - - -2.724334
+ - 0.010143
+ - -0.706906
+ - - 3.365669
+ - 0.013135
+ - -0.457107
+ - - 2.138747
+ - 2.145629
+ - -0.192372
+ - - -0.274894
+ - 2.129134
+ - 0.310854
+ - - -0.255393
+ - -2.141531
+ - 0.295058
+ - - 2.158105
+ - -2.13216
+ - -0.20911
+ - - -2.181866
+ - -0.901974
+ - 1.17037
+ - - -2.183737
+ - 0.851236
+ - 1.203874
+ - - -2.489134
+ - -0.858987
+ - -1.323287
+ - - -2.489681
+ - 0.901825
+ - -1.29019
+ - - -3.796555
+ - 0.006097
+ - -0.505741
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.94892928614182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.325089
+ - 0.007209
+ - -0.231931
+ - - 1.634993
+ - 1.207807
+ - -0.081805
+ - - 0.270315
+ - 1.199599
+ - 0.19435
+ - - -0.431163
+ - -0.002922
+ - 0.324481
+ - - 0.274957
+ - -1.200297
+ - 0.173647
+ - - 1.639648
+ - -1.198461
+ - -0.102563
+ - - -1.920453
+ - -0.00806
+ - 0.586195
+ - - -2.751585
+ - 0.001518
+ - -0.708843
+ - - 3.389156
+ - 0.011093
+ - -0.443623
+ - - 2.160717
+ - 2.1528
+ - -0.174628
+ - - -0.259912
+ - 2.140251
+ - 0.315758
+ - - -0.251624
+ - -2.144948
+ - 0.278791
+ - - 2.16902
+ - -2.139671
+ - -0.211658
+ - - -2.185509
+ - -0.892247
+ - 1.177392
+ - - -2.188904
+ - 0.864753
+ - 1.192565
+ - - -2.527471
+ - -0.875967
+ - -1.323705
+ - - -2.530884
+ - 0.89035
+ - -1.308451
+ - - -3.823672
+ - -0.002467
+ - -0.487348
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.691577531652676
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.30321
+ - 0.007318
+ - -0.241572
+ - - 1.617239
+ - 1.204012
+ - -0.086436
+ - - 0.259615
+ - 1.195608
+ - 0.200615
+ - - -0.435279
+ - -0.003072
+ - 0.338361
+ - - 0.264315
+ - -1.196453
+ - 0.179957
+ - - 1.621953
+ - -1.194563
+ - -0.10715
+ - - -1.918803
+ - -0.00821
+ - 0.596068
+ - - -2.718919
+ - 0.001546
+ - -0.707817
+ - - 3.362643
+ - 0.011306
+ - -0.462181
+ - - 2.14139
+ - 2.146074
+ - -0.185348
+ - - -0.271335
+ - 2.13312
+ - 0.324102
+ - - -0.262942
+ - -2.138038
+ - 0.287216
+ - - 2.149799
+ - -2.132709
+ - -0.2223
+ - - -2.184072
+ - -0.891459
+ - 1.180748
+ - - -2.187505
+ - 0.86371
+ - 1.195986
+ - - -2.476715
+ - -0.873658
+ - -1.312327
+ - - -2.480158
+ - 0.888052
+ - -1.297033
+ - - -3.791716
+ - -0.002249
+ - -0.512264
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.147562173576873
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.3318560239
- - -0.0071696272
- - -0.237222177
- - - 1.6449720633
- - 1.2093643178
- - -0.0991302767
- - - 0.2703073531
- - 1.2130421889
- - 0.1830686201
- - - -0.4404446954
- - 0.0068849491
- - 0.3359150599
- - - 0.2601359473
- - -1.2055629619
- - 0.1903747014
- - - 1.6342287963
- - -1.2165789036
- - -0.092625296
- - - -1.935275397
- - 0.0095058204
- - 0.5986174669
- - - -2.7528148749
- - -0.0066257007
- - -0.7122116081
- - - 3.401390988
- - -0.0133328675
- - -0.4528024741
- - - 2.1797184351
- - 2.1545670446
- - -0.2074765027
- - - -0.2607445624
- - 2.1618124179
- - 0.2918891609
- - - -0.2792027636
- - -2.1492985293
- - 0.3042315041
- - - 2.1593300426
- - -2.1679331095
- - -0.1960596006
- - - -2.2061988887
- - -0.8697373105
- - 1.2051403964
- - - -2.2079781511
- - 0.8997869258
- - 1.1876019802
- - - -2.5167318825
- - -0.9042883472
- - -1.3025685598
- - - -2.5139382861
- - 0.8733495217
- - -1.3273927593
- - - -3.8334362296
- - -0.0020862429
- - -0.5032820887
+ - - 2.310952
+ - 0.007216
+ - -0.233115
+ - - 1.623775
+ - 1.202732
+ - -0.082324
+ - - 0.264799
+ - 1.194393
+ - 0.194203
+ - - -0.433818
+ - -0.002935
+ - 0.324948
+ - - 0.269444
+ - -1.195104
+ - 0.173586
+ - - 1.628434
+ - -1.193387
+ - -0.102998
+ - - -1.914119
+ - -0.008036
+ - 0.582661
+ - - -2.734258
+ - 0.001495
+ - -0.704366
+ - - 3.373913
+ - 0.011117
+ - -0.44572
+ - - 2.149207
+ - 2.146765
+ - -0.17577
+ - - -0.26457
+ - 2.134648
+ - 0.316288
+ - - -0.256262
+ - -2.139377
+ - 0.27941
+ - - 2.157528
+ - -2.133617
+ - -0.212703
+ - - -2.176384
+ - -0.890885
+ - 1.173566
+ - - -2.17979
+ - 0.863443
+ - 1.188728
+ - - -2.508682
+ - -0.874212
+ - -1.317592
+ - - -2.512104
+ - 0.888538
+ - -1.302358
+ - - -3.805347
+ - -0.002456
+ - -0.487819
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.412604671965866
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.329649
+ - 0.007215
+ - -0.232454
+ - - 1.638227
+ - 1.210058
+ - -0.081559
+ - - 0.270622
+ - 1.201862
+ - 0.194618
+ - - -0.433039
+ - -0.002922
+ - 0.324793
+ - - 0.275263
+ - -1.202558
+ - 0.173887
+ - - 1.64288
+ - -1.200712
+ - -0.102345
+ - - -1.923936
+ - -0.008051
+ - 0.585845
+ - - -2.756527
+ - 0.001518
+ - -0.710852
+ - - 3.395565
+ - 0.011095
+ - -0.443908
+ - - 2.165257
+ - 2.15639
+ - -0.173927
+ - - -0.259146
+ - 2.144893
+ - 0.316991
+ - - -0.250856
+ - -2.149597
+ - 0.279964
+ - - 2.173556
+ - -2.143269
+ - -0.210999
+ - - -2.187119
+ - -0.894673
+ - 1.175698
+ - - -2.190521
+ - 0.86725
+ - 1.190884
+ - - -2.53253
+ - -0.877657
+ - -1.324415
+ - - -2.535947
+ - 0.891998
+ - -1.309161
+ - - -3.828679
+ - -0.002503
+ - -0.484433
isotopes:
- 12
- 12
@@ -435,6 +1683,214 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.615987500165692
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.3055194275
+ - 0.0075333942
+ - -0.2385289215
+ - - 1.6164615977
+ - 1.2027256107
+ - -0.0903539751
+ - - 0.2584182224
+ - 1.1921938767
+ - 0.1925436007
+ - - -0.4333398108
+ - -0.0071463837
+ - 0.3336670584
+ - - 0.2690998692
+ - -1.1988871502
+ - 0.183475421
+ - - 1.6272945034
+ - -1.1948161358
+ - -0.0997970291
+ - - -1.9176632106
+ - -0.0138135439
+ - 0.5921749765
+ - - -2.7243341699
+ - 0.0101429276
+ - -0.7069061589
+ - - 3.3656691518
+ - 0.0131346924
+ - -0.4571066727
+ - - 2.1387473963
+ - 2.1456289706
+ - -0.19237171
+ - - -0.2748941507
+ - 2.1291342867
+ - 0.3108544497
+ - - -0.255392696
+ - -2.1415307863
+ - 0.2950577381
+ - - 2.1581045652
+ - -2.1321595154
+ - -0.2091100226
+ - - -2.1818664462
+ - -0.9019743692
+ - 1.1703702581
+ - - -2.1837367399
+ - 0.8512357901
+ - 1.2038742238
+ - - -2.4891341976
+ - -0.8589866299
+ - -1.3232872576
+ - - -2.4896805855
+ - 0.9018251146
+ - -1.2901897555
+ - - -3.7965548708
+ - 0.0060968727
+ - -0.5057410833
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 21.08567278486388
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.306999
+ - 0.007261
+ - -0.236788
+ - - 1.620839
+ - 1.202451
+ - -0.083813
+ - - 0.263513
+ - 1.194089
+ - 0.19809
+ - - -0.432645
+ - -0.003002
+ - 0.332549
+ - - 0.268172
+ - -1.194866
+ - 0.177441
+ - - 1.625511
+ - -1.193061
+ - -0.104518
+ - - -1.916647
+ - -0.008115
+ - 0.589368
+ - - -2.727721
+ - 0.001513
+ - -0.706873
+ - - 3.367572
+ - 0.011208
+ - -0.454045
+ - - 2.14504
+ - 2.14514
+ - -0.180794
+ - - -0.265726
+ - 2.132936
+ - 0.319453
+ - - -0.257398
+ - -2.137728
+ - 0.28254
+ - - 2.153381
+ - -2.13188
+ - -0.217762
+ - - -2.181521
+ - -0.890383
+ - 1.176921
+ - - -2.184938
+ - 0.86282
+ - 1.192081
+ - - -2.494558
+ - -0.874086
+ - -1.315591
+ - - -2.497993
+ - 0.88841
+ - -1.300351
+ - - -3.799161
+ - -0.00237
+ - -0.499285
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethylcyclobutane.yml b/input/reference_sets/main/Ethylcyclobutane.yml
index 550e277b23..ceddedb977 100644
--- a/input/reference_sets/main/Ethylcyclobutane.yml
+++ b/input/reference_sets/main/Ethylcyclobutane.yml
@@ -25,7 +25,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -6.644526893357135
+ value: -6.644526893357133
class: ThermoData
xyz_dict:
coords:
@@ -129,7 +129,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -7.64925792604822
+ value: -7.649257926048208
class: ThermoData
xyz_dict:
coords:
@@ -227,72 +227,1424 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.717697920497444
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.443943
+ - -0.345481
+ - 0.084986
+ - - 1.314496
+ - 0.624676
+ - -0.248231
+ - - -0.009187
+ - 0.211341
+ - 0.362172
+ - - -0.706853
+ - -1.073622
+ - -0.15479
+ - - -2.063381
+ - -0.346412
+ - -0.002397
+ - - -1.292401
+ - 0.994288
+ - -0.009271
+ - - 3.385194
+ - -0.037503
+ - -0.371527
+ - - 2.213552
+ - -1.350433
+ - -0.273009
+ - - 2.60023
+ - -0.406637
+ - 1.163713
+ - - 1.574984
+ - 1.63003
+ - 0.097097
+ - - 1.194995
+ - 0.69231
+ - -1.334328
+ - - 0.084761
+ - 0.159412
+ - 1.451345
+ - - -0.556364
+ - -2.001172
+ - 0.395962
+ - - -0.464753
+ - -1.245236
+ - -1.205993
+ - - -2.512075
+ - -0.542304
+ - 0.97154
+ - - -2.816312
+ - -0.505828
+ - -0.772687
+ - - -1.215505
+ - 1.402427
+ - -1.019005
+ - - -1.624732
+ - 1.783573
+ - 0.664136
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.643288357246826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.45023
+ - -0.342142
+ - 0.076814
+ - - 1.311784
+ - 0.620159
+ - -0.253399
+ - - -0.00852
+ - 0.208726
+ - 0.368954
+ - - -0.710142
+ - -1.079049
+ - -0.140213
+ - - -2.066741
+ - -0.343354
+ - -0.019812
+ - - -1.292299
+ - 0.996698
+ - 0.004256
+ - - 3.386104
+ - -0.032054
+ - -0.391474
+ - - 2.222803
+ - -1.352303
+ - -0.27131
+ - - 2.618005
+ - -0.39505
+ - 1.155323
+ - - 1.57079
+ - 1.629762
+ - 0.083197
+ - - 1.185458
+ - 0.681904
+ - -1.339914
+ - - 0.097858
+ - 0.160561
+ - 1.45741
+ - - -0.575123
+ - -1.996823
+ - 0.431711
+ - - -0.451767
+ - -1.2772
+ - -1.183208
+ - - -2.551376
+ - -0.54607
+ - 0.936073
+ - - -2.79526
+ - -0.492645
+ - -0.816239
+ - - -1.212644
+ - 1.432735
+ - -0.994044
+ - - -1.62857
+ - 1.769578
+ - 0.695585
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 31.805471912615882
+ value: 31.805471912615882
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4592582801
+ - -0.3490244151
+ - 0.0783628406
+ - - 1.3205017304
+ - 0.6306640568
+ - -0.2531089169
+ - - -0.008923189
+ - 0.2154508285
+ - 0.3756969316
+ - - -0.7075888337
+ - -1.0820857272
+ - -0.1409601052
+ - - -2.0752533203
+ - -0.3477042542
+ - -0.017112709
+ - - -1.3007553291
+ - 1.0032574765
+ - -0.0023387619
+ - - 3.4039000176
+ - -0.0472368092
+ - -0.3981760127
+ - - 2.211070102
+ - -1.3635427334
+ - -0.2698723843
+ - - 2.6272253826
+ - -0.4003048726
+ - 1.1654331513
+ - - 1.5870049689
+ - 1.645982551
+ - 0.0876280522
+ - - 1.1893230627
+ - 0.6902820818
+ - -1.3476132236
+ - - 0.0957078727
+ - 0.1687123737
+ - 1.4729254098
+ - - -0.5670371108
+ - -2.0095747517
+ - 0.4319278838
+ - - -0.4436699947
+ - -1.2712366399
+ - -1.193468446
+ - - -2.5538505478
+ - -0.5485892296
+ - 0.9523806937
+ - - -2.8136656658
+ - -0.5057051155
+ - -0.8157434965
+ - - -1.2149085578
+ - 1.4288074394
+ - -1.0141925373
+ - - -1.6445355595
+ - 1.7890579141
+ - 0.6855352344
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.737021888737639
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.457141
+ - -0.342898
+ - 0.079538
+ - - 1.315754
+ - 0.621654
+ - -0.253013
+ - - -0.009103
+ - 0.208891
+ - 0.367913
+ - - -0.713177
+ - -1.080966
+ - -0.144357
+ - - -2.072528
+ - -0.344319
+ - -0.016361
+ - - -1.296224
+ - 0.998823
+ - 0.0021
+ - - 3.397306
+ - -0.031746
+ - -0.389647
+ - - 2.228139
+ - -1.356788
+ - -0.269876
+ - - 2.623699
+ - -0.395848
+ - 1.162563
+ - - 1.574424
+ - 1.635626
+ - 0.08527
+ - - 1.190096
+ - 0.683478
+ - -1.344051
+ - - 0.095339
+ - 0.158504
+ - 1.46091
+ - - -0.573934
+ - -2.005121
+ - 0.424919
+ - - -0.457021
+ - -1.273294
+ - -1.193542
+ - - -2.55133
+ - -0.546716
+ - 0.947617
+ - - -2.809812
+ - -0.495477
+ - -0.810706
+ - - -1.216259
+ - 1.430967
+ - -1.002659
+ - - -1.631921
+ - 1.778662
+ - 0.693095
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.339090197951588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.473247
+ - -0.335964
+ - 0.088861
+ - - 1.321116
+ - 0.614954
+ - -0.255273
+ - - -0.009844
+ - 0.200093
+ - 0.360546
+ - - -0.727278
+ - -1.086064
+ - -0.155758
+ - - -2.083328
+ - -0.341005
+ - -0.009238
+ - - -1.297662
+ - 0.999624
+ - 0.001308
+ - - 3.415544
+ - -0.015131
+ - -0.379976
+ - - 2.261518
+ - -1.359986
+ - -0.256446
+ - - 2.639691
+ - -0.380957
+ - 1.176839
+ - - 1.571359
+ - 1.637529
+ - 0.07957
+ - - 1.202391
+ - 0.672877
+ - -1.352462
+ - - 0.092765
+ - 0.143548
+ - 1.458964
+ - - -0.588549
+ - -2.021441
+ - 0.404714
+ - - -0.483008
+ - -1.272146
+ - -1.214276
+ - - -2.552686
+ - -0.542983
+ - 0.964903
+ - - -2.836863
+ - -0.488309
+ - -0.795501
+ - - -1.221989
+ - 1.430014
+ - -1.010122
+ - - -1.625835
+ - 1.788779
+ - 0.693059
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.959926937397559
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.44803
+ - -0.337344
+ - 0.082144
+ - - 1.309052
+ - 0.614395
+ - -0.254391
+ - - -0.009423
+ - 0.202823
+ - 0.363423
+ - - -0.713683
+ - -1.075993
+ - -0.146763
+ - - -2.062454
+ - -0.340262
+ - -0.01536
+ - - -1.286637
+ - 0.992057
+ - 0.003852
+ - - 3.382457
+ - -0.024451
+ - -0.384874
+ - - 2.228896
+ - -1.349995
+ - -0.261411
+ - - 2.614589
+ - -0.384155
+ - 1.160173
+ - - 1.562493
+ - 1.625391
+ - 0.079123
+ - - 1.186761
+ - 0.672491
+ - -1.34066
+ - - 0.095969
+ - 0.150998
+ - 1.451165
+ - - -0.578621
+ - -1.997542
+ - 0.417726
+ - - -0.462685
+ - -1.268015
+ - -1.192042
+ - - -2.538832
+ - -0.542349
+ - 0.94389
+ - - -2.798055
+ - -0.486978
+ - -0.804523
+ - - -1.209207
+ - 1.424907
+ - -0.995274
+ - - -1.618061
+ - 1.767453
+ - 0.693514
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.120629420716159
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.47153
+ - -0.33554
+ - 0.082562
+ - - 1.317479
+ - 0.613276
+ - -0.258032
+ - - -0.010065
+ - 0.19947
+ - 0.364747
+ - - -0.726118
+ - -1.086738
+ - -0.145991
+ - - -2.080746
+ - -0.339356
+ - -0.018992
+ - - -1.295437
+ - 0.999273
+ - 0.007311
+ - - 3.405207
+ - -0.01347
+ - -0.386576
+ - - 2.262402
+ - -1.353278
+ - -0.260479
+ - - 2.640385
+ - -0.379308
+ - 1.163142
+ - - 1.567368
+ - 1.628999
+ - 0.073496
+ - - 1.196583
+ - 0.668671
+ - -1.347427
+ - - 0.097533
+ - 0.147663
+ - 1.454983
+ - - -0.596774
+ - -2.008024
+ - 0.425775
+ - - -0.47455
+ - -1.288171
+ - -1.192146
+ - - -2.566361
+ - -0.542491
+ - 0.938646
+ - - -2.813654
+ - -0.481208
+ - -0.815561
+ - - -1.219673
+ - 1.441281
+ - -0.99094
+ - - -1.624518
+ - 1.772383
+ - 0.705191
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.404020940986457
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.43327
+ - -0.349152
+ - 0.078143
+ - - 1.310919
+ - 0.629684
+ - -0.245542
+ - - -0.009664
+ - 0.216495
+ - 0.369543
+ - - -0.697654
+ - -1.070361
+ - -0.146037
+ - - -2.055973
+ - -0.348407
+ - -0.00865
+ - - -1.291017
+ - 0.993055
+ - -0.0074
+ - - 3.374019
+ - -0.051205
+ - -0.385998
+ - - 2.188656
+ - -1.35209
+ - -0.278284
+ - - 2.597192
+ - -0.412678
+ - 1.156166
+ - - 1.578164
+ - 1.632728
+ - 0.101929
+ - - 1.184322
+ - 0.70163
+ - -1.331319
+ - - 0.086173
+ - 0.167669
+ - 1.459333
+ - - -0.549519
+ - -1.995131
+ - 0.410488
+ - - -0.44427
+ - -1.245319
+ - -1.1949
+ - - -2.514589
+ - -0.545792
+ - 0.960785
+ - - -2.799891
+ - -0.510662
+ - -0.787057
+ - - -1.207621
+ - 1.403318
+ - -1.01645
+ - - -1.631929
+ - 1.779651
+ - 0.66496
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.7596704212796395
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.43327
+ - -0.349152
+ - 0.078143
+ - - 1.310919
+ - 0.629684
+ - -0.245542
+ - - -0.009664
+ - 0.216495
+ - 0.369543
+ - - -0.697654
+ - -1.070361
+ - -0.146037
+ - - -2.055973
+ - -0.348407
+ - -0.00865
+ - - -1.291017
+ - 0.993055
+ - -0.0074
+ - - 3.374019
+ - -0.051205
+ - -0.385998
+ - - 2.188656
+ - -1.35209
+ - -0.278284
+ - - 2.597192
+ - -0.412678
+ - 1.156166
+ - - 1.578164
+ - 1.632728
+ - 0.101929
+ - - 1.184322
+ - 0.70163
+ - -1.331319
+ - - 0.086173
+ - 0.167669
+ - 1.459333
+ - - -0.549519
+ - -1.995131
+ - 0.410488
+ - - -0.44427
+ - -1.245319
+ - -1.1949
+ - - -2.514589
+ - -0.545792
+ - 0.960785
+ - - -2.799891
+ - -0.510662
+ - -0.787057
+ - - -1.207621
+ - 1.403318
+ - -1.01645
+ - - -1.631929
+ - 1.779651
+ - 0.66496
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.497231911516782
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.43327
+ - -0.349152
+ - 0.078143
+ - - 1.310919
+ - 0.629684
+ - -0.245542
+ - - -0.009664
+ - 0.216495
+ - 0.369543
+ - - -0.697654
+ - -1.070361
+ - -0.146037
+ - - -2.055973
+ - -0.348407
+ - -0.00865
+ - - -1.291017
+ - 0.993055
+ - -0.0074
+ - - 3.374019
+ - -0.051205
+ - -0.385998
+ - - 2.188656
+ - -1.35209
+ - -0.278284
+ - - 2.597192
+ - -0.412678
+ - 1.156166
+ - - 1.578164
+ - 1.632728
+ - 0.101929
+ - - 1.184322
+ - 0.70163
+ - -1.331319
+ - - 0.086173
+ - 0.167669
+ - 1.459333
+ - - -0.549519
+ - -1.995131
+ - 0.410488
+ - - -0.44427
+ - -1.245319
+ - -1.1949
+ - - -2.514589
+ - -0.545792
+ - 0.960785
+ - - -2.799891
+ - -0.510662
+ - -0.787057
+ - - -1.207621
+ - 1.403318
+ - -1.01645
+ - - -1.631929
+ - 1.779651
+ - 0.66496
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.621777032557215
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.468797
+ - -0.336416
+ - 0.085582
+ - - 1.317871
+ - 0.615287
+ - -0.257255
+ - - -0.009707
+ - 0.200802
+ - 0.362783
+ - - -0.724096
+ - -1.085192
+ - -0.150224
+ - - -2.079495
+ - -0.340659
+ - -0.014887
+ - - -1.295828
+ - 0.999109
+ - 0.005256
+ - - 3.405164
+ - -0.017947
+ - -0.383166
+ - - 2.255324
+ - -1.354995
+ - -0.256455
+ - - 2.636136
+ - -0.380553
+ - 1.167683
+ - - 1.569812
+ - 1.631849
+ - 0.074256
+ - - 1.199727
+ - 0.671646
+ - -1.348211
+ - - 0.096649
+ - 0.146833
+ - 1.453951
+ - - -0.589365
+ - -2.011148
+ - 0.414473
+ - - -0.475718
+ - -1.280556
+ - -1.199463
+ - - -2.557797
+ - -0.543915
+ - 0.947772
+ - - -2.820555
+ - -0.485294
+ - -0.804671
+ - - -1.221547
+ - 1.436886
+ - -0.996213
+ - - -1.624783
+ - 1.777694
+ - 0.698499
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.823803630561892
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.427344
+ - -0.354019
+ - 0.082782
+ - - 1.314138
+ - 0.635103
+ - -0.241387
+ - - -0.010431
+ - 0.221792
+ - 0.364859
+ - - -0.692737
+ - -1.064889
+ - -0.155187
+ - - -2.052277
+ - -0.351903
+ - 0.004292
+ - - -1.293242
+ - 0.991558
+ - -0.01795
+ - - 3.373896
+ - -0.059439
+ - -0.370849
+ - - 2.17592
+ - -1.351334
+ - -0.284022
+ - - 2.579703
+ - -0.426967
+ - 1.161468
+ - - 1.584433
+ - 1.633928
+ - 0.113866
+ - - 1.192764
+ - 0.712555
+ - -1.326798
+ - - 0.075954
+ - 0.171015
+ - 1.454618
+ - - -0.530843
+ - -1.99546
+ - 0.386907
+ - - -0.451244
+ - -1.220541
+ - -1.209536
+ - - -2.484199
+ - -0.543953
+ - 0.986469
+ - - -2.81231
+ - -0.523532
+ - -0.755733
+ - - -1.21291
+ - 1.380479
+ - -1.035233
+ - - -1.63337
+ - 1.78904
+ - 0.641145
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.8700781803949047
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.4592582801
- - -0.3490244151
- - 0.0783628406
- - - 1.3205017304
- - 0.6306640568
- - -0.2531089169
- - - -0.008923189
- - 0.2154508285
- - 0.3756969316
- - - -0.7075888337
- - -1.0820857272
- - -0.1409601052
- - - -2.0752533203
- - -0.3477042542
- - -0.017112709
- - - -1.3007553291
- - 1.0032574765
- - -0.0023387619
- - - 3.4039000176
- - -0.0472368092
- - -0.3981760127
- - - 2.211070102
- - -1.3635427334
- - -0.2698723843
- - - 2.6272253826
- - -0.4003048726
- - 1.1654331513
- - - 1.5870049689
- - 1.645982551
- - 0.0876280522
- - - 1.1893230627
- - 0.6902820818
- - -1.3476132236
- - - 0.0957078727
- - 0.1687123737
- - 1.4729254098
- - - -0.5670371108
- - -2.0095747517
- - 0.4319278838
- - - -0.4436699947
- - -1.2712366399
- - -1.193468446
- - - -2.5538505478
- - -0.5485892296
- - 0.9523806937
- - - -2.8136656658
- - -0.5057051155
- - -0.8157434965
- - - -1.2149085578
- - 1.4288074394
- - -1.0141925373
- - - -1.6445355595
- - 1.7890579141
- - 0.6855352344
+ - - 2.446152
+ - -0.338152
+ - 0.089925
+ - - 1.312276
+ - 0.615976
+ - -0.249234
+ - - -0.010465
+ - 0.203143
+ - 0.35538
+ - - -0.71456
+ - -1.072188
+ - -0.159564
+ - - -2.060982
+ - -0.341709
+ - -0.00076
+ - - -1.287022
+ - 0.989437
+ - -0.00708
+ - - 3.386382
+ - -0.02514
+ - -0.369868
+ - - 2.227142
+ - -1.350752
+ - -0.260064
+ - - 2.606134
+ - -0.391172
+ - 1.170635
+ - - 1.564629
+ - 1.627294
+ - 0.091394
+ - - 1.197125
+ - 0.680895
+ - -1.338248
+ - - 0.084377
+ - 0.146489
+ - 1.446573
+ - - -0.566221
+ - -2.005241
+ - 0.38684
+ - - -0.478046
+ - -1.243611
+ - -1.214324
+ - - -2.50873
+ - -0.538561
+ - 0.97595
+ - - -2.82105
+ - -0.49644
+ - -0.768058
+ - - -1.212715
+ - 1.400814
+ - -1.018118
+ - - -1.613838
+ - 1.782351
+ - 0.66833
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.52637385611852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.471543
+ - -0.338487
+ - 0.096955
+ - - 1.324038
+ - 0.618015
+ - -0.25226
+ - - -0.011767
+ - 0.200421
+ - 0.353245
+ - - -0.727543
+ - -1.081345
+ - -0.16976
+ - - -2.081184
+ - -0.342689
+ - 0.006176
+ - - -1.29783
+ - 0.996827
+ - -0.010843
+ - - 3.412962
+ - -0.015713
+ - -0.361062
+ - - 2.259237
+ - -1.354575
+ - -0.255476
+ - - 2.625671
+ - -0.387655
+ - 1.181548
+ - - 1.574133
+ - 1.632024
+ - 0.091056
+ - - 1.215003
+ - 0.678851
+ - -1.344628
+ - - 0.080503
+ - 0.140517
+ - 1.446695
+ - - -0.577072
+ - -2.019594
+ - 0.372925
+ - - -0.500759
+ - -1.246844
+ - -1.230046
+ - - -2.517297
+ - -0.53799
+ - 0.991308
+ - - -2.851718
+ - -0.496373
+ - -0.755148
+ - - -1.227967
+ - 1.403217
+ - -1.026852
+ - - -1.619364
+ - 1.794824
+ - 0.665878
isotopes:
- 12
- 12
@@ -435,13 +1787,221 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.873767351412637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.4332704117
+ - -0.3491516832
+ - 0.0781432452
+ - - 1.3109193532
+ - 0.6296839501
+ - -0.2455415293
+ - - -0.0096642472
+ - 0.2164950613
+ - 0.3695425233
+ - - -0.6976536387
+ - -1.0703613404
+ - -0.1460365819
+ - - -2.055972543
+ - -0.3484069175
+ - -0.008649641
+ - - -1.2910171739
+ - 0.9930545135
+ - -0.0074002819
+ - - 3.3740193264
+ - -0.0512048879
+ - -0.385998067
+ - - 2.1886559386
+ - -1.3520900432
+ - -0.2782840408
+ - - 2.5971920237
+ - -0.4126779127
+ - 1.1561660528
+ - - 1.5781636886
+ - 1.632728492
+ - 0.1019294799
+ - - 1.1843224997
+ - 0.7016295612
+ - -1.3313193093
+ - - 0.0861729886
+ - 0.1676691622
+ - 1.4593325812
+ - - -0.5495193504
+ - -1.9951311582
+ - 0.4104881098
+ - - -0.4442696087
+ - -1.2453186886
+ - -1.1948999211
+ - - -2.5145894
+ - -0.5457924143
+ - 0.9607851677
+ - - -2.7998909895
+ - -0.5106624285
+ - -0.7870567009
+ - - -1.207621267
+ - 1.4033181963
+ - -1.0164501075
+ - - -1.6319288229
+ - 1.7796506184
+ - 0.664960349
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.40991061516497
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.44001
+ - -0.345628
+ - 0.076436
+ - - 1.310771
+ - 0.623733
+ - -0.249328
+ - - -0.009718
+ - 0.212477
+ - 0.368087
+ - - -0.703758
+ - -1.073148
+ - -0.141272
+ - - -2.058568
+ - -0.345179
+ - -0.014562
+ - - -1.290608
+ - 0.9934
+ - -0.001692
+ - - 3.378296
+ - -0.038357
+ - -0.387976
+ - - 2.205182
+ - -1.351506
+ - -0.279378
+ - - 2.604169
+ - -0.406365
+ - 1.154921
+ - - 1.573407
+ - 1.629448
+ - 0.094046
+ - - 1.185579
+ - 0.691149
+ - -1.335515
+ - - 0.091406
+ - 0.165139
+ - 1.457031
+ - - -0.562124
+ - -1.99291
+ - 0.425772
+ - - -0.448093
+ - -1.263171
+ - -1.186825
+ - - -2.532426
+ - -0.544985
+ - 0.947272
+ - - -2.792972
+ - -0.500794
+ - -0.804034
+ - - -1.210868
+ - 1.418135
+ - -1.005093
+ - - -1.629093
+ - 1.771995
+ - 0.68182
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -1.9451634965317932
+ value: -1.9451634965317925
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethylene glycol.yml b/input/reference_sets/main/Ethylene glycol.yml
index db1325b574..3503e9fb3b 100644
--- a/input/reference_sets/main/Ethylene glycol.yml
+++ b/input/reference_sets/main/Ethylene glycol.yml
@@ -17,7 +17,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -93.31111924743382
+ value: -93.3111192474338
class: ThermoData
xyz_dict:
coords:
@@ -81,7 +81,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -93.90340653950746
+ value: -93.90340653950742
class: ThermoData
xyz_dict:
coords:
@@ -139,6 +139,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.37656096333548
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.437149
+ - -0.569787
+ - -0.189436
+ - - 0.730258
+ - 0.56814
+ - 0.271888
+ - - -0.679579
+ - 0.601004
+ - -0.269203
+ - - -1.329009
+ - -0.574067
+ - 0.219945
+ - - 0.874924
+ - -1.330882
+ - -0.0003
+ - - 1.279177
+ - 1.445001
+ - -0.07084
+ - - 0.694596
+ - 0.589935
+ - 1.367071
+ - - -0.652042
+ - 0.600272
+ - -1.362678
+ - - -1.193297
+ - 1.505009
+ - 0.075012
+ - - -2.148987
+ - -0.704326
+ - -0.264534
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.34896659248776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.441121
+ - -0.570222
+ - -0.187716
+ - - 0.731218
+ - 0.567169
+ - 0.271962
+ - - -0.681294
+ - 0.601031
+ - -0.268103
+ - - -1.337477
+ - -0.571331
+ - 0.220968
+ - - 0.884261
+ - -1.336425
+ - -0.001355
+ - - 1.278919
+ - 1.446027
+ - -0.071809
+ - - 0.697327
+ - 0.591802
+ - 1.36884
+ - - -0.654865
+ - 0.600918
+ - -1.363106
+ - - -1.191992
+ - 1.508944
+ - 0.075447
+ - - -2.154026
+ - -0.707612
+ - -0.268203
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +331,710 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -78.46499993952176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.455275
+ - -0.571028
+ - -0.192965
+ - - 0.733464
+ - 0.564922
+ - 0.27353
+ - - -0.685003
+ - 0.59999
+ - -0.265949
+ - - -1.354622
+ - -0.568631
+ - 0.236865
+ - - 0.892833
+ - -1.337031
+ - -0.005695
+ - - 1.278615
+ - 1.451302
+ - -0.070145
+ - - 0.700389
+ - 0.587837
+ - 1.375998
+ - - -0.659556
+ - 0.590884
+ - -1.366024
+ - - -1.191049
+ - 1.51973
+ - 0.071468
+ - - -2.157156
+ - -0.707674
+ - -0.280157
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.02142486176525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.446007
+ - -0.579959
+ - -0.186544
+ - - 0.736855
+ - 0.569747
+ - 0.273293
+ - - -0.683272
+ - 0.60462
+ - -0.264155
+ - - -1.338735
+ - -0.577428
+ - 0.234641
+ - - 0.856936
+ - -1.337024
+ - -0.005763
+ - - 1.291191
+ - 1.452629
+ - -0.079409
+ - - 0.706465
+ - 0.602312
+ - 1.380545
+ - - -0.660484
+ - 0.602771
+ - -1.369013
+ - - -1.198958
+ - 1.520957
+ - 0.08239
+ - - -2.142815
+ - -0.728324
+ - -0.289058
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.31467426133882
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.429879
+ - -0.568262
+ - -0.185369
+ - - 0.729367
+ - 0.567199
+ - 0.270435
+ - - -0.678238
+ - 0.599723
+ - -0.267854
+ - - -1.325508
+ - -0.571037
+ - 0.213468
+ - - 0.873657
+ - -1.333161
+ - 0.000231
+ - - 1.278084
+ - 1.444175
+ - -0.073867
+ - - 0.695254
+ - 0.59285
+ - 1.366094
+ - - -0.65065
+ - 0.603635
+ - -1.361874
+ - - -1.191333
+ - 1.50355
+ - 0.078789
+ - - -2.147323
+ - -0.708371
+ - -0.263128
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -94.14423373807608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.429218
+ - -0.579268
+ - -0.187623
+ - - 0.736012
+ - 0.569436
+ - 0.271646
+ - - -0.682772
+ - 0.604605
+ - -0.265232
+ - - -1.322797
+ - -0.579972
+ - 0.222346
+ - - 0.845769
+ - -1.323894
+ - 0.001315
+ - - 1.290911
+ - 1.443649
+ - -0.077482
+ - - 0.702642
+ - 0.601695
+ - 1.37054
+ - - -0.654275
+ - 0.608067
+ - -1.362157
+ - - -1.201521
+ - 1.509129
+ - 0.081944
+ - - -2.129996
+ - -0.723148
+ - -0.278373
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.30782067041906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.433775
+ - -0.568946
+ - -0.189386
+ - - 0.729686
+ - 0.568251
+ - 0.27147
+ - - -0.679473
+ - 0.601284
+ - -0.269341
+ - - -1.328668
+ - -0.570764
+ - 0.219733
+ - - 0.876084
+ - -1.332883
+ - -0.001471
+ - - 1.278473
+ - 1.446245
+ - -0.069663
+ - - 0.693952
+ - 0.588689
+ - 1.367115
+ - - -0.650896
+ - 0.599128
+ - -1.363336
+ - - -1.191969
+ - 1.506
+ - 0.07468
+ - - -2.147773
+ - -0.706704
+ - -0.262876
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.72684420202206
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.433775
+ - -0.568946
+ - -0.189386
+ - - 0.729685
+ - 0.568251
+ - 0.27147
+ - - -0.679473
+ - 0.601284
+ - -0.269341
+ - - -1.328668
+ - -0.570764
+ - 0.219733
+ - - 0.876084
+ - -1.332883
+ - -0.001471
+ - - 1.278473
+ - 1.446245
+ - -0.069663
+ - - 0.693952
+ - 0.588689
+ - 1.367115
+ - - -0.650896
+ - 0.599128
+ - -1.363336
+ - - -1.191969
+ - 1.506
+ - 0.07468
+ - - -2.147773
+ - -0.706704
+ - -0.262876
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.00635201911354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.433775
+ - -0.568946
+ - -0.189386
+ - - 0.729685
+ - 0.568251
+ - 0.27147
+ - - -0.679473
+ - 0.601284
+ - -0.269341
+ - - -1.328668
+ - -0.570764
+ - 0.219733
+ - - 0.876084
+ - -1.332883
+ - -0.001471
+ - - 1.278473
+ - 1.446245
+ - -0.069663
+ - - 0.693952
+ - 0.588689
+ - 1.367115
+ - - -0.650896
+ - 0.599128
+ - -1.363336
+ - - -1.191969
+ - 1.506
+ - 0.07468
+ - - -2.147773
+ - -0.706704
+ - -0.262876
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.47408101951184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.425396
+ - -0.584775
+ - -0.173571
+ - - 0.740505
+ - 0.567828
+ - 0.272369
+ - - -0.68321
+ - 0.601164
+ - -0.262179
+ - - -1.313463
+ - -0.584759
+ - 0.216697
+ - - 0.822627
+ - -1.319268
+ - -0.00496
+ - - 1.295072
+ - 1.440729
+ - -0.08741
+ - - 0.70846
+ - 0.61724
+ - 1.37308
+ - - -0.658913
+ - 0.617752
+ - -1.36121
+ - - -1.203937
+ - 1.505135
+ - 0.089728
+ - - -2.119347
+ - -0.730745
+ - -0.285619
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.9910121196929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.423864
+ - -0.570097
+ - -0.183476
+ - - 0.732362
+ - 0.569774
+ - 0.271776
+ - - -0.677698
+ - 0.600349
+ - -0.270411
+ - - -1.311758
+ - -0.577494
+ - 0.207569
+ - - 0.855116
+ - -1.327077
+ - -0.002213
+ - - 1.28391
+ - 1.444539
+ - -0.073659
+ - - 0.694223
+ - 0.594601
+ - 1.367218
+ - - -0.645956
+ - 0.605834
+ - -1.364464
+ - - -1.1982
+ - 1.498242
+ - 0.079032
+ - - -2.142671
+ - -0.708371
+ - -0.254446
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -85.96487008135928
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.431476
+ - -0.568781
+ - -0.182888
+ - - 0.730371
+ - 0.563195
+ - 0.269695
+ - - -0.679247
+ - 0.594677
+ - -0.264781
+ - - -1.325052
+ - -0.572286
+ - 0.216794
+ - - 0.865076
+ - -1.326396
+ - -0.002458
+ - - 1.275429
+ - 1.444358
+ - -0.077251
+ - - 0.697196
+ - 0.595766
+ - 1.368297
+ - - -0.651761
+ - 0.601309
+ - -1.361672
+ - - -1.189834
+ - 1.503755
+ - 0.081074
+ - - -2.140463
+ - -0.705297
+ - -0.269885
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -75.1007221750346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.436475
+ - -0.582403
+ - -0.183247
+ - - 0.736798
+ - 0.575431
+ - 0.275373
+ - - -0.681355
+ - 0.61094
+ - -0.266493
+ - - -1.327744
+ - -0.579364
+ - 0.230236
+ - - 0.841212
+ - -1.331449
+ - -0.005196
+ - - 1.297516
+ - 1.445105
+ - -0.081193
+ - - 0.707382
+ - 0.604985
+ - 1.376061
+ - - -0.660621
+ - 0.60734
+ - -1.364868
+ - - -1.205053
+ - 1.513394
+ - 0.084052
+ - - -2.131419
+ - -0.733677
+ - -0.287799
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -267,13 +1099,141 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.6035335704002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4337748675
+ - -0.5689463503
+ - -0.189386208
+ - - 0.7296855011
+ - 0.5682505199
+ - 0.2714698389
+ - - -0.6794731348
+ - 0.6012837846
+ - -0.2693410165
+ - - -1.3286679701
+ - -0.5707638916
+ - 0.2197334596
+ - - 0.8760835145
+ - -1.3328830074
+ - -0.0014709845
+ - - 1.2784728967
+ - 1.4462452463
+ - -0.0696626777
+ - - 0.6939521263
+ - 0.5886893383
+ - 1.367115167
+ - - -0.6508962093
+ - 0.5991278357
+ - -1.3633360028
+ - - -1.1919687493
+ - 1.5060002939
+ - 0.074679535
+ - - -2.1477729558
+ - -0.7067035984
+ - -0.2628759837
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.70254679863142
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.437044
+ - -0.565785
+ - -0.186921
+ - - 0.730426
+ - 0.562259
+ - 0.270218
+ - - -0.682142
+ - 0.594794
+ - -0.267
+ - - -1.335207
+ - -0.568381
+ - 0.215594
+ - - 0.887855
+ - -1.331099
+ - 0.001816
+ - - 1.272923
+ - 1.444478
+ - -0.073321
+ - - 0.696407
+ - 0.588751
+ - 1.367256
+ - - -0.653084
+ - 0.598796
+ - -1.362458
+ - - -1.189215
+ - 1.504523
+ - 0.077245
+ - - -2.151816
+ - -0.698035
+ - -0.265504
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -86.93275209207083
+ value: -86.93275209207077
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethylene.yml b/input/reference_sets/main/Ethylene.yml
index 7e7377a11f..d585336405 100644
--- a/input/reference_sets/main/Ethylene.yml
+++ b/input/reference_sets/main/Ethylene.yml
@@ -95,6 +95,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.528469652754858
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.663802
+ - -3.7e-05
+ - -0.0
+ - - -0.663823
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.230765
+ - 0.921462
+ - 0.0
+ - - 1.230704
+ - -0.921574
+ - 0.0
+ - - -1.230724
+ - 0.921544
+ - -2.0e-06
+ - - -1.230786
+ - -0.921492
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.337832437955072
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.662295
+ - -3.7e-05
+ - -0.0
+ - - -0.662316
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.232054
+ - 0.92139
+ - 0.0
+ - - 1.231993
+ - -0.921502
+ - 0.0
+ - - -1.232013
+ - 0.921472
+ - -2.0e-06
+ - - -1.232075
+ - -0.92142
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.152684314178186
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.665611
+ - -3.7e-05
+ - -0.0
+ - - -0.665631
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.237975
+ - 0.925379
+ - 0.0
+ - - 1.237913
+ - -0.925492
+ - 0.0
+ - - -1.237934
+ - 0.925462
+ - -2.0e-06
+ - - -1.237996
+ - -0.925409
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.44930660895576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.666812
+ - -3.7e-05
+ - -0.0
+ - - -0.666833
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.24154
+ - 0.928993
+ - 0.0
+ - - 1.241478
+ - -0.929106
+ - 0.0
+ - - -1.241499
+ - 0.929075
+ - -2.0e-06
+ - - -1.241561
+ - -0.929023
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.47777816791583
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.659706
+ - -3.7e-05
+ - -0.0
+ - - -0.659727
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.22829
+ - 0.921328
+ - 0.0
+ - - 1.228228
+ - -0.92144
+ - 0.0
+ - - -1.228249
+ - 0.92141
+ - -2.0e-06
+ - - -1.22831
+ - -0.921358
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.411178889838682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.663479
+ - -3.7e-05
+ - -0.0
+ - - -0.6635
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.234649
+ - 0.922468
+ - 0.0
+ - - 1.234587
+ - -0.922581
+ - 0.0
+ - - -1.234608
+ - 0.92255
+ - -2.0e-06
+ - - -1.234669
+ - -0.922498
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.149073987860888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661189
+ - -3.7e-05
+ - -0.0
+ - - -0.661209
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.228569
+ - 0.922232
+ - 0.0
+ - - 1.228507
+ - -0.922344
+ - 0.0
+ - - -1.228528
+ - 0.922313
+ - -2.0e-06
+ - - -1.228589
+ - -0.922262
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.761853579665663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661189
+ - -3.7e-05
+ - -0.0
+ - - -0.661209
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.228569
+ - 0.922232
+ - 0.0
+ - - 1.228507
+ - -0.922344
+ - 0.0
+ - - -1.228528
+ - 0.922313
+ - -2.0e-06
+ - - -1.228589
+ - -0.922262
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.309383927186209
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661189
+ - -3.7e-05
+ - -0.0
+ - - -0.661209
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.228569
+ - 0.922232
+ - 0.0
+ - - 1.228507
+ - -0.922344
+ - 0.0
+ - - -1.228528
+ - 0.922313
+ - -2.0e-06
+ - - -1.228589
+ - -0.922262
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.027404108575587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.663584
+ - -3.7e-05
+ - 0.0
+ - - -0.663604
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.238187
+ - 0.921232
+ - 0.0
+ - - 1.238126
+ - -0.921345
+ - 0.0
+ - - -1.238147
+ - 0.921314
+ - -2.0e-06
+ - - -1.238208
+ - -0.921262
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.527222734669
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661039
+ - -3.7e-05
+ - -0.0
+ - - -0.66106
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.228609
+ - 0.922195
+ - 0.0
+ - - 1.228548
+ - -0.922307
+ - 0.0
+ - - -1.228568
+ - 0.922277
+ - -2.0e-06
+ - - -1.22863
+ - -0.922225
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.88860012500222
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.661492
+ - -3.7e-05
+ - -0.0
+ - - -0.661513
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.231032
+ - 0.923093
+ - 0.0
+ - - 1.230971
+ - -0.923205
+ - 0.0
+ - - -1.230991
+ - 0.923175
+ - -2.0e-06
+ - - -1.231053
+ - -0.923123
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.571666700205167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.665378
+ - -3.7e-05
+ - -0.0
+ - - -0.665398
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.237653
+ - 0.924281
+ - 0.0
+ - - 1.237591
+ - -0.924393
+ - 0.0
+ - - -1.237612
+ - 0.924363
+ - -2.0e-06
+ - - -1.237674
+ - -0.924311
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.688369470253761
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6611885672
+ - -3.70562e-05
+ - -2.942e-07
+ - - -0.6612091649
+ - 6.9685e-06
+ - -1.558e-06
+ - - 1.2285691771
+ - 0.9222315681
+ - 2.696e-07
+ - - 1.2285074693
+ - -0.9223436794
+ - 3.15e-07
+ - - -1.2285284462
+ - 0.9223133792
+ - -2.1144e-06
+ - - -1.2285894549
+ - -0.9222618795
+ - -2.1597e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.025619438979376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.660851
+ - -3.7e-05
+ - -0.0
+ - - -0.660872
+ - 7.0e-06
+ - -2.0e-06
+ - - 1.229272
+ - 0.922529
+ - 0.0
+ - - 1.229211
+ - -0.922641
+ - 0.0
+ - - -1.229231
+ - 0.922611
+ - -2.0e-06
+ - - -1.229293
+ - -0.922559
+ - -2.0e-06
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethylenediamine.yml b/input/reference_sets/main/Ethylenediamine.yml
index 56843849be..1c58d01497 100644
--- a/input/reference_sets/main/Ethylenediamine.yml
+++ b/input/reference_sets/main/Ethylenediamine.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.8610895691419295
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.458798
+ - -0.557822
+ - -0.238641
+ - - 0.722407
+ - 0.587436
+ - 0.285484
+ - - -0.67925
+ - 0.600842
+ - -0.299913
+ - - -1.409088
+ - -0.596218
+ - 0.130316
+ - - 2.341007
+ - -0.674765
+ - 0.24294
+ - - 0.905088
+ - -1.392112
+ - -0.079441
+ - - 1.237857
+ - 1.505912
+ - -0.003762
+ - - 0.640726
+ - 0.597277
+ - 1.383922
+ - - -0.598884
+ - 0.570606
+ - -1.387396
+ - - -1.177636
+ - 1.539011
+ - -0.025966
+ - - -1.696504
+ - -0.505607
+ - 1.097762
+ - - -2.248889
+ - -0.725696
+ - -0.418431
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.6783130633514287
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.462997
+ - -0.559008
+ - -0.234836
+ - - 0.724042
+ - 0.587032
+ - 0.284687
+ - - -0.680713
+ - 0.601029
+ - -0.298885
+ - - -1.415605
+ - -0.593823
+ - 0.129983
+ - - 2.346854
+ - -0.675884
+ - 0.244591
+ - - 0.910265
+ - -1.395842
+ - -0.082198
+ - - 1.23848
+ - 1.506689
+ - -0.007052
+ - - 0.643396
+ - 0.601802
+ - 1.384922
+ - - -0.602639
+ - 0.572151
+ - -1.38765
+ - - -1.176099
+ - 1.542441
+ - -0.02449
+ - - -1.701719
+ - -0.510272
+ - 1.098896
+ - - -2.253627
+ - -0.727452
+ - -0.421093
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 0.0426087495040683
+ value: 0.0426087495040683
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4712185479
+ - -0.5554733523
+ - -0.252212461
+ - - 0.7280941005
+ - 0.5879074573
+ - 0.2918933528
+ - - -0.6878539569
+ - 0.6046506563
+ - -0.2998958337
+ - - -1.4141347214
+ - -0.6085434095
+ - 0.1276917504
+ - - 2.3363924914
+ - -0.6882726522
+ - 0.2769636325
+ - - 0.8951087123
+ - -1.3869365641
+ - -0.0895625462
+ - - 1.2420782794
+ - 1.5211263209
+ - 0.0087263436
+ - - 0.6346980439
+ - 0.5981628379
+ - 1.4023883803
+ - - -0.6020307344
+ - 0.5775392229
+ - -1.3965250973
+ - - -1.1866503676
+ - 1.5565266469
+ - -0.0242257129
+ - - -1.6586415586
+ - -0.512428433
+ - 1.1176651231
+ - - -2.3019825136
+ - -0.6729487287
+ - -0.3757702639
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.966007621864699
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.474875
+ - -0.557135
+ - -0.244619
+ - - 0.72622
+ - 0.586005
+ - 0.283864
+ - - -0.682478
+ - 0.597855
+ - -0.302735
+ - - -1.417796
+ - -0.603502
+ - 0.127749
+ - - 2.348996
+ - -0.677767
+ - 0.259694
+ - - 0.916379
+ - -1.394652
+ - -0.088827
+ - - 1.238669
+ - 1.513762
+ - -0.003357
+ - - 0.642035
+ - 0.596411
+ - 1.389411
+ - - -0.603897
+ - 0.566993
+ - -1.396038
+ - - -1.179477
+ - 1.544731
+ - -0.028538
+ - - -1.696471
+ - -0.510436
+ - 1.102047
+ - - -2.271423
+ - -0.713402
+ - -0.411778
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.049701540848876
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.469685
+ - -0.559774
+ - -0.246142
+ - - 0.731335
+ - 0.592003
+ - 0.28351
+ - - -0.682271
+ - 0.602472
+ - -0.296482
+ - - -1.410262
+ - -0.606931
+ - 0.131511
+ - - 2.348908
+ - -0.691321
+ - 0.257966
+ - - 0.896983
+ - -1.39488
+ - -0.086022
+ - - 1.246629
+ - 1.520689
+ - -0.013922
+ - - 0.654336
+ - 0.610726
+ - 1.394275
+ - - -0.606505
+ - 0.575711
+ - -1.395094
+ - - -1.184478
+ - 1.550511
+ - -0.017705
+ - - -1.714788
+ - -0.510993
+ - 1.103774
+ - - -2.253939
+ - -0.739348
+ - -0.428796
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.990000792242875
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.455161
+ - -0.55785
+ - -0.229953
+ - - 0.72216
+ - 0.585793
+ - 0.284966
+ - - -0.678511
+ - 0.600516
+ - -0.295045
+ - - -1.413788
+ - -0.585878
+ - 0.133857
+ - - 2.345201
+ - -0.673152
+ - 0.234349
+ - - 0.905229
+ - -1.395296
+ - -0.081877
+ - - 1.236643
+ - 1.503752
+ - -0.008607
+ - - 0.643813
+ - 0.601071
+ - 1.383788
+ - - -0.599559
+ - 0.571115
+ - -1.382834
+ - - -1.172963
+ - 1.541323
+ - -0.022231
+ - - -1.70852
+ - -0.504519
+ - 1.098504
+ - - -2.239235
+ - -0.738012
+ - -0.428043
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.224828955011086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.462735
+ - -0.560571
+ - -0.245672
+ - - 0.730677
+ - 0.589968
+ - 0.284416
+ - - -0.682434
+ - 0.602565
+ - -0.293415
+ - - -1.40905
+ - -0.603097
+ - 0.134437
+ - - 2.341574
+ - -0.685011
+ - 0.245855
+ - - 0.898005
+ - -1.389085
+ - -0.077775
+ - - 1.24382
+ - 1.511329
+ - -0.012277
+ - - 0.656393
+ - 0.6086
+ - 1.387702
+ - - -0.602593
+ - 0.575927
+ - -1.383727
+ - - -1.182978
+ - 1.543473
+ - -0.017289
+ - - -1.721481
+ - -0.502743
+ - 1.095706
+ - - -2.239036
+ - -0.742492
+ - -0.431087
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3625201375252096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.456682
+ - -0.557211
+ - -0.237864
+ - - 0.722019
+ - 0.587888
+ - 0.285631
+ - - -0.678761
+ - 0.601684
+ - -0.298858
+ - - -1.408668
+ - -0.592243
+ - 0.134408
+ - - 2.341655
+ - -0.674947
+ - 0.237568
+ - - 0.905513
+ - -1.393674
+ - -0.081178
+ - - 1.237817
+ - 1.506875
+ - -0.001901
+ - - 0.640476
+ - 0.593977
+ - 1.384075
+ - - -0.597184
+ - 0.569868
+ - -1.386825
+ - - -1.177757
+ - 1.539704
+ - -0.026562
+ - - -1.704322
+ - -0.499236
+ - 1.099002
+ - - -2.241838
+ - -0.733821
+ - -0.420622
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.262769162475409
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.456682
+ - -0.557211
+ - -0.237864
+ - - 0.722019
+ - 0.587888
+ - 0.285631
+ - - -0.678761
+ - 0.601684
+ - -0.298858
+ - - -1.408668
+ - -0.592243
+ - 0.134408
+ - - 2.341655
+ - -0.674947
+ - 0.237568
+ - - 0.905513
+ - -1.393674
+ - -0.081178
+ - - 1.237817
+ - 1.506875
+ - -0.001901
+ - - 0.640476
+ - 0.593977
+ - 1.384075
+ - - -0.597184
+ - 0.569868
+ - -1.386825
+ - - -1.177757
+ - 1.539704
+ - -0.026562
+ - - -1.704322
+ - -0.499236
+ - 1.099002
+ - - -2.241838
+ - -0.733821
+ - -0.420622
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.5121278259568713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.456682
+ - -0.557211
+ - -0.237864
+ - - 0.722019
+ - 0.587888
+ - 0.285631
+ - - -0.678761
+ - 0.601684
+ - -0.298858
+ - - -1.408668
+ - -0.592243
+ - 0.134408
+ - - 2.341655
+ - -0.674947
+ - 0.237568
+ - - 0.905513
+ - -1.393674
+ - -0.081178
+ - - 1.237817
+ - 1.506875
+ - -0.001901
+ - - 0.640476
+ - 0.593977
+ - 1.384075
+ - - -0.597184
+ - 0.569868
+ - -1.386825
+ - - -1.177757
+ - 1.539704
+ - -0.026562
+ - - -1.704322
+ - -0.499236
+ - 1.099002
+ - - -2.241838
+ - -0.733821
+ - -0.420622
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.9821383713879968
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.4712185479
- - -0.5554733523
- - -0.252212461
- - - 0.7280941005
- - 0.5879074573
- - 0.2918933528
- - - -0.6878539569
- - 0.6046506563
- - -0.2998958337
- - - -1.4141347214
- - -0.6085434095
- - 0.1276917504
- - - 2.3363924914
- - -0.6882726522
- - 0.2769636325
- - - 0.8951087123
- - -1.3869365641
- - -0.0895625462
- - - 1.2420782794
- - 1.5211263209
- - 0.0087263436
- - - 0.6346980439
- - 0.5981628379
- - 1.4023883803
- - - -0.6020307344
- - 0.5775392229
- - -1.3965250973
- - - -1.1866503676
- - 1.5565266469
- - -0.0242257129
- - - -1.6586415586
- - -0.512428433
- - 1.1176651231
- - - -2.3019825136
- - -0.6729487287
- - -0.3757702639
+ - - 1.470555
+ - -0.556172
+ - -0.246634
+ - - 0.728169
+ - 0.586549
+ - 0.283289
+ - - -0.682852
+ - 0.596881
+ - -0.301756
+ - - -1.409081
+ - -0.607002
+ - 0.1255
+ - - 2.338261
+ - -0.682944
+ - 0.264096
+ - - 0.906079
+ - -1.38664
+ - -0.087155
+ - - 1.240055
+ - 1.513704
+ - -0.003241
+ - - 0.64639
+ - 0.600658
+ - 1.387274
+ - - -0.603901
+ - 0.568555
+ - -1.393977
+ - - -1.183128
+ - 1.540337
+ - -0.028481
+ - - -1.690296
+ - -0.513086
+ - 1.097456
+ - - -2.26462
+ - -0.711976
+ - -0.409499
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.724049314039637
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.45155
+ - -0.555384
+ - -0.235133
+ - - 0.72099
+ - 0.590069
+ - 0.287571
+ - - -0.678196
+ - 0.602785
+ - -0.302214
+ - - -1.402414
+ - -0.59301
+ - 0.129602
+ - - 2.334372
+ - -0.680191
+ - 0.242514
+ - - 0.892442
+ - -1.388475
+ - -0.086342
+ - - 1.238745
+ - 1.507652
+ - -0.000314
+ - - 0.634728
+ - 0.5967
+ - 1.385345
+ - - -0.591312
+ - 0.568365
+ - -1.389496
+ - - -1.18058
+ - 1.539318
+ - -0.032009
+ - - -1.680006
+ - -0.509182
+ - 1.100528
+ - - -2.244687
+ - -0.729784
+ - -0.413177
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.187182876439353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.454578
+ - -0.554727
+ - -0.235103
+ - - 0.723618
+ - 0.58636
+ - 0.282154
+ - - -0.677849
+ - 0.596902
+ - -0.295387
+ - - -1.402284
+ - -0.594992
+ - 0.128747
+ - - 2.330194
+ - -0.683089
+ - 0.25456
+ - - 0.8909
+ - -1.38505
+ - -0.08841
+ - - 1.234711
+ - 1.508707
+ - -0.012686
+ - - 0.645217
+ - 0.605663
+ - 1.383962
+ - - -0.598419
+ - 0.571483
+ - -1.385863
+ - - -1.17548
+ - 1.538715
+ - -0.020939
+ - - -1.689228
+ - -0.512449
+ - 1.096623
+ - - -2.240327
+ - -0.728659
+ - -0.420785
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.2752050731880833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.464061
+ - -0.559041
+ - -0.246878
+ - - 0.730157
+ - 0.596799
+ - 0.285875
+ - - -0.680724
+ - 0.606319
+ - -0.299152
+ - - -1.403047
+ - -0.608371
+ - 0.131264
+ - - 2.338286
+ - -0.693858
+ - 0.258821
+ - - 0.888833
+ - -1.38782
+ - -0.085595
+ - - 1.248969
+ - 1.516576
+ - -0.011452
+ - - 0.654037
+ - 0.609185
+ - 1.390293
+ - - -0.605167
+ - 0.574796
+ - -1.391508
+ - - -1.188158
+ - 1.544383
+ - -0.020014
+ - - -1.705847
+ - -0.510899
+ - 1.100385
+ - - -2.245769
+ - -0.739205
+ - -0.425166
isotopes:
- 14
- 12
@@ -309,13 +1271,161 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.8445122483070975
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4566816205
+ - -0.55721054
+ - -0.2378641541
+ - - 0.7220187695
+ - 0.5878878419
+ - 0.2856307093
+ - - -0.6787614009
+ - 0.6016838034
+ - -0.2988580451
+ - - -1.4086680564
+ - -0.5922430049
+ - 0.1344081004
+ - - 2.3416550197
+ - -0.6749474385
+ - 0.2375676106
+ - - 0.9055134845
+ - -1.3936738663
+ - -0.0811777742
+ - - 1.237817083
+ - 1.506875187
+ - -0.0019009384
+ - - 0.6404762575
+ - 0.5939765515
+ - 1.384075191
+ - - -0.5971844656
+ - 0.5698676515
+ - -1.3868249282
+ - - -1.1777565366
+ - 1.5397044132
+ - -0.02656238
+ - - -1.7043215675
+ - -0.4992364357
+ - 1.0990017897
+ - - -2.2418384353
+ - -0.7338211192
+ - -0.4206221802
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.830891989522852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.460764
+ - -0.556073
+ - -0.232683
+ - - 0.722849
+ - 0.584965
+ - 0.283543
+ - - -0.679961
+ - 0.597522
+ - -0.298902
+ - - -1.412847
+ - -0.591293
+ - 0.128878
+ - - 2.339708
+ - -0.674846
+ - 0.250637
+ - - 0.906769
+ - -1.391508
+ - -0.087753
+ - - 1.234717
+ - 1.505739
+ - -0.008363
+ - - 0.642042
+ - 0.598608
+ - 1.383214
+ - - -0.599694
+ - 0.569655
+ - -1.387639
+ - - -1.175429
+ - 1.538534
+ - -0.024797
+ - - -1.691381
+ - -0.510467
+ - 1.098017
+ - - -2.251904
+ - -0.721971
+ - -0.417279
+ isotopes:
+ - 14
+ - 12
+ - 12
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - C
+ - C
+ - N
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -7.800763644033738
+ value: -7.800763644033734
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Ethylidene.yml b/input/reference_sets/main/Ethylidene.yml
index a7cb041586..89a9a54406 100644
--- a/input/reference_sets/main/Ethylidene.yml
+++ b/input/reference_sets/main/Ethylidene.yml
@@ -96,6 +96,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 87.18749223498149
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.840585
+ - 0.155071
+ - -0.000529
+ - - -0.611652
+ - -0.025417
+ - -0.000115
+ - - 1.679737
+ - -0.52332
+ - 0.000653
+ - - -0.956753
+ - -0.576548
+ - -0.883685
+ - - -1.123866
+ - 0.939075
+ - -0.001837
+ - - -0.956648
+ - -0.573334
+ - 0.885493
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.0308670001386
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.839151
+ - 0.150635
+ - -0.000522
+ - - -0.609834
+ - -0.025647
+ - -0.000114
+ - - 1.686365
+ - -0.519863
+ - 0.000646
+ - - -0.960433
+ - -0.576683
+ - -0.884875
+ - - -1.123521
+ - 0.940545
+ - -0.00184
+ - - -0.960326
+ - -0.573462
+ - 0.886687
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -140,6 +228,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.58906429650553
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.839884
+ - 0.147614
+ - -0.000518
+ - - -0.608014
+ - -0.026296
+ - -0.000113
+ - - 1.696787
+ - -0.517685
+ - 0.000641
+ - - -0.966046
+ - -0.577918
+ - -0.888799
+ - - -1.125271
+ - 0.944493
+ - -0.001848
+ - - -0.965938
+ - -0.57468
+ - 0.890618
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.65301706149121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.841308
+ - 0.14915
+ - -0.00052
+ - - -0.608487
+ - -0.026153
+ - -0.000113
+ - - 1.701198
+ - -0.518916
+ - 0.000643
+ - - -0.968043
+ - -0.580011
+ - -0.891467
+ - - -1.12664
+ - 0.94822
+ - -0.001855
+ - - -0.967935
+ - -0.576763
+ - 0.893294
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.29282241261937
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.836488
+ - 0.149497
+ - -0.00052
+ - - -0.610753
+ - -0.025801
+ - -0.000114
+ - - 1.684398
+ - -0.519267
+ - 0.000645
+ - - -0.958362
+ - -0.57597
+ - -0.883871
+ - - -1.122114
+ - 0.93982
+ - -0.001839
+ - - -0.958255
+ - -0.572752
+ - 0.88568
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.23888098056293
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.843347
+ - 0.153376
+ - -0.000534
+ - - -0.610586
+ - -0.025707
+ - -0.000116
+ - - 1.689309
+ - -0.521909
+ - 0.000657
+ - - -0.962491
+ - -0.577495
+ - -0.885964
+ - - -1.125799
+ - 0.941536
+ - -0.001839
+ - - -0.962377
+ - -0.574274
+ - 0.887776
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.18881655765286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.838531
+ - 0.146213
+ - -1.0e-06
+ - - -0.612811
+ - -0.025318
+ - 5.0e-06
+ - - 1.689103
+ - -0.51763
+ - 5.5e-05
+ - - -0.959694
+ - -0.575781
+ - -0.883564
+ - - -1.123505
+ - 0.940418
+ - -0.001998
+ - - -0.960222
+ - -0.572376
+ - 0.885484
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.59614331290209
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.838531
+ - 0.146213
+ - -1.0e-06
+ - - -0.612811
+ - -0.025318
+ - 5.0e-06
+ - - 1.689103
+ - -0.51763
+ - 5.5e-05
+ - - -0.959694
+ - -0.575781
+ - -0.883564
+ - - -1.123505
+ - 0.940418
+ - -0.001998
+ - - -0.960222
+ - -0.572376
+ - 0.885484
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.29560080195587
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.838531
+ - 0.146213
+ - -1.0e-06
+ - - -0.612811
+ - -0.025318
+ - 5.0e-06
+ - - 1.689103
+ - -0.51763
+ - 5.5e-05
+ - - -0.959694
+ - -0.575781
+ - -0.883564
+ - - -1.123505
+ - 0.940418
+ - -0.001998
+ - - -0.960222
+ - -0.572376
+ - 0.885484
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.0122948443491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.845356
+ - 0.155932
+ - -0.000542
+ - - -0.609368
+ - -0.0254
+ - -0.000117
+ - - 1.688704
+ - -0.523907
+ - 0.000666
+ - - -0.96291
+ - -0.578037
+ - -0.886211
+ - - -1.127588
+ - 0.941759
+ - -0.001837
+ - - -0.962792
+ - -0.574819
+ - 0.888022
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.76674137457442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.841113
+ - 0.156911
+ - -0.000533
+ - - -0.61194
+ - -0.026237
+ - -0.000113
+ - - 1.678049
+ - -0.523644
+ - 0.000653
+ - - -0.956682
+ - -0.57709
+ - -0.883334
+ - - -1.122562
+ - 0.939462
+ - -0.001838
+ - - -0.956576
+ - -0.573875
+ - 0.885146
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.27808622898671
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.837046
+ - 0.152106
+ - -0.00053
+ - - -0.608995
+ - -0.026019
+ - -0.000115
+ - - 1.683403
+ - -0.520602
+ - 0.000653
+ - - -0.958894
+ - -0.577009
+ - -0.884987
+ - - -1.122377
+ - 0.940841
+ - -0.001839
+ - - -0.958781
+ - -0.57379
+ - 0.886798
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.07250226382153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.843011
+ - 0.151036
+ - -0.000523
+ - - -0.613406
+ - -0.02639
+ - -0.000113
+ - - 1.696024
+ - -0.520127
+ - 0.000645
+ - - -0.964654
+ - -0.578462
+ - -0.888316
+ - - -1.125026
+ - 0.944696
+ - -0.001848
+ - - -0.964547
+ - -0.575227
+ - 0.890135
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -184,6 +756,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.6478896537232
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.8385305108
+ - 0.1462125936
+ - -1.4848e-06
+ - - -0.6128109178
+ - -0.0253179394
+ - 5.3562e-06
+ - - 1.6891031
+ - -0.5176296134
+ - 5.50131e-05
+ - - -0.9596936486
+ - -0.5757807033
+ - -0.8835642333
+ - - -1.123504696
+ - 0.9404184531
+ - -0.001997899
+ - - -0.9602223135
+ - -0.5723760615
+ - 0.885483891
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.33538681189832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.83931
+ - 0.154992
+ - -0.000528
+ - - -0.611525
+ - -0.024924
+ - -0.000116
+ - - 1.681014
+ - -0.524389
+ - 0.000654
+ - - -0.956083
+ - -0.576843
+ - -0.884752
+ - - -1.125336
+ - 0.940315
+ - -0.001839
+ - - -0.955978
+ - -0.573625
+ - 0.886561
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethylidyne.yml b/input/reference_sets/main/Ethylidyne.yml
index e393737256..f2cb9c8da5 100644
--- a/input/reference_sets/main/Ethylidyne.yml
+++ b/input/reference_sets/main/Ethylidyne.yml
@@ -85,6 +85,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 123.9018858596223
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.935941
+ - 1.0e-06
+ - -0.044981
+ - - 0.500798
+ - -0.0
+ - -0.018479
+ - - 0.56738
+ - -1.2e-05
+ - 1.094319
+ - - 1.005928
+ - -0.908411
+ - -0.36614
+ - - 1.00593
+ - 0.908418
+ - -0.366121
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.63494300835352
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.937452
+ - 1.0e-06
+ - -0.048502
+ - - 0.497061
+ - -0.0
+ - -0.016831
+ - - 0.572014
+ - -1.2e-05
+ - 1.096563
+ - - 1.006235
+ - -0.909016
+ - -0.366325
+ - - 1.006237
+ - 0.909023
+ - -0.366306
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -124,6 +202,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.23636289035176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.938346
+ - 1.0e-06
+ - -0.028579
+ - - 0.49626
+ - 1.0e-06
+ - -0.030712
+ - - 0.552112
+ - -1.3e-05
+ - 1.092196
+ - - 1.017034
+ - -0.914452
+ - -0.367162
+ - - 1.017035
+ - 0.914459
+ - -0.367145
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 122.60972490230498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.93086
+ - 1.0e-06
+ - -0.001211
+ - - 0.498706
+ - 0.0
+ - -0.047493
+ - - 0.521037
+ - -1.2e-05
+ - 1.086492
+ - - 1.027605
+ - -0.920097
+ - -0.369604
+ - - 1.027607
+ - 0.920103
+ - -0.369585
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.67436572284345
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.931118
+ - 1.0e-06
+ - -0.048727
+ - - 0.498914
+ - 0.0
+ - -0.015596
+ - - 0.570321
+ - -1.2e-05
+ - 1.095567
+ - - 1.002988
+ - -0.908686
+ - -0.366332
+ - - 1.00299
+ - 0.908693
+ - -0.366314
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.2939597846394
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.944853
+ - 1.0e-06
+ - -0.050278
+ - - 0.497482
+ - 0.0
+ - -0.015785
+ - - 0.575153
+ - -1.3e-05
+ - 1.097962
+ - - 1.008156
+ - -0.909732
+ - -0.366659
+ - - 1.008157
+ - 0.909739
+ - -0.366642
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 122.7621823424075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.929652
+ - 1.0e-06
+ - -0.036212
+ - - 0.500833
+ - 0.0
+ - -0.023507
+ - - 0.556857
+ - -1.2e-05
+ - 1.0917
+ - - 1.008028
+ - -0.910105
+ - -0.3667
+ - - 1.00803
+ - 0.910112
+ - -0.366682
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.0532957225794
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.929652
+ - 1.0e-06
+ - -0.036212
+ - - 0.500833
+ - 0.0
+ - -0.023507
+ - - 0.556857
+ - -1.2e-05
+ - 1.0917
+ - - 1.008028
+ - -0.910105
+ - -0.3667
+ - - 1.00803
+ - 0.910112
+ - -0.366682
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 119.58150330935491
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.929652
+ - 1.0e-06
+ - -0.036212
+ - - 0.500833
+ - 0.0
+ - -0.023507
+ - - 0.556857
+ - -1.2e-05
+ - 1.0917
+ - - 1.008028
+ - -0.910105
+ - -0.3667
+ - - 1.00803
+ - 0.910112
+ - -0.366682
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 120.07023486497677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.950316
+ - 1.0e-06
+ - -0.045426
+ - - 0.496394
+ - 0.0
+ - -0.018848
+ - - 0.571784
+ - -1.2e-05
+ - 1.096278
+ - - 1.013116
+ - -0.908374
+ - -0.366712
+ - - 1.013117
+ - 0.90838
+ - -0.366694
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.52288182848807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.935525
+ - 1.0e-06
+ - -0.042225
+ - - 0.502171
+ - -0.0
+ - -0.02
+ - - 0.564218
+ - -1.2e-05
+ - 1.093067
+ - - 1.006615
+ - -0.909256
+ - -0.366131
+ - - 1.006617
+ - 0.909262
+ - -0.366112
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 123.64390784008792
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.92658
+ - 1.0e-06
+ - -0.019833
+ - - 0.501097
+ - -0.0
+ - -0.034736
+ - - 0.540054
+ - -1.1e-05
+ - 1.085827
+ - - 1.014762
+ - -0.912931
+ - -0.36634
+ - - 1.014763
+ - 0.912936
+ - -0.36632
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 125.85859082298616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.941065
+ - 1.0e-06
+ - -0.027368
+ - - 0.499958
+ - 1.0e-06
+ - -0.030914
+ - - 0.550548
+ - -1.3e-05
+ - 1.091466
+ - - 1.017327
+ - -0.913366
+ - -0.367301
+ - - 1.017328
+ - 0.913372
+ - -0.367284
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -163,6 +670,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 118.633048156133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.929652233
+ - 5.357e-07
+ - -0.0362123409
+ - - 0.5008331565
+ - 4.195e-07
+ - -0.0235073132
+ - - 0.5568567009
+ - -1.24597e-05
+ - 1.091699997
+ - - 1.0080278444
+ - -0.9101051383
+ - -0.3666999612
+ - - 1.0080299139
+ - 0.9101118668
+ - -0.3666821116
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 121.43290307749854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.934725
+ - 1.0e-06
+ - -0.047055
+ - - 0.499619
+ - -0.0
+ - -0.016998
+ - - 0.569285
+ - -1.2e-05
+ - 1.095418
+ - - 1.004958
+ - -0.909503
+ - -0.366393
+ - - 1.004959
+ - 0.909509
+ - -0.366374
+ isotopes:
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Ethynol anion.yml b/input/reference_sets/main/Ethynol anion.yml
index 2cb48be67a..0e80167bb8 100644
--- a/input/reference_sets/main/Ethynol anion.yml
+++ b/input/reference_sets/main/Ethynol anion.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.1033789989152263
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.257965
+ - -0.121196
+ - 0.0
+ - - 0.004936
+ - 0.026838
+ - 0.0
+ - - -1.218374
+ - 0.009966
+ - 0.0
+ - - 2.14087
+ - 0.480443
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.983530442908904
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.253007
+ - -0.113895
+ - 0.0
+ - - 0.004567
+ - 0.023755
+ - 0.0
+ - - -1.215398
+ - 0.009475
+ - 0.0
+ - - 2.143221
+ - 0.476715
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.671157263760258
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.267123
+ - -0.15054
+ - 0.0
+ - - 0.008623
+ - 0.026982
+ - 0.0
+ - - -1.216205
+ - 0.020087
+ - 0.0
+ - - 2.125856
+ - 0.499521
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.068867439434235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.268258
+ - -0.149277
+ - 0.0
+ - - 0.006814
+ - 0.026013
+ - 0.0
+ - - -1.222093
+ - 0.019498
+ - 0.0
+ - - 2.132418
+ - 0.499816
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.120381273211551
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.238053
+ - -0.067117
+ - 0.0
+ - - -0.002688
+ - 0.022654
+ - 0.0
+ - - -1.220027
+ - -0.00654
+ - 0.0
+ - - 2.17006
+ - 0.447053
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.644697691848936
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.250851
+ - -0.103765
+ - 0.0
+ - - 0.002771
+ - 0.022983
+ - 0.0
+ - - -1.220662
+ - 0.005922
+ - 0.0
+ - - 2.152438
+ - 0.47091
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.277843302718246
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.252774
+ - -0.118556
+ - -0.0
+ - - 0.007131
+ - 0.019456
+ - 0.0
+ - - -1.212132
+ - 0.014207
+ - 0.0
+ - - 2.137624
+ - 0.480943
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.570142841086786
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.252774
+ - -0.118556
+ - -0.0
+ - - 0.007131
+ - 0.019456
+ - 0.0
+ - - -1.212132
+ - 0.014207
+ - 0.0
+ - - 2.137624
+ - 0.480943
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.706980727822211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.252774
+ - -0.118556
+ - -0.0
+ - - 0.007131
+ - 0.019456
+ - 0.0
+ - - -1.212132
+ - 0.014207
+ - 0.0
+ - - 2.137624
+ - 0.480943
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.609157723672832
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.26038
+ - -0.146433
+ - 0.0
+ - - 0.014119
+ - 0.021823
+ - 0.0
+ - - -1.207342
+ - 0.023066
+ - 0.0
+ - - 2.11824
+ - 0.497593
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.495536830467608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.22307
+ - 0.014551
+ - 0.0
+ - - -0.016374
+ - 0.029132
+ - 0.0
+ - - -1.236426
+ - -0.039391
+ - 0.0
+ - - 2.215127
+ - 0.391759
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.795505987153186
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.249993
+ - -0.108054
+ - 0.0
+ - - 0.001629
+ - 0.023421
+ - 0.0
+ - - -1.213832
+ - 0.007417
+ - 0.0
+ - - 2.147609
+ - 0.473266
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.080655184148321
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.268237
+ - -0.154332
+ - 0.0
+ - - 0.010404
+ - 0.028955
+ - 0.0
+ - - -1.216214
+ - 0.020285
+ - 0.0
+ - - 2.122971
+ - 0.501142
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.673929717479878
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2527743045
+ - -0.118555733
+ - -0.0
+ - - 0.0071312074
+ - 0.0194558112
+ - 0.0
+ - - -1.2121321701
+ - 0.0142070554
+ - 0.0
+ - - 2.1376242891
+ - 0.4809430877
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.198529518776888
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.247175
+ - -0.100849
+ - 0.0
+ - - 0.001671
+ - 0.021635
+ - 0.0
+ - - -1.213742
+ - 0.006162
+ - 0.0
+ - - 2.150294
+ - 0.469101
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluoroacetylene.yml b/input/reference_sets/main/Fluoroacetylene.yml
index 3bbee791a9..67a94544fe 100644
--- a/input/reference_sets/main/Fluoroacetylene.yml
+++ b/input/reference_sets/main/Fluoroacetylene.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.302317316273182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.290032
+ - - -0.0
+ - -0.0
+ - 0.092897
+ - - -0.0
+ - -0.0
+ - -1.185097
+ - - -0.0
+ - -0.0
+ - 2.350166
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.567150451740712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.287268
+ - - -0.0
+ - -0.0
+ - 0.094946
+ - - -0.0
+ - -0.0
+ - -1.182448
+ - - -0.0
+ - -0.0
+ - 2.348231
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.373687961019908
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.29176
+ - - -0.0
+ - -0.0
+ - 0.090568
+ - - -0.0
+ - -0.0
+ - -1.190948
+ - - -0.0
+ - -0.0
+ - 2.356617
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.24103472689205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.293263
+ - - -0.0
+ - -0.0
+ - 0.088493
+ - - -0.0
+ - -0.0
+ - -1.196257
+ - - -0.0
+ - -0.0
+ - 2.362499
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.722434661894063
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.283706
+ - - -0.0
+ - -0.0
+ - 0.096418
+ - - -0.0
+ - -0.0
+ - -1.177276
+ - - -0.0
+ - -0.0
+ - 2.34515
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.490323641452502
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.288162
+ - - 0.0
+ - 0.0
+ - 0.094935
+ - - 0.0
+ - 0.0
+ - -1.184095
+ - - 0.0
+ - 0.0
+ - 2.348996
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.67245926997518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 1.0e-05
+ - 1.286548
+ - - 0.0
+ - -3.0e-05
+ - 0.095819
+ - - 0.0
+ - 1.1e-05
+ - -1.182479
+ - - 1.0e-06
+ - 2.2e-05
+ - 2.34811
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.24518785868684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 1.0e-05
+ - 1.286548
+ - - 0.0
+ - -3.0e-05
+ - 0.095819
+ - - 0.0
+ - 1.1e-05
+ - -1.182479
+ - - 1.0e-06
+ - 2.2e-05
+ - 2.34811
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.04881008918962
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 1.0e-05
+ - 1.286548
+ - - 0.0
+ - -3.0e-05
+ - 0.095819
+ - - 0.0
+ - 1.1e-05
+ - -1.182479
+ - - 1.0e-06
+ - 2.2e-05
+ - 2.34811
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.917075330187437
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 1.285746
+ - - 0.0
+ - 0.0
+ - 0.091999
+ - - 0.0
+ - 0.0
+ - -1.179174
+ - - 0.0
+ - 0.0
+ - 2.346094
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.65977917300556
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.28483
+ - - -0.0
+ - -0.0
+ - 0.095343
+ - - -0.0
+ - -0.0
+ - -1.179016
+ - - -0.0
+ - -0.0
+ - 2.34684
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.85675625306079
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.284974
+ - - -0.0
+ - -0.0
+ - 0.092533
+ - - -0.0
+ - -0.0
+ - -1.177266
+ - - -0.0
+ - -0.0
+ - 2.347756
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.93606614632481
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.291938
+ - - -0.0
+ - -0.0
+ - 0.092088
+ - - -0.0
+ - -0.0
+ - -1.192089
+ - - -0.0
+ - -0.0
+ - 2.356061
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,13 +583,81 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.010077486581366
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.341e-07
+ - 1.0176e-05
+ - 1.2865480939
+ - - 4.52e-08
+ - -2.99339e-05
+ - 0.0958185941
+ - - 2.77e-08
+ - 1.06908e-05
+ - -1.1824789093
+ - - 8.839e-07
+ - 2.23298e-05
+ - 2.348110056
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.042612387408628
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 1.284098
+ - - -0.0
+ - -0.0
+ - 0.094055
+ - - -0.0
+ - -0.0
+ - -1.176339
+ - - -0.0
+ - -0.0
+ - 2.346184
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 29.989610947457916
+ value: 29.989610947457912
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Fluorobenzene.yml b/input/reference_sets/main/Fluorobenzene.yml
index 4a4ce8de5f..fde9bf45ae 100644
--- a/input/reference_sets/main/Fluorobenzene.yml
+++ b/input/reference_sets/main/Fluorobenzene.yml
@@ -161,54 +161,942 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.050175423052343
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.828065
+ - 3.0e-06
+ - -0.0
+ - - 1.130585
+ - 1.204136
+ - -0.0
+ - - -0.260764
+ - 1.21323
+ - -0.0
+ - - -0.926809
+ - -2.0e-06
+ - 0.0
+ - - -0.26076
+ - -1.213232
+ - 0.0
+ - - 1.13059
+ - -1.204133
+ - -0.0
+ - - -2.276126
+ - -5.0e-06
+ - 0.0
+ - - 2.909188
+ - 4.0e-06
+ - -0.0
+ - - 1.668084
+ - 2.142719
+ - -0.0
+ - - -0.825834
+ - 2.134457
+ - -0.0
+ - - -0.825826
+ - -2.134461
+ - 0.0
+ - - 1.668092
+ - -2.142715
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.341596569973861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.826984
+ - 3.0e-06
+ - 0.0
+ - - 1.130132
+ - 1.203256
+ - 0.0
+ - - -0.260117
+ - 1.21237
+ - 0.0
+ - - -0.926241
+ - -2.0e-06
+ - -0.0
+ - - -0.260112
+ - -1.212373
+ - -0.0
+ - - 1.130136
+ - -1.203254
+ - -0.0
+ - - -2.277291
+ - -5.0e-06
+ - -0.0
+ - - 2.908656
+ - 4.0e-06
+ - 0.0
+ - - 1.668112
+ - 2.142178
+ - 0.0
+ - - -0.824951
+ - 2.1343
+ - 0.0
+ - - -0.824943
+ - -2.134305
+ - -0.0
+ - - 1.668119
+ - -2.142173
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 31.608755595425958
+ value: 31.608755595425958
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8472668613
+ - -0.0004989134
+ - -0.0
+ - - 1.1432268594
+ - 1.2151834903
+ - 0.0
+ - - -0.2603548362
+ - 1.224465102
+ - 0.0
+ - - -0.9352479339
+ - 0.0004301512
+ - 0.0
+ - - -0.2612811867
+ - -1.223911534
+ - -0.0
+ - - 1.1421659059
+ - -1.215525308
+ - -0.0
+ - - -2.2994797425
+ - 0.0001516864
+ - -0.0
+ - - 2.9376533637
+ - -0.0016037532
+ - -0.0
+ - - 1.6841518002
+ - 2.1623646025
+ - 0.0
+ - - -0.831102512
+ - 2.1521538745
+ - 0.0
+ - - -0.8321476513
+ - -2.1516915518
+ - -0.0
+ - - 1.6821086635
+ - -2.163446279
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.49507199576449
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832888
+ - 3.0e-06
+ - 0.0
+ - - 1.133084
+ - 1.208026
+ - 0.0
+ - - -0.262832
+ - 1.217979
+ - -0.0
+ - - -0.932855
+ - -2.0e-06
+ - -0.0
+ - - -0.262827
+ - -1.217981
+ - -0.0
+ - - 1.133088
+ - -1.208023
+ - 0.0
+ - - -2.290384
+ - -5.0e-06
+ - -0.0
+ - - 2.919192
+ - 4.0e-06
+ - 0.0
+ - - 1.672914
+ - 2.151326
+ - 0.0
+ - - -0.828356
+ - 2.144664
+ - -0.0
+ - - -0.828349
+ - -2.144669
+ - -0.0
+ - - 1.672922
+ - -2.151322
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.607929833624862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.835333
+ - 3.0e-06
+ - 0.0
+ - - 1.134311
+ - 1.210452
+ - 0.0
+ - - -0.264196
+ - 1.220448
+ - -0.0
+ - - -0.934548
+ - -2.0e-06
+ - -0.0
+ - - -0.264191
+ - -1.22045
+ - -0.0
+ - - 1.134315
+ - -1.210449
+ - 0.0
+ - - -2.295222
+ - -5.0e-06
+ - -0.0
+ - - 2.926436
+ - 5.0e-06
+ - 0.0
+ - - 1.676678
+ - 2.157853
+ - 0.0
+ - - -0.833562
+ - 2.150613
+ - -0.0
+ - - -0.833555
+ - -2.150617
+ - -0.0
+ - - 1.676686
+ - -2.157848
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.886564221099146
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.821474
+ - 3.0e-06
+ - -0.0
+ - - 1.127107
+ - 1.198929
+ - -0.0
+ - - -0.257936
+ - 1.208008
+ - -0.0
+ - - -0.921081
+ - -2.0e-06
+ - 0.0
+ - - -0.257932
+ - -1.208011
+ - -0.0
+ - - 1.127112
+ - -1.198927
+ - -0.0
+ - - -2.265879
+ - -5.0e-06
+ - 0.0
+ - - 2.902834
+ - 4.0e-06
+ - -0.0
+ - - 1.665375
+ - 2.137346
+ - -0.0
+ - - -0.823989
+ - 2.128931
+ - -0.0
+ - - -0.823981
+ - -2.128935
+ - -0.0
+ - - 1.665382
+ - -2.137341
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.387760564861352
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.831107
+ - 3.0e-06
+ - -0.0
+ - - 1.132306
+ - 1.206212
+ - -0.0
+ - - -0.261125
+ - 1.214542
+ - -0.0
+ - - -0.930582
+ - -2.0e-06
+ - -0.0
+ - - -0.26112
+ - -1.214544
+ - -0.0
+ - - 1.13231
+ - -1.20621
+ - -0.0
+ - - -2.283342
+ - -5.0e-06
+ - -0.0
+ - - 2.914585
+ - 5.0e-06
+ - -0.0
+ - - 1.670672
+ - 2.14695
+ - -0.0
+ - - -0.828507
+ - 2.136864
+ - -0.0
+ - - -0.8285
+ - -2.136868
+ - -0.0
+ - - 1.67068
+ - -2.146946
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.936700628942766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.823959
+ - 3.0e-06
+ - 0.0
+ - - 1.128515
+ - 1.201284
+ - 0.0
+ - - -0.258988
+ - 1.210913
+ - 0.0
+ - - -0.921631
+ - -2.0e-06
+ - 0.0
+ - - -0.258985
+ - -1.210915
+ - 0.0
+ - - 1.128518
+ - -1.201282
+ - 0.0
+ - - -2.270677
+ - -0.0
+ - 0.0
+ - - 2.905764
+ - 4.0e-06
+ - 0.0
+ - - 1.667443
+ - 2.139654
+ - 0.0
+ - - -0.826448
+ - 2.13137
+ - 0.0
+ - - -0.826436
+ - -2.131379
+ - 0.0
+ - - 1.667453
+ - -2.139649
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.84146289344771
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.823959
+ - 3.0e-06
+ - 0.0
+ - - 1.128515
+ - 1.201284
+ - 0.0
+ - - -0.258988
+ - 1.210913
+ - 0.0
+ - - -0.921631
+ - -2.0e-06
+ - 0.0
+ - - -0.258985
+ - -1.210915
+ - 0.0
+ - - 1.128518
+ - -1.201282
+ - 0.0
+ - - -2.270677
+ - -0.0
+ - 0.0
+ - - 2.905764
+ - 4.0e-06
+ - 0.0
+ - - 1.667443
+ - 2.139654
+ - 0.0
+ - - -0.826448
+ - 2.13137
+ - 0.0
+ - - -0.826436
+ - -2.131379
+ - 0.0
+ - - 1.667453
+ - -2.139649
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.41237866684857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.830388
+ - 3.0e-06
+ - 0.0
+ - - 1.131246
+ - 1.205486
+ - 0.0
+ - - -0.261633
+ - 1.214017
+ - 0.0
+ - - -0.934658
+ - -2.0e-06
+ - 0.0
+ - - -0.261628
+ - -1.214019
+ - 0.0
+ - - 1.13125
+ - -1.205484
+ - 0.0
+ - - -2.273089
+ - -5.0e-06
+ - 0.0
+ - - 2.914601
+ - 4.0e-06
+ - 0.0
+ - - 1.669668
+ - 2.14724
+ - 0.0
+ - - -0.828671
+ - 2.137402
+ - 0.0
+ - - -0.828663
+ - -2.137407
+ - 0.0
+ - - 1.669675
+ - -2.147235
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.496552728667705
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.8472668613
- - -0.0004989134
+ - - 1.824406
+ - 3.0e-06
+ - 0.0
+ - - 1.128663
+ - 1.201545
+ - 0.0
+ - - -0.259168
+ - 1.210814
+ - 0.0
+ - - -0.923982
+ - -2.0e-06
- -0.0
- - - 1.1432268594
- - 1.2151834903
+ - - -0.259164
+ - -1.210817
+ - -0.0
+ - - 1.128667
+ - -1.201543
- 0.0
- - - -0.2603548362
- - 1.224465102
+ - - -2.265817
+ - -5.0e-06
+ - -0.0
+ - - 2.905931
+ - 4.0e-06
- 0.0
- - - -0.9352479339
- - 0.0004301512
+ - - 1.666849
+ - 2.140257
- 0.0
- - - -0.2612811867
- - -1.223911534
+ - - -0.827382
+ - 2.130808
- -0.0
- - - 1.1421659059
- - -1.215525308
+ - - -0.827374
+ - -2.130813
- -0.0
- - - -2.2994797425
- - 0.0001516864
+ - - 1.666857
+ - -2.140253
- -0.0
- - - 2.9376533637
- - -0.0016037532
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.410735407761464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.823772
+ - 3.0e-06
+ - 0.0
+ - - 1.127842
+ - 1.200511
+ - 0.0
+ - - -0.259368
+ - 1.209877
+ - 0.0
+ - - -0.926101
+ - -2.0e-06
- -0.0
- - - 1.6841518002
- - 2.1623646025
+ - - -0.259363
+ - -1.209879
+ - -0.0
+ - - 1.127846
+ - -1.200508
- 0.0
- - - -0.831102512
- - 2.1521538745
+ - - -2.265891
+ - -5.0e-06
+ - -0.0
+ - - 2.907133
+ - 4.0e-06
- 0.0
- - - -0.8321476513
- - -2.1516915518
+ - - 1.666473
+ - 2.141113
+ - 0.0
+ - - -0.825174
+ - 2.133326
- -0.0
- - - 1.6821086635
- - -2.163446279
+ - - -0.825166
+ - -2.13333
+ - -0.0
+ - - 1.666481
+ - -2.141109
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.862864293432537
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.832616
+ - 3.0e-06
+ - 0.0
+ - - 1.13311
+ - 1.208273
+ - 0.0
+ - - -0.262863
+ - 1.218641
+ - -0.0
+ - - -0.929815
+ - -2.0e-06
+ - -0.0
+ - - -0.262859
+ - -1.218644
+ - -0.0
+ - - 1.133115
+ - -1.208271
+ - 0.0
+ - - -2.290979
+ - -5.0e-06
+ - -0.0
+ - - 2.918583
+ - 4.0e-06
+ - 0.0
+ - - 1.673002
+ - 2.151104
+ - 0.0
+ - - -0.829222
+ - 2.144387
- -0.0
+ - - -0.829214
+ - -2.144392
+ - -0.0
+ - - 1.67301
+ - -2.1511
+ - 0.0
isotopes:
- 12
- 12
@@ -309,6 +1197,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.13457042502785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.8239588795
+ - 2.786e-06
+ - 0.0
+ - - 1.1285148646
+ - 1.2012836915
+ - 0.0
+ - - -0.2589880512
+ - 1.2109129864
+ - 0.0
+ - - -0.9216314357
+ - -2.1989e-06
+ - 0.0
+ - - -0.2589854051
+ - -1.2109154257
+ - 0.0
+ - - 1.128517746
+ - -1.2012817308
+ - 0.0
+ - - -2.270677204
+ - -3.55e-08
+ - 0.0
+ - - 2.9057635912
+ - 3.6366e-06
+ - 0.0
+ - - 1.6674434771
+ - 2.1396541668
+ - 0.0
+ - - -0.8264484929
+ - 2.1313698765
+ - 0.0
+ - - -0.8264360389
+ - -2.1313786607
+ - 0.0
+ - - 1.6674527115
+ - -2.1396493507
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.612345415138957
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.823186
+ - 3.0e-06
+ - 0.0
+ - - 1.127561
+ - 1.20018
+ - 0.0
+ - - -0.259137
+ - 1.209645
+ - 0.0
+ - - -0.925541
+ - -2.0e-06
+ - -0.0
+ - - -0.259133
+ - -1.209647
+ - -0.0
+ - - 1.127565
+ - -1.200177
+ - -0.0
+ - - -2.266495
+ - -5.0e-06
+ - -0.0
+ - - 2.905135
+ - 4.0e-06
+ - 0.0
+ - - 1.665721
+ - 2.139409
+ - 0.0
+ - - -0.823057
+ - 2.132603
+ - 0.0
+ - - -0.82305
+ - -2.132607
+ - -0.0
+ - - 1.665729
+ - -2.139405
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluorodioxidanyl.yml b/input/reference_sets/main/Fluorodioxidanyl.yml
index 203a61a77c..e0ea942a8d 100644
--- a/input/reference_sets/main/Fluorodioxidanyl.yml
+++ b/input/reference_sets/main/Fluorodioxidanyl.yml
@@ -63,6 +63,64 @@ calculated_data:
- F
- O
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.841588860531392
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.133056
+ - -0.158227
+ - 0.0
+ - - -0.196728
+ - 0.500955
+ - -0.0
+ - - -1.082412
+ - -0.32122
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.80848614524805
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.214743
+ - -0.176876
+ - 0.0
+ - - -0.250963
+ - 0.509251
+ - 0.0
+ - - -1.109864
+ - -0.310868
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- F
- O
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.452751323842053
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.246078
+ - -0.178427
+ - 0.0
+ - - -0.261884
+ - 0.508031
+ - 0.0
+ - - -1.130278
+ - -0.308097
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.315458144212828
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.237365
+ - -0.176274
+ - 0.0
+ - - -0.25307
+ - 0.509393
+ - 0.0
+ - - -1.130379
+ - -0.311612
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.104320927652176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.181697
+ - -0.173477
+ - 0.0
+ - - -0.237154
+ - 0.508015
+ - 0.0
+ - - -1.090627
+ - -0.31303
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.702838214266464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.329528
+ - -0.198988
+ - 0.0
+ - - -0.315424
+ - 0.525565
+ - 0.0
+ - - -1.160188
+ - -0.305069
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.206502994461546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168675
+ - -0.172059
+ - 0.0
+ - - -0.229315
+ - 0.509646
+ - -0.0
+ - - -1.085445
+ - -0.316079
+ - 0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.139043960010016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168675
+ - -0.172059
+ - 0.0
+ - - -0.229315
+ - 0.509646
+ - -0.0
+ - - -1.085445
+ - -0.316079
+ - 0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.404043839573307
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.168675
+ - -0.172059
+ - 0.0
+ - - -0.229315
+ - 0.509646
+ - -0.0
+ - - -1.085445
+ - -0.316079
+ - 0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 6.114056478440634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.181205
+ - -0.169656
+ - 0.0
+ - - -0.226571
+ - 0.508073
+ - 0.0
+ - - -1.100719
+ - -0.31691
+ - 0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.443621642449534
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.143873
+ - -0.166038
+ - 0.0
+ - - -0.214452
+ - 0.504139
+ - -0.0
+ - - -1.075505
+ - -0.316594
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.423591278727197
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.184115
+ - -0.171671
+ - 0.0
+ - - -0.23721
+ - 0.503609
+ - 0.0
+ - - -1.09299
+ - -0.310431
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.171493259419249
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.232837
+ - -0.175756
+ - 0.0
+ - - -0.25104
+ - 0.509231
+ - 0.0
+ - - -1.127881
+ - -0.311968
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- F
- O
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.726138456368668
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1686754738
+ - -0.1720594637
+ - 0.0
+ - - -0.2293151158
+ - 0.5096459993
+ - -0.0
+ - - -1.0854447922
+ - -0.3160791027
+ - 0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.827173622029103
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.184173
+ - -0.172901
+ - 0.0
+ - - -0.237892
+ - 0.506205
+ - 0.0
+ - - -1.092366
+ - -0.311796
+ - -0.0
+ isotopes:
+ - 19
+ - 16
+ - 16
+ symbols:
+ - F
+ - O
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluoroethane.yml b/input/reference_sets/main/Fluoroethane.yml
index d1ec30ed2e..3ccbaa17a1 100644
--- a/input/reference_sets/main/Fluoroethane.yml
+++ b/input/reference_sets/main/Fluoroethane.yml
@@ -117,6 +117,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.87163473070891
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189498
+ - -0.222932
+ - -0.0
+ - - -0.106141
+ - 0.548211
+ - -0.0
+ - - -1.185002
+ - -0.33965
+ - 6.0e-06
+ - - 2.032642
+ - 0.469675
+ - -5.0e-06
+ - - 1.261104
+ - -0.853663
+ - -0.885178
+ - - 1.261109
+ - -0.853655
+ - 0.885182
+ - - -0.204691
+ - 1.173747
+ - 0.888121
+ - - -0.204695
+ - 1.17374
+ - -0.888126
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.37995854695149
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.190086
+ - -0.223433
+ - -0.0
+ - - -0.106874
+ - 0.548089
+ - -0.0
+ - - -1.189378
+ - -0.339254
+ - 6.0e-06
+ - - 2.034157
+ - 0.4701
+ - -5.0e-06
+ - - 1.263433
+ - -0.855062
+ - -0.886111
+ - - 1.263438
+ - -0.855055
+ - 0.886115
+ - - -0.205516
+ - 1.175048
+ - 0.889177
+ - - -0.20552
+ - 1.175041
+ - -0.889182
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -171,6 +279,600 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.06430567982424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.192247
+ - -0.225799
+ - -0.0
+ - - -0.109247
+ - 0.547949
+ - -0.0
+ - - -1.201104
+ - -0.339477
+ - 6.0e-06
+ - - 2.037298
+ - 0.473554
+ - -5.0e-06
+ - - 1.268562
+ - -0.85896
+ - -0.889887
+ - - 1.268565
+ - -0.858953
+ - 0.889891
+ - - -0.206245
+ - 1.178584
+ - 0.89349
+ - - -0.20625
+ - 1.178576
+ - -0.893495
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -60.2709536452101
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.192149
+ - -0.225502
+ - -0.0
+ - - -0.109258
+ - 0.548767
+ - -0.0
+ - - -1.202115
+ - -0.342678
+ - 7.0e-06
+ - - 2.04274
+ - 0.473905
+ - -5.0e-06
+ - - 1.268922
+ - -0.861699
+ - -0.893138
+ - - 1.268925
+ - -0.861693
+ - 0.893141
+ - - -0.208766
+ - 1.182191
+ - 0.896785
+ - - -0.208771
+ - 1.182183
+ - -0.896791
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.03789931901221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.187469
+ - -0.221843
+ - -0.0
+ - - -0.105549
+ - 0.546455
+ - -0.0
+ - - -1.179397
+ - -0.338649
+ - 6.0e-06
+ - - 2.03148
+ - 0.469805
+ - -5.0e-06
+ - - 1.25937
+ - -0.85326
+ - -0.885143
+ - - 1.259374
+ - -0.853253
+ - 0.885147
+ - - -0.204458
+ - 1.173113
+ - 0.888241
+ - - -0.204463
+ - 1.173106
+ - -0.888246
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.01624932723553
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.191317
+ - -0.22165
+ - -0.0
+ - - -0.110696
+ - 0.549507
+ - -0.0
+ - - -1.188939
+ - -0.34385
+ - 6.0e-06
+ - - 2.040702
+ - 0.467935
+ - -5.0e-06
+ - - 1.262523
+ - -0.856149
+ - -0.886178
+ - - 1.262528
+ - -0.856142
+ - 0.886182
+ - - -0.206803
+ - 1.177915
+ - 0.89038
+ - - -0.206807
+ - 1.177908
+ - -0.890385
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.92823767146987
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189314
+ - -0.223178
+ - 0.0
+ - - -0.10542
+ - 0.547749
+ - 0.0
+ - - -1.182912
+ - -0.339791
+ - -0.0
+ - - 2.031966
+ - 0.470041
+ - -1.1e-05
+ - - 1.260372
+ - -0.853835
+ - -0.885671
+ - - 1.260384
+ - -0.85382
+ - 0.885681
+ - - -0.20494
+ - 1.174154
+ - 0.888079
+ - - -0.204939
+ - 1.174154
+ - -0.888079
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.93969318142715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189314
+ - -0.223178
+ - 0.0
+ - - -0.10542
+ - 0.547749
+ - 0.0
+ - - -1.182912
+ - -0.339791
+ - -0.0
+ - - 2.031966
+ - 0.470041
+ - -1.1e-05
+ - - 1.260372
+ - -0.853835
+ - -0.885671
+ - - 1.260384
+ - -0.85382
+ - 0.885681
+ - - -0.20494
+ - 1.174154
+ - 0.888079
+ - - -0.204939
+ - 1.174154
+ - -0.888079
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.88183877024738
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189314
+ - -0.223178
+ - 0.0
+ - - -0.10542
+ - 0.547749
+ - 0.0
+ - - -1.182912
+ - -0.339791
+ - -0.0
+ - - 2.031966
+ - 0.470041
+ - -1.1e-05
+ - - 1.260372
+ - -0.853835
+ - -0.885671
+ - - 1.260384
+ - -0.85382
+ - 0.885681
+ - - -0.20494
+ - 1.174154
+ - 0.888079
+ - - -0.204939
+ - 1.174154
+ - -0.888079
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.37814920865728
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.190102
+ - -0.223781
+ - 0.0
+ - - -0.119192
+ - 0.542322
+ - 0.0
+ - - -1.18326
+ - -0.339487
+ - 6.0e-06
+ - - 2.035391
+ - 0.471918
+ - -5.0e-06
+ - - 1.264759
+ - -0.858833
+ - -0.887377
+ - - 1.264763
+ - -0.858825
+ - 0.887381
+ - - -0.204367
+ - 1.181084
+ - 0.888669
+ - - -0.204372
+ - 1.181077
+ - -0.888675
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -68.15105898281848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.189255
+ - -0.222181
+ - -0.0
+ - - -0.107847
+ - 0.546697
+ - -0.0
+ - - -1.174338
+ - -0.338784
+ - 6.0e-06
+ - - 2.032595
+ - 0.469506
+ - -5.0e-06
+ - - 1.257383
+ - -0.853415
+ - -0.885465
+ - - 1.257387
+ - -0.853409
+ - 0.885468
+ - - -0.205302
+ - 1.173534
+ - 0.888319
+ - - -0.205307
+ - 1.173526
+ - -0.888324
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.73991887623595
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.18609
+ - -0.22259
+ - -0.0
+ - - -0.108443
+ - 0.542749
+ - -0.0
+ - - -1.180779
+ - -0.335465
+ - 6.0e-06
+ - - 2.029382
+ - 0.47274
+ - -5.0e-06
+ - - 1.261824
+ - -0.85486
+ - -0.886569
+ - - 1.261829
+ - -0.854853
+ - 0.886573
+ - - -0.203037
+ - 1.17388
+ - 0.888988
+ - - -0.203041
+ - 1.173872
+ - -0.888993
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -57.3280723239063
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.193643
+ - -0.225456
+ - -0.0
+ - - -0.106149
+ - 0.55258
+ - -0.0
+ - - -1.196987
+ - -0.342389
+ - 7.0e-06
+ - - 2.040917
+ - 0.470538
+ - -5.0e-06
+ - - 1.265679
+ - -0.858284
+ - -0.889692
+ - - 1.265682
+ - -0.858277
+ - 0.889696
+ - - -0.209477
+ - 1.178384
+ - 0.893934
+ - - -0.209482
+ - 1.178377
+ - -0.89394
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -225,6 +927,114 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -66.55079781079115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1893143134
+ - -0.2231781463
+ - 1.073e-07
+ - - -0.1054203043
+ - 0.5477485097
+ - 1.387e-07
+ - - -1.1829119402
+ - -0.3397906554
+ - -3.56e-08
+ - - 2.0319664702
+ - 0.4700412254
+ - -1.1298e-05
+ - - 1.2603724298
+ - -0.8538353248
+ - -0.8856706385
+ - - 1.2603836867
+ - -0.8538204139
+ - 0.8856805572
+ - - -0.2049398856
+ - 1.1741540538
+ - 0.8880790846
+ - - -0.2049392941
+ - 1.174154178
+ - -0.8880788611
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.45391924600142
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.188339
+ - -0.223739
+ - -0.0
+ - - -0.109289
+ - 0.544137
+ - -0.0
+ - - -1.183663
+ - -0.334752
+ - 6.0e-06
+ - - 2.029098
+ - 0.472749
+ - -5.0e-06
+ - - 1.262702
+ - -0.854678
+ - -0.886149
+ - - 1.262706
+ - -0.854671
+ - 0.886153
+ - - -0.203032
+ - 1.173217
+ - 0.888716
+ - - -0.203036
+ - 1.17321
+ - -0.888721
+ isotopes:
+ - 12
+ - 12
+ - 19
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - F
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluoroform.yml b/input/reference_sets/main/Fluoroform.yml
index abbdfe8a52..59b5ffdf37 100644
--- a/input/reference_sets/main/Fluoroform.yml
+++ b/input/reference_sets/main/Fluoroform.yml
@@ -51,7 +51,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -168.24311913882792
+ value: -168.2431191388278
class: ThermoData
xyz_dict:
coords:
@@ -84,6 +84,84 @@ calculated_data:
- F
- F
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -166.05187325072723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.9e-05
+ - 2.6e-05
+ - -0.339658
+ - - 0.592694
+ - -1.103884
+ - 0.127461
+ - - -1.252354
+ - 0.038661
+ - 0.127598
+ - - 0.659642
+ - 1.065241
+ - 0.12755
+ - - -7.4e-05
+ - 6.9e-05
+ - -1.427416
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -163.76367658664313
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.0e-05
+ - 2.7e-05
+ - -0.339538
+ - - 0.594098
+ - -1.106506
+ - 0.128216
+ - - -1.255323
+ - 0.038753
+ - 0.128348
+ - - 0.661204
+ - 1.067769
+ - 0.128304
+ - - -8.0e-05
+ - 7.0e-05
+ - -1.429795
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- F
- F
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -158.96604821124788
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.8e-05
+ - 2.1e-05
+ - -0.338725
+ - - 0.598498
+ - -1.114691
+ - 0.129612
+ - - -1.264607
+ - 0.039044
+ - 0.129745
+ - - 0.666098
+ - 1.075672
+ - 0.129708
+ - - -8.1e-05
+ - 6.7e-05
+ - -1.434806
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -158.58413150455758
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.6e-05
+ - 2.3e-05
+ - -0.339729
+ - - 0.599705
+ - -1.116938
+ - 0.131841
+ - - -1.267158
+ - 0.039122
+ - 0.131973
+ - - 0.667441
+ - 1.077837
+ - 0.131935
+ - - -8.2e-05
+ - 6.8e-05
+ - -1.440487
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -170.61102677523513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.6e-05
+ - 2.7e-05
+ - -0.339018
+ - - 0.590814
+ - -1.100385
+ - 0.127754
+ - - -1.248381
+ - 0.038538
+ - 0.127887
+ - - 0.657553
+ - 1.061868
+ - 0.127849
+ - - -8.1e-05
+ - 6.5e-05
+ - -1.428937
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -168.77223533446204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.7e-05
+ - 2.8e-05
+ - -0.339736
+ - - 0.594749
+ - -1.107714
+ - 0.128354
+ - - -1.256697
+ - 0.038795
+ - 0.12849
+ - - 0.661932
+ - 1.068939
+ - 0.128449
+ - - -7.8e-05
+ - 6.5e-05
+ - -1.430022
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -163.81325891593636
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.0e-05
+ - 6.0e-06
+ - -0.340416
+ - - 0.592294
+ - -1.103042
+ - 0.128586
+ - - -1.251445
+ - 0.038618
+ - 0.128626
+ - - 0.659197
+ - 1.064406
+ - 0.128607
+ - - -0.000117
+ - 0.000124
+ - -1.429868
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -166.1953089686359
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.0e-05
+ - 6.0e-06
+ - -0.340416
+ - - 0.592294
+ - -1.103042
+ - 0.128586
+ - - -1.251445
+ - 0.038618
+ - 0.128626
+ - - 0.659197
+ - 1.064406
+ - 0.128607
+ - - -0.000117
+ - 0.000124
+ - -1.429868
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -168.35846240774083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -5.0e-05
+ - 6.0e-06
+ - -0.340416
+ - - 0.592294
+ - -1.103042
+ - 0.128586
+ - - -1.251445
+ - 0.038618
+ - 0.128626
+ - - 0.659197
+ - 1.064406
+ - 0.128607
+ - - -0.000117
+ - 0.000124
+ - -1.429868
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -166.48403914086498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.7e-05
+ - 2.4e-05
+ - -0.336017
+ - - 0.591476
+ - -1.101617
+ - 0.127589
+ - - -1.249779
+ - 0.038579
+ - 0.127716
+ - - 0.658288
+ - 1.063051
+ - 0.127669
+ - - -7.9e-05
+ - 7.6e-05
+ - -1.431422
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -176.09828897666003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 4.0e-06
+ - 1.9e-05
+ - -0.33913
+ - - 0.589413
+ - -1.097797
+ - 0.127638
+ - - -1.245415
+ - 0.038457
+ - 0.127754
+ - - 0.65598
+ - 1.059367
+ - 0.127734
+ - - -0.000103
+ - 6.7e-05
+ - -1.428461
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -169.15225900875026
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -3.0e-05
+ - 2.2e-05
+ - -0.336872
+ - - 0.590304
+ - -1.099436
+ - 0.12722
+ - - -1.247302
+ - 0.038507
+ - 0.127357
+ - - 0.656981
+ - 1.060948
+ - 0.127307
+ - - -7.3e-05
+ - 7.2e-05
+ - -1.429477
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -155.91537835812684
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.8e-05
+ - 3.0e-05
+ - -0.342444
+ - - 0.598235
+ - -1.11422
+ - 0.131017
+ - - -1.264073
+ - 0.039017
+ - 0.131157
+ - - 0.665818
+ - 1.075217
+ - 0.131106
+ - - -7.3e-05
+ - 6.9e-05
+ - -1.435301
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,13 +669,91 @@ calculated_data:
- F
- F
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -170.1829978382442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -4.96197e-05
+ - 6.0686e-06
+ - -0.3404162589
+ - - 0.5922936992
+ - -1.1030419345
+ - 0.1285860954
+ - - -1.2514445101
+ - 0.0386180764
+ - 0.1286255866
+ - - 0.6591969384
+ - 1.0644059891
+ - 0.1286066845
+ - - -0.0001174294
+ - 0.000124409
+ - -1.4298677447
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -168.7718899856866
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.6e-05
+ - 2.0e-05
+ - -0.337147
+ - - 0.590733
+ - -1.100246
+ - 0.127072
+ - - -1.248221
+ - 0.038531
+ - 0.127208
+ - - 0.657466
+ - 1.061734
+ - 0.127156
+ - - -7.3e-05
+ - 7.4e-05
+ - -1.428755
+ isotopes:
+ - 12
+ - 19
+ - 19
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - F
+ - F
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -169.3698321446074
+ value: -169.36983214460736
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Fluoroformyl.yml b/input/reference_sets/main/Fluoroformyl.yml
index aed5ac8d88..24419dd3a8 100644
--- a/input/reference_sets/main/Fluoroformyl.yml
+++ b/input/reference_sets/main/Fluoroformyl.yml
@@ -63,6 +63,64 @@ calculated_data:
- F
- C
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.905803706255746
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.100195
+ - -0.121499
+ - 0.0
+ - - -0.122971
+ - 0.4028
+ - -0.0
+ - - -1.145333
+ - -0.165323
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.9960966986969
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.09955
+ - -0.121921
+ - 0.0
+ - - -0.124712
+ - 0.402728
+ - -0.0
+ - - -1.142946
+ - -0.164829
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- F
- C
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.06435565585981
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.109694
+ - -0.123918
+ - 0.0
+ - - -0.126296
+ - 0.406669
+ - 0.0
+ - - -1.151506
+ - -0.166773
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.47808527321852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.111819
+ - -0.123939
+ - 0.0
+ - - -0.125704
+ - 0.407137
+ - 0.0
+ - - -1.154223
+ - -0.167219
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.09923069110714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.092914
+ - -0.120567
+ - 0.0
+ - - -0.123173
+ - 0.400327
+ - -0.0
+ - - -1.13785
+ - -0.163782
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.67104485927824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.101722
+ - -0.123606
+ - 0.0
+ - - -0.126125
+ - 0.405741
+ - 0.0
+ - - -1.143705
+ - -0.166156
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.78988235803328
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0961
+ - -0.12199
+ - -0.0
+ - - -0.124383
+ - 0.402919
+ - 0.0
+ - - -1.139825
+ - -0.16495
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.15971087745984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0961
+ - -0.12199
+ - -0.0
+ - - -0.124383
+ - 0.402919
+ - 0.0
+ - - -1.139825
+ - -0.16495
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.89426195943862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0961
+ - -0.12199
+ - -0.0
+ - - -0.124383
+ - 0.402919
+ - 0.0
+ - - -1.139825
+ - -0.16495
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.9691863592376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.095853
+ - -0.120466
+ - 0.0
+ - - -0.119341
+ - 0.402371
+ - 0.0
+ - - -1.14462
+ - -0.165927
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.05742760942539
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.090065
+ - -0.120309
+ - 0.0
+ - - -0.122125
+ - 0.400225
+ - -0.0
+ - - -1.136048
+ - -0.163937
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.92599446826249
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.091918
+ - -0.119348
+ - 0.0
+ - - -0.120677
+ - 0.398998
+ - -0.0
+ - - -1.13935
+ - -0.163671
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.765096542220505
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.109522
+ - -0.124235
+ - 0.0
+ - - -0.125912
+ - 0.407575
+ - 0.0
+ - - -1.151718
+ - -0.167361
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- F
- C
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.582771548239776
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0961001352
+ - -0.1219899955
+ - -0.0
+ - - -0.1243830418
+ - 0.402918809
+ - 0.0
+ - - -1.1398253707
+ - -0.1649503617
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.18444894031044
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.092189
+ - -0.120428
+ - 0.0
+ - - -0.121789
+ - 0.400764
+ - -0.0
+ - - -1.138509
+ - -0.164358
+ - -0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ symbols:
+ - F
+ - C
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluoromethylene.yml b/input/reference_sets/main/Fluoromethylene.yml
index 0bf4e0e6ca..649528060f 100644
--- a/input/reference_sets/main/Fluoromethylene.yml
+++ b/input/reference_sets/main/Fluoromethylene.yml
@@ -63,6 +63,64 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.13395688218003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6997
+ - 0.18616
+ - -0.0
+ - - -0.59211
+ - -0.029347
+ - 0.0
+ - - 1.115129
+ - -0.853023
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.09976015886349
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.696212
+ - 0.179726
+ - -0.0
+ - - -0.59935
+ - -0.022148
+ - 0.0
+ - - 1.125858
+ - -0.853789
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.180074234234404
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.702531
+ - 0.19488
+ - -0.0
+ - - -0.599592
+ - -0.029584
+ - 0.0
+ - - 1.119781
+ - -0.861505
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 39.84494382832534
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.702477
+ - 0.196879
+ - -0.0
+ - - -0.600884
+ - -0.029413
+ - 0.0
+ - - 1.121128
+ - -0.863676
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.50738922033245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.69587
+ - 0.185856
+ - -0.0
+ - - -0.587836
+ - -0.028995
+ - 0.0
+ - - 1.114686
+ - -0.853071
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.4693348155225
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.700956
+ - 0.190968
+ - -0.0
+ - - -0.593414
+ - -0.030655
+ - 0.0
+ - - 1.115178
+ - -0.856523
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.58040708062447
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.698924
+ - 0.18807
+ - -0.0
+ - - -0.589668
+ - -0.030517
+ - -0.0
+ - - 1.113463
+ - -0.853762
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.237399739953666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.698924
+ - 0.18807
+ - -0.0
+ - - -0.589668
+ - -0.030517
+ - -0.0
+ - - 1.113463
+ - -0.853762
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.58762615028529
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.698924
+ - 0.18807
+ - -0.0
+ - - -0.589668
+ - -0.030517
+ - -0.0
+ - - 1.113463
+ - -0.853762
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.16646494683095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.694403
+ - 0.19191
+ - 0.0
+ - - -0.590057
+ - -0.028499
+ - 0.0
+ - - 1.118373
+ - -0.859621
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.151578609857076
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.69569
+ - 0.186273
+ - -0.0
+ - - -0.585842
+ - -0.029951
+ - 0.0
+ - - 1.112872
+ - -0.852532
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 40.29604785583931
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.69458
+ - 0.188768
+ - -0.0
+ - - -0.587625
+ - -0.029017
+ - 0.0
+ - - 1.115765
+ - -0.85596
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.229391314143705
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.705183
+ - 0.193371
+ - -0.0
+ - - -0.600092
+ - -0.030598
+ - 0.0
+ - - 1.117629
+ - -0.858983
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,6 +498,64 @@ calculated_data:
- C
- F
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.37962517726157
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.698924052
+ - 0.1880695004
+ - -0.0
+ - - -0.589667521
+ - -0.0305172095
+ - -0.0
+ - - 1.1134633771
+ - -0.8537621163
+ - 0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 36.34484917707275
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.693418
+ - 0.182138
+ - -0.0
+ - - -0.592235
+ - -0.024463
+ - 0.0
+ - - 1.121537
+ - -0.853884
+ - -0.0
+ isotopes:
+ - 12
+ - 19
+ - 1
+ symbols:
+ - C
+ - F
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluoromethylidyne.yml b/input/reference_sets/main/Fluoromethylidyne.yml
index 89fcd312ea..54610c888d 100644
--- a/input/reference_sets/main/Fluoromethylidyne.yml
+++ b/input/reference_sets/main/Fluoromethylidyne.yml
@@ -34,7 +34,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 57.72494504132201
+ value: 57.72494504132198
class: ThermoData
xyz_dict:
coords:
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- C
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.21704960436916
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.76498
+ - - 0.0
+ - 0.0
+ - -0.510682
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.76157255806654
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.764881
+ - - 0.0
+ - 0.0
+ - -0.510582
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,270 @@ calculated_data:
symbols:
- C
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.03701614460626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.770769
+ - - 0.0
+ - 0.0
+ - -0.516471
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.94728881108712
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.771639
+ - - 0.0
+ - 0.0
+ - -0.517341
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.88058458464434
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.760977
+ - - 0.0
+ - 0.0
+ - -0.506679
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.78207233641601
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.766488
+ - - 0.0
+ - 0.0
+ - -0.51219
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.94026394380151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.762895
+ - - 0.0
+ - 0.0
+ - -0.508597
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.12397913811523
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.762895
+ - - 0.0
+ - 0.0
+ - -0.508597
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.0182221099801
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.762895
+ - - 0.0
+ - 0.0
+ - -0.508597
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.21880617018813
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.763574
+ - - 0.0
+ - 0.0
+ - -0.509275
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.45744834498808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.760287
+ - - 0.0
+ - 0.0
+ - -0.505988
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.975172902949815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.761287
+ - - 0.0
+ - 0.0
+ - -0.506988
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 63.722854576583906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.77248
+ - - 0.0
+ - 0.0
+ - -0.518182
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +412,54 @@ calculated_data:
symbols:
- C
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.85808453389876
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7628949559
+ - - 0.0
+ - 0.0
+ - -0.5085966373
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.847268244669706
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.761475
+ - - 0.0
+ - 0.0
+ - -0.507177
+ isotopes:
+ - 12
+ - 19
+ symbols:
+ - C
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fluorooxidanyl.yml b/input/reference_sets/main/Fluorooxidanyl.yml
index a2def7f42e..b0e1efe981 100644
--- a/input/reference_sets/main/Fluorooxidanyl.yml
+++ b/input/reference_sets/main/Fluorooxidanyl.yml
@@ -10,7 +10,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 27.0786855273465
+ value: 27.078685527346472
class: ThermoData
xyz_dict:
coords:
@@ -34,7 +34,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 27.01353865250353
+ value: 27.01353865250352
class: ThermoData
xyz_dict:
coords:
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.44162170196741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.713632
+ - - 0.0
+ - 0.0
+ - -0.635012
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.044607101756167
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.713798
+ - - 0.0
+ - 0.0
+ - -0.635178
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,246 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.150045882427335
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.718234
+ - - 0.0
+ - 0.0
+ - -0.639614
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.239816784067447
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7208
+ - - 0.0
+ - 0.0
+ - -0.64218
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.180651023555708
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.706863
+ - - 0.0
+ - 0.0
+ - -0.628243
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.530849343925723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.714838
+ - - 0.0
+ - 0.0
+ - -0.636218
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.058995038480024
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.70758
+ - - 0.0
+ - 0.0
+ - -0.62896
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.445004705869394
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.70758
+ - - 0.0
+ - 0.0
+ - -0.62896
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.489404374291016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.70758
+ - - 0.0
+ - 0.0
+ - -0.62896
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.43743846035529
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.709961
+ - - 0.0
+ - 0.0
+ - -0.631342
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.426107257768518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.704488
+ - - 0.0
+ - 0.0
+ - -0.625868
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.6470091646824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.722445
+ - - 0.0
+ - 0.0
+ - -0.643825
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +388,54 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.381791773815753
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7075799232
+ - - 0.0
+ - 0.0
+ - -0.6289599317
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.996995151251998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.704113
+ - - 0.0
+ - 0.0
+ - -0.625493
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formaldehyde cation.yml b/input/reference_sets/main/Formaldehyde cation.yml
index eed7120da6..3e4e3e5f0c 100644
--- a/input/reference_sets/main/Formaldehyde cation.yml
+++ b/input/reference_sets/main/Formaldehyde cation.yml
@@ -74,6 +74,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.07020188216524
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.523447
+ - - -0.0
+ - -0.0
+ - -0.664704
+ - - 0.968731
+ - 0.0
+ - 1.079318
+ - - -0.968731
+ - -0.0
+ - 1.079318
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.7536644224842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.519333
+ - - -0.0
+ - -0.0
+ - -0.667415
+ - - 0.967967
+ - 0.0
+ - 1.08273
+ - - -0.967967
+ - -0.0
+ - 1.08273
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 223.51892007980334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.515402
+ - - -0.0
+ - -0.0
+ - -0.676588
+ - - 0.968866
+ - 0.0
+ - 1.089282
+ - - -0.968866
+ - -0.0
+ - 1.089282
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.31232280834917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.509248
+ - - -0.0
+ - -0.0
+ - -0.681299
+ - - 0.971988
+ - 0.0
+ - 1.094715
+ - - -0.971988
+ - -0.0
+ - 1.094715
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.80436230483664
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.521549
+ - - -0.0
+ - -0.0
+ - -0.661646
+ - - 0.969902
+ - 0.0
+ - 1.078738
+ - - -0.969902
+ - -0.0
+ - 1.078738
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 224.72643644457833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.519808
+ - - 0.0
+ - -0.0
+ - -0.668422
+ - - 0.969106
+ - 0.0
+ - 1.082996
+ - - -0.969106
+ - -0.0
+ - 1.082996
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 223.216734249409
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.524051
+ - - -0.0
+ - 0.0
+ - -0.662519
+ - - 0.970392
+ - -0.0
+ - 1.077923
+ - - -0.970392
+ - 0.0
+ - 1.077923
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 224.35080889597293
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.524051
+ - - -0.0
+ - 0.0
+ - -0.662519
+ - - 0.970392
+ - -0.0
+ - 1.077923
+ - - -0.970392
+ - 0.0
+ - 1.077923
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.0844302603718
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.524051
+ - - -0.0
+ - 0.0
+ - -0.662519
+ - - 0.970392
+ - -0.0
+ - 1.077923
+ - - -0.970392
+ - 0.0
+ - 1.077923
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 224.5920926972217
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.521574
+ - - 0.0
+ - 0.0
+ - -0.670457
+ - - 0.96964
+ - 0.0
+ - 1.083131
+ - - -0.96964
+ - 0.0
+ - 1.083131
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.83867748470902
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.523891
+ - - -0.0
+ - -0.0
+ - -0.659858
+ - - 0.972456
+ - 0.0
+ - 1.076673
+ - - -0.972456
+ - -0.0
+ - 1.076673
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 225.2108728140819
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.521002
+ - - -0.0
+ - -0.0
+ - -0.663986
+ - - 0.969974
+ - 0.0
+ - 1.080181
+ - - -0.969974
+ - -0.0
+ - 1.080181
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 224.08320616018344
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.518223
+ - - -0.0
+ - -0.0
+ - -0.675879
+ - - 0.969463
+ - 0.0
+ - 1.087517
+ - - -0.969463
+ - -0.0
+ - 1.087517
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,6 +584,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 222.87254238350002
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5240511022
+ - - -2.6e-09
+ - 0.0
+ - -0.6625191154
+ - - 0.9703917662
+ - -0.0
+ - 1.0779231785
+ - - -0.9703917662
+ - 0.0
+ - 1.0779231785
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 224.32074851035625
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.522251
+ - - -0.0
+ - -0.0
+ - -0.662459
+ - - 0.969328
+ - 0.0
+ - 1.078793
+ - - -0.969328
+ - -0.0
+ - 1.078793
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formaldehyde.yml b/input/reference_sets/main/Formaldehyde.yml
index 4f79a2b7da..ca7fe940a1 100644
--- a/input/reference_sets/main/Formaldehyde.yml
+++ b/input/reference_sets/main/Formaldehyde.yml
@@ -73,6 +73,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -23.38252536408501
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.526736
+ - - 0.0
+ - -0.0
+ - -0.67716
+ - - 0.93679
+ - 0.0
+ - 1.11105
+ - - -0.93679
+ - -0.0
+ - 1.11105
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.807811632197176
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.523815
+ - - 0.0
+ - -0.0
+ - -0.675035
+ - - 0.938738
+ - 0.0
+ - 1.111448
+ - - -0.938738
+ - -0.0
+ - 1.111448
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.263745302688488
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.521906
+ - - -0.0
+ - -0.0
+ - -0.682698
+ - - 0.943699
+ - 0.0
+ - 1.116234
+ - - -0.943699
+ - -0.0
+ - 1.116234
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.341287001840072
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.522617
+ - - 0.0
+ - -0.0
+ - -0.68632
+ - - 0.948074
+ - 0.0
+ - 1.11769
+ - - -0.948074
+ - -0.0
+ - 1.11769
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.92969519781702
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.524466
+ - - -0.0
+ - -0.0
+ - -0.670314
+ - - 0.938492
+ - 0.0
+ - 1.108763
+ - - -0.938492
+ - -0.0
+ - 1.108763
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.339838904808893
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.521695
+ - - 0.0
+ - -0.0
+ - -0.678242
+ - - 0.938612
+ - 0.0
+ - 1.114112
+ - - -0.938612
+ - -0.0
+ - 1.114112
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.174458003819588
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.526259
+ - - 0.0
+ - 0.0
+ - -0.671853
+ - - 0.938857
+ - -0.0
+ - 1.108635
+ - - -0.938857
+ - 0.0
+ - 1.108635
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.91734645602641
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.526259
+ - - 0.0
+ - 0.0
+ - -0.671853
+ - - 0.938857
+ - -0.0
+ - 1.108635
+ - - -0.938857
+ - 0.0
+ - 1.108635
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.638835857464446
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.526259
+ - - 0.0
+ - 0.0
+ - -0.671853
+ - - 0.938857
+ - -0.0
+ - 1.108635
+ - - -0.938857
+ - 0.0
+ - 1.108635
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.57241931719067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.519642
+ - - 0.0
+ - 0.0
+ - -0.680318
+ - - 0.937106
+ - 0.0
+ - 1.116176
+ - - -0.937106
+ - 0.0
+ - 1.116176
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.717198659397944
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.525805
+ - - 0.0
+ - -0.0
+ - -0.669062
+ - - 0.938921
+ - 0.0
+ - 1.107467
+ - - -0.938921
+ - -0.0
+ - 1.107467
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.640315360613357
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.522802
+ - - 0.0
+ - -0.0
+ - -0.672573
+ - - 0.940015
+ - 0.0
+ - 1.110724
+ - - -0.940015
+ - -0.0
+ - 1.110724
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.160724553507077
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.52525
+ - - 0.0
+ - -0.0
+ - -0.682494
+ - - 0.942321
+ - 0.0
+ - 1.11446
+ - - -0.942321
+ - -0.0
+ - 1.11446
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.063755587612963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.5262594264
+ - - 0.0
+ - 0.0
+ - -0.671853413
+ - - 0.9388572259
+ - -0.0
+ - 1.1086353452
+ - - -0.9388572259
+ - 0.0
+ - 1.1086353452
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.99049527482757
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.523646
+ - - 0.0
+ - -0.0
+ - -0.671421
+ - - 0.939215
+ - 0.0
+ - 1.109726
+ - - -0.939215
+ - -0.0
+ - 1.109726
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formate.yml b/input/reference_sets/main/Formate.yml
index 83b44241f1..63044e307b 100644
--- a/input/reference_sets/main/Formate.yml
+++ b/input/reference_sets/main/Formate.yml
@@ -73,6 +73,74 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -103.38222504852097
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.314629
+ - - -1.136875
+ - 0.0
+ - -0.209082
+ - - 1.136875
+ - -0.0
+ - -0.209082
+ - - -0.0
+ - 0.0
+ - 1.450689
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.25548695168865
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.312171
+ - - -1.134641
+ - -0.0
+ - -0.209397
+ - - 1.134641
+ - -0.0
+ - -0.209397
+ - - -0.0
+ - 0.0
+ - 1.453778
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -100.1582966764209
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.309502
+ - - -1.141788
+ - 0.0
+ - -0.212811
+ - - 1.141788
+ - -0.0
+ - -0.212811
+ - - -0.0
+ - 0.0
+ - 1.463273
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -105.88252077272895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.309953
+ - - -1.145299
+ - 0.0
+ - -0.214829
+ - - 1.145299
+ - -0.0
+ - -0.214829
+ - - -0.0
+ - 0.0
+ - 1.466859
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -106.3196835449085
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.312834
+ - - -1.129391
+ - 0.0
+ - -0.207896
+ - - 1.129391
+ - -0.0
+ - -0.207896
+ - - -0.0
+ - 0.0
+ - 1.450112
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -114.0621583807274
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.3051
+ - - -1.137582
+ - 0.0
+ - -0.209338
+ - - 1.137582
+ - -0.0
+ - -0.209338
+ - - -0.0
+ - 0.0
+ - 1.46073
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -101.26363421200722
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.315739
+ - - -1.132525
+ - 0.0
+ - -0.208989
+ - - 1.132525
+ - -0.0
+ - -0.208989
+ - - 0.0
+ - 0.0
+ - 1.449393
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -108.22895844076872
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.315739
+ - - -1.132524
+ - 0.0
+ - -0.208989
+ - - 1.132524
+ - -0.0
+ - -0.208989
+ - - 0.0
+ - 0.0
+ - 1.449393
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.52927743767329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.315739
+ - - -1.132524
+ - 0.0
+ - -0.208989
+ - - 1.132524
+ - -0.0
+ - -0.208989
+ - - 0.0
+ - 0.0
+ - 1.449393
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -113.27251061527325
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.306296
+ - - -1.136548
+ - 0.0
+ - -0.210062
+ - - 1.136548
+ - 0.0
+ - -0.210062
+ - - 0.0
+ - 0.0
+ - 1.460982
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -107.640323612001
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.313883
+ - - -1.130106
+ - 0.0
+ - -0.207562
+ - - 1.130106
+ - -0.0
+ - -0.207562
+ - - -0.0
+ - 0.0
+ - 1.448395
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -101.31201740799033
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.310545
+ - - -1.130769
+ - 0.0
+ - -0.20852
+ - - 1.130769
+ - -0.0
+ - -0.20852
+ - - -0.0
+ - 0.0
+ - 1.453648
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -97.51968032365089
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.313469
+ - - -1.143099
+ - 0.0
+ - -0.21311
+ - - 1.143099
+ - -0.0
+ - -0.21311
+ - - -0.0
+ - 0.0
+ - 1.459905
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,13 +583,81 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -110.02023203498472
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.6e-09
+ - -0.0
+ - 0.315739131
+ - - -1.1325245047
+ - 0.0
+ - -0.208989239
+ - - 1.1325245044
+ - -0.0
+ - -0.2089892383
+ - - 0.0
+ - 0.0
+ - 1.4493930322
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -104.10827667316546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.311744
+ - - -1.130284
+ - 0.0
+ - -0.208338
+ - - 1.130284
+ - -0.0
+ - -0.208338
+ - - -0.0
+ - 0.0
+ - 1.452086
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -103.47574316597937
+ value: -103.47574316597935
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Formic acid.yml b/input/reference_sets/main/Formic acid.yml
index 1294e0c174..64db15ea0f 100644
--- a/input/reference_sets/main/Formic acid.yml
+++ b/input/reference_sets/main/Formic acid.yml
@@ -84,6 +84,84 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -85.7118054768132
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.132025
+ - -0.401284
+ - 0.000181
+ - - -1.131848
+ - 0.261948
+ - 6.0e-05
+ - - 1.120338
+ - 0.087714
+ - 0.000398
+ - - -0.099482
+ - -1.495564
+ - 0.000132
+ - - 1.050107
+ - 1.056617
+ - 0.000435
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.46679092592552
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.134043
+ - -0.400505
+ - 0.000181
+ - - -1.132387
+ - 0.259355
+ - 5.9e-05
+ - - 1.117583
+ - 0.088999
+ - 0.000397
+ - - -0.099811
+ - -1.497369
+ - 0.000132
+ - - 1.055749
+ - 1.05895
+ - 0.000436
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -81.82993334927482
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.136953
+ - -0.400041
+ - 0.00018
+ - - -1.140653
+ - 0.263532
+ - 5.8e-05
+ - - 1.126629
+ - 0.087678
+ - 0.000399
+ - - -0.097498
+ - -1.502467
+ - 0.000132
+ - - 1.055566
+ - 1.060728
+ - 0.000436
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.2708085927616
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.13591
+ - -0.401425
+ - 0.00018
+ - - -1.141589
+ - 0.267555
+ - 5.8e-05
+ - - 1.130092
+ - 0.085943
+ - 0.000399
+ - - -0.098948
+ - -1.508389
+ - 0.000131
+ - - 1.053447
+ - 1.065747
+ - 0.000436
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.1971568866517
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.130883
+ - -0.400452
+ - 0.000181
+ - - -1.12386
+ - 0.259831
+ - 6.1e-05
+ - - 1.112701
+ - 0.08916
+ - 0.000397
+ - - -0.101612
+ - -1.49652
+ - 0.000132
+ - - 1.050746
+ - 1.057411
+ - 0.000435
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.60888647822526
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.134761
+ - -0.39956
+ - 0.000181
+ - - -1.132196
+ - 0.262952
+ - 6.0e-05
+ - - 1.119986
+ - 0.087809
+ - 0.000398
+ - - -0.096966
+ - -1.497641
+ - 0.000132
+ - - 1.051029
+ - 1.05587
+ - 0.000435
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.06703101458348
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.130356
+ - -0.401387
+ - 0.000181
+ - - -1.124838
+ - 0.261947
+ - 6.1e-05
+ - - 1.117714
+ - 0.089144
+ - 0.000398
+ - - -0.102436
+ - -1.497178
+ - 0.000131
+ - - 1.047007
+ - 1.056903
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -87.87569297131245
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.130356
+ - -0.401387
+ - 0.000181
+ - - -1.124838
+ - 0.261947
+ - 6.1e-05
+ - - 1.117714
+ - 0.089144
+ - 0.000398
+ - - -0.102436
+ - -1.497178
+ - 0.000131
+ - - 1.047007
+ - 1.056903
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.52203987899763
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.130356
+ - -0.401387
+ - 0.000181
+ - - -1.124838
+ - 0.261947
+ - 6.1e-05
+ - - 1.117714
+ - 0.089144
+ - 0.000398
+ - - -0.102436
+ - -1.497178
+ - 0.000131
+ - - 1.047007
+ - 1.056903
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -90.45194828738677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.133689
+ - -0.398031
+ - 0.000181
+ - - -1.131807
+ - 0.264878
+ - 6.0e-05
+ - - 1.120598
+ - 0.086131
+ - 0.000398
+ - - -0.09557
+ - -1.497702
+ - 0.000132
+ - - 1.047559
+ - 1.054154
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.903891287766
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.130252
+ - -0.400581
+ - 0.000181
+ - - -1.122936
+ - 0.25983
+ - 6.1e-05
+ - - 1.113811
+ - 0.089644
+ - 0.000397
+ - - -0.102693
+ - -1.496384
+ - 0.000131
+ - - 1.049162
+ - 1.056921
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -84.35198984035264
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.129492
+ - -0.397779
+ - 0.000181
+ - - -1.124757
+ - 0.262142
+ - 6.1e-05
+ - - 1.114419
+ - 0.087399
+ - 0.000397
+ - - -0.099513
+ - -1.496477
+ - 0.000132
+ - - 1.046435
+ - 1.054145
+ - 0.000434
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -79.44786472011677
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.136312
+ - -0.402877
+ - 0.00018
+ - - -1.140305
+ - 0.264821
+ - 5.8e-05
+ - - 1.127355
+ - 0.086852
+ - 0.000399
+ - - -0.098341
+ - -1.50226
+ - 0.000132
+ - - 1.054694
+ - 1.062893
+ - 0.000436
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.17487687053934
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.1303557232
+ - -0.4013866813
+ - 0.0001811821
+ - - -1.1248375088
+ - 0.2619470115
+ - 6.07376e-05
+ - - 1.1177135296
+ - 0.0891442936
+ - 0.0003975452
+ - - -0.1024355212
+ - -1.4971780893
+ - 0.0001313048
+ - - 1.0470069674
+ - 1.0569030528
+ - 0.000434294
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -85.8467901645178
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.129977
+ - -0.398718
+ - 0.000181
+ - - -1.125165
+ - 0.260401
+ - 6.1e-05
+ - - 1.113208
+ - 0.089526
+ - 0.000397
+ - - -0.10029
+ - -1.49574
+ - 0.000132
+ - - 1.049317
+ - 1.053961
+ - 0.000435
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formyl anion.yml b/input/reference_sets/main/Formyl anion.yml
index f05cb8c84b..3d77144e59 100644
--- a/input/reference_sets/main/Formyl anion.yml
+++ b/input/reference_sets/main/Formyl anion.yml
@@ -10,7 +10,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 3.2093617301930837
+ value: 3.209361730193083
class: ThermoData
xyz_dict:
coords:
@@ -62,6 +62,64 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.405066499111047
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.595144
+ - 0.217933
+ - -0.0
+ - - -0.613763
+ - -0.050064
+ - 0.0
+ - - 1.249965
+ - -0.838464
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.62402542962518
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.586994
+ - 0.222799
+ - -0.0
+ - - -0.613273
+ - -0.047362
+ - 0.0
+ - - 1.257625
+ - -0.846032
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.930556068004591
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.57315
+ - 0.239301
+ - -0.0
+ - - -0.626141
+ - -0.039879
+ - 0.0
+ - - 1.284337
+ - -0.870017
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 7.098816443281184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.579848
+ - 0.235294
+ - -0.0
+ - - -0.626225
+ - -0.042215
+ - 0.0
+ - - 1.277724
+ - -0.863673
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.374633468880255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.592676
+ - 0.2169
+ - -0.0
+ - - -0.606215
+ - -0.051484
+ - 0.0
+ - - 1.244885
+ - -0.836011
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.749993556967879
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.52559
+ - 0.287644
+ - -0.0
+ - - -0.639501
+ - -0.023791
+ - 0.0
+ - - 1.345258
+ - -0.934448
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.900750487029917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.601149
+ - 0.210164
+ - -0.0
+ - - -0.605299
+ - -0.054318
+ - -0.0
+ - - 1.235497
+ - -0.826441
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.49034682466646
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.601149
+ - 0.210164
+ - -0.0
+ - - -0.605299
+ - -0.054318
+ - -0.0
+ - - 1.235497
+ - -0.826441
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.8541202663743426
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.601149
+ - 0.210164
+ - -0.0
+ - - -0.605299
+ - -0.054318
+ - -0.0
+ - - 1.235497
+ - -0.826441
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.8702861597083937
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.574032
+ - 0.246497
+ - 0.0
+ - - -0.621976
+ - -0.044486
+ - 0.0
+ - - 1.279291
+ - -0.872606
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.938831052278221
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.596067
+ - 0.21625
+ - -0.0
+ - - -0.604149
+ - -0.054034
+ - 0.0
+ - - 1.239429
+ - -0.83281
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.993991476705657
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.587681
+ - 0.22144
+ - -0.0
+ - - -0.609667
+ - -0.04879
+ - 0.0
+ - - 1.253332
+ - -0.843245
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.096848285144379
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.584531
+ - 0.231445
+ - -0.0
+ - - -0.62228
+ - -0.045171
+ - 0.0
+ - - 1.269096
+ - -0.856869
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.782682321757199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6011486806
+ - 0.2101636463
+ - -0.0
+ - - -0.6052985755
+ - -0.0543176378
+ - -0.0
+ - - 1.2354965208
+ - -0.8264407754
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.643106319535885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.589448
+ - 0.220461
+ - -0.0
+ - - -0.608372
+ - -0.049989
+ - 0.0
+ - - 1.25027
+ - -0.841067
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formyl chloride.yml b/input/reference_sets/main/Formyl chloride.yml
index 97a2eb3150..6463a79b5f 100644
--- a/input/reference_sets/main/Formyl chloride.yml
+++ b/input/reference_sets/main/Formyl chloride.yml
@@ -73,6 +73,74 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.01978589298432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683339
+ - -0.426842
+ - -0.0
+ - - 1.590286
+ - 0.331767
+ - -0.0
+ - - -1.020912
+ - 0.07524
+ - 0.0
+ - - 0.746983
+ - -1.51892
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.25563145398618
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.686656
+ - -0.425831
+ - -0.0
+ - - 1.589665
+ - 0.33026
+ - -0.0
+ - - -1.024977
+ - 0.076772
+ - 0.0
+ - - 0.748351
+ - -1.519956
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,312 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.614175441738894
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.690053
+ - -0.424899
+ - -0.0
+ - - 1.598593
+ - 0.334384
+ - -0.0
+ - - -1.034685
+ - 0.075994
+ - 0.0
+ - - 0.745733
+ - -1.524235
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.326477407986545
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.688558
+ - -0.424858
+ - -0.0
+ - - 1.600609
+ - 0.337477
+ - -0.0
+ - - -1.035861
+ - 0.077328
+ - 0.0
+ - - 0.74639
+ - -1.528703
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.90652579731656
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680532
+ - -0.42558
+ - -0.0
+ - - 1.58085
+ - 0.328804
+ - -0.0
+ - - -1.011526
+ - 0.076932
+ - 0.0
+ - - 0.749839
+ - -1.518911
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -45.49428535486376
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.696412
+ - -0.427598
+ - -0.0
+ - - 1.593507
+ - 0.333119
+ - -0.0
+ - - -1.036375
+ - 0.078438
+ - 0.0
+ - - 0.746151
+ - -1.522715
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.30810816443819
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680532
+ - -0.427531
+ - 0.0
+ - - 1.5811
+ - 0.331235
+ - 0.0
+ - - -1.012146
+ - 0.078456
+ - 0.0
+ - - 0.75021
+ - -1.520916
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.50452657970915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.692713
+ - -0.426244
+ - 0.0
+ - - 1.593838
+ - 0.333782
+ - 0.0
+ - - -1.031086
+ - 0.075846
+ - 0.0
+ - - 0.744231
+ - -1.52214
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.05458376976597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680262
+ - -0.426542
+ - -0.0
+ - - 1.579058
+ - 0.329459
+ - -0.0
+ - - -1.010237
+ - 0.07816
+ - 0.0
+ - - 0.750613
+ - -1.519834
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.44024634110785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.680029
+ - -0.423793
+ - -0.0
+ - - 1.58294
+ - 0.330446
+ - -0.0
+ - - -1.009837
+ - 0.074218
+ - 0.0
+ - - 0.746563
+ - -1.519627
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.34989219161012
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.688097
+ - -0.426846
+ - -0.0
+ - - 1.597886
+ - 0.335173
+ - -0.0
+ - - -1.032386
+ - 0.076315
+ - 0.0
+ - - 0.746098
+ - -1.523398
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +515,40 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.43063526664967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.682426
+ - -0.425446
+ - -0.0
+ - - 1.582672
+ - 0.329583
+ - -0.0
+ - - -1.014509
+ - 0.076912
+ - 0.0
+ - - 0.749106
+ - -1.519804
+ - -0.0
+ isotopes:
+ - 12
+ - 16
+ - 35
+ - 1
+ symbols:
+ - C
+ - O
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formyl fluoride.yml b/input/reference_sets/main/Formyl fluoride.yml
index 3a564f1d0f..9a3c152680 100644
--- a/input/reference_sets/main/Formyl fluoride.yml
+++ b/input/reference_sets/main/Formyl fluoride.yml
@@ -45,7 +45,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -92.17725406663747
+ value: -92.17725406663737
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.32325165100885
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.090554
+ - -0.193382
+ - 0.0
+ - - -0.129372
+ - 0.378199
+ - -0.0
+ - - -1.128501
+ - -0.247694
+ - -0.0
+ - - -0.014931
+ - 1.464685
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -87.87012244471808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.09071
+ - -0.194757
+ - 0.0
+ - - -0.130564
+ - 0.377344
+ - 0.0
+ - - -1.126727
+ - -0.24717
+ - -0.0
+ - - -0.015668
+ - 1.466389
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.23697393147768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.100715
+ - -0.196338
+ - 0.0
+ - - -0.133947
+ - 0.377345
+ - -0.0
+ - - -1.135433
+ - -0.250533
+ - -0.0
+ - - -0.013584
+ - 1.471334
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -86.77232467486611
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.103513
+ - -0.198502
+ - 0.0
+ - - -0.134031
+ - 0.37766
+ - -0.0
+ - - -1.138519
+ - -0.253381
+ - -0.0
+ - - -0.013212
+ - 1.47603
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -90.30999703861
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083438
+ - -0.193877
+ - 0.0
+ - - -0.12839
+ - 0.376531
+ - -0.0
+ - - -1.121054
+ - -0.246205
+ - -0.0
+ - - -0.016243
+ - 1.465357
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.10553352715735
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.09274
+ - -0.194438
+ - 0.0
+ - - -0.131474
+ - 0.377128
+ - 0.0
+ - - -1.128677
+ - -0.247697
+ - -0.0
+ - - -0.014837
+ - 1.466814
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.26326001178059
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086416
+ - -0.195014
+ - -0.0
+ - - -0.128894
+ - 0.377899
+ - 0.0
+ - - -1.123516
+ - -0.247313
+ - 0.0
+ - - -0.016255
+ - 1.466235
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -90.1806168133298
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086416
+ - -0.195014
+ - -0.0
+ - - -0.128894
+ - 0.377899
+ - 0.0
+ - - -1.123516
+ - -0.247313
+ - 0.0
+ - - -0.016255
+ - 1.466235
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.42128003631265
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.086416
+ - -0.195014
+ - -0.0
+ - - -0.128894
+ - 0.377899
+ - 0.0
+ - - -1.123516
+ - -0.247313
+ - 0.0
+ - - -0.016255
+ - 1.466235
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -91.66637963412019
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.085004
+ - -0.190752
+ - 0.0
+ - - -0.124599
+ - 0.373825
+ - 0.0
+ - - -1.128243
+ - -0.247867
+ - 0.0
+ - - -0.014411
+ - 1.466601
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -93.04847666007377
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.080813
+ - -0.194111
+ - 0.0
+ - - -0.125932
+ - 0.376338
+ - 0.0
+ - - -1.119656
+ - -0.245778
+ - -0.0
+ - - -0.017474
+ - 1.465358
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -88.05688785495012
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.082543
+ - -0.192623
+ - 0.0
+ - - -0.126685
+ - 0.374914
+ - -0.0
+ - - -1.122554
+ - -0.246781
+ - -0.0
+ - - -0.015552
+ - 1.466297
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -83.05859012396056
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.100478
+ - -0.196911
+ - 0.0
+ - - -0.133656
+ - 0.379692
+ - -0.0
+ - - -1.135573
+ - -0.25163
+ - -0.0
+ - - -0.013497
+ - 1.470656
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -92.0715933717817
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0864164063
+ - -0.1950138182
+ - -0.0
+ - - -0.1288936087
+ - 0.3778991738
+ - 0.0
+ - - -1.1235163202
+ - -0.2473131548
+ - 0.0
+ - - -0.0162554426
+ - 1.4662345598
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -89.80474396309641
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.082875
+ - -0.193281
+ - 0.0
+ - - -0.126688
+ - 0.375483
+ - -0.0
+ - - -1.121961
+ - -0.24608
+ - -0.0
+ - - -0.016475
+ - 1.465685
+ - 0.0
+ isotopes:
+ - 19
+ - 12
+ - 16
+ - 1
+ symbols:
+ - F
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Formyl.yml b/input/reference_sets/main/Formyl.yml
index a5bb068219..de37e7fd21 100644
--- a/input/reference_sets/main/Formyl.yml
+++ b/input/reference_sets/main/Formyl.yml
@@ -63,6 +63,64 @@ calculated_data:
- C
- H
- O
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.667208865089023
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5618
+ - -0.172324
+ - 0.0
+ - - 1.360974
+ - 0.613488
+ - 0.0
+ - - -0.593604
+ - 0.052928
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.05738025414114
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558688
+ - -0.173198
+ - 0.0
+ - - 1.361615
+ - 0.614551
+ - 0.0
+ - - -0.591132
+ - 0.05274
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -92,6 +150,325 @@ calculated_data:
- C
- H
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.923345650812138
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.561525
+ - -0.178552
+ - 0.0
+ - - 1.363984
+ - 0.618054
+ - 0.0
+ - - -0.596338
+ - 0.05459
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.377203134344963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.560228
+ - -0.179986
+ - 0.0
+ - - 1.368543
+ - 0.620363
+ - 0.0
+ - - -0.5996
+ - 0.053716
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.757749610372535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.557276
+ - -0.171389
+ - 0.0
+ - - 1.359948
+ - 0.613171
+ - 0.0
+ - - -0.588053
+ - 0.052311
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.29914909302731
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.559536
+ - -0.17642
+ - 0.0
+ - - 1.361502
+ - 0.616316
+ - 0.0
+ - - -0.591868
+ - 0.054196
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.172240594637795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558507
+ - -0.173875
+ - -0.0
+ - - 1.359479
+ - 0.614356
+ - -0.0
+ - - -0.588815
+ - 0.053612
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.658162008699303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558507
+ - -0.173875
+ - -0.0
+ - - 1.359479
+ - 0.614356
+ - -0.0
+ - - -0.588815
+ - 0.053612
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.112574184052425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558507
+ - -0.173875
+ - -0.0
+ - - 1.359479
+ - 0.614356
+ - -0.0
+ - - -0.588815
+ - 0.053612
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.46089639548165
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.559936
+ - -0.176594
+ - 0.0
+ - - 1.362688
+ - 0.616714
+ - 0.0
+ - - -0.593453
+ - 0.053973
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.05701223389272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558134
+ - -0.173727
+ - 0.0
+ - - 1.357192
+ - 0.613654
+ - 0.0
+ - - -0.586156
+ - 0.054165
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.659027448864947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.556967
+ - -0.171091
+ - 0.0
+ - - 1.36261
+ - 0.613797
+ - 0.0
+ - - -0.590407
+ - 0.051386
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.66285813773995
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.560986
+ - -0.176742
+ - 0.0
+ - - 1.366007
+ - 0.617634
+ - 0.0
+ - - -0.597822
+ - 0.053201
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -121,13 +498,71 @@ calculated_data:
- C
- H
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.637589081145004
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5585069035
+ - -0.1738753065
+ - -0.0
+ - - 1.3594785412
+ - 0.6143559264
+ - -0.0
+ - - -0.5888149952
+ - 0.053611989
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 12.710452269902422
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.558064
+ - -0.172554
+ - 0.0
+ - - 1.359756
+ - 0.61371
+ - 0.0
+ - - -0.588649
+ - 0.052937
+ - 0.0
+ isotopes:
+ - 12
+ - 1
+ - 16
+ symbols:
+ - C
+ - H
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 13.379239337337273
+ value: 13.379239337337262
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Formyloxidanyl.yml b/input/reference_sets/main/Formyloxidanyl.yml
index d12360543f..33ba56c3e4 100644
--- a/input/reference_sets/main/Formyloxidanyl.yml
+++ b/input/reference_sets/main/Formyloxidanyl.yml
@@ -74,6 +74,74 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.394643151438796
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000366
+ - -0.209817
+ - -5.0e-06
+ - - -1.166496
+ - 0.163558
+ - 5.0e-06
+ - - 1.169783
+ - 0.155479
+ - 5.0e-06
+ - - -0.00365
+ - -1.371317
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.022946916299663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 7.6e-05
+ - -0.209513
+ - -5.0e-06
+ - - -1.16316
+ - 0.161209
+ - 5.0e-06
+ - - 1.163912
+ - 0.159347
+ - 5.0e-06
+ - - -0.000826
+ - -1.373141
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.273458583511385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000108
+ - -0.217278
+ - -6.0e-06
+ - - -1.171712
+ - 0.165255
+ - 5.0e-06
+ - - 1.17276
+ - 0.162694
+ - 5.0e-06
+ - - -0.001154
+ - -1.372768
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.87648131699505
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 9.5e-05
+ - -0.211659
+ - -5.0e-06
+ - - -1.175445
+ - 0.165159
+ - 5.0e-06
+ - - 1.176323
+ - 0.163008
+ - 5.0e-06
+ - - -0.000972
+ - -1.378605
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.482216998976618
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.065223
+ - -0.230649
+ - -6.0e-06
+ - - -1.165629
+ - 0.222704
+ - 7.0e-06
+ - - 1.140394
+ - 0.121872
+ - 4.0e-06
+ - - 0.09046
+ - -1.376025
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.58990506772256
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.008267
+ - -0.209444
+ - -5.0e-06
+ - - -1.166102
+ - 0.168335
+ - 5.0e-06
+ - - 1.162785
+ - 0.152764
+ - 5.0e-06
+ - - 0.011587
+ - -1.373753
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.464131083606084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.072281
+ - -0.240184
+ - -6.0e-06
+ - - -1.166291
+ - 0.23238
+ - 7.0e-06
+ - - 1.141388
+ - 0.124748
+ - 4.0e-06
+ - - 0.097185
+ - -1.379041
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.132607250560973
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.072281
+ - -0.240184
+ - -6.0e-06
+ - - -1.166291
+ - 0.23238
+ - 7.0e-06
+ - - 1.141388
+ - 0.124748
+ - 4.0e-06
+ - - 0.097185
+ - -1.379041
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.80126713663201
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.072281
+ - -0.240184
+ - -6.0e-06
+ - - -1.166291
+ - 0.23238
+ - 7.0e-06
+ - - 1.141388
+ - 0.124748
+ - 4.0e-06
+ - - 0.097185
+ - -1.379041
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.162314905602642
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.026911
+ - -0.211596
+ - -5.0e-06
+ - - -1.171974
+ - 0.184474
+ - 6.0e-06
+ - - 1.159753
+ - 0.138212
+ - 4.0e-06
+ - - 0.039133
+ - -1.373187
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.141841672626597
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.075471
+ - -0.31738
+ - -8.0e-06
+ - - -1.112911
+ - 0.266234
+ - 8.0e-06
+ - - 1.131752
+ - 0.210308
+ - 6.0e-06
+ - - 0.056631
+ - -1.42126
+ - -3.9e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.16110517759182
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.039923
+ - -0.208944
+ - -5.0e-06
+ - - -1.169449
+ - 0.194263
+ - 6.0e-06
+ - - 1.149155
+ - 0.125058
+ - 4.0e-06
+ - - 0.060218
+ - -1.372475
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.254073319612967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000105
+ - -0.215058
+ - -6.0e-06
+ - - -1.172657
+ - 0.1649
+ - 5.0e-06
+ - - 1.173656
+ - 0.162457
+ - 5.0e-06
+ - - -0.001101
+ - -1.374397
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,6 +584,74 @@ calculated_data:
- O
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.35283353323152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.072280608
+ - -0.2401843842
+ - -6.1972e-06
+ - - -1.1662906994
+ - 0.2323796667
+ - 6.9326e-06
+ - - 1.1413879928
+ - 0.1247480449
+ - 3.814e-06
+ - - 0.0971851128
+ - -1.3790409216
+ - -3.77492e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.58550056466433
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.055095
+ - -0.221454
+ - -6.0e-06
+ - - -1.168073
+ - 0.211049
+ - 6.0e-06
+ - - 1.143444
+ - 0.120874
+ - 4.0e-06
+ - - 0.079726
+ - -1.372567
+ - -3.8e-05
+ isotopes:
+ - 12
+ - 16
+ - 16
+ - 1
+ symbols:
+ - C
+ - O
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Fulminic acid.yml b/input/reference_sets/main/Fulminic acid.yml
index 620c67a969..12be62a6d0 100644
--- a/input/reference_sets/main/Fulminic acid.yml
+++ b/input/reference_sets/main/Fulminic acid.yml
@@ -11,7 +11,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 56.081104338619646
+ value: 56.08110433861962
class: ThermoData
xyz_dict:
coords:
@@ -73,6 +73,74 @@ calculated_data:
- N
- C
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.6371743321764
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.082782
+ - -0.123168
+ - 0.0
+ - - -0.236355
+ - 0.03045
+ - -0.0
+ - - -1.41086
+ - -0.000764
+ - -0.0
+ - - 1.445607
+ - 0.776995
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.36824626302041
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.078704
+ - -0.121813
+ - 0.0
+ - - -0.239922
+ - 0.035354
+ - -0.0
+ - - -1.408501
+ - -0.005417
+ - -0.0
+ - - 1.450893
+ - 0.77539
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- N
- C
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.793270786819754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083989
+ - -0.124932
+ - 0.0
+ - - -0.238327
+ - 0.039764
+ - -0.0
+ - - -1.418886
+ - -0.008361
+ - -0.0
+ - - 1.454398
+ - 0.777042
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 57.135932073715495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.087974
+ - -0.127767
+ - 0.0
+ - - -0.240306
+ - 0.037225
+ - -0.0
+ - - -1.424695
+ - -0.007346
+ - -0.0
+ - - 1.458202
+ - 0.781402
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 59.01243519217784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.074676
+ - -0.120188
+ - 0.0
+ - - -0.23775
+ - 0.025652
+ - -0.0
+ - - -1.399465
+ - 0.001865
+ - -0.0
+ - - 1.443713
+ - 0.776186
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.85190828032854
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.082452
+ - -0.122659
+ - 0.0
+ - - -0.238414
+ - 0.037843
+ - -0.0
+ - - -1.412576
+ - -0.006306
+ - -0.0
+ - - 1.449712
+ - 0.774636
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.17779511881027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.08075
+ - -0.122613
+ - 0.0
+ - - -0.238063
+ - 0.027771
+ - 0.0
+ - - -1.40361
+ - 0.00163
+ - 0.0
+ - - 1.442097
+ - 0.776725
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.19746754412528
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.08075
+ - -0.122613
+ - 0.0
+ - - -0.238063
+ - 0.027771
+ - 0.0
+ - - -1.40361
+ - 0.00163
+ - 0.0
+ - - 1.442097
+ - 0.776725
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.69500377185915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.08075
+ - -0.122613
+ - 0.0
+ - - -0.238063
+ - 0.027771
+ - 0.0
+ - - -1.40361
+ - 0.00163
+ - 0.0
+ - - 1.442097
+ - 0.776725
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.99080263828946
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083725
+ - -0.122153
+ - 0.0
+ - - -0.236016
+ - 0.024611
+ - 0.0
+ - - -1.411645
+ - 0.002727
+ - 0.0
+ - - 1.445111
+ - 0.778328
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.05947231419772
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.078737
+ - -0.120872
+ - 0.0
+ - - -0.23409
+ - 0.009494
+ - -0.0
+ - - -1.397357
+ - 0.014311
+ - -0.0
+ - - 1.433884
+ - 0.780581
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.30086487060713
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.073621
+ - -0.120695
+ - 0.0
+ - - -0.232199
+ - 0.024881
+ - -0.0
+ - - -1.399958
+ - 0.003377
+ - -0.0
+ - - 1.439711
+ - 0.77595
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 62.214635831812615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.089097
+ - -0.127393
+ - 0.0
+ - - -0.24131
+ - 0.038739
+ - -0.0
+ - - -1.422408
+ - -0.007574
+ - -0.0
+ - - 1.455795
+ - 0.779741
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,13 +583,81 @@ calculated_data:
- N
- C
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.2355965848723
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0807498924
+ - -0.1226126087
+ - 0.0
+ - - -0.2380625103
+ - 0.0277708666
+ - 0.0
+ - - -1.4036097197
+ - 0.001629888
+ - 0.0
+ - - 1.4420967515
+ - 0.7767254756
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.87207466450398
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.075635
+ - -0.119854
+ - 0.0
+ - - -0.233652
+ - 0.024903
+ - -0.0
+ - - -1.399669
+ - 0.00359
+ - -0.0
+ - - 1.438861
+ - 0.774874
+ - 0.0
+ isotopes:
+ - 16
+ - 14
+ - 12
+ - 1
+ symbols:
+ - O
+ - N
+ - C
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 59.48740600534745
+ value: 59.487406005347424
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Fulvene.yml b/input/reference_sets/main/Fulvene.yml
index 255db6128f..da87451fb0 100644
--- a/input/reference_sets/main/Fulvene.yml
+++ b/input/reference_sets/main/Fulvene.yml
@@ -19,7 +19,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 52.517444401408746
+ value: 52.51744440140869
class: ThermoData
xyz_dict:
coords:
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.59195332377631
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.096222
+ - -1.2e-05
+ - -0.0
+ - - 0.755728
+ - -2.0e-06
+ - -0.0
+ - - -0.124153
+ - 1.175522
+ - -0.0
+ - - -1.401981
+ - 0.73536
+ - -0.0
+ - - -1.401992
+ - -0.735332
+ - -0.0
+ - - -0.12417
+ - -1.175513
+ - -0.0
+ - - 2.658555
+ - 0.924625
+ - -0.0
+ - - 2.658541
+ - -0.924657
+ - -0.0
+ - - 0.220088
+ - 2.197799
+ - -0.0
+ - - -2.290877
+ - 1.348106
+ - -0.0
+ - - -2.290897
+ - -1.348065
+ - -0.0
+ - - 0.220056
+ - -2.197795
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.58887123440607
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.095089
+ - -1.2e-05
+ - -0.0
+ - - 0.757718
+ - -2.0e-06
+ - -0.0
+ - - -0.125781
+ - 1.175531
+ - -0.0
+ - - -1.400536
+ - 0.736008
+ - -0.0
+ - - -1.400547
+ - -0.73598
+ - -0.0
+ - - -0.125798
+ - -1.175522
+ - -0.0
+ - - 2.659351
+ - 0.924103
+ - -0.0
+ - - 2.659337
+ - -0.924135
+ - -0.0
+ - - 0.218714
+ - 2.197941
+ - -0.0
+ - - -2.290543
+ - 1.347852
+ - -0.0
+ - - -2.290563
+ - -1.347811
+ - -0.0
+ - - 0.218681
+ - -2.197937
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 110.9571976447652
+ value: 110.95719764476513
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.113756518
+ - 0.0006152075
+ - -0.0
+ - - 0.7597300648
+ - 0.0026524783
+ - -0.0
+ - - -0.1258369514
+ - 1.1852647958
+ - -0.0
+ - - -1.4141544912
+ - 0.737531659
+ - -0.0
+ - - -1.411257695
+ - -0.7415003635
+ - 0.0
+ - - -0.1211964386
+ - -1.1828416808
+ - 0.0
+ - - 2.6850509838
+ - 0.930566476
+ - -0.0
+ - - 2.6790876513
+ - -0.933436777
+ - 0.0
+ - - 0.221879019
+ - 2.2153435404
+ - -0.0
+ - - -2.3151869054
+ - 1.3491643171
+ - -0.0
+ - - -2.3079149917
+ - -1.3600379649
+ - 0.0
+ - - 0.2308382029
+ - -2.2119321696
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.57135811956235
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.103482
+ - -1.2e-05
+ - -0.0
+ - - 0.757448
+ - -2.0e-06
+ - -0.0
+ - - -0.125122
+ - 1.179231
+ - -0.0
+ - - -1.408111
+ - 0.737199
+ - -0.0
+ - - -1.408122
+ - -0.737171
+ - -0.0
+ - - -0.125139
+ - -1.179221
+ - -0.0
+ - - 2.669764
+ - 0.928382
+ - -0.0
+ - - 2.66975
+ - -0.928414
+ - -0.0
+ - - 0.222658
+ - 2.205115
+ - -0.0
+ - - -2.302046
+ - 1.351521
+ - -0.0
+ - - -2.302066
+ - -1.35148
+ - -0.0
+ - - 0.222625
+ - -2.205111
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.07003307213105
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.107103
+ - -1.2e-05
+ - -0.0
+ - - 0.757698
+ - -2.0e-06
+ - -0.0
+ - - -0.125193
+ - 1.180745
+ - -0.0
+ - - -1.410617
+ - 0.737601
+ - -0.0
+ - - -1.410628
+ - -0.737573
+ - -0.0
+ - - -0.12521
+ - -1.180736
+ - -0.0
+ - - 2.676654
+ - 0.931803
+ - -0.0
+ - - 2.67664
+ - -0.931836
+ - -0.0
+ - - 0.222264
+ - 2.211874
+ - -0.0
+ - - -2.307901
+ - 1.355462
+ - -0.0
+ - - -2.307921
+ - -1.355421
+ - -0.0
+ - - 0.222232
+ - -2.21187
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.16365057100998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.088099
+ - -1.2e-05
+ - -0.0
+ - - 0.758269
+ - -2.0e-06
+ - -0.0
+ - - -0.126669
+ - 1.172451
+ - -0.0
+ - - -1.393489
+ - 0.734837
+ - -0.0
+ - - -1.3935
+ - -0.734809
+ - -0.0
+ - - -0.126686
+ - -1.172442
+ - -0.0
+ - - 2.651842
+ - 0.923947
+ - -0.0
+ - - 2.651828
+ - -0.923979
+ - -0.0
+ - - 0.215703
+ - 2.195515
+ - -0.0
+ - - -2.282964
+ - 1.347075
+ - -0.0
+ - - -2.282984
+ - -1.347034
+ - -0.0
+ - - 0.215671
+ - -2.195511
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.59876011900476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.099876
+ - -1.2e-05
+ - -0.0
+ - - 0.758925
+ - -2.0e-06
+ - -0.0
+ - - -0.126729
+ - 1.178171
+ - 0.0
+ - - -1.403477
+ - 0.737554
+ - 0.0
+ - - -1.403488
+ - -0.737526
+ - 0.0
+ - - -0.126746
+ - -1.178162
+ - 0.0
+ - - 2.666296
+ - 0.924841
+ - -0.0
+ - - 2.666282
+ - -0.924873
+ - -0.0
+ - - 0.21752
+ - 2.20252
+ - -0.0
+ - - -2.295402
+ - 1.349824
+ - 0.0
+ - - -2.295422
+ - -1.349783
+ - 0.0
+ - - 0.217487
+ - -2.202516
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.36926805121503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.090862
+ - -1.0e-05
+ - 0.0
+ - - 0.759496
+ - -2.1e-05
+ - 0.0
+ - - -0.127031
+ - 1.175849
+ - -0.0
+ - - -1.395622
+ - 0.736981
+ - 0.0
+ - - -1.395655
+ - -0.736944
+ - 0.0
+ - - -0.127075
+ - -1.175863
+ - 0.0
+ - - 2.653077
+ - 0.925317
+ - 0.0
+ - - 2.65313
+ - -0.925305
+ - 0.0
+ - - 0.21692
+ - 2.198925
+ - 0.0
+ - - -2.2849
+ - 1.349929
+ - 0.0
+ - - -2.284943
+ - -1.349879
+ - 0.0
+ - - 0.216861
+ - -2.198945
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 56.66060572103308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.090862
+ - -1.0e-05
+ - 0.0
+ - - 0.759496
+ - -2.1e-05
+ - 0.0
+ - - -0.127031
+ - 1.175849
+ - -0.0
+ - - -1.395622
+ - 0.736981
+ - 0.0
+ - - -1.395655
+ - -0.736944
+ - 0.0
+ - - -0.127075
+ - -1.175862
+ - 0.0
+ - - 2.653077
+ - 0.925317
+ - 0.0
+ - - 2.65313
+ - -0.925305
+ - 0.0
+ - - 0.21692
+ - 2.198925
+ - 0.0
+ - - -2.2849
+ - 1.349929
+ - 0.0
+ - - -2.284943
+ - -1.349879
+ - 0.0
+ - - 0.216861
+ - -2.198945
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.58164888069049
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.090862
+ - -1.0e-05
+ - 0.0
+ - - 0.759496
+ - -2.1e-05
+ - 0.0
+ - - -0.127031
+ - 1.175849
+ - -0.0
+ - - -1.395622
+ - 0.736981
+ - 0.0
+ - - -1.395655
+ - -0.736944
+ - 0.0
+ - - -0.127075
+ - -1.175862
+ - 0.0
+ - - 2.653077
+ - 0.925317
+ - 0.0
+ - - 2.65313
+ - -0.925305
+ - 0.0
+ - - 0.21692
+ - 2.198925
+ - 0.0
+ - - -2.2849
+ - 1.349929
+ - 0.0
+ - - -2.284943
+ - -1.349879
+ - 0.0
+ - - 0.216861
+ - -2.198945
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.91441321892875
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.097959
+ - -1.2e-05
+ - 0.0
+ - - 0.758079
+ - -2.0e-06
+ - 0.0
+ - - -0.127301
+ - 1.177359
+ - 0.0
+ - - -1.403668
+ - 0.737425
+ - 0.0
+ - - -1.403679
+ - -0.737397
+ - 0.0
+ - - -0.127319
+ - -1.17735
+ - 0.0
+ - - 2.666649
+ - 0.924328
+ - 0.0
+ - - 2.666635
+ - -0.92436
+ - 0.0
+ - - 0.22148
+ - 2.200537
+ - 0.0
+ - - -2.297571
+ - 1.347691
+ - 0.0
+ - - -2.297591
+ - -1.34765
+ - 0.0
+ - - 0.221447
+ - -2.200533
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 60.82881224559601
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 2.113756518
- - 0.0006152075
+ - - 2.090626
+ - -1.2e-05
- -0.0
- - - 0.7597300648
- - 0.0026524783
+ - - 0.757778
+ - -2.0e-06
- -0.0
- - - -0.1258369514
- - 1.1852647958
+ - - -0.126559
+ - 1.175668
- -0.0
- - - -1.4141544912
- - 0.737531659
+ - - -1.39587
+ - 0.737025
- -0.0
- - - -1.411257695
- - -0.7415003635
- - 0.0
- - - -0.1211964386
- - -1.1828416808
- - 0.0
- - - 2.6850509838
- - 0.930566476
+ - - -1.395881
+ - -0.736997
- -0.0
- - - 2.6790876513
- - -0.933436777
- - 0.0
- - - 0.221879019
- - 2.2153435404
+ - - -0.126577
+ - -1.175659
- -0.0
- - - -2.3151869054
- - 1.3491643171
+ - - 2.652791
+ - 0.925667
+ - -0.0
+ - - 2.652777
+ - -0.925699
+ - -0.0
+ - - 0.219234
+ - 2.19797
+ - -0.0
+ - - -2.28619
+ - 1.348453
+ - -0.0
+ - - -2.28621
+ - -1.348411
+ - -0.0
+ - - 0.219202
+ - -2.197966
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.9437473248465
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.090479
+ - -1.2e-05
+ - -0.0
+ - - 0.754092
+ - -2.0e-06
+ - -0.0
+ - - -0.124484
+ - 1.172544
+ - -0.0
+ - - -1.396966
+ - 0.733317
+ - -0.0
+ - - -1.396977
+ - -0.733289
+ - -0.0
+ - - -0.124502
+ - -1.172535
+ - -0.0
+ - - 2.654792
+ - 0.925949
+ - -0.0
+ - - 2.654778
+ - -0.925981
+ - -0.0
+ - - 0.219966
+ - 2.196825
+ - -0.0
+ - - -2.287986
+ - 1.346915
+ - -0.0
+ - - -2.288006
+ - -1.346874
+ - -0.0
+ - - 0.219933
+ - -2.196821
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 88.43072235201917
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.10308
+ - -1.2e-05
+ - -0.0
+ - - 0.75648
+ - -2.0e-06
+ - -0.0
+ - - -0.125553
+ - 1.178639
+ - -0.0
+ - - -1.407275
+ - 0.736715
+ - -0.0
+ - - -1.407286
+ - -0.736687
+ - -0.0
+ - - -0.12557
+ - -1.17863
+ - -0.0
+ - - 2.671082
+ - 0.926668
+ - -0.0
+ - - 2.671068
+ - -0.9267
+ - -0.0
+ - - 0.220839
+ - 2.20482
+ - -0.0
+ - - -2.301264
+ - 1.350491
+ - -0.0
+ - - -2.301284
+ - -1.350449
+ - -0.0
+ - - 0.220806
+ - -2.204816
- -0.0
- - - -2.3079149917
- - -1.3600379649
- - 0.0
- - - 0.2308382029
- - -2.2119321696
- - 0.0
isotopes:
- 12
- 12
@@ -309,6 +1271,154 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 55.880670939630775
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.0908622992
+ - -9.6799e-06
+ - 0.0
+ - - 0.7594960912
+ - -2.05273e-05
+ - 0.0
+ - - -0.1270305245
+ - 1.1758489247
+ - -1.7e-09
+ - - -1.3956219311
+ - 0.7369808092
+ - 0.0
+ - - -1.3956553435
+ - -0.7369441613
+ - 0.0
+ - - -0.1270746735
+ - -1.1758625031
+ - 0.0
+ - - 2.6530768115
+ - 0.9253173605
+ - 0.0
+ - - 2.6531304582
+ - -0.9253046864
+ - 0.0
+ - - 0.2169195871
+ - 2.1989245974
+ - 0.0
+ - - -2.2848999144
+ - 1.3499289009
+ - 0.0
+ - - -2.2849434963
+ - -1.3498786214
+ - 0.0
+ - - 0.2168610475
+ - -2.1989447248
+ - 0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 66.52015001542256
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.090218
+ - -1.2e-05
+ - -0.0
+ - - 0.758177
+ - -2.0e-06
+ - -0.0
+ - - -0.126397
+ - 1.173887
+ - -0.0
+ - - -1.395034
+ - 0.735079
+ - -0.0
+ - - -1.395045
+ - -0.735051
+ - -0.0
+ - - -0.126415
+ - -1.173878
+ - -0.0
+ - - 2.653566
+ - 0.925354
+ - -0.0
+ - - 2.653553
+ - -0.925386
+ - -0.0
+ - - 0.216411
+ - 2.197498
+ - -0.0
+ - - -2.285136
+ - 1.347539
+ - -0.0
+ - - -2.285156
+ - -1.347498
+ - -0.0
+ - - 0.216379
+ - -2.197494
+ - -0.0
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Furan.yml b/input/reference_sets/main/Furan.yml
index 41e6df7aa7..cef4d30cd0 100644
--- a/input/reference_sets/main/Furan.yml
+++ b/input/reference_sets/main/Furan.yml
@@ -128,6 +128,124 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.140729805817307
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000257
+ - -1.159142
+ - -0.0
+ - - -1.093176
+ - -0.347213
+ - -0.0
+ - - -0.715896
+ - 0.956364
+ - -0.0
+ - - 0.715498
+ - 0.956673
+ - -0.0
+ - - 1.093343
+ - -0.34674
+ - -0.0
+ - - -2.046328
+ - -0.843644
+ - -0.0
+ - - -1.370577
+ - 1.810267
+ - -0.0
+ - - 1.369807
+ - 1.81086
+ - -0.0
+ - - 2.046708
+ - -0.842762
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.707945869740719
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000256
+ - -1.15722
+ - -0.0
+ - - -1.094005
+ - -0.347044
+ - -0.0
+ - - -0.716482
+ - 0.954474
+ - -0.0
+ - - 0.716084
+ - 0.954783
+ - -0.0
+ - - 1.094174
+ - -0.34657
+ - -0.0
+ - - -2.048137
+ - -0.842857
+ - -0.0
+ - - -1.369797
+ - 1.81024
+ - -0.0
+ - - 1.369025
+ - 1.810833
+ - -0.0
+ - - 2.048517
+ - -0.841977
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -187,44 +305,280 @@ calculated_data:
- H
- H
- H
- LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -10.115030128658418
+ value: 7.315659910551153
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 0.0002689359
- - -1.154637392
- - -2.5e-09
- - - -1.0888252423
- - -0.3448967134
+ - - 0.000279
+ - -1.165922
+ - -0.0
+ - - -1.099687
+ - -0.349011
+ - -0.0
+ - - -0.717579
+ - 0.95904
+ - -0.0
+ - - 0.717164
+ - 0.959351
+ - -0.0
+ - - 1.099854
+ - -0.34855
+ - -0.0
+ - - -2.055956
+ - -0.850208
+ - -0.0
+ - - -1.372333
+ - 1.819355
+ - -0.0
+ - - 1.371553
+ - 1.819945
+ - -0.0
+ - - 2.056341
+ - -0.849337
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.686788946970611
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000259
+ - -1.169031
+ - -0.0
+ - - -1.099529
+ - -0.350274
+ - -0.0
+ - - -0.717936
+ - 0.960862
+ - -0.0
+ - - 0.717532
+ - 0.961172
+ - -0.0
+ - - 1.0997
+ - -0.349797
+ - -0.0
+ - - -2.060073
+ - -0.853712
+ - -0.0
+ - - -1.376845
+ - 1.823837
+ - -0.0
+ - - 1.376068
+ - 1.824432
+ - -0.0
+ - - 2.060459
+ - -0.852828
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.432700412111525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000255
+ - -1.150284
+ - -0.0
+ - - -1.08756
+ - -0.345021
+ - -0.0
+ - - -0.714815
+ - 0.950845
+ - -0.0
+ - - 0.714418
+ - 0.951153
+ - -0.0
+ - - 1.087726
+ - -0.344549
+ - -0.0
+ - - -2.042651
+ - -0.839235
+ - -0.0
+ - - -1.370087
+ - 1.804758
+ - -0.0
+ - - 1.36932
+ - 1.805351
+ - -0.0
+ - - 2.043029
+ - -0.838356
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.686190608999535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000254
+ - -1.159576
- 0.0
- - - -0.7169224507
- - 0.9532303875
+ - - -1.093921
+ - -0.347621
- 0.0
- - - 0.7164210419
- - 0.9536294429
+ - - -0.717504
+ - 0.956842
- 0.0
- - - 1.0890230185
- - -0.34440305499999996
+ - - 0.717107
+ - 0.95715
- 0.0
- - - -2.0433100034
- - -0.8404612695
+ - - 1.09409
+ - -0.347149
- 0.0
- - - -1.3742862615
- - 1.8056247681
+ - - -2.047874
+ - -0.846722
- 0.0
- - - 1.3735602202999997
- - 1.8062528917
+ - - -1.372325
+ - 1.813491
- 0.0
- - - 2.0437063521
- - -0.8396776267
+ - - 1.37155
+ - 1.814086
+ - 0.0
+ - - 2.048258
+ - -0.84584
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.4572921834866674
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000269
+ - -1.154637
+ - -0.0
+ - - -1.088825
+ - -0.344897
+ - 0.0
+ - - -0.716922
+ - 0.95323
+ - 0.0
+ - - 0.716421
+ - 0.953629
+ - 0.0
+ - - 1.089023
+ - -0.344403
+ - 0.0
+ - - -2.04331
+ - -0.840461
+ - 0.0
+ - - -1.374286
+ - 1.805625
+ - 0.0
+ - - 1.37356
+ - 1.806253
+ - 0.0
+ - - 2.043706
+ - -0.839678
- 0.0
isotopes:
- 16
@@ -246,6 +600,537 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.819945601699439
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000269
+ - -1.154637
+ - -0.0
+ - - -1.088825
+ - -0.344897
+ - 0.0
+ - - -0.716922
+ - 0.95323
+ - 0.0
+ - - 0.716421
+ - 0.953629
+ - 0.0
+ - - 1.089023
+ - -0.344403
+ - 0.0
+ - - -2.04331
+ - -0.840461
+ - 0.0
+ - - -1.374286
+ - 1.805625
+ - 0.0
+ - - 1.37356
+ - 1.806253
+ - 0.0
+ - - 2.043706
+ - -0.839678
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.732493368719303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000269
+ - -1.154637
+ - -0.0
+ - - -1.088825
+ - -0.344897
+ - 0.0
+ - - -0.716922
+ - 0.95323
+ - 0.0
+ - - 0.716421
+ - 0.953629
+ - 0.0
+ - - 1.089023
+ - -0.344403
+ - 0.0
+ - - -2.04331
+ - -0.840461
+ - 0.0
+ - - -1.374286
+ - 1.805625
+ - 0.0
+ - - 1.37356
+ - 1.806253
+ - 0.0
+ - - 2.043706
+ - -0.839678
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -7.235908489091041
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000254
+ - -1.157035
+ - 0.0
+ - - -1.0918
+ - -0.347439
+ - 0.0
+ - - -0.717445
+ - 0.957852
+ - 0.0
+ - - 0.717046
+ - 0.95816
+ - 0.0
+ - - 1.091967
+ - -0.346968
+ - 0.0
+ - - -2.044808
+ - -0.849877
+ - 0.0
+ - - -1.373179
+ - 1.814183
+ - 0.0
+ - - 1.372408
+ - 1.814776
+ - 0.0
+ - - 2.045193
+ - -0.848992
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.658931134796212
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000261
+ - -1.149618
+ - -0.0
+ - - -1.086979
+ - -0.346178
+ - -0.0
+ - - -0.716347
+ - 0.953489
+ - -0.0
+ - - 0.715993
+ - 0.953773
+ - -0.0
+ - - 1.087176
+ - -0.345761
+ - -0.0
+ - - -2.041401
+ - -0.84227
+ - -0.0
+ - - -1.373265
+ - 1.806019
+ - -0.0
+ - - 1.372403
+ - 1.80669
+ - -0.0
+ - - 2.041795
+ - -0.841481
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 2.1744787630994558
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000257
+ - -1.150845
+ - -0.0
+ - - -1.085859
+ - -0.347092
+ - -0.0
+ - - -0.713848
+ - 0.95389
+ - -0.0
+ - - 0.713445
+ - 0.954201
+ - -0.0
+ - - 1.086028
+ - -0.346622
+ - -0.0
+ - - -2.041915
+ - -0.843612
+ - -0.0
+ - - -1.371294
+ - 1.808442
+ - -0.0
+ - - 1.370527
+ - 1.809032
+ - -0.0
+ - - 2.042296
+ - -0.842733
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.406107230757623
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.00026
+ - -1.166337
+ - -0.0
+ - - -1.098522
+ - -0.347432
+ - -0.0
+ - - -0.717091
+ - 0.959208
+ - -0.0
+ - - 0.716682
+ - 0.95952
+ - -0.0
+ - - 1.098692
+ - -0.346954
+ - -0.0
+ - - -2.052683
+ - -0.851234
+ - -0.0
+ - - -1.372214
+ - 1.818826
+ - -0.0
+ - - 1.371445
+ - 1.819412
+ - -0.0
+ - - 2.053066
+ - -0.850348
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.115030128658418
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0002689359
+ - -1.154637392
+ - -2.5e-09
+ - - -1.0888252423
+ - -0.3448967134
+ - 0.0
+ - - -0.7169224507
+ - 0.9532303875
+ - 0.0
+ - - 0.7164210419
+ - 0.9536294429
+ - 0.0
+ - - 1.0890230185
+ - -0.34440305499999996
+ - 0.0
+ - - -2.0433100034
+ - -0.8404612695
+ - 0.0
+ - - -1.3742862615
+ - 1.8056247681
+ - 0.0
+ - - 1.3735602202999997
+ - 1.8062528917
+ - 0.0
+ - - 2.0437063521
+ - -0.8396776267
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -6.995213331557806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0002689359
+ - -1.154637392
+ - -2.5e-09
+ - - -1.0888252423
+ - -0.3448967134
+ - 0.0
+ - - -0.7169224507
+ - 0.9532303875
+ - 0.0
+ - - 0.7164210419
+ - 0.9536294429
+ - 0.0
+ - - 1.0890230185
+ - -0.344403055
+ - 0.0
+ - - -2.0433100034
+ - -0.8404612695
+ - 0.0
+ - - -1.3742862615
+ - 1.8056247681
+ - 0.0
+ - - 1.3735602203
+ - 1.8062528917
+ - 0.0
+ - - 2.0437063521
+ - -0.8396776267
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 1.3356411699179105
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.000284
+ - -1.149959
+ - -0.0
+ - - -1.085627
+ - -0.346327
+ - -0.0
+ - - -0.715129
+ - 0.952699
+ - -0.0
+ - - 0.714683
+ - 0.953047
+ - -0.0
+ - - 1.085802
+ - -0.34581
+ - -0.0
+ - - -2.041192
+ - -0.841261
+ - -0.0
+ - - -1.371906
+ - 1.806047
+ - -0.0
+ - - 1.371183
+ - 1.806614
+ - -0.0
+ - - 2.041539
+ - -0.840389
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Glyoxal.yml b/input/reference_sets/main/Glyoxal.yml
index 15debfbf88..e15bc8ba69 100644
--- a/input/reference_sets/main/Glyoxal.yml
+++ b/input/reference_sets/main/Glyoxal.yml
@@ -95,6 +95,94 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.53255208997673
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.7199
+ - -0.173128
+ - -0.0
+ - - 0.65299
+ - 0.388594
+ - -0.0
+ - - -0.652994
+ - -0.388597
+ - 0.0
+ - - -1.719904
+ - 0.173126
+ - 0.0
+ - - 0.541089
+ - 1.487032
+ - -0.0
+ - - -0.541093
+ - -1.487034
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.38227857749884
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.717727
+ - -0.171664
+ - 0.0
+ - - 0.655452
+ - 0.38832
+ - 0.0
+ - - -0.655456
+ - -0.388322
+ - -0.0
+ - - -1.717731
+ - 0.171662
+ - -0.0
+ - - 0.542564
+ - 1.489242
+ - 0.0
+ - - -0.542568
+ - -1.489244
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.75918510211027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.729945
+ - -0.17272
+ - -0.0
+ - - 0.660754
+ - 0.388979
+ - -0.0
+ - - -0.660759
+ - -0.388981
+ - 0.0
+ - - -1.729949
+ - 0.172718
+ - 0.0
+ - - 0.544487
+ - 1.497003
+ - -0.0
+ - - -0.544491
+ - -1.497005
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.23177308197717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.732521
+ - -0.175341
+ - -0.0
+ - - 0.659565
+ - 0.389304
+ - -0.0
+ - - -0.659569
+ - -0.389306
+ - 0.0
+ - - -1.732525
+ - 0.175339
+ - 0.0
+ - - 0.544059
+ - 1.502032
+ - -0.0
+ - - -0.544063
+ - -1.502034
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.1723778414697
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.709673
+ - -0.17141
+ - 0.0
+ - - 0.652865
+ - 0.388102
+ - 0.0
+ - - -0.652869
+ - -0.388104
+ - -0.0
+ - - -1.709677
+ - 0.171408
+ - -0.0
+ - - 0.541868
+ - 1.487473
+ - 0.0
+ - - -0.541872
+ - -1.487475
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -53.350642658057446
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.721088
+ - -0.173633
+ - -0.0
+ - - 0.658069
+ - 0.387698
+ - -0.0
+ - - -0.658073
+ - -0.3877
+ - 0.0
+ - - -1.721092
+ - 0.173631
+ - 0.0
+ - - 0.540054
+ - 1.490139
+ - -0.0
+ - - -0.540058
+ - -1.490142
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -44.441222691811255
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.713466
+ - -0.171044
+ - 0.0
+ - - 0.654747
+ - 0.390491
+ - -0.0
+ - - -0.654748
+ - -0.390496
+ - 0.0
+ - - -1.713463
+ - 0.171049
+ - -0.0
+ - - 0.544111
+ - 1.489764
+ - -0.0
+ - - -0.544124
+ - -1.489771
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.85733562169897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.713466
+ - -0.171044
+ - 0.0
+ - - 0.654747
+ - 0.390491
+ - -0.0
+ - - -0.654748
+ - -0.390496
+ - 0.0
+ - - -1.713463
+ - 0.171049
+ - -0.0
+ - - 0.544111
+ - 1.489764
+ - -0.0
+ - - -0.544124
+ - -1.489771
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -49.89418464643126
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.713466
+ - -0.171044
+ - 0.0
+ - - 0.654747
+ - 0.390491
+ - -0.0
+ - - -0.654748
+ - -0.390496
+ - 0.0
+ - - -1.713463
+ - 0.171049
+ - -0.0
+ - - 0.544111
+ - 1.489764
+ - -0.0
+ - - -0.544124
+ - -1.489771
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -51.42710134269495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.721452
+ - -0.175381
+ - 0.0
+ - - 0.658142
+ - 0.386017
+ - 0.0
+ - - -0.658146
+ - -0.386019
+ - 0.0
+ - - -1.721456
+ - 0.175379
+ - 0.0
+ - - 0.536985
+ - 1.489205
+ - 0.0
+ - - -0.536989
+ - -1.489207
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -47.43771326094826
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.709083
+ - -0.171207
+ - -0.0
+ - - 0.653901
+ - 0.390463
+ - -0.0
+ - - -0.653905
+ - -0.390466
+ - 0.0
+ - - -1.709087
+ - 0.171205
+ - 0.0
+ - - 0.543515
+ - 1.489433
+ - -0.0
+ - - -0.543519
+ - -1.489435
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.71284751259614
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.712265
+ - -0.172487
+ - 0.0
+ - - 0.653619
+ - 0.387096
+ - 0.0
+ - - -0.653623
+ - -0.387098
+ - -0.0
+ - - -1.712269
+ - 0.172485
+ - -0.0
+ - - 0.541019
+ - 1.489476
+ - 0.0
+ - - -0.541023
+ - -1.489478
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.108035929627576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.728905
+ - -0.17319
+ - 0.0
+ - - 0.656289
+ - 0.389945
+ - 0.0
+ - - -0.656293
+ - -0.389947
+ - 0.0
+ - - -1.728909
+ - 0.173188
+ - 0.0
+ - - 0.544642
+ - 1.494867
+ - 0.0
+ - - -0.544646
+ - -1.494869
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -48.92252504284738
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.7134656017
+ - -0.1710442007
+ - 0.0
+ - - 0.6547465874
+ - 0.3904911309
+ - -0.0
+ - - -0.6547484879
+ - -0.3904964098
+ - 0.0
+ - - -1.7134625261
+ - 0.1710489365
+ - -0.0
+ - - 0.5441106155
+ - 1.4897644594
+ - -0.0
+ - - -0.5441238176
+ - -1.4897706727
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.534575228893466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.71317
+ - -0.170075
+ - -0.0
+ - - 0.655782
+ - 0.389051
+ - -0.0
+ - - -0.655786
+ - -0.389053
+ - 0.0
+ - - -1.713174
+ - 0.170073
+ - 0.0
+ - - 0.544324
+ - 1.489847
+ - -0.0
+ - - -0.544328
+ - -1.48985
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - C
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrazine.yml b/input/reference_sets/main/Hydrazine.yml
index 02efbf595c..5797befc15 100644
--- a/input/reference_sets/main/Hydrazine.yml
+++ b/input/reference_sets/main/Hydrazine.yml
@@ -95,6 +95,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.225854509255797
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.708586
+ - 0.07664
+ - 0.099856
+ - - -0.708576
+ - 0.076757
+ - -0.099765
+ - - 1.141296
+ - 0.316164
+ - -0.781382
+ - - 1.054369
+ - -0.833337
+ - 0.384003
+ - - -1.054377
+ - -0.832921
+ - -0.384848
+ - - -1.141281
+ - 0.315382
+ - 0.781719
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.313230152584822
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.708307
+ - 0.074033
+ - 0.097786
+ - - -0.708297
+ - 0.074147
+ - -0.097697
+ - - 1.144067
+ - 0.319359
+ - -0.781561
+ - - 1.060075
+ - -0.833925
+ - 0.385567
+ - - -1.060083
+ - -0.833507
+ - -0.386413
+ - - -1.144052
+ - 0.318577
+ - 0.781901
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -139,6 +227,490 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 18.056999162142354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.711659
+ - 0.083347
+ - 0.104404
+ - - -0.711649
+ - 0.083468
+ - -0.104306
+ - - 1.144483
+ - 0.311518
+ - -0.786187
+ - - 1.056188
+ - -0.835398
+ - 0.384758
+ - - -1.056196
+ - -0.834981
+ - -0.385606
+ - - -1.144469
+ - 0.310731
+ - 0.78652
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 16.07995578064046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.713119
+ - 0.0832
+ - 0.105062
+ - - -0.713109
+ - 0.083322
+ - -0.104964
+ - - 1.149153
+ - 0.316124
+ - -0.788939
+ - - 1.061534
+ - -0.839856
+ - 0.385914
+ - - -1.061542
+ - -0.839438
+ - -0.386766
+ - - -1.149139
+ - 0.315334
+ - 0.789276
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.763147788447107
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.703138
+ - 0.066497
+ - 0.092222
+ - - -0.703128
+ - 0.066606
+ - -0.092141
+ - - 1.143136
+ - 0.32669
+ - -0.778351
+ - - 1.061909
+ - -0.833719
+ - 0.38668
+ - - -1.061917
+ - -0.8333
+ - -0.387526
+ - - -1.143121
+ - 0.32591
+ - 0.778699
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.270940273195862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.710278
+ - 0.079755
+ - 0.102966
+ - - -0.710268
+ - 0.079874
+ - -0.102872
+ - - 1.144242
+ - 0.315321
+ - -0.781968
+ - - 1.057435
+ - -0.835609
+ - 0.381642
+ - - -1.057442
+ - -0.835195
+ - -0.382489
+ - - -1.144228
+ - 0.314538
+ - 0.782305
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.25551508293954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.706797
+ - 0.073386
+ - 0.098963
+ - - -0.7068
+ - 0.0735
+ - -0.098894
+ - - 1.143516
+ - 0.322709
+ - -0.777571
+ - - 1.054564
+ - -0.836605
+ - 0.378765
+ - - -1.054609
+ - -0.836215
+ - -0.379602
+ - - -1.143449
+ - 0.321909
+ - 0.777922
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.299487410037422
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.706797
+ - 0.073386
+ - 0.098963
+ - - -0.7068
+ - 0.0735
+ - -0.098894
+ - - 1.143516
+ - 0.322709
+ - -0.777571
+ - - 1.054564
+ - -0.836605
+ - 0.378765
+ - - -1.054609
+ - -0.836215
+ - -0.379602
+ - - -1.143449
+ - 0.321909
+ - 0.777922
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.175142365220083
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.706797
+ - 0.073386
+ - 0.098963
+ - - -0.7068
+ - 0.0735
+ - -0.098894
+ - - 1.143516
+ - 0.322709
+ - -0.777571
+ - - 1.054564
+ - -0.836605
+ - 0.378765
+ - - -1.054609
+ - -0.836215
+ - -0.379602
+ - - -1.143449
+ - 0.321909
+ - 0.777922
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.43569926836574
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.710512
+ - 0.090281
+ - 0.106432
+ - - -0.710502
+ - 0.090404
+ - -0.106327
+ - - 1.141162
+ - 0.298848
+ - -0.788645
+ - - 1.048177
+ - -0.829662
+ - 0.385547
+ - - -1.048184
+ - -0.829245
+ - -0.386389
+ - - -1.141148
+ - 0.298058
+ - 0.788965
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 19.86632576062835
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.704069
+ - 0.072639
+ - 0.097031
+ - - -0.704059
+ - 0.072753
+ - -0.096944
+ - - 1.141164
+ - 0.32041
+ - -0.77995
+ - - 1.055746
+ - -0.833582
+ - 0.384514
+ - - -1.055754
+ - -0.833165
+ - -0.38536
+ - - -1.141149
+ - 0.319628
+ - 0.780292
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 14.232865105133666
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.701118
+ - 0.072678
+ - 0.095872
+ - - -0.701108
+ - 0.07279
+ - -0.095785
+ - - 1.139816
+ - 0.31818
+ - -0.780865
+ - - 1.056558
+ - -0.831391
+ - 0.387293
+ - - -1.056566
+ - -0.830971
+ - -0.388136
+ - - -1.139801
+ - 0.317398
+ - 0.781205
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.495918465592506
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.715788
+ - 0.086613
+ - 0.108316
+ - - -0.715778
+ - 0.086738
+ - -0.108214
+ - - 1.144865
+ - 0.311372
+ - -0.787335
+ - - 1.053971
+ - -0.838518
+ - 0.382697
+ - - -1.053979
+ - -0.838103
+ - -0.383547
+ - - -1.14485
+ - 0.310583
+ - 0.787668
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -183,6 +755,94 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 20.527230427651084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.7067970477
+ - 0.0733862933
+ - 0.098963282
+ - - -0.7067999582
+ - 0.0734996458
+ - -0.0988938241
+ - - 1.1435156687
+ - 0.3227092799
+ - -0.7775707808
+ - - 1.0545635656
+ - -0.8366054923
+ - 0.3787645264
+ - - -1.0546094308
+ - -0.836214572
+ - -0.3796016385
+ - - -1.1434494302
+ - 0.3219092106
+ - 0.7779216875
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.742966488155897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.703661
+ - 0.071233
+ - 0.095467
+ - - -0.703651
+ - 0.071345
+ - -0.095381
+ - - 1.140568
+ - 0.320779
+ - -0.779509
+ - - 1.056649
+ - -0.832545
+ - 0.385811
+ - - -1.056656
+ - -0.832127
+ - -0.386655
+ - - -1.140553
+ - 0.319999
+ - 0.779852
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrazinecarbothioamide.yml b/input/reference_sets/main/Hydrazinecarbothioamide.yml
index 7cb6e40e40..d9090c8175 100644
--- a/input/reference_sets/main/Hydrazinecarbothioamide.yml
+++ b/input/reference_sets/main/Hydrazinecarbothioamide.yml
@@ -81,7 +81,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 30.950615454112647
+ value: 30.950615454112626
class: ThermoData
xyz_dict:
coords:
@@ -139,6 +139,838 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.486931176372405
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.185404
+ - 0.262529
+ - -0.006765
+ - - 0.858337
+ - 0.69649
+ - -0.087338
+ - - -0.17877
+ - -0.183702
+ - -0.011515
+ - - 0.170649
+ - -1.480746
+ - -0.00119
+ - - -1.751443
+ - 0.365929
+ - 0.045367
+ - - 2.616862
+ - 0.581207
+ - 0.853247
+ - - 2.713073
+ - 0.609344
+ - -0.797843
+ - - 0.61487
+ - 1.670709
+ - 0.004914
+ - - -0.560722
+ - -2.164914
+ - 0.033852
+ - - 1.143124
+ - -1.738535
+ - -0.030067
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.74740789677132
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.188307
+ - 0.269462
+ - 0.000842
+ - - 0.858141
+ - 0.696183
+ - 0.000365
+ - - -0.178715
+ - -0.185159
+ - -0.000107
+ - - 0.167856
+ - -1.482888
+ - -9.1e-05
+ - - -1.755389
+ - 0.364477
+ - -0.000657
+ - - 2.671315
+ - 0.596459
+ - 0.829848
+ - - 2.671958
+ - 0.596611
+ - -0.82773
+ - - 0.611675
+ - 1.674317
+ - 0.000365
+ - - -0.56457
+ - -2.167399
+ - -0.000431
+ - - 1.140803
+ - -1.743753
+ - 0.000256
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 27.00436025456478
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.192959
+ - 0.265091
+ - -0.00926
+ - - 0.862075
+ - 0.696682
+ - -0.108376
+ - - -0.182638
+ - -0.185881
+ - -0.014076
+ - - 0.16462
+ - -1.48957
+ - -0.003271
+ - - -1.754538
+ - 0.372518
+ - 0.057124
+ - - 2.613339
+ - 0.586003
+ - 0.86157
+ - - 2.732612
+ - 0.626211
+ - -0.791841
+ - - 0.612078
+ - 1.672027
+ - 0.003995
+ - - -0.569616
+ - -2.174215
+ - 0.043245
+ - - 1.14049
+ - -1.750556
+ - -0.036449
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.318158590256303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.194397
+ - 0.261547
+ - -0.007123
+ - - 0.85961
+ - 0.699662
+ - -0.085608
+ - - -0.187849
+ - -0.185495
+ - -0.011674
+ - - 0.164264
+ - -1.491018
+ - -0.004181
+ - - -1.764517
+ - 0.375135
+ - 0.04382
+ - - 2.63407
+ - 0.587875
+ - 0.858842
+ - - 2.727172
+ - 0.616237
+ - -0.805207
+ - - 0.606618
+ - 1.682759
+ - 0.006622
+ - - -0.571594
+ - -2.183106
+ - 0.03415
+ - - 1.149211
+ - -1.745286
+ - -0.026981
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.309090363719857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.180444
+ - 0.272525
+ - 0.000841
+ - - 0.856938
+ - 0.694713
+ - 0.000381
+ - - -0.174776
+ - -0.184263
+ - -0.000103
+ - - 0.171073
+ - -1.476446
+ - -8.8e-05
+ - - -1.747156
+ - 0.359974
+ - -0.000664
+ - - 2.665506
+ - 0.588168
+ - 0.830814
+ - - 2.666131
+ - 0.588314
+ - -0.828712
+ - - 0.610834
+ - 1.671758
+ - 0.000363
+ - - -0.561077
+ - -2.160806
+ - -0.000436
+ - - 1.143467
+ - -1.735626
+ - 0.000264
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.965530182615606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.189854
+ - 0.262399
+ - 0.00084
+ - - 0.858604
+ - 0.698462
+ - 0.000364
+ - - -0.179897
+ - -0.18567
+ - -0.000107
+ - - 0.168009
+ - -1.484152
+ - -8.9e-05
+ - - -1.766274
+ - 0.36783
+ - -0.000659
+ - - 2.672684
+ - 0.595614
+ - 0.829816
+ - - 2.673326
+ - 0.595766
+ - -0.8277
+ - - 0.61273
+ - 1.678723
+ - 0.000365
+ - - -0.562718
+ - -2.172942
+ - -0.000428
+ - - 1.145064
+ - -1.737721
+ - 0.000259
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 38.27639528928839
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.186316
+ - 0.265792
+ - 0.000674
+ - - 0.858516
+ - 0.694445
+ - -0.001405
+ - - -0.173305
+ - -0.185167
+ - -0.000363
+ - - 0.169578
+ - -1.480636
+ - -0.00014
+ - - -1.748755
+ - 0.361994
+ - 0.000292
+ - - 2.664378
+ - 0.598627
+ - 0.828796
+ - - 2.666998
+ - 0.599405
+ - -0.825582
+ - - 0.61388
+ - 1.671726
+ - 0.000453
+ - - -0.566378
+ - -2.161307
+ - 0.000304
+ - - 1.140153
+ - -1.74657
+ - -0.000368
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.41428562557078
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.186316
+ - 0.265792
+ - 0.000674
+ - - 0.858516
+ - 0.694445
+ - -0.001405
+ - - -0.173305
+ - -0.185167
+ - -0.000363
+ - - 0.169578
+ - -1.480636
+ - -0.00014
+ - - -1.748755
+ - 0.361994
+ - 0.000292
+ - - 2.664378
+ - 0.598627
+ - 0.828796
+ - - 2.666998
+ - 0.599405
+ - -0.825582
+ - - 0.61388
+ - 1.671726
+ - 0.000453
+ - - -0.566378
+ - -2.161307
+ - 0.000304
+ - - 1.140153
+ - -1.74657
+ - -0.000368
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.444520860938184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.186316
+ - 0.265792
+ - 0.000674
+ - - 0.858516
+ - 0.694445
+ - -0.001405
+ - - -0.173305
+ - -0.185167
+ - -0.000363
+ - - 0.169578
+ - -1.480636
+ - -0.00014
+ - - -1.748755
+ - 0.361994
+ - 0.000292
+ - - 2.664378
+ - 0.598627
+ - 0.828796
+ - - 2.666998
+ - 0.599405
+ - -0.825582
+ - - 0.61388
+ - 1.671726
+ - 0.000453
+ - - -0.566378
+ - -2.161307
+ - 0.000304
+ - - 1.140153
+ - -1.74657
+ - -0.000368
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.691428743006355
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -2.195174
+ - -0.266108
+ - -0.000981
+ - - -0.862773
+ - -0.694892
+ - -0.016775
+ - - 0.174527
+ - 0.187963
+ - -0.00191
+ - - -0.172102
+ - 1.486192
+ - 0.001949
+ - - 1.757096
+ - -0.36407
+ - 0.007882
+ - - -2.665688
+ - -0.610649
+ - 0.831664
+ - - -2.684768
+ - -0.617814
+ - -0.819157
+ - - -0.615301
+ - -1.673973
+ - 0.000863
+ - - 0.559423
+ - 2.172852
+ - 0.005214
+ - - -1.146199
+ - 1.745025
+ - -0.006283
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 23.891786812093933
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.181863
+ - 0.266254
+ - 0.000839
+ - - 0.858885
+ - 0.694268
+ - 0.000364
+ - - -0.175834
+ - -0.183787
+ - -0.000106
+ - - 0.171832
+ - -1.477531
+ - -9.1e-05
+ - - -1.750065
+ - 0.360175
+ - -0.000652
+ - - 2.664503
+ - 0.593624
+ - 0.829093
+ - - 2.665145
+ - 0.593776
+ - -0.826981
+ - - 0.614438
+ - 1.672673
+ - 0.000367
+ - - -0.563148
+ - -2.16019
+ - -0.00043
+ - - 1.143764
+ - -1.740951
+ - 0.000257
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 17.954243714452424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.17724
+ - 0.267426
+ - 0.000838
+ - - 0.859667
+ - 0.69274
+ - 0.000375
+ - - -0.173761
+ - -0.184881
+ - -0.000103
+ - - 0.171708
+ - -1.477352
+ - -8.9e-05
+ - - -1.743451
+ - 0.364722
+ - -0.000656
+ - - 2.663002
+ - 0.59035
+ - 0.828941
+ - - 2.663633
+ - 0.590499
+ - -0.826837
+ - - 0.608787
+ - 1.669387
+ - 0.000365
+ - - -0.560961
+ - -2.160741
+ - -0.000433
+ - - 1.14552
+ - -1.73384
+ - 0.000261
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.539585549829003
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.192957
+ - 0.252707
+ - -0.010722
+ - - 0.857327
+ - 0.698984
+ - -0.128853
+ - - -0.186839
+ - -0.184264
+ - -0.016419
+ - - 0.166929
+ - -1.4862
+ - -0.003747
+ - - -1.759495
+ - 0.376231
+ - 0.066135
+ - - 2.601625
+ - 0.581164
+ - 0.865901
+ - - 2.740538
+ - 0.623112
+ - -0.786509
+ - - 0.613264
+ - 1.675071
+ - 0.008848
+ - - -0.562483
+ - -2.178872
+ - 0.049357
+ - - 1.147561
+ - -1.739623
+ - -0.04133
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -203,6 +1035,134 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 24.56001624598827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.1863163269
+ - 0.2657922298
+ - 0.0006742138
+ - - 0.8585163558
+ - 0.6944452672
+ - -0.0014049962
+ - - -0.1733046361
+ - -0.1851669176
+ - -0.0003628965
+ - - 0.1695777586
+ - -1.480636089
+ - -0.0001403866
+ - - -1.74875481
+ - 0.3619944035
+ - 0.000292062
+ - - 2.6643784139
+ - 0.5986272464
+ - 0.8287961766
+ - - 2.6669983125
+ - 0.5994053221
+ - -0.8255822899
+ - - 0.6138798698
+ - 1.6717261975
+ - 0.0004531278
+ - - -0.5663780322
+ - -2.1613070886
+ - 0.0003037572
+ - - 1.1401531239
+ - -1.7465704828
+ - -0.0003682026
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 22.894687610271067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 2.182004
+ - 0.269659
+ - 0.000839
+ - - 0.858895
+ - 0.693723
+ - 0.000375
+ - - -0.17403
+ - -0.184916
+ - -0.000103
+ - - 0.170465
+ - -1.478501
+ - -8.9e-05
+ - - -1.748349
+ - 0.362451
+ - -0.000659
+ - - 2.663416
+ - 0.592889
+ - 0.829209
+ - - 2.664046
+ - 0.593039
+ - -0.827105
+ - - 0.614575
+ - 1.670335
+ - 0.000367
+ - - -0.5615
+ - -2.161649
+ - -0.000434
+ - - 1.14186
+ - -1.73872
+ - 0.00026
+ isotopes:
+ - 14
+ - 14
+ - 12
+ - 14
+ - 32
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - C
+ - N
+ - S
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrazino.yml b/input/reference_sets/main/Hydrazino.yml
index 4fb68a48bc..4f0cfa5dfb 100644
--- a/input/reference_sets/main/Hydrazino.yml
+++ b/input/reference_sets/main/Hydrazino.yml
@@ -52,7 +52,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 53.84966055734789
+ value: 53.849660557347875
class: ThermoData
xyz_dict:
coords:
@@ -85,6 +85,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 50.60690484841741
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.59426
+ - -0.026091
+ - 0.076872
+ - - -0.73751
+ - 0.153167
+ - -0.027032
+ - - 1.017408
+ - -0.902172
+ - -0.19894
+ - - 1.13092
+ - 0.793587
+ - -0.156174
+ - - -1.148722
+ - -0.779887
+ - 0.025051
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.00853325427399
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.593641
+ - -0.025987
+ - 0.074467
+ - - -0.738319
+ - 0.152839
+ - -0.026624
+ - - 1.021583
+ - -0.902654
+ - -0.19861
+ - - 1.132904
+ - 0.794635
+ - -0.155275
+ - - -1.153453
+ - -0.780227
+ - 0.025819
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -124,6 +202,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.2772256408568
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.594094
+ - -0.026879
+ - 0.085405
+ - - -0.741879
+ - 0.157148
+ - -0.029961
+ - - 1.024462
+ - -0.903299
+ - -0.203198
+ - - 1.133746
+ - 0.794267
+ - -0.158927
+ - - -1.154068
+ - -0.782634
+ - 0.026458
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 42.74544853761767
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.594036
+ - -0.026734
+ - 0.080915
+ - - -0.745102
+ - 0.159134
+ - -0.029493
+ - - 1.029399
+ - -0.908569
+ - -0.202507
+ - - 1.137913
+ - 0.800072
+ - -0.15697
+ - - -1.15989
+ - -0.785298
+ - 0.027833
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.02961045992038
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.591001
+ - -0.024947
+ - 0.062707
+ - - -0.733909
+ - 0.150451
+ - -0.023291
+ - - 1.018081
+ - -0.904149
+ - -0.193903
+ - - 1.132448
+ - 0.796492
+ - -0.151139
+ - - -1.151264
+ - -0.779242
+ - 0.025404
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.20926368279487
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.593714
+ - -0.027538
+ - 0.083011
+ - - -0.742441
+ - 0.156398
+ - -0.033153
+ - - 1.023751
+ - -0.901708
+ - -0.20366
+ - - 1.132891
+ - 0.79249
+ - -0.155946
+ - - -1.15156
+ - -0.781038
+ - 0.029525
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.76523200066667
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.592398
+ - -0.024381
+ - 0.068827
+ - - -0.735124
+ - 0.15128
+ - -0.022123
+ - - 1.015327
+ - -0.903536
+ - -0.194845
+ - - 1.132429
+ - 0.79543
+ - -0.154812
+ - - -1.148675
+ - -0.780189
+ - 0.022731
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.668458648902195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.592398
+ - -0.024381
+ - 0.068827
+ - - -0.735124
+ - 0.15128
+ - -0.022123
+ - - 1.015327
+ - -0.903536
+ - -0.194845
+ - - 1.132429
+ - 0.79543
+ - -0.154812
+ - - -1.148675
+ - -0.780189
+ - 0.022731
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.71410245101474
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.592398
+ - -0.024381
+ - 0.068827
+ - - -0.735124
+ - 0.15128
+ - -0.022123
+ - - 1.015327
+ - -0.903536
+ - -0.194845
+ - - 1.132429
+ - 0.79543
+ - -0.154812
+ - - -1.148675
+ - -0.780189
+ - 0.022731
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.39146322739149
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.595432
+ - -0.027085
+ - 0.098832
+ - - -0.739664
+ - 0.156801
+ - -0.032501
+ - - 1.018468
+ - -0.898152
+ - -0.207005
+ - - 1.130801
+ - 0.789245
+ - -0.164317
+ - - -1.148681
+ - -0.782204
+ - 0.024768
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.98644863405314
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.589488
+ - -0.025393
+ - 0.063387
+ - - -0.734671
+ - 0.152456
+ - -0.023406
+ - - 1.017643
+ - -0.904377
+ - -0.194138
+ - - 1.132346
+ - 0.795826
+ - -0.15138
+ - - -1.148451
+ - -0.779908
+ - 0.025315
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 41.61170113617285
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.589738
+ - -0.025894
+ - 0.073328
+ - - -0.732579
+ - 0.152225
+ - -0.026472
+ - - 1.017253
+ - -0.901792
+ - -0.197868
+ - - 1.130176
+ - 0.793256
+ - -0.154704
+ - - -1.148233
+ - -0.779192
+ - 0.025493
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 43.01346985561326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.597117
+ - -0.0273
+ - 0.092152
+ - - -0.744273
+ - 0.158338
+ - -0.032692
+ - - 1.024687
+ - -0.90375
+ - -0.206018
+ - - 1.134153
+ - 0.795093
+ - -0.160848
+ - - -1.155328
+ - -0.783777
+ - 0.027183
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -163,6 +670,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.706516735818525
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.5923984926
+ - -0.024380524
+ - 0.0688270747
+ - - -0.735124387
+ - 0.1512798258
+ - -0.0221232974
+ - - 1.0153268165
+ - -0.9035355915
+ - -0.194845481
+ - - 1.1324290387
+ - 0.7954297054
+ - -0.1548115621
+ - - -1.1486745946
+ - -0.7801892265
+ - 0.0227306018
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.96000780276593
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.591647
+ - -0.025645
+ - 0.069745
+ - - -0.734177
+ - 0.151488
+ - -0.025488
+ - - 1.017047
+ - -0.902339
+ - -0.19645
+ - - 1.130755
+ - 0.79411
+ - -0.153448
+ - - -1.148917
+ - -0.77901
+ - 0.025418
+ isotopes:
+ - 14
+ - 14
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - N
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrazoic acid.yml b/input/reference_sets/main/Hydrazoic acid.yml
index c841ab3994..a05376c719 100644
--- a/input/reference_sets/main/Hydrazoic acid.yml
+++ b/input/reference_sets/main/Hydrazoic acid.yml
@@ -73,13 +73,81 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.28631664304328
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.115278
+ - -0.132497
+ - 0.0
+ - - -0.112269
+ - 0.025487
+ - 0.0
+ - - -1.247066
+ - 0.000603
+ - 0.0
+ - - 1.589117
+ - 0.76815
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 61.35495570098151
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.111414
+ - -0.132336
+ - 0.0
+ - - -0.11331
+ - 0.021533
+ - 0.0
+ - - -1.238657
+ - 0.003695
+ - 0.0
+ - - 1.585613
+ - 0.76885
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 50.28299233229843
+ value: 50.2829923322984
class: ThermoData
xyz_dict:
coords:
@@ -107,6 +175,380 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.14753562779785
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.112592
+ - -0.131993
+ - 0.0
+ - - -0.112775
+ - 0.025933
+ - 0.0
+ - - -1.249011
+ - -0.001287
+ - 0.0
+ - - 1.594254
+ - 0.76909
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 52.231656015571005
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.115965
+ - -0.133972
+ - 0.0
+ - - -0.114632
+ - 0.025966
+ - 0.0
+ - - -1.256316
+ - -0.002373
+ - 0.0
+ - - 1.600043
+ - 0.772122
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.21213463493109
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.109383
+ - -0.133119
+ - 0.0
+ - - -0.112147
+ - 0.016982
+ - 0.0
+ - - -1.229642
+ - 0.008654
+ - 0.0
+ - - 1.577465
+ - 0.769225
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.74391972753682
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.115035
+ - -0.13467
+ - 0.0
+ - - -0.112514
+ - 0.024394
+ - 0.0
+ - - -1.243381
+ - 0.002466
+ - 0.0
+ - - 1.585919
+ - 0.769552
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.37522770864679
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117101
+ - -0.139753
+ - 0.0
+ - - -0.111399
+ - 0.01724
+ - -0.0
+ - - -1.229879
+ - 0.012223
+ - -0.0
+ - - 1.569236
+ - 0.772033
+ - -0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.29254908036107
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117101
+ - -0.139753
+ - 0.0
+ - - -0.111399
+ - 0.01724
+ - -0.0
+ - - -1.229879
+ - 0.012223
+ - -0.0
+ - - 1.569236
+ - 0.772033
+ - -0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 71.28100409701852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117101
+ - -0.139753
+ - 0.0
+ - - -0.111399
+ - 0.01724
+ - -0.0
+ - - -1.229879
+ - 0.012223
+ - -0.0
+ - - 1.569236
+ - 0.772033
+ - -0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.425763346767
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.115667
+ - -0.135087
+ - 0.0
+ - - -0.112092
+ - 0.022085
+ - 0.0
+ - - -1.244151
+ - 0.004031
+ - 0.0
+ - - 1.585636
+ - 0.770714
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.21672706356335
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.114106
+ - -0.138855
+ - 0.0
+ - - -0.110436
+ - 0.012789
+ - 0.0
+ - - -1.226075
+ - 0.015067
+ - 0.0
+ - - 1.567465
+ - 0.772742
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 58.230505484312495
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.108614
+ - -0.13329
+ - 0.0
+ - - -0.109766
+ - 0.01851
+ - 0.0
+ - - -1.232235
+ - 0.007452
+ - 0.0
+ - - 1.578446
+ - 0.769071
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 54.872940821606804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117264
+ - -0.1356
+ - 0.0
+ - - -0.113922
+ - 0.0275
+ - 0.0
+ - - -1.251915
+ - -0.00122
+ - 0.0
+ - - 1.593633
+ - 0.771063
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- N
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.07839700741833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117101151
+ - -0.1397533404
+ - 0.0
+ - - -0.1113990397
+ - 0.0172400302
+ - -0.0
+ - - -1.2298787004
+ - 0.012222854
+ - -0.0
+ - - 1.5692361236
+ - 0.7720331939
+ - -0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 64.06254300636049
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.110994
+ - -0.134896
+ - 0.0
+ - - -0.110514
+ - 0.017765
+ - 0.0
+ - - -1.229507
+ - 0.009473
+ - 0.0
+ - - 1.574086
+ - 0.7694
+ - 0.0
+ isotopes:
+ - 14
+ - 14
+ - 14
+ - 1
+ symbols:
+ - N
+ - N
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen bromide.yml b/input/reference_sets/main/Hydrogen bromide.yml
index 891221b39e..b246e54cd1 100644
--- a/input/reference_sets/main/Hydrogen bromide.yml
+++ b/input/reference_sets/main/Hydrogen bromide.yml
@@ -3,6 +3,54 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 H u0 p0 c0 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.861167902516634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.039925
+ - - 0.0
+ - 0.0
+ - -1.379494
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.413521913841679
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.042663
+ - - 0.0
+ - 0.0
+ - -1.382231
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -27,6 +75,222 @@ calculated_data:
symbols:
- Br
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.063143870622211
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.043405
+ - - 0.0
+ - 0.0
+ - -1.382973
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.563932662252945
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.04696
+ - - 0.0
+ - 0.0
+ - -1.386528
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.16738884150228
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.039882
+ - - 0.0
+ - 0.0
+ - -1.37945
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.792180771345906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.042317
+ - - 0.0
+ - 0.0
+ - -1.381885
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.465835121736387
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.039399
+ - - 0.0
+ - 0.0
+ - -1.378967
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.245550837321325
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.041621
+ - - 0.0
+ - 0.0
+ - -1.38119
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.99669943808644
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.040925
+ - - 0.0
+ - 0.0
+ - -1.380493
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.520628258342848
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.040505
+ - - 0.0
+ - 0.0
+ - -1.380073
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.549084657083709
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.043636
+ - - 0.0
+ - 0.0
+ - -1.383204
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -51,6 +315,54 @@ calculated_data:
symbols:
- Br
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.483611699412611
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0393990631
+ - - 0.0
+ - 0.0
+ - -1.3789672079
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.904662785909276
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.03962
+ - - 0.0
+ - 0.0
+ - -1.379188
+ isotopes:
+ - 79
+ - 1
+ symbols:
+ - Br
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen chloride.yml b/input/reference_sets/main/Hydrogen chloride.yml
index eec780f0f0..f8997f7bc3 100644
--- a/input/reference_sets/main/Hydrogen chloride.yml
+++ b/input/reference_sets/main/Hydrogen chloride.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.581457069530305
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.070511
+ - - 0.0
+ - 0.0
+ - -1.207463
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.061150268206095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.072544
+ - - 0.0
+ - 0.0
+ - -1.209496
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.560184022941964
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.072478
+ - - 0.0
+ - 0.0
+ - -1.209431
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.744428130330256
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.076743
+ - - 0.0
+ - 0.0
+ - -1.213696
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.526480115245768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.070882
+ - - 0.0
+ - 0.0
+ - -1.207834
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.063540805650288
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.072934
+ - - 0.0
+ - 0.0
+ - -1.209887
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.994321107429286
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.07106
+ - - 0.0
+ - 0.0
+ - -1.208012
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.52053232702101
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.07106
+ - - 0.0
+ - 0.0
+ - -1.208012
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.407103330383745
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.07106
+ - - 0.0
+ - 0.0
+ - -1.208012
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.091092865010445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.07336
+ - - 0.0
+ - 0.0
+ - -1.210313
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.482945109861515
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.070313
+ - - 0.0
+ - 0.0
+ - -1.207266
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.93242151214112
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.070951
+ - - 0.0
+ - 0.0
+ - -1.207904
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.837118719808466
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.073947
+ - - 0.0
+ - 0.0
+ - -1.2109
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.97269822030537
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0710595236
+ - - 0.0
+ - 0.0
+ - -1.2080119006
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.126824981758546
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.070661
+ - - 0.0
+ - 0.0
+ - -1.207613
+ isotopes:
+ - 35
+ - 1
+ symbols:
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen cyanide.yml b/input/reference_sets/main/Hydrogen cyanide.yml
index 750e12eca4..334a447c54 100644
--- a/input/reference_sets/main/Hydrogen cyanide.yml
+++ b/input/reference_sets/main/Hydrogen cyanide.yml
@@ -62,6 +62,64 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.487671425193334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.499436
+ - - 0.0
+ - -0.0
+ - 0.654257
+ - - 0.0
+ - -0.0
+ - -1.565162
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.78963391140714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.496585
+ - - 0.0
+ - -0.0
+ - 0.649577
+ - - 0.0
+ - -0.0
+ - -1.563334
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.23243333111174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.498006
+ - - 0.0
+ - -0.0
+ - 0.657236
+ - - 0.0
+ - -0.0
+ - -1.569572
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.88152207599821
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.497677
+ - - 0.0
+ - -0.0
+ - 0.660925
+ - - 0.0
+ - -0.0
+ - -1.573589
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.89515138515202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.494767
+ - - 0.0
+ - -0.0
+ - 0.646026
+ - - 0.0
+ - -0.0
+ - -1.561601
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.542703790710913
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.497561
+ - - 0.0
+ - 0.0
+ - 0.651044
+ - - 0.0
+ - 0.0
+ - -1.563825
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.58125376178184
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 2.0e-06
+ - -0.495906
+ - - -0.0
+ - -1.0e-06
+ - 0.648312
+ - - -0.0
+ - -8.0e-06
+ - -1.562748
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.33410832467556
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 2.0e-06
+ - -0.495906
+ - - -0.0
+ - -1.0e-06
+ - 0.648312
+ - - -0.0
+ - -8.0e-06
+ - -1.562748
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.517663770264868
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 2.0e-06
+ - -0.495906
+ - - -0.0
+ - -1.0e-06
+ - 0.648312
+ - - -0.0
+ - -8.0e-06
+ - -1.562748
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.01591406430686
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - -0.498499
+ - - 0.0
+ - 0.0
+ - 0.653243
+ - - 0.0
+ - 0.0
+ - -1.565087
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.14519053552351
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.495054
+ - - 0.0
+ - -0.0
+ - 0.647086
+ - - 0.0
+ - -0.0
+ - -1.562374
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.76246563317473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.495745
+ - - 0.0
+ - -0.0
+ - 0.649865
+ - - 0.0
+ - -0.0
+ - -1.564461
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 37.98579258544871
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.498232
+ - - 0.0
+ - -0.0
+ - 0.656801
+ - - 0.0
+ - -0.0
+ - -1.568911
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 32.752157645816844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 2.4769e-06
+ - -0.4959063589
+ - - -0.0
+ - -1.0244e-06
+ - 0.6483122641
+ - - -0.0
+ - -7.6906e-06
+ - -1.5627476955
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 35.53417332373909
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - -0.495425
+ - - 0.0
+ - -0.0
+ - 0.648128
+ - - 0.0
+ - -0.0
+ - -1.563045
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen fluoride.yml b/input/reference_sets/main/Hydrogen fluoride.yml
index 77dd483ae1..5c76124f3a 100644
--- a/input/reference_sets/main/Hydrogen fluoride.yml
+++ b/input/reference_sets/main/Hydrogen fluoride.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- F
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.1373553657922
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.091745
+ - - 0.0
+ - 0.0
+ - -0.830643
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.91861366265035
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.092809
+ - - 0.0
+ - 0.0
+ - -0.831707
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- F
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -62.60413758162731
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.093537
+ - - 0.0
+ - 0.0
+ - -0.832434
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -61.05480585151606
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.097032
+ - - 0.0
+ - 0.0
+ - -0.83593
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.53539377014814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.092322
+ - - 0.0
+ - 0.0
+ - -0.83122
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.28010007092476
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.090591
+ - - 0.0
+ - 0.0
+ - -0.829489
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.7068850118604
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.092362
+ - - 0.0
+ - 0.0
+ - -0.83126
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.70117141613711
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.092362
+ - - 0.0
+ - 0.0
+ - -0.83126
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.29077932748893
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.092362
+ - - 0.0
+ - 0.0
+ - -0.83126
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.46509023848978
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.09028
+ - - 0.0
+ - 0.0
+ - -0.829178
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -65.55035662831503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.090685
+ - - 0.0
+ - 0.0
+ - -0.829583
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.587156865160864
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.090579
+ - - 0.0
+ - 0.0
+ - -0.829476
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -59.54990081733544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.095819
+ - - 0.0
+ - 0.0
+ - -0.834716
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- F
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -64.41262646943615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.0923622076
+ - - 0.0
+ - 0.0
+ - -0.8312598688
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -63.85953584526808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.089559
+ - - 0.0
+ - 0.0
+ - -0.828457
+ isotopes:
+ - 19
+ - 1
+ symbols:
+ - F
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen isocyanide.yml b/input/reference_sets/main/Hydrogen isocyanide.yml
index 0c9d869a58..83ae70881c 100644
--- a/input/reference_sets/main/Hydrogen isocyanide.yml
+++ b/input/reference_sets/main/Hydrogen isocyanide.yml
@@ -62,6 +62,64 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.98752271356842
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.739487
+ - - -0.0
+ - -0.0
+ - -0.429118
+ - - -0.0
+ - -0.0
+ - -1.42606
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.65943052898304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.736618
+ - - 0.0
+ - -0.0
+ - -0.427427
+ - - 0.0
+ - -0.0
+ - -1.424882
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.444655042527806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.743709
+ - - 0.0
+ - -0.0
+ - -0.429268
+ - - 0.0
+ - -0.0
+ - -1.430132
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 49.528876301773046
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.747659
+ - - 0.0
+ - -0.0
+ - -0.428411
+ - - 0.0
+ - -0.0
+ - -1.434939
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.106928981662406
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.733017
+ - - 0.0
+ - -0.0
+ - -0.42584
+ - - 0.0
+ - -0.0
+ - -1.422868
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.80622373181417
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.739976
+ - - 0.0
+ - 0.0
+ - -0.428406
+ - - 0.0
+ - 0.0
+ - -1.427261
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.687402077668864
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -8.4e-05
+ - 0.7358
+ - - 0.0
+ - 0.000156
+ - -0.427218
+ - - -0.0
+ - -0.000589
+ - -1.424273
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 46.290816004780744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -8.4e-05
+ - 0.7358
+ - - 0.0
+ - 0.000156
+ - -0.427218
+ - - -0.0
+ - -0.000589
+ - -1.424273
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.34222794411333
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -8.4e-05
+ - 0.7358
+ - - 0.0
+ - 0.000156
+ - -0.427218
+ - - -0.0
+ - -0.000589
+ - -1.424273
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.96944693823199
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.739949
+ - - 0.0
+ - 0.0
+ - -0.429948
+ - - 0.0
+ - 0.0
+ - -1.425691
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 45.95168915862095
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.734963
+ - - 0.0
+ - -0.0
+ - -0.4262
+ - - 0.0
+ - -0.0
+ - -1.424453
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 51.554085199188016
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.736072
+ - - 0.0
+ - -0.0
+ - -0.427374
+ - - 0.0
+ - -0.0
+ - -1.42439
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 53.13278759641425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.74426
+ - - 0.0
+ - -0.0
+ - -0.428602
+ - - 0.0
+ - -0.0
+ - -1.431349
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- C
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 44.14732998515793
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -8.41134e-05
+ - 0.7357997181
+ - - 0.0
+ - 0.0001561952
+ - -0.4272179527
+ - - -0.0
+ - -0.0005886861
+ - -1.4242726397
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 48.557147708340075
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.735077
+ - - 0.0
+ - -0.0
+ - -0.427434
+ - - 0.0
+ - -0.0
+ - -1.423334
+ isotopes:
+ - 12
+ - 14
+ - 1
+ symbols:
+ - C
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen peroxide.yml b/input/reference_sets/main/Hydrogen peroxide.yml
index f61f3ef3b2..2da2ef5370 100644
--- a/input/reference_sets/main/Hydrogen peroxide.yml
+++ b/input/reference_sets/main/Hydrogen peroxide.yml
@@ -73,6 +73,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.9832568847844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.715323
+ - -0.126115
+ - -0.041322
+ - - 0.715323
+ - 0.126115
+ - -0.041322
+ - - -1.022246
+ - 0.642047
+ - 0.45944
+ - - 1.022246
+ - -0.642047
+ - 0.45944
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.501930538430337
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.714735
+ - -0.122893
+ - -0.043393
+ - - 0.714735
+ - 0.122893
+ - -0.043393
+ - - -1.025871
+ - 0.642108
+ - 0.461512
+ - - 1.025871
+ - -0.642108
+ - 0.461512
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.247875372425653
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.722261
+ - -0.126523
+ - -0.046864
+ - - 0.722261
+ - 0.126523
+ - -0.046864
+ - - -1.024327
+ - 0.642855
+ - 0.464983
+ - - 1.024327
+ - -0.642855
+ - 0.464983
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.829531616906323
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.724052
+ - -0.128512
+ - -0.047905
+ - - 0.724052
+ - 0.128512
+ - -0.047905
+ - - -1.028342
+ - 0.646536
+ - 0.466024
+ - - 1.028342
+ - -0.646536
+ - 0.466024
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.537249998116938
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.705651
+ - -0.119565
+ - -0.043949
+ - - 0.705651
+ - 0.119565
+ - -0.043949
+ - - -1.023589
+ - 0.639378
+ - 0.462067
+ - - 1.023589
+ - -0.639378
+ - 0.462067
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -32.28363215181429
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.714974
+ - -0.130675
+ - -0.027911
+ - - 0.714974
+ - 0.130675
+ - -0.027911
+ - - -1.029742
+ - 0.649923
+ - 0.44603
+ - - 1.029742
+ - -0.649923
+ - 0.44603
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.540299820387514
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.707505
+ - -0.112748
+ - -0.059731
+ - - 0.707505
+ - 0.112748
+ - -0.059731
+ - - -1.014703
+ - 0.628912
+ - 0.477849
+ - - 1.014703
+ - -0.628912
+ - 0.477849
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.703613435770762
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.707505
+ - -0.112748
+ - -0.059731
+ - - 0.707505
+ - 0.112748
+ - -0.059731
+ - - -1.014703
+ - 0.628912
+ - 0.477849
+ - - 1.014703
+ - -0.628912
+ - 0.477849
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.866544436410088
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.707505
+ - -0.112748
+ - -0.059731
+ - - 0.707505
+ - 0.112748
+ - -0.059731
+ - - -1.014703
+ - 0.628912
+ - 0.477849
+ - - 1.014703
+ - -0.628912
+ - 0.477849
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.790459200829183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.713179
+ - -0.118237
+ - -0.05573
+ - - 0.713179
+ - 0.118237
+ - -0.05573
+ - - -1.015474
+ - 0.632587
+ - 0.473848
+ - - 1.015474
+ - -0.632587
+ - 0.473848
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.720062705388074
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.700676
+ - -0.116381
+ - -0.048239
+ - - 0.700676
+ - 0.116381
+ - -0.048239
+ - - -1.019502
+ - 0.635177
+ - 0.466357
+ - - 1.019502
+ - -0.635177
+ - 0.466357
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.703557307147438
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.703097
+ - -0.117403
+ - -0.050288
+ - - 0.703097
+ - 0.117403
+ - -0.050288
+ - - -1.01612
+ - 0.633526
+ - 0.468406
+ - - 1.01612
+ - -0.633526
+ - 0.468406
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.7145906068498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.725454
+ - -0.129647
+ - -0.04465
+ - - 0.725454
+ - 0.129647
+ - -0.04465
+ - - -1.027372
+ - 0.646577
+ - 0.462768
+ - - 1.027372
+ - -0.646577
+ - 0.462768
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.652746947367827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.7075051338
+ - -0.1127480467
+ - -0.0597311666
+ - - 0.7075051338
+ - 0.1127480467
+ - -0.0597311666
+ - - -1.0147027503
+ - 0.6289117891
+ - 0.477849273
+ - - 1.0147027503
+ - -0.6289117891
+ - 0.477849273
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.544292394495326
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.702619
+ - -0.117252
+ - -0.047034
+ - - 0.702619
+ - 0.117252
+ - -0.047034
+ - - -1.017673
+ - 0.634435
+ - 0.465152
+ - - 1.017673
+ - -0.634435
+ - 0.465152
+ isotopes:
+ - 16
+ - 16
+ - 1
+ - 1
+ symbols:
+ - O
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydrogen sulfide.yml b/input/reference_sets/main/Hydrogen sulfide.yml
index 0def3ffe11..cee38bea28 100644
--- a/input/reference_sets/main/Hydrogen sulfide.yml
+++ b/input/reference_sets/main/Hydrogen sulfide.yml
@@ -62,6 +62,64 @@ calculated_data:
- S
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.517268469969883
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.100826
+ - - -0.968228
+ - 0.0
+ - -0.823278
+ - - 0.968228
+ - -0.0
+ - -0.823278
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.464268753051308
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.103427
+ - - -0.970217
+ - 0.0
+ - -0.824578
+ - - 0.970217
+ - -0.0
+ - -0.824578
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- S
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.2982043242251065
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.107271
+ - - -0.968752
+ - 0.0
+ - -0.8265
+ - - 0.968752
+ - -0.0
+ - -0.8265
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.471792324189363
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.111915
+ - - -0.972053
+ - 0.0
+ - -0.828822
+ - - 0.972053
+ - -0.0
+ - -0.828822
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.267387251292963
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - -0.0
+ - 0.100336
+ - - -0.968989
+ - 0.0
+ - -0.823033
+ - - 0.968989
+ - -0.0
+ - -0.823033
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.7329719234295915
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.103787
+ - - -0.971123
+ - 0.0
+ - -0.824758
+ - - 0.971123
+ - -0.0
+ - -0.824758
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.5977012629246685
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.103049
+ - - -0.965422
+ - -0.0
+ - -0.824389
+ - - 0.965422
+ - 0.0
+ - -0.824389
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.768744519572715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.103049
+ - - -0.965422
+ - -0.0
+ - -0.824389
+ - - 0.965422
+ - 0.0
+ - -0.824389
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.564003195461608
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.103049
+ - - -0.965422
+ - -0.0
+ - -0.824389
+ - - 0.965422
+ - 0.0
+ - -0.824389
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.820931495053543
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.10542
+ - - -0.971148
+ - 0.0
+ - -0.825575
+ - - 0.971148
+ - 0.0
+ - -0.825575
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.718601084977321
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.101255
+ - - -0.965025
+ - 0.0
+ - -0.823492
+ - - 0.965025
+ - -0.0
+ - -0.823492
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.392065723452973
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - -0.0
+ - 0.104096
+ - - -0.967503
+ - 0.0
+ - -0.824912
+ - - 0.967503
+ - -0.0
+ - -0.824912
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.029245798122241
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.0
+ - 0.0
+ - 0.106417
+ - - -0.96971
+ - 0.0
+ - -0.826073
+ - - 0.96971
+ - -0.0
+ - -0.826073
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- S
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.698285312455272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1030486621
+ - - -0.9654222015
+ - -0.0
+ - -0.8243890478
+ - - 0.9654222015
+ - 0.0
+ - -0.8243890478
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -5.405733018792822
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.100466
+ - - -0.968987
+ - 0.0
+ - -0.823098
+ - - 0.968987
+ - -0.0
+ - -0.823098
+ isotopes:
+ - 32
+ - 1
+ - 1
+ symbols:
+ - S
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxide.yml b/input/reference_sets/main/Hydroxide.yml
index 3e0fce9250..3346666fc7 100644
--- a/input/reference_sets/main/Hydroxide.yml
+++ b/input/reference_sets/main/Hydroxide.yml
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.844719948894651
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.109209
+ - - 0.0
+ - 0.0
+ - -0.859747
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.56072831031067
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.109842
+ - - 0.0
+ - 0.0
+ - -0.860381
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.598167898022522
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.111889
+ - - 0.0
+ - 0.0
+ - -0.862427
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.129563498131926
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.114834
+ - - 0.0
+ - 0.0
+ - -0.865372
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.18151782351136
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108316
+ - - 0.0
+ - 0.0
+ - -0.858855
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.223854160970102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.113803
+ - - 0.0
+ - 0.0
+ - -0.864342
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.004761715717006
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.10722
+ - - 0.0
+ - 0.0
+ - -0.857758
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -29.840770178405332
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.10722
+ - - 0.0
+ - 0.0
+ - -0.857758
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -31.396277275777226
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.10722
+ - - 0.0
+ - 0.0
+ - -0.857758
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -34.63820753162949
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.113478
+ - - 0.0
+ - 0.0
+ - -0.864017
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.613003888274754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.107463
+ - - 0.0
+ - 0.0
+ - -0.858001
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.481840811345096
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.107745
+ - - 0.0
+ - 0.0
+ - -0.858283
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.642878539112829
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.113978
+ - - 0.0
+ - 0.0
+ - -0.864517
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,13 +411,61 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -30.312959997948855
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1072197758
+ - - 0.0
+ - 0.0
+ - -0.8577582061
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.129259627914342
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.106989
+ - - 0.0
+ - 0.0
+ - -0.857528
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -14.942206426851977
+ value: -14.94220642685197
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Hydroxyformyl.yml b/input/reference_sets/main/Hydroxyformyl.yml
index 3b95344478..5aee775c74 100644
--- a/input/reference_sets/main/Hydroxyformyl.yml
+++ b/input/reference_sets/main/Hydroxyformyl.yml
@@ -74,6 +74,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.44351895968195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117707
+ - -0.01813
+ - -0.0
+ - - -0.134422
+ - 0.421376
+ - 0.0
+ - - -1.159573
+ - -0.172562
+ - 0.0
+ - - 1.111188
+ - -0.995417
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.02128829246795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.112602
+ - -0.018727
+ - -0.0
+ - - -0.136126
+ - 0.420071
+ - 0.0
+ - - -1.16074
+ - -0.168147
+ - 0.0
+ - - 1.119164
+ - -0.997928
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -35.71053352056906
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.120996
+ - -0.017823
+ - -0.0
+ - - -0.137336
+ - 0.424101
+ - 0.0
+ - - -1.169186
+ - -0.170162
+ - 0.0
+ - - 1.120426
+ - -1.000849
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.376093834904445
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.122583
+ - -0.013529
+ - -0.0
+ - - -0.136772
+ - 0.4242
+ - 0.0
+ - - -1.17187
+ - -0.170265
+ - 0.0
+ - - 1.12096
+ - -1.005138
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -39.398017589005924
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.10879
+ - -0.018934
+ - -0.0
+ - - -0.134598
+ - 0.419161
+ - 0.0
+ - - -1.152947
+ - -0.169789
+ - 0.0
+ - - 1.113655
+ - -0.99517
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -43.18053243449339
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.116068
+ - -0.01827
+ - -0.0
+ - - -0.134711
+ - 0.422174
+ - 0.0
+ - - -1.157419
+ - -0.172893
+ - 0.0
+ - - 1.110962
+ - -0.995742
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.66340853847045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.11499
+ - -0.017967
+ - -0.0
+ - - -0.134876
+ - 0.421428
+ - 0.0
+ - - -1.152207
+ - -0.173806
+ - 0.0
+ - - 1.106993
+ - -0.994388
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -40.686761645019544
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.11499
+ - -0.017967
+ - -0.0
+ - - -0.134876
+ - 0.421428
+ - 0.0
+ - - -1.152207
+ - -0.173806
+ - 0.0
+ - - 1.106993
+ - -0.994388
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.947666197395385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.11499
+ - -0.017967
+ - -0.0
+ - - -0.134876
+ - 0.421428
+ - 0.0
+ - - -1.152207
+ - -0.173806
+ - 0.0
+ - - 1.106993
+ - -0.994388
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -42.995051913480005
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.117111
+ - -0.018279
+ - 0.0
+ - - -0.134002
+ - 0.422316
+ - 0.0
+ - - -1.159276
+ - -0.173192
+ - 0.0
+ - - 1.111067
+ - -0.995577
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.32648222489689
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.110156
+ - -0.018623
+ - -0.0
+ - - -0.134324
+ - 0.419401
+ - 0.0
+ - - -1.150525
+ - -0.171562
+ - 0.0
+ - - 1.109594
+ - -0.993949
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -37.63320747922272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.11028
+ - -0.01782
+ - -0.0
+ - - -0.132007
+ - 0.416117
+ - 0.0
+ - - -1.154824
+ - -0.169698
+ - 0.0
+ - - 1.111451
+ - -0.993331
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -33.35960758320347
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.122373
+ - -0.016111
+ - -0.0
+ - - -0.13737
+ - 0.42491
+ - 0.0
+ - - -1.169417
+ - -0.171091
+ - 0.0
+ - - 1.119314
+ - -1.002441
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,6 +584,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -41.08935005472064
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1149895385
+ - -0.0179666658
+ - -0.0
+ - - -0.1348758805
+ - 0.4214282757
+ - 0.0
+ - - -1.1522067905
+ - -0.1738060997
+ - 0.0
+ - - 1.1069932986
+ - -0.9943875306
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -38.378646390806
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.110265
+ - -0.020228
+ - -0.0
+ - - -0.133056
+ - 0.419283
+ - 0.0
+ - - -1.152766
+ - -0.17153
+ - 0.0
+ - - 1.110457
+ - -0.992257
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxyl.yml b/input/reference_sets/main/Hydroxyl.yml
index c9d7d64b15..ec62a8d9e3 100644
--- a/input/reference_sets/main/Hydroxyl.yml
+++ b/input/reference_sets/main/Hydroxyl.yml
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.958674850704615
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108037
+ - - 0.0
+ - 0.0
+ - -0.865555
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.413600348914134
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.109606
+ - - 0.0
+ - 0.0
+ - -0.867125
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,246 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 13.183562116251549
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.111493
+ - - 0.0
+ - 0.0
+ - -0.869012
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.730229280063403
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.10875
+ - - 0.0
+ - 0.0
+ - -0.866268
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.486603563384325
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108842
+ - - 0.0
+ - 0.0
+ - -0.866361
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.382086195984895
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108217
+ - - 0.0
+ - 0.0
+ - -0.865736
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.485856519067086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108217
+ - - 0.0
+ - 0.0
+ - -0.865736
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.502992527262654
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.108217
+ - - 0.0
+ - 0.0
+ - -0.865736
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 8.584669430696714
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.109307
+ - - 0.0
+ - 0.0
+ - -0.866826
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.719137532561634
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.107812
+ - - 0.0
+ - 0.0
+ - -0.865331
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.156084442669947
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.107798
+ - - 0.0
+ - 0.0
+ - -0.865317
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 11.268084500185202
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.113234
+ - - 0.0
+ - 0.0
+ - -0.870753
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +388,54 @@ calculated_data:
symbols:
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 9.471915063904754
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1082169676
+ - - 0.0
+ - 0.0
+ - -0.8657357406
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 10.579730537522485
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.106722
+ - - 0.0
+ - 0.0
+ - -0.86424
+ isotopes:
+ - 16
+ - 1
+ symbols:
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxylamine.yml b/input/reference_sets/main/Hydroxylamine.yml
index be8a670a64..71c30291dd 100644
--- a/input/reference_sets/main/Hydroxylamine.yml
+++ b/input/reference_sets/main/Hydroxylamine.yml
@@ -12,7 +12,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -9.5636567650975
+ value: -9.563656765097495
class: ThermoData
xyz_dict:
coords:
@@ -84,6 +84,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.78019174127152
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.687739
+ - -2.0e-05
+ - -0.155954
+ - - 0.723768
+ - 1.0e-05
+ - 0.1434
+ - - -1.042254
+ - -0.811596
+ - 0.34127
+ - - -1.042247
+ - 0.811659
+ - 0.341108
+ - - 1.11853
+ - -8.2e-05
+ - -0.734378
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.88887506747425
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.688203
+ - -2.0e-05
+ - -0.154729
+ - - 0.724267
+ - 1.0e-05
+ - 0.141702
+ - - -1.044453
+ - -0.812869
+ - 0.341972
+ - - -1.044446
+ - 0.812932
+ - 0.341809
+ - - 1.122892
+ - -8.2e-05
+ - -0.735307
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.79441255739453
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.692953
+ - -2.0e-05
+ - -0.16554
+ - - 0.730343
+ - 8.0e-06
+ - 0.146378
+ - - -1.045463
+ - -0.812188
+ - 0.345955
+ - - -1.045459
+ - 0.812253
+ - 0.345792
+ - - 1.123589
+ - -8.2e-05
+ - -0.737138
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.504181497095672
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.693689
+ - -2.0e-05
+ - -0.166782
+ - - 0.732755
+ - 8.0e-06
+ - 0.14848
+ - - -1.048641
+ - -0.816238
+ - 0.347468
+ - - -1.048637
+ - 0.816303
+ - 0.347304
+ - - 1.12827
+ - -8.2e-05
+ - -0.741024
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.367126725466578
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.680855
+ - -1.8e-05
+ - -0.147041
+ - - 0.716982
+ - 7.0e-06
+ - 0.138922
+ - - -1.043094
+ - -0.814006
+ - 0.338835
+ - - -1.04309
+ - 0.814068
+ - 0.338672
+ - - 1.120114
+ - -8.1e-05
+ - -0.733942
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.242084063293893
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.687664
+ - -2.1e-05
+ - -0.160029
+ - - 0.726613
+ - 1.2e-05
+ - 0.142974
+ - - -1.044521
+ - -0.810378
+ - 0.343549
+ - - -1.044513
+ - 0.810441
+ - 0.343388
+ - - 1.120142
+ - -8.2e-05
+ - -0.734435
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.128835034048068
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.682928
+ - -1.5e-05
+ - -0.152463
+ - - 0.718216
+ - 1.7e-05
+ - 0.139904
+ - - -1.042798
+ - -0.81132
+ - 0.340883
+ - - -1.042802
+ - 0.811381
+ - 0.34073
+ - - 1.120369
+ - -9.3e-05
+ - -0.733608
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -8.245180536818763
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.682928
+ - -1.5e-05
+ - -0.152463
+ - - 0.718216
+ - 1.7e-05
+ - 0.139904
+ - - -1.042798
+ - -0.81132
+ - 0.340883
+ - - -1.042802
+ - 0.811381
+ - 0.34073
+ - - 1.120369
+ - -9.3e-05
+ - -0.733608
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.30949615710858
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.682928
+ - -1.5e-05
+ - -0.152463
+ - - 0.718216
+ - 1.7e-05
+ - 0.139904
+ - - -1.042798
+ - -0.81132
+ - 0.340883
+ - - -1.042802
+ - 0.811381
+ - 0.34073
+ - - 1.120369
+ - -9.3e-05
+ - -0.733608
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -9.73860697644827
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.686412
+ - -2.0e-05
+ - -0.164282
+ - - 0.72353
+ - 8.0e-06
+ - 0.143251
+ - - -1.043599
+ - -0.808623
+ - 0.345293
+ - - -1.043595
+ - 0.808687
+ - 0.345131
+ - - 1.120132
+ - -8.2e-05
+ - -0.733948
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.647058766985808
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.678608
+ - -1.8e-05
+ - -0.149932
+ - - 0.713516
+ - 5.0e-06
+ - 0.138587
+ - - -1.041772
+ - -0.81228
+ - 0.339814
+ - - -1.04177
+ - 0.812344
+ - 0.33965
+ - - 1.118691
+ - -8.0e-05
+ - -0.732672
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -12.601041789557732
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.677567
+ - -1.9e-05
+ - -0.152015
+ - - 0.714608
+ - 6.0e-06
+ - 0.140355
+ - - -1.04117
+ - -0.811372
+ - 0.339858
+ - - -1.041167
+ - 0.811435
+ - 0.339694
+ - - 1.115353
+ - -8.1e-05
+ - -0.732445
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -11.418914393511862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.697885
+ - -2.0e-05
+ - -0.168323
+ - - 0.732564
+ - 8.0e-06
+ - 0.148448
+ - - -1.045325
+ - -0.813774
+ - 0.347066
+ - - -1.045321
+ - 0.813839
+ - 0.346904
+ - - 1.126024
+ - -8.2e-05
+ - -0.738648
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.997881848310293
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.6829283215
+ - -1.50732e-05
+ - -0.1524625073
+ - - 0.7182161335
+ - 1.71124e-05
+ - 0.1399041009
+ - - -1.042798201
+ - -0.8113202521
+ - 0.3408828255
+ - - -1.0428018053
+ - 0.8113814084
+ - 0.340730028
+ - - 1.1203691891
+ - -9.25432e-05
+ - -0.7336081096
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -10.851091601498329
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - -0.678357
+ - -1.8e-05
+ - -0.149541
+ - - 0.715475
+ - 6.0e-06
+ - 0.139026
+ - - -1.041249
+ - -0.811927
+ - 0.33892
+ - - -1.041246
+ - 0.81199
+ - 0.338757
+ - - 1.115434
+ - -8.1e-05
+ - -0.731716
+ isotopes:
+ - 14
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - N
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxymethyl.yml b/input/reference_sets/main/Hydroxymethyl.yml
index e159c49bce..f2b278b411 100644
--- a/input/reference_sets/main/Hydroxymethyl.yml
+++ b/input/reference_sets/main/Hydroxymethyl.yml
@@ -85,6 +85,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.4869193348202818
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683561
+ - -0.029217
+ - 0.077202
+ - - -0.668572
+ - 0.126905
+ - -0.030318
+ - - 1.235369
+ - 0.880767
+ - -0.088228
+ - - 1.115931
+ - -0.994661
+ - -0.144538
+ - - -1.096632
+ - -0.731119
+ - 0.052546
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.3445230479294783
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.683838
+ - -0.028829
+ - 0.069521
+ - - -0.668475
+ - 0.125551
+ - -0.026643
+ - - 1.237115
+ - 0.883788
+ - -0.08626
+ - - 1.119311
+ - -0.996905
+ - -0.141545
+ - - -1.102131
+ - -0.730931
+ - 0.051591
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -124,6 +202,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.9569740392369174
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.685302
+ - -0.029393
+ - 0.080983
+ - - -0.674571
+ - 0.129932
+ - -0.030259
+ - - 1.239201
+ - 0.886077
+ - -0.090082
+ - - 1.120448
+ - -1.000227
+ - -0.146048
+ - - -1.100724
+ - -0.733715
+ - 0.05207
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.8332977632534473
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.684749
+ - -0.028453
+ - 0.06845
+ - - -0.676228
+ - 0.132784
+ - -0.025603
+ - - 1.242972
+ - 0.891787
+ - -0.086225
+ - - 1.122444
+ - -1.005867
+ - -0.141291
+ - - -1.10428
+ - -0.737577
+ - 0.051333
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.661048622051623
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681692
+ - -0.028073
+ - 0.063035
+ - - -0.66474
+ - 0.123693
+ - -0.024274
+ - - 1.23631
+ - 0.884293
+ - -0.084172
+ - - 1.116776
+ - -0.997205
+ - -0.138854
+ - - -1.100381
+ - -0.730035
+ - 0.050928
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.8132878639393226
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.682061
+ - -0.030668
+ - 0.079568
+ - - -0.671065
+ - 0.127718
+ - -0.035574
+ - - 1.235659
+ - 0.882211
+ - -0.086823
+ - - 1.120355
+ - -0.996937
+ - -0.147231
+ - - -1.097354
+ - -0.729649
+ - 0.056724
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.1649421971961353
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681898
+ - -0.027092
+ - 0.051019
+ - - -0.66845
+ - 0.126112
+ - -0.017394
+ - - 1.23816
+ - 0.885231
+ - -0.081578
+ - - 1.114927
+ - -0.999251
+ - -0.133105
+ - - -1.096878
+ - -0.732327
+ - 0.047721
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.0918126540155715
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681898
+ - -0.027092
+ - 0.051019
+ - - -0.66845
+ - 0.126112
+ - -0.017394
+ - - 1.23816
+ - 0.885231
+ - -0.081578
+ - - 1.114927
+ - -0.999251
+ - -0.133105
+ - - -1.096878
+ - -0.732327
+ - 0.047721
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.932446236446205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681898
+ - -0.027092
+ - 0.051019
+ - - -0.66845
+ - 0.126112
+ - -0.017394
+ - - 1.23816
+ - 0.885231
+ - -0.081578
+ - - 1.114927
+ - -0.999251
+ - -0.133105
+ - - -1.096878
+ - -0.732327
+ - 0.047721
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.9739930994628194
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.68048
+ - -0.031158
+ - 0.093455
+ - - -0.668997
+ - 0.127439
+ - -0.038564
+ - - 1.235065
+ - 0.880346
+ - -0.092133
+ - - 1.119377
+ - -0.994561
+ - -0.15203
+ - - -1.096268
+ - -0.729391
+ - 0.055935
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.160879395314054
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.681459
+ - -0.029347
+ - 0.082535
+ - - -0.664047
+ - 0.123222
+ - -0.034081
+ - - 1.234762
+ - 0.879819
+ - -0.089052
+ - - 1.117037
+ - -0.992336
+ - -0.147447
+ - - -1.099554
+ - -0.728683
+ - 0.054708
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.8704041730160195
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.678354
+ - -0.028945
+ - 0.069097
+ - - -0.665816
+ - 0.125651
+ - -0.028345
+ - - 1.235661
+ - 0.883207
+ - -0.085099
+ - - 1.116222
+ - -0.997624
+ - -0.14186
+ - - -1.094764
+ - -0.729615
+ - 0.052871
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -0.14373520088068603
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.688256
+ - -0.030184
+ - 0.089588
+ - - -0.67336
+ - 0.130566
+ - -0.034681
+ - - 1.237565
+ - 0.885666
+ - -0.092228
+ - - 1.120584
+ - -0.999085
+ - -0.149734
+ - - -1.103387
+ - -0.734289
+ - 0.053718
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -163,6 +670,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -3.7857742030743844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6818983997
+ - -0.0270917972
+ - 0.0510188203
+ - - -0.6684498835
+ - 0.1261120608
+ - -0.0173938942
+ - - 1.2381600256
+ - 0.8852314293
+ - -0.0815782817
+ - - 1.1149271297
+ - -0.9992505665
+ - -0.1331047464
+ - - -1.0968784858
+ - -0.7323265657
+ - 0.04772126
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.4415927837409193
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.679608
+ - -0.028901
+ - 0.073322
+ - - -0.665182
+ - 0.123789
+ - -0.028781
+ - - 1.234923
+ - 0.882619
+ - -0.086926
+ - - 1.116034
+ - -0.996548
+ - -0.143205
+ - - -1.095726
+ - -0.728285
+ - 0.052254
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxymethylene.yml b/input/reference_sets/main/Hydroxymethylene.yml
index f434af57b4..3225d2cb7b 100644
--- a/input/reference_sets/main/Hydroxymethylene.yml
+++ b/input/reference_sets/main/Hydroxymethylene.yml
@@ -74,6 +74,74 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.89844970804836
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.705731
+ - 0.225
+ - -0.0
+ - - -0.54847
+ - -0.157162
+ - 0.0
+ - - 1.249694
+ - -0.743216
+ - -0.0
+ - - -1.108845
+ - 0.633847
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 30.531706167215297
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.706806
+ - 0.225565
+ - -0.0
+ - - -0.545586
+ - -0.15363
+ - 0.0
+ - - 1.251055
+ - -0.746437
+ - -0.0
+ - - -1.114164
+ - 0.632972
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.154117395255852
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.710627
+ - 0.23265
+ - -0.0
+ - - -0.550264
+ - -0.158342
+ - 0.0
+ - - 1.253536
+ - -0.751306
+ - -0.0
+ - - -1.115788
+ - 0.635466
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 31.37158147319577
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.711001
+ - 0.233675
+ - -0.0
+ - - -0.549864
+ - -0.160345
+ - 0.0
+ - - 1.256758
+ - -0.753695
+ - -0.0
+ - - -1.119785
+ - 0.638834
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.719096190605043
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.702858
+ - 0.222894
+ - -0.0
+ - - -0.543109
+ - -0.152274
+ - 0.0
+ - - 1.249806
+ - -0.744125
+ - -0.0
+ - - -1.111446
+ - 0.631974
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.581398201065824
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.707331
+ - 0.230033
+ - -0.0
+ - - -0.54764
+ - -0.156299
+ - 0.0
+ - - 1.248657
+ - -0.747241
+ - -0.0
+ - - -1.110238
+ - 0.631976
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 28.47054461056621
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.704043
+ - 0.225501
+ - 0.0
+ - - -0.545475
+ - -0.155139
+ - -0.0
+ - - 1.248311
+ - -0.743986
+ - -0.0
+ - - -1.108768
+ - 0.632093
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.932640808247275
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.704043
+ - 0.225501
+ - 0.0
+ - - -0.545475
+ - -0.155139
+ - -0.0
+ - - 1.248311
+ - -0.743986
+ - -0.0
+ - - -1.108768
+ - 0.632093
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.123004794120018
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.704043
+ - 0.225501
+ - 0.0
+ - - -0.545475
+ - -0.155139
+ - -0.0
+ - - 1.248311
+ - -0.743986
+ - -0.0
+ - - -1.108768
+ - 0.632093
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.763246196247273
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.70723
+ - 0.233933
+ - 0.0
+ - - -0.547057
+ - -0.156976
+ - 0.0
+ - - 1.248661
+ - -0.750259
+ - 0.0
+ - - -1.110723
+ - 0.63177
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 26.912893019408717
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.703583
+ - 0.224672
+ - -0.0
+ - - -0.542153
+ - -0.152375
+ - 0.0
+ - - 1.247538
+ - -0.744589
+ - -0.0
+ - - -1.110858
+ - 0.630761
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 33.05864043510051
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.701275
+ - 0.226789
+ - -0.0
+ - - -0.543709
+ - -0.154271
+ - 0.0
+ - - 1.249106
+ - -0.745761
+ - -0.0
+ - - -1.108562
+ - 0.631712
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 34.146670896500346
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.712783
+ - 0.231518
+ - -0.0
+ - - -0.550045
+ - -0.159595
+ - 0.0
+ - - 1.252668
+ - -0.750074
+ - -0.0
+ - - -1.117295
+ - 0.63662
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,13 +584,81 @@ calculated_data:
- O
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 25.544274253524197
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.7040430081
+ - 0.2255010502
+ - 0.0
+ - - -0.5454750739
+ - -0.1551391827
+ - -0.0
+ - - 1.2483106628
+ - -0.7439862888
+ - -0.0
+ - - -1.1087681207
+ - 0.6320934495
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 29.82998913173432
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.701176
+ - 0.224915
+ - -0.0
+ - - -0.544676
+ - -0.152842
+ - 0.0
+ - - 1.249339
+ - -0.744457
+ - -0.0
+ - - -1.107729
+ - 0.630853
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 30.031596118974907
+ value: 30.031596118974893
class: ThermoData
xyz_dict:
coords:
diff --git a/input/reference_sets/main/Hydroxymethylium.yml b/input/reference_sets/main/Hydroxymethylium.yml
index d97cd8bdd0..d560abd294 100644
--- a/input/reference_sets/main/Hydroxymethylium.yml
+++ b/input/reference_sets/main/Hydroxymethylium.yml
@@ -84,6 +84,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 170.53338942631382
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.624382
+ - -0.034019
+ - -0.0
+ - - -0.611446
+ - 0.132203
+ - 0.0
+ - - 1.068412
+ - -1.028697
+ - -0.0
+ - - 1.22314
+ - 0.873365
+ - -0.0
+ - - -1.153844
+ - -0.688548
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 173.76878941621572
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623874
+ - -0.034221
+ - -0.0
+ - - -0.609744
+ - 0.129456
+ - 0.0
+ - - 1.072802
+ - -1.029375
+ - -0.0
+ - - 1.224052
+ - 0.875192
+ - -0.0
+ - - -1.160338
+ - -0.686748
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -123,6 +201,435 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 172.04262198025313
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.62521
+ - -0.034513
+ - -0.0
+ - - -0.615631
+ - 0.134444
+ - 0.0
+ - - 1.074013
+ - -1.034895
+ - -0.0
+ - - 1.226603
+ - 0.879272
+ - -0.0
+ - - -1.159549
+ - -0.690003
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 174.5186358011887
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.626336
+ - -0.034066
+ - -0.0
+ - - -0.617079
+ - 0.136921
+ - 0.0
+ - - 1.076104
+ - -1.039279
+ - -0.0
+ - - 1.23
+ - 0.884212
+ - -0.0
+ - - -1.164717
+ - -0.693484
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 172.7161206089617
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.622526
+ - -0.033758
+ - -0.0
+ - - -0.606411
+ - 0.127591
+ - 0.0
+ - - 1.070472
+ - -1.029137
+ - -0.0
+ - - 1.222932
+ - 0.875427
+ - -0.0
+ - - -1.158874
+ - -0.685819
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 169.3868118412844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623493
+ - -0.035083
+ - -0.0
+ - - -0.6116
+ - 0.13096
+ - 0.0
+ - - 1.073436
+ - -1.031022
+ - -0.0
+ - - 1.223267
+ - 0.875681
+ - -0.0
+ - - -1.157951
+ - -0.686231
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 168.85165552577334
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623034
+ - -0.033765
+ - -0.0
+ - - -0.609402
+ - 0.130646
+ - -0.0
+ - - 1.067694
+ - -1.029567
+ - 0.0
+ - - 1.222769
+ - 0.874538
+ - -0.0
+ - - -1.15345
+ - -0.687547
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 169.95646337800045
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623034
+ - -0.033765
+ - -0.0
+ - - -0.609402
+ - 0.130646
+ - -0.0
+ - - 1.067694
+ - -1.029567
+ - 0.0
+ - - 1.222769
+ - 0.874538
+ - -0.0
+ - - -1.15345
+ - -0.687547
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 169.73860068942565
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623034
+ - -0.033765
+ - -0.0
+ - - -0.609402
+ - 0.130646
+ - -0.0
+ - - 1.067694
+ - -1.029567
+ - 0.0
+ - - 1.222769
+ - 0.874538
+ - -0.0
+ - - -1.15345
+ - -0.687547
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 169.90990259930498
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.623262
+ - -0.03466
+ - 0.0
+ - - -0.612367
+ - 0.130828
+ - 0.0
+ - - 1.07363
+ - -1.031721
+ - 0.0
+ - - 1.225013
+ - 0.876841
+ - 0.0
+ - - -1.158892
+ - -0.686984
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 169.14105267349348
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.622791
+ - -0.033696
+ - -0.0
+ - - -0.605826
+ - 0.127585
+ - 0.0
+ - - 1.068478
+ - -1.029696
+ - -0.0
+ - - 1.22217
+ - 0.875965
+ - -0.0
+ - - -1.156968
+ - -0.685854
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 172.48913559445626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.620564
+ - -0.034254
+ - -0.0
+ - - -0.608421
+ - 0.130221
+ - 0.0
+ - - 1.06935
+ - -1.031279
+ - -0.0
+ - - 1.222557
+ - 0.87588
+ - -0.0
+ - - -1.153404
+ - -0.686264
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 173.72433511889415
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.627591
+ - -0.034668
+ - -0.0
+ - - -0.614909
+ - 0.135028
+ - 0.0
+ - - 1.073971
+ - -1.034363
+ - -0.0
+ - - 1.226024
+ - 0.879286
+ - -0.0
+ - - -1.162031
+ - -0.690978
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -162,6 +669,84 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 168.41167433216503
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6230339425
+ - -0.0337649067
+ - -0.0
+ - - -0.6094021341
+ - 0.1306457625
+ - -0.0
+ - - 1.0676936318
+ - -1.029567246
+ - 0.0
+ - - 1.2227694436
+ - 0.8745376926
+ - -0.0
+ - - -1.1534496578
+ - -0.6875471058
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 170.6109663089257
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.620793
+ - -0.034314
+ - -0.0
+ - - -0.608205
+ - 0.128179
+ - 0.0
+ - - 1.069385
+ - -1.030103
+ - -0.0
+ - - 1.221671
+ - 0.874844
+ - -0.0
+ - - -1.152999
+ - -0.684302
+ - 0.0
+ isotopes:
+ - 12
+ - 16
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - O
+ - H
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hydroxyoxomethylium.yml b/input/reference_sets/main/Hydroxyoxomethylium.yml
index 28c911f53d..77fbb86f64 100644
--- a/input/reference_sets/main/Hydroxyoxomethylium.yml
+++ b/input/reference_sets/main/Hydroxyoxomethylium.yml
@@ -73,6 +73,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 144.98939354864814
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.105612
+ - 0.110715
+ - -0.0
+ - - -0.1102
+ - -0.012796
+ - 0.0
+ - - -1.237392
+ - -0.014296
+ - 0.0
+ - - 1.679011
+ - -0.69488
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 150.15998985982455
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.099881
+ - 0.105176
+ - -0.0
+ - - -0.113197
+ - -0.012439
+ - 0.0
+ - - -1.235128
+ - -0.011656
+ - 0.0
+ - - 1.685474
+ - -0.692338
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -107,6 +175,380 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 148.37295286793008
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.105832
+ - 0.109221
+ - -0.0
+ - - -0.11193
+ - -0.016377
+ - 0.0
+ - - -1.243204
+ - -0.010096
+ - 0.0
+ - - 1.686333
+ - -0.694004
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 148.74259238181259
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.107666
+ - 0.111682
+ - -0.0
+ - - -0.113481
+ - -0.016386
+ - 0.0
+ - - -1.249078
+ - -0.009345
+ - 0.0
+ - - 1.691924
+ - -0.697207
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 149.15287939070413
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.09607
+ - 0.102581
+ - -0.0
+ - - -0.113625
+ - -0.010174
+ - 0.0
+ - - -1.230636
+ - -0.012426
+ - 0.0
+ - - 1.685221
+ - -0.691237
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 141.7619164554576
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.100128
+ - 0.104613
+ - -0.0
+ - - -0.112833
+ - -0.014042
+ - 0.0
+ - - -1.235433
+ - -0.010644
+ - 0.0
+ - - 1.685168
+ - -0.691183
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 144.31884126064014
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.104346
+ - 0.111811
+ - 0.0
+ - - -0.110951
+ - -0.010095
+ - -0.0
+ - - -1.230385
+ - -0.017278
+ - -0.0
+ - - 1.674021
+ - -0.695695
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.65741770114872
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.104346
+ - 0.111811
+ - 0.0
+ - - -0.110951
+ - -0.010095
+ - -0.0
+ - - -1.230385
+ - -0.017278
+ - -0.0
+ - - 1.674021
+ - -0.695695
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.32916049442815
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.104346
+ - 0.111811
+ - 0.0
+ - - -0.110951
+ - -0.010095
+ - -0.0
+ - - -1.230385
+ - -0.017278
+ - -0.0
+ - - 1.674021
+ - -0.695695
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 142.35449446827678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.103671
+ - 0.106779
+ - 0.0
+ - - -0.112066
+ - -0.011198
+ - 0.0
+ - - -1.238086
+ - -0.013363
+ - 0.0
+ - - 1.683513
+ - -0.693474
+ - 0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 143.73961917841027
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.10005
+ - 0.109009
+ - -0.0
+ - - -0.112074
+ - -0.007854
+ - 0.0
+ - - -1.22712
+ - -0.017408
+ - 0.0
+ - - 1.676176
+ - -0.695004
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 148.38703362822017
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.099595
+ - 0.107513
+ - -0.0
+ - - -0.109868
+ - -0.011135
+ - 0.0
+ - - -1.229456
+ - -0.014947
+ - 0.0
+ - - 1.67676
+ - -0.692688
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 152.3539024242781
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.106634
+ - 0.111506
+ - -0.0
+ - - -0.112819
+ - -0.017886
+ - 0.0
+ - - -1.245125
+ - -0.009182
+ - 0.0
+ - - 1.68834
+ - -0.695695
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -141,6 +583,74 @@ calculated_data:
- C
- O
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 142.4306108799433
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.1043463203
+ - 0.111810805
+ - 0.0
+ - - -0.1109514145
+ - -0.01009522
+ - -0.0
+ - - -1.2303854134
+ - -0.0172775537
+ - -0.0
+ - - 1.6740212322
+ - -0.6956946902
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 145.9865845043589
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.099399
+ - 0.104941
+ - -0.0
+ - - -0.110412
+ - -0.010965
+ - 0.0
+ - - -1.228424
+ - -0.014606
+ - 0.0
+ - - 1.676468
+ - -0.690627
+ - -0.0
+ isotopes:
+ - 16
+ - 12
+ - 16
+ - 1
+ symbols:
+ - O
+ - C
+ - O
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hypobromite.yml b/input/reference_sets/main/Hypobromite.yml
index 54c68f7530..f082eff12f 100644
--- a/input/reference_sets/main/Hypobromite.yml
+++ b/input/reference_sets/main/Hypobromite.yml
@@ -3,6 +3,54 @@ adjacency_list: |
1 Br u0 p3 c0 {2,S}
2 O u0 p3 c-1 {1,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.491833834241618
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.347474
+ - - 0.0
+ - 0.0
+ - -1.475112
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.365916025912178
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.352848
+ - - 0.0
+ - 0.0
+ - -1.480486
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -27,6 +75,222 @@ calculated_data:
symbols:
- Br
- O
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.4452339668086
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.353905
+ - - 0.0
+ - 0.0
+ - -1.481542
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.350052312773354
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.354781
+ - - 0.0
+ - 0.0
+ - -1.482419
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.604438511532155
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.341799
+ - - 0.0
+ - 0.0
+ - -1.469437
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -28.784699459109042
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.373789
+ - - 0.0
+ - 0.0
+ - -1.501427
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.699657435197665
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.334115
+ - - 0.0
+ - 0.0
+ - -1.461753
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -27.74793291821941
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.352945
+ - - 0.0
+ - 0.0
+ - -1.480582
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.13581637996302
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.337765
+ - - 0.0
+ - 0.0
+ - -1.465403
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.10773864401039
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.336704
+ - - 0.0
+ - 0.0
+ - -1.464342
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.81406251482896
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.353557
+ - - 0.0
+ - 0.0
+ - -1.481195
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -51,6 +315,54 @@ calculated_data:
symbols:
- Br
- O
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.349651711226105
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.3341149397
+ - - 0.0
+ - 0.0
+ - -1.4617528613
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.522409329249562
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.336695
+ - - 0.0
+ - 0.0
+ - -1.464333
+ isotopes:
+ - 79
+ - 16
+ symbols:
+ - Br
+ - O
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hypobromous acid.yml b/input/reference_sets/main/Hypobromous acid.yml
index a0aafd745b..1c387121a7 100644
--- a/input/reference_sets/main/Hypobromous acid.yml
+++ b/input/reference_sets/main/Hypobromous acid.yml
@@ -4,6 +4,64 @@ adjacency_list: |
2 O u0 p2 c0 {1,S} {3,S}
3 H u0 p0 c0 {2,S}
calculated_data:
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.631350624561662
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.445588
+ - 0.121474
+ - -0.0
+ - - -0.385096
+ - -0.006424
+ - 0.0
+ - - 1.73119
+ - -0.803618
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.474665187521929
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.446512
+ - 0.119861
+ - -0.0
+ - - -0.39061
+ - -0.004513
+ - 0.0
+ - - 1.73578
+ - -0.803916
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -33,6 +91,267 @@ calculated_data:
- O
- Br
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.632619246691908
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.455358
+ - 0.125519
+ - -0.0
+ - - -0.395232
+ - -0.007424
+ - 0.0
+ - - 1.731555
+ - -0.806663
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.181897268152804
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.455917
+ - 0.128791
+ - -0.0
+ - - -0.396825
+ - -0.007532
+ - 0.0
+ - - 1.73259
+ - -0.809827
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.488503175679579
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.435196
+ - 0.116062
+ - -0.0
+ - - -0.379797
+ - -0.003136
+ - 0.0
+ - - 1.736283
+ - -0.801494
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.55036715802995
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.462008
+ - 0.123071
+ - -0.0
+ - - -0.404749
+ - -0.006373
+ - 0.0
+ - - 1.734423
+ - -0.805265
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.163148464946909
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.434413
+ - 0.116803
+ - -0.0
+ - - -0.377429
+ - -0.003796
+ - 0.0
+ - - 1.734697
+ - -0.801575
+ - 0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.898329507622204
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.450175
+ - 0.122566
+ - 0.0
+ - - -0.388269
+ - -0.007377
+ - 0.0
+ - - 1.729776
+ - -0.803757
+ - 0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.22413052974283
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.433182
+ - 0.116066
+ - -0.0
+ - - -0.37604
+ - -0.00368
+ - 0.0
+ - - 1.734539
+ - -0.800954
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.416159410355744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.437706
+ - 0.119081
+ - -0.0
+ - - -0.374546
+ - -0.00664
+ - 0.0
+ - - 1.728521
+ - -0.801008
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -14.690611571249164
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.454135
+ - 0.12734
+ - -0.0
+ - - -0.393488
+ - -0.00781
+ - 0.0
+ - - 1.731035
+ - -0.808099
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -62,6 +381,64 @@ calculated_data:
- O
- Br
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.589793666919535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.4344131043
+ - 0.1168029455
+ - -0.0
+ - - -0.3774286269
+ - -0.0037956675
+ - 0.0
+ - - 1.7346971072
+ - -0.8015752001
+ - 0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -13.665470112587304
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.435138
+ - 0.115946
+ - -0.0
+ - - -0.375344
+ - -0.004777
+ - 0.0
+ - - 1.731888
+ - -0.799738
+ - -0.0
+ isotopes:
+ - 16
+ - 79
+ - 1
+ symbols:
+ - O
+ - Br
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hypochlorous acid.yml b/input/reference_sets/main/Hypochlorous acid.yml
index f94f37d779..f8211e5611 100644
--- a/input/reference_sets/main/Hypochlorous acid.yml
+++ b/input/reference_sets/main/Hypochlorous acid.yml
@@ -62,6 +62,64 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.499029323410333
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.093585
+ - 0.121827
+ - -0.0
+ - - -0.598503
+ - -0.010658
+ - 0.0
+ - - 1.38373
+ - -0.801941
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.684538552807368
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.093944
+ - 0.120614
+ - -0.0
+ - - -0.602655
+ - -0.008978
+ - 0.0
+ - - 1.387522
+ - -0.802408
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.645432718097592
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.100701
+ - 0.125616
+ - -0.0
+ - - -0.606006
+ - -0.01154
+ - 0.0
+ - - 1.384116
+ - -0.804849
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.29711454718203
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.10223
+ - 0.128922
+ - -0.0
+ - - -0.609071
+ - -0.011529
+ - 0.0
+ - - 1.385653
+ - -0.808166
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.739550966799605
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083931
+ - 0.117175
+ - -0.0
+ - - -0.592784
+ - -0.007755
+ - 0.0
+ - - 1.387664
+ - -0.800192
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.93011139083688
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.110894
+ - 0.124851
+ - -0.0
+ - - -0.616081
+ - -0.012127
+ - 0.0
+ - - 1.383999
+ - -0.803497
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.045285102050464
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084389
+ - 0.118062
+ - -0.0
+ - - -0.591846
+ - -0.008479
+ - -0.0
+ - - 1.386269
+ - -0.800356
+ - 0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.57670080257843
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084389
+ - 0.118062
+ - -0.0
+ - - -0.591846
+ - -0.008479
+ - -0.0
+ - - 1.386269
+ - -0.800356
+ - 0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.907170214976357
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084389
+ - 0.118062
+ - -0.0
+ - - -0.591846
+ - -0.008479
+ - -0.0
+ - - 1.386269
+ - -0.800356
+ - 0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.315978572028442
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.099265
+ - 0.123376
+ - 0.0
+ - - -0.602831
+ - -0.011801
+ - 0.0
+ - - 1.382378
+ - -0.802347
+ - 0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.992018836083183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.080019
+ - 0.11653
+ - -0.0
+ - - -0.587463
+ - -0.00797
+ - 0.0
+ - - 1.386257
+ - -0.799333
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.897787835715773
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.084573
+ - 0.119277
+ - -0.0
+ - - -0.587155
+ - -0.010628
+ - 0.0
+ - - 1.381393
+ - -0.799422
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.91957070843179
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.102221
+ - 0.127752
+ - -0.0
+ - - -0.60769
+ - -0.011899
+ - 0.0
+ - - 1.384282
+ - -0.806626
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- O
- Cl
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.577193038989794
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.0843886344
+ - 0.1180619174
+ - -0.0
+ - - -0.5918457557
+ - -0.0084787924
+ - -0.0
+ - - 1.3862687711
+ - -0.800355868
+ - 0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.669420264069371
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.083924
+ - 0.117096
+ - -0.0
+ - - -0.588316
+ - -0.009529
+ - 0.0
+ - - 1.383204
+ - -0.79834
+ - -0.0
+ isotopes:
+ - 16
+ - 35
+ - 1
+ symbols:
+ - O
+ - Cl
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hypoflorous acid.yml b/input/reference_sets/main/Hypoflorous acid.yml
index 93c0cf1b54..0f887141ca 100644
--- a/input/reference_sets/main/Hypoflorous acid.yml
+++ b/input/reference_sets/main/Hypoflorous acid.yml
@@ -39,7 +39,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -20.5556071113957
+ value: -20.55560711139569
class: ThermoData
xyz_dict:
coords:
@@ -62,6 +62,64 @@ calculated_data:
- O
- F
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.39406143720809
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.699523
+ - 0.122937
+ - -0.0
+ - - -0.724849
+ - -0.01777
+ - 0.0
+ - - 0.931696
+ - -0.820192
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.16427688772415
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.697173
+ - 0.122035
+ - -0.0
+ - - -0.725595
+ - -0.015935
+ - 0.0
+ - - 0.934793
+ - -0.821125
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -91,6 +149,325 @@ calculated_data:
- O
- F
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.0084575166091
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.704062
+ - 0.125687
+ - -0.0
+ - - -0.732509
+ - -0.01703
+ - 0.0
+ - - 0.934817
+ - -0.823681
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.040722170841626
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.705484
+ - 0.128518
+ - -0.0
+ - - -0.736069
+ - -0.016525
+ - 0.0
+ - - 0.936955
+ - -0.827018
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.268619142836258
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.689113
+ - 0.119888
+ - -0.0
+ - - -0.716553
+ - -0.015433
+ - 0.0
+ - - 0.93381
+ - -0.819479
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.111818129840998
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.700183
+ - 0.122095
+ - -0.0
+ - - -0.726783
+ - -0.017079
+ - 0.0
+ - - 0.93297
+ - -0.82004
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.547696910731048
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.690067
+ - 0.12014
+ - -0.0
+ - - -0.717105
+ - -0.015745
+ - 0.0
+ - - 0.933408
+ - -0.81942
+ - 0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.374611093728237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.690067
+ - 0.12014
+ - -0.0
+ - - -0.717105
+ - -0.015745
+ - 0.0
+ - - 0.933408
+ - -0.81942
+ - 0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.971332167508205
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.690067
+ - 0.12014
+ - -0.0
+ - - -0.717105
+ - -0.015745
+ - 0.0
+ - - 0.933408
+ - -0.81942
+ - 0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.527655486140663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.69426
+ - 0.121507
+ - 0.0
+ - - -0.720366
+ - -0.016745
+ - 0.0
+ - - 0.932477
+ - -0.819787
+ - 0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.053538320524183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.682054
+ - 0.118199
+ - -0.0
+ - - -0.708613
+ - -0.015031
+ - 0.0
+ - - 0.93293
+ - -0.818192
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.592470019886402
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.687291
+ - 0.119566
+ - -0.0
+ - - -0.712531
+ - -0.016307
+ - 0.0
+ - - 0.93161
+ - -0.818283
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.01847786787133
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.706812
+ - 0.12765
+ - -0.0
+ - - -0.735626
+ - -0.017369
+ - 0.0
+ - - 0.935185
+ - -0.825306
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -120,6 +497,64 @@ calculated_data:
- O
- F
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.016966023166873
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6900668133
+ - 0.1201402477
+ - -0.0
+ - - -0.7171047545
+ - -0.0157446558
+ - 0.0
+ - - 0.933408284
+ - -0.8194200796
+ - 0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -19.43483616161332
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.687195
+ - 0.118143
+ - -0.0
+ - - -0.712847
+ - -0.015889
+ - 0.0
+ - - 0.932022
+ - -0.817279
+ - -0.0
+ isotopes:
+ - 16
+ - 19
+ - 1
+ symbols:
+ - O
+ - F
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Hypofluorite.yml b/input/reference_sets/main/Hypofluorite.yml
index 84a8246a09..aedae2b3de 100644
--- a/input/reference_sets/main/Hypofluorite.yml
+++ b/input/reference_sets/main/Hypofluorite.yml
@@ -33,7 +33,7 @@ calculated_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: -25.918765400772376
+ value: -25.91876540077237
class: ThermoData
xyz_dict:
coords:
@@ -51,6 +51,54 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -17.8035894988303
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.802992
+ - - 0.0
+ - 0.0
+ - -0.715021
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.425284843130505
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.804904
+ - - 0.0
+ - 0.0
+ - -0.716933
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -75,6 +123,270 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -16.488628568196823
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.810832
+ - - 0.0
+ - 0.0
+ - -0.722861
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -21.072470112550405
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.811126
+ - - 0.0
+ - 0.0
+ - -0.723155
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.123143253263272
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.794204
+ - - 0.0
+ - 0.0
+ - -0.706233
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -25.89691958697385
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.811723
+ - - 0.0
+ - 0.0
+ - -0.723753
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.309276954842897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.791735
+ - - 0.0
+ - 0.0
+ - -0.703765
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -22.72147023021356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.791735
+ - - 0.0
+ - 0.0
+ - -0.703765
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -24.384319339042772
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.791735
+ - - 0.0
+ - 0.0
+ - -0.703765
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.495616312294356
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.798332
+ - - 0.0
+ - 0.0
+ - -0.710361
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -20.072380790086967
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.783449
+ - - 0.0
+ - 0.0
+ - -0.695478
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -15.671517731699858
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.790294
+ - - 0.0
+ - 0.0
+ - -0.702323
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.905767948709833
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.811715
+ - - 0.0
+ - 0.0
+ - -0.723745
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -99,6 +411,54 @@ calculated_data:
symbols:
- O
- F
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -26.183990514303844
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.7917354693
+ - - 0.0
+ - 0.0
+ - -0.7037648616
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -18.13543759002237
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.792183
+ - - 0.0
+ - 0.0
+ - -0.704213
+ isotopes:
+ - 16
+ - 19
+ symbols:
+ - O
+ - F
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Imidogen.yml b/input/reference_sets/main/Imidogen.yml
index 4c6e02fb69..e70be83c63 100644
--- a/input/reference_sets/main/Imidogen.yml
+++ b/input/reference_sets/main/Imidogen.yml
@@ -52,6 +52,54 @@ calculated_data:
symbols:
- N
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.0555362349953
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.129979
+ - - 0.0
+ - 0.0
+ - -0.90767
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.05057075958115
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.132099
+ - - 0.0
+ - 0.0
+ - -0.90979
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -76,6 +124,270 @@ calculated_data:
symbols:
- N
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.78100087692377
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.134803
+ - - 0.0
+ - 0.0
+ - -0.912494
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.70605688507663
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.137609
+ - - 0.0
+ - 0.0
+ - -0.915299
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.54928855058897
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.13097
+ - - 0.0
+ - 0.0
+ - -0.908661
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 86.18607986631784
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.133276
+ - - 0.0
+ - 0.0
+ - -0.910967
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 82.424958206508
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.129615
+ - - 0.0
+ - 0.0
+ - -0.907306
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.60345262700686
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.129615
+ - - 0.0
+ - 0.0
+ - -0.907306
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.77173422870959
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.129615
+ - - 0.0
+ - 0.0
+ - -0.907306
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 85.16125348597296
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.133521
+ - - 0.0
+ - 0.0
+ - -0.911212
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.52643584785757
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.129747
+ - - 0.0
+ - 0.0
+ - -0.907437
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 81.07991013866707
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.130982
+ - - 0.0
+ - 0.0
+ - -0.908673
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 78.67634927228954
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.134191
+ - - 0.0
+ - 0.0
+ - -0.911882
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -100,6 +412,54 @@ calculated_data:
symbols:
- N
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 84.85351100113768
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.1296151357
+ - - 0.0
+ - 0.0
+ - -0.90730595
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 83.18193742686424
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.0
+ - 0.0
+ - 0.130446
+ - - 0.0
+ - 0.0
+ - -0.908137
+ isotopes:
+ - 14
+ - 1
+ symbols:
+ - N
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Iminomethyl.yml b/input/reference_sets/main/Iminomethyl.yml
index fd8d288fee..c3de61381e 100644
--- a/input/reference_sets/main/Iminomethyl.yml
+++ b/input/reference_sets/main/Iminomethyl.yml
@@ -74,6 +74,74 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.82600254972121
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.63615
+ - 0.121253
+ - -0.0
+ - - -0.584144
+ - 0.094305
+ - 0.0
+ - - 1.414842
+ - -0.650347
+ - -0.0
+ - - -1.118273
+ - -0.779822
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.21418395491084
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.634497
+ - 0.121779
+ - -0.0
+ - - -0.58224
+ - 0.094645
+ - 0.0
+ - - 1.415192
+ - -0.65069
+ - -0.0
+ - - -1.118873
+ - -0.780345
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -108,6 +176,380 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.7767817823535
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.637294
+ - 0.125888
+ - -0.0
+ - - -0.587566
+ - 0.099204
+ - 0.0
+ - - 1.416904
+ - -0.655254
+ - -0.0
+ - - -1.118056
+ - -0.78445
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 65.71649762313291
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.638893
+ - 0.125579
+ - -0.0
+ - - -0.587033
+ - 0.098597
+ - 0.0
+ - - 1.427317
+ - -0.65362
+ - -0.0
+ - - -1.130602
+ - -0.785168
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 67.77522658349585
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.631945
+ - 0.121617
+ - -0.0
+ - - -0.580651
+ - 0.09455
+ - 0.0
+ - - 1.410491
+ - -0.65116
+ - -0.0
+ - - -1.11321
+ - -0.779619
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.00771006395102
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.633986
+ - 0.121443
+ - -0.0
+ - - -0.5863
+ - 0.099991
+ - 0.0
+ - - 1.415047
+ - -0.653185
+ - -0.0
+ - - -1.114158
+ - -0.78286
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 72.32310162631236
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.63175
+ - 0.122834
+ - -0.0
+ - - -0.584555
+ - 0.100074
+ - -0.0
+ - - 1.405902
+ - -0.654822
+ - 0.0
+ - - -1.104522
+ - -0.782696
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 70.36435725902578
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.63175
+ - 0.122834
+ - -0.0
+ - - -0.584555
+ - 0.100074
+ - -0.0
+ - - 1.405902
+ - -0.654822
+ - 0.0
+ - - -1.104522
+ - -0.782696
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.80012650146153
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.63175
+ - 0.122834
+ - -0.0
+ - - -0.584555
+ - 0.100074
+ - -0.0
+ - - 1.405902
+ - -0.654822
+ - 0.0
+ - - -1.104522
+ - -0.782696
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.06265818678379
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.635213
+ - 0.121443
+ - 0.0
+ - - -0.587259
+ - 0.098442
+ - 0.0
+ - - 1.417333
+ - -0.652642
+ - 0.0
+ - - -1.116711
+ - -0.781854
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 69.79098873305935
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.630342
+ - 0.12127
+ - -0.0
+ - - -0.586503
+ - 0.10424
+ - 0.0
+ - - 1.40312
+ - -0.655939
+ - -0.0
+ - - -1.098384
+ - -0.784183
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.03864213355807
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.630664
+ - 0.119118
+ - -0.0
+ - - -0.586153
+ - 0.100801
+ - 0.0
+ - - 1.412056
+ - -0.653043
+ - -0.0
+ - - -1.107992
+ - -0.781487
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.70726593959665
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.636606
+ - 0.121576
+ - -0.0
+ - - -0.588754
+ - 0.101342
+ - 0.0
+ - - 1.421662
+ - -0.653138
+ - -0.0
+ - - -1.120939
+ - -0.784391
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97mv',basis='def2tzvpd',software='qchem'):
class: CalculatedDataEntry
thermo_data:
@@ -142,6 +584,74 @@ calculated_data:
- N
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.80259636680678
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.6317504157
+ - 0.1228336563
+ - -0.0
+ - - -0.5845546646
+ - 0.1000737871
+ - -0.0
+ - - 1.4059020891
+ - -0.6548223429
+ - 0.0
+ - - -1.104521931
+ - -0.7826961045
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 68.87715120970292
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 0.631924
+ - 0.123475
+ - -0.0
+ - - -0.584459
+ - 0.098345
+ - 0.0
+ - - 1.406131
+ - -0.6548
+ - -0.0
+ - - -1.105021
+ - -0.781631
+ - 0.0
+ isotopes:
+ - 12
+ - 14
+ - 1
+ - 1
+ symbols:
+ - C
+ - N
+ - H
+ - H
LevelOfTheory(method='wb97xd3',basis='def2tzvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
diff --git a/input/reference_sets/main/Isobutene.yml b/input/reference_sets/main/Isobutene.yml
index 5502674360..83a536cba7 100644
--- a/input/reference_sets/main/Isobutene.yml
+++ b/input/reference_sets/main/Isobutene.yml
@@ -161,54 +161,1016 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='b2plypd32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.274858220476862
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.270794
+ - -0.677136
+ - -0.000253
+ - - -1.0e-06
+ - 0.121996
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.454712
+ - -6.0e-05
+ - - -1.270789
+ - -0.677147
+ - 0.000309
+ - - 1.317866
+ - -1.328211
+ - -0.87709
+ - - 1.318254
+ - -1.328138
+ - 0.876616
+ - - 2.150734
+ - -0.035828
+ - -0.000474
+ - - -0.92342
+ - 2.019044
+ - 0.000121
+ - - 0.923402
+ - 2.019052
+ - -0.000287
+ - - -2.150735
+ - -0.035847
+ - 0.000477
+ - - -1.318243
+ - -1.328222
+ - -0.876507
+ - - -1.317855
+ - -1.32815
+ - 0.877199
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.413733974197125
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.270648
+ - -0.676542
+ - -0.000254
+ - - -1.0e-06
+ - 0.123988
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.454136
+ - -6.0e-05
+ - - -1.270642
+ - -0.676553
+ - 0.000309
+ - - 1.317746
+ - -1.3293
+ - -0.877396
+ - - 1.318135
+ - -1.329228
+ - 0.876922
+ - - 2.15248
+ - -0.036558
+ - -0.000475
+ - - -0.923097
+ - 2.020651
+ - 0.000121
+ - - 0.923079
+ - 2.02066
+ - -0.000288
+ - - -2.15248
+ - -0.036577
+ - 0.000478
+ - - -1.318124
+ - -1.329312
+ - -0.876812
+ - - -1.317735
+ - -1.32924
+ - 0.877505
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
LevelOfTheory(method='b97d3',basis='def2msvp',software='qchem'):
class: CalculatedDataEntry
thermo_data:
H298:
class: ScalarQuantity
units: kcal/mol
- value: 20.82738846689534
+ value: 20.82738846689534
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2765187273
+ - -0.6855436627
+ - 3.6453e-06
+ - - 0.0001085946
+ - 0.1271032209
+ - 4.15402e-05
+ - - 0.0009265147
+ - 1.4727221858
+ - 1.04144e-05
+ - - -1.2773263009
+ - -0.684075011
+ - -4.3374e-06
+ - - 1.3174567241
+ - -1.3454152883
+ - -0.8833788097
+ - - 1.3190473464
+ - -1.3429014962
+ - 0.8851980178
+ - - 2.1726936472
+ - -0.0493974216
+ - -0.0017234112
+ - - -0.9293876693
+ - 2.0448926533
+ - 0.0001727887
+ - - 0.9318008183
+ - 2.0438949144
+ - -0.0002582031
+ - - -2.172850489
+ - -0.0469494894
+ - 0.0016689748
+ - - -1.3207883688
+ - -1.3413226335
+ - -0.8852560852
+ - - -1.3193372229
+ - -1.3440416367
+ - 0.8832691535
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='b97d32023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.439304172698795
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.273514
+ - -0.678333
+ - -0.000255
+ - - -1.0e-06
+ - 0.12393
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.461306
+ - -6.0e-05
+ - - -1.273509
+ - -0.678344
+ - 0.00031
+ - - 1.320241
+ - -1.334691
+ - -0.880348
+ - - 1.320632
+ - -1.334618
+ - 0.879872
+ - - 2.15958
+ - -0.03687
+ - -0.000478
+ - - -0.927283
+ - 2.029979
+ - 0.000122
+ - - 0.927264
+ - 2.029987
+ - -0.000289
+ - - -2.15958
+ - -0.036889
+ - 0.000481
+ - - -1.32062
+ - -1.334703
+ - -0.879762
+ - - -1.32023
+ - -1.334631
+ - 0.880457
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='bp862023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 5.435016051823867
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.276348
+ - -0.67893
+ - -0.000254
+ - - -1.0e-06
+ - 0.122036
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.462934
+ - -6.0e-05
+ - - -1.276342
+ - -0.678941
+ - 0.00031
+ - - 1.327433
+ - -1.338447
+ - -0.883442
+ - - 1.327823
+ - -1.338374
+ - 0.882966
+ - - 2.164693
+ - -0.032764
+ - -0.000477
+ - - -0.931105
+ - 2.034116
+ - 0.000122
+ - - 0.931086
+ - 2.034124
+ - -0.000289
+ - - -2.164693
+ - -0.032784
+ - 0.000479
+ - - -1.327812
+ - -1.338459
+ - -0.882856
+ - - -1.327421
+ - -1.338386
+ - 0.883552
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='camb3lyp2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 4.414283004110183
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.267868
+ - -0.675041
+ - -0.000253
+ - - -1.0e-06
+ - 0.123932
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.448611
+ - -6.0e-05
+ - - -1.267862
+ - -0.675052
+ - 0.000309
+ - - 1.314926
+ - -1.326233
+ - -0.87688
+ - - 1.315316
+ - -1.326159
+ - 0.876407
+ - - 2.148627
+ - -0.035076
+ - -0.000475
+ - - -0.922998
+ - 2.014322
+ - 0.000122
+ - - 0.92298
+ - 2.01433
+ - -0.000288
+ - - -2.148627
+ - -0.035095
+ - 0.000478
+ - - -1.315304
+ - -1.326243
+ - -0.876298
+ - - -1.314915
+ - -1.326172
+ - 0.876989
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='cbsqb32023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -4.208365051748658
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.275959
+ - -0.678241
+ - -0.000259
+ - - -1.0e-06
+ - 0.124272
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.457254
+ - -6.1e-05
+ - - -1.275953
+ - -0.678252
+ - 0.000315
+ - - 1.326342
+ - -1.331819
+ - -0.878938
+ - - 1.326702
+ - -1.331808
+ - 0.878409
+ - - 2.158775
+ - -0.036504
+ - -0.000445
+ - - -0.924011
+ - 2.025693
+ - 0.000119
+ - - 0.923992
+ - 2.025701
+ - -0.000288
+ - - -2.158776
+ - -0.036523
+ - 0.000452
+ - - -1.326693
+ - -1.331889
+ - -0.8783
+ - - -1.326329
+ - -1.331761
+ - 0.879047
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)2023',basis='def2tzvp',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.864204409855942
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.269577
+ - -0.676377
+ - -2.0e-06
+ - - 0.0
+ - 0.125178
+ - -9.0e-06
+ - - -7.0e-06
+ - 1.452363
+ - -0.0
+ - - -1.26957
+ - -0.676388
+ - 2.0e-06
+ - - 1.312825
+ - -1.328669
+ - -0.876087
+ - - 1.314506
+ - -1.325733
+ - 0.87819
+ - - 2.150553
+ - -0.036257
+ - -0.001883
+ - - -0.924655
+ - 2.016347
+ - 0.00018
+ - - 0.924634
+ - 2.016359
+ - -0.000162
+ - - -2.150551
+ - -0.036273
+ - 0.001559
+ - - -1.314352
+ - -1.325996
+ - -0.87801
+ - - -1.312959
+ - -1.328428
+ - 0.876269
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvdzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.2760259975740236
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.269577
+ - -0.676377
+ - -2.0e-06
+ - - 0.0
+ - 0.125178
+ - -9.0e-06
+ - - -7.0e-06
+ - 1.452363
+ - -0.0
+ - - -1.26957
+ - -0.676388
+ - 2.0e-06
+ - - 1.312825
+ - -1.328669
+ - -0.876087
+ - - 1.314506
+ - -1.325733
+ - 0.87819
+ - - 2.150553
+ - -0.036257
+ - -0.001883
+ - - -0.924655
+ - 2.016347
+ - 0.00018
+ - - 0.924634
+ - 2.016359
+ - -0.000162
+ - - -2.150551
+ - -0.036273
+ - 0.001559
+ - - -1.314352
+ - -1.325996
+ - -0.87801
+ - - -1.312959
+ - -1.328428
+ - 0.876269
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='dlpnoccsd(t)f122023',basis='ccpvtzf12',software='orca'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.6983586370932984
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.269577
+ - -0.676377
+ - -2.0e-06
+ - - 0.0
+ - 0.125178
+ - -9.0e-06
+ - - -7.0e-06
+ - 1.452363
+ - -0.0
+ - - -1.26957
+ - -0.676388
+ - 2.0e-06
+ - - 1.312825
+ - -1.328669
+ - -0.876087
+ - - 1.314506
+ - -1.325733
+ - 0.87819
+ - - 2.150553
+ - -0.036257
+ - -0.001883
+ - - -0.924655
+ - 2.016347
+ - 0.00018
+ - - 0.924634
+ - 2.016359
+ - -0.000162
+ - - -2.150551
+ - -0.036273
+ - 0.001559
+ - - -1.314352
+ - -1.325996
+ - -0.87801
+ - - -1.312959
+ - -1.328428
+ - 0.876269
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='g42023',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.7708335855923596
class: ThermoData
xyz_dict:
coords:
class: np_array
object:
- - - 1.2765187273
- - -0.6855436627
- - 3.6453e-06
- - - 0.0001085946
- - 0.1271032209
- - 4.15402e-05
- - - 0.0009265147
- - 1.4727221858
- - 1.04144e-05
- - - -1.2773263009
- - -0.684075011
- - -4.3374e-06
- - - 1.3174567241
- - -1.3454152883
- - -0.8833788097
- - - 1.3190473464
- - -1.3429014962
- - 0.8851980178
- - - 2.1726936472
- - -0.0493974216
- - -0.0017234112
- - - -0.9293876693
- - 2.0448926533
- - 0.0001727887
- - - 0.9318008183
- - 2.0438949144
- - -0.0002582031
- - - -2.172850489
- - -0.0469494894
- - 0.0016689748
- - - -1.3207883688
- - -1.3413226335
- - -0.8852560852
- - - -1.3193372229
- - -1.3440416367
- - 0.8832691535
+ - - 1.274967
+ - -0.677569
+ - -0.000257
+ - - -1.0e-06
+ - 0.124946
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.457371
+ - -6.0e-05
+ - - -1.274962
+ - -0.67758
+ - 0.000313
+ - - 1.327046
+ - -1.333828
+ - -0.878652
+ - - 1.327415
+ - -1.333798
+ - 0.878139
+ - - 2.159691
+ - -0.036074
+ - -0.000454
+ - - -0.923257
+ - 2.028196
+ - 0.000118
+ - - 0.923238
+ - 2.028204
+ - -0.000287
+ - - -2.159691
+ - -0.036093
+ - 0.00046
+ - - -1.327405
+ - -1.333881
+ - -0.87803
+ - - -1.327034
+ - -1.33377
+ - 0.878761
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='m062x2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -1.5764425793304744
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.268489
+ - -0.676496
+ - -0.000255
+ - - -1.0e-06
+ - 0.125657
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.452856
+ - -6.0e-05
+ - - -1.268484
+ - -0.676507
+ - 0.00031
+ - - 1.309967
+ - -1.327258
+ - -0.877586
+ - - 1.31036
+ - -1.327182
+ - 0.877115
+ - - 2.149828
+ - -0.037245
+ - -0.00048
+ - - -0.92452
+ - 2.017009
+ - 0.000123
+ - - 0.924502
+ - 2.017017
+ - -0.000289
+ - - -2.149828
+ - -0.037264
+ - 0.000482
+ - - -1.310348
+ - -1.327266
+ - -0.877006
+ - - -1.309956
+ - -1.327197
+ - 0.877696
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='pbe1pbe2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 3.1028313650668853
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.266788
+ - -0.674685
+ - -0.000253
+ - - -1.0e-06
+ - 0.121479
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.450765
+ - -6.0e-05
+ - - -1.266783
+ - -0.674696
+ - 0.000309
+ - - 1.314913
+ - -1.328426
+ - -0.877737
+ - - 1.315303
+ - -1.328353
+ - 0.877264
+ - - 2.14887
+ - -0.033318
+ - -0.000475
+ - - -0.925236
+ - 2.016746
+ - 0.000122
+ - - 0.925218
+ - 2.016754
+ - -0.000288
+ - - -2.148871
+ - -0.033337
+ - 0.000478
+ - - -1.315291
+ - -1.328437
+ - -0.877154
+ - - -1.314902
+ - -1.328366
+ - 0.877847
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='tpsstpss2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 15.11782735546857
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.277661
+ - -0.679233
+ - -0.000253
+ - - -1.0e-06
+ - 0.120879
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.458254
+ - -6.0e-05
+ - - -1.277656
+ - -0.679244
+ - 0.000309
+ - - 1.327961
+ - -1.334083
+ - -0.880765
+ - - 1.328349
+ - -1.33401
+ - 0.880291
+ - - 2.159048
+ - -0.031773
+ - -0.000473
+ - - -0.926381
+ - 2.027618
+ - 0.00012
+ - - 0.926363
+ - 2.027626
+ - -0.000287
+ - - -2.159048
+ - -0.031792
+ - 0.000476
+ - - -1.328337
+ - -1.334095
+ - -0.880181
+ - - -1.32795
+ - -1.334022
+ - 0.880875
isotopes:
- 12
- 12
@@ -309,13 +1271,161 @@ calculated_data:
- H
- H
- H
+ LevelOfTheory(method='wb97mv2023',basis='def2tzvpd',software='qchem'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: -2.979013763805703
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.2695768858
+ - -0.6763774882
+ - -1.8336e-06
+ - - 6.12e-08
+ - 0.1251782042
+ - -9.3484e-06
+ - - -6.8987e-06
+ - 1.4523625993
+ - -1.517e-07
+ - - -1.2695703268
+ - -0.6763881262
+ - 1.9974e-06
+ - - 1.3128250555
+ - -1.3286692718
+ - -0.876086718
+ - - 1.314506396
+ - -1.3257331295
+ - 0.8781902795
+ - - 2.1505532613
+ - -0.0362567623
+ - -0.0018831419
+ - - -0.9246552818
+ - 2.0163467271
+ - 0.0001800235
+ - - 0.9246340063
+ - 2.0163589891
+ - -0.0001620549
+ - - -2.150551245
+ - -0.0362731163
+ - 0.0015586903
+ - - -1.3143518578
+ - -1.3259962469
+ - -0.8780096912
+ - - -1.3129586631
+ - -1.3284283242
+ - 0.8762686304
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+ - C
+ - C
+ - C
+ - C
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ - H
+ LevelOfTheory(method='wb97xd2023',basis='def2tzvp',software='gaussian'):
+ class: CalculatedDataEntry
+ thermo_data:
+ H298:
+ class: ScalarQuantity
+ units: kcal/mol
+ value: 0.9174560856187624
+ class: ThermoData
+ xyz_dict:
+ coords:
+ class: np_array
+ object:
+ - - 1.268873
+ - -0.676167
+ - -0.000254
+ - - -1.0e-06
+ - 0.125104
+ - -5.0e-06
+ - - -7.0e-06
+ - 1.452109
+ - -6.0e-05
+ - - -1.268867
+ - -0.676178
+ - 0.00031
+ - - 1.312759
+ - -1.327378
+ - -0.877966
+ - - 1.313151
+ - -1.327303
+ - 0.877494
+ - - 2.151789
+ - -0.03767
+ - -0.000479
+ - - -0.924129
+ - 2.017996
+ - 0.000123
+ - - 0.92411
+ - 2.018004
+ - -0.000289
+ - - -2.151789
+ - -0.037689
+ - 0.000482
+ - - -1.313139
+ - -1.327387
+ - -0.877385
+ - - -1.312748
+ - -1.327317
+ - 0.878076
+ isotopes:
+ - 12
+ - 12
+ - 12
+ - 12
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ - 1
+ symbols:
+